Skip to content

Commit

Permalink
Regenerate schema for landings...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 22, 2024
1 parent 0f0055d commit f59a4d5
Showing 1 changed file with 215 additions and 0 deletions.
215 changes: 215 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4193,6 +4193,57 @@ export interface paths {
patch?: never;
trace?: never;
};
"/api/tool_landings": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/** Create Landing */
post: operations["create_landing_api_tool_landings_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/tool_landings/{uuid}": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
/** Get Landing */
get: operations["get_landing_api_tool_landings__uuid__get"];
put?: never;
post?: never;
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/tool_landings/{uuid}/claim": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/** Claim Landing */
post: operations["claim_landing_api_tool_landings__uuid__claim_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/tool_requests/{id}": {
parameters: {
query?: never;
Expand Down Expand Up @@ -7226,6 +7277,17 @@ export interface components {
*/
url: string;
};
/** CreateToolLandingRequestPayload */
CreateToolLandingRequestPayload: {
/** Client Secret */
client_secret?: string | null;
/** Request State */
request_state?: Record<string, never> | null;
/** Tool Id */
tool_id: string;
/** Tool Version */
tool_version?: string | null;
};
/** CreateWorkflowLandingRequestPayload */
CreateWorkflowLandingRequestPayload: {
/** Client Secret */
Expand Down Expand Up @@ -17122,6 +17184,22 @@ export interface components {
*/
values: string;
};
/** ToolLandingRequest */
ToolLandingRequest: {
/** Request State */
request_state?: Record<string, never> | null;
state: components["schemas"]["LandingRequestState"];
/** Tool Id */
tool_id: string;
/** Tool Version */
tool_version?: string | null;
/**
* UUID
* Format: uuid4
* @description Universal unique identifier for this dataset.
*/
uuid: string;
};
/** ToolRequestModel */
ToolRequestModel: {
/**
Expand Down Expand Up @@ -32296,6 +32374,143 @@ export interface operations {
};
};
};
create_landing_api_tool_landings_post: {
parameters: {
query?: never;
header?: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
"run-as"?: string | null;
};
path?: never;
cookie?: never;
};
requestBody: {
content: {
"application/json": components["schemas"]["CreateToolLandingRequestPayload"];
};
};
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["ToolLandingRequest"];
};
};
/** @description Request Error */
"4XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
/** @description Server Error */
"5XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
};
};
get_landing_api_tool_landings__uuid__get: {
parameters: {
query?: never;
header?: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
"run-as"?: string | null;
};
path: {
/** @description The UUID used to identify a persisted landing request. */
uuid: string;
};
cookie?: never;
};
requestBody?: never;
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["ToolLandingRequest"];
};
};
/** @description Request Error */
"4XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
/** @description Server Error */
"5XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
};
};
claim_landing_api_tool_landings__uuid__claim_post: {
parameters: {
query?: never;
header?: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
"run-as"?: string | null;
};
path: {
/** @description The UUID used to identify a persisted landing request. */
uuid: string;
};
cookie?: never;
};
requestBody: {
content: {
"application/json": components["schemas"]["ClaimLandingPayload"] | null;
};
};
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["ToolLandingRequest"];
};
};
/** @description Request Error */
"4XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
/** @description Server Error */
"5XX": {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["MessageExceptionModel"];
};
};
};
};
get_tool_request_api_tool_requests__id__get: {
parameters: {
query?: never;
Expand Down

0 comments on commit f59a4d5

Please sign in to comment.