Skip to content

Commit

Permalink
Regenerate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Jan 7, 2024
1 parent a1cd6d9 commit 6adb682
Showing 1 changed file with 7 additions and 45 deletions.
52 changes: 7 additions & 45 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4615,12 +4615,6 @@ export interface components {
};
/** ExportTaskListResponse */
ExportTaskListResponse: components["schemas"]["ObjectExportTaskResponse"][];
/**
* ExtendedInvocationStepState
* @description An enumeration.
* @enum {string}
*/
ExtendedInvocationStepState: "new" | "ready" | "scheduled" | "ok";
/** ExtraFileEntry */
ExtraFileEntry: {
/** @description The class of this entry, either File or Directory. */
Expand Down Expand Up @@ -7160,7 +7154,7 @@ export interface components {
* State of the invocation step
* @description Describes where in the scheduling process the workflow invocation step is.
*/
state?: components["schemas"]["ExtendedInvocationStepState"];
state?: components["schemas"]["InvocationStepState"] | components["schemas"]["JobState"];
/**
* Subworkflow invocation ID
* @description The encoded ID of the subworkflow invocation.
Expand Down Expand Up @@ -7313,6 +7307,12 @@ export interface components {
*/
uuid?: string;
};
/**
* InvocationStepState
* @description An enumeration.
* @enum {string}
*/
InvocationStepState: "new" | "ready" | "scheduled";
/** InvocationUpdatePayload */
InvocationUpdatePayload: {
/**
Expand Down Expand Up @@ -11057,20 +11057,6 @@ export interface components {
* @example 0123456789ABCDEF
*/
id: string;
/**
* Input step parameters
* @description Input step parameters of the workflow invocation.
*/
input_step_parameters?: {
[key: string]: components["schemas"]["InvocationInputParameter"] | undefined;
};
/**
* Inputs
* @description Input datasets/dataset collections of the workflow invocation.
*/
inputs?: {
[key: string]: components["schemas"]["InvocationInput"] | undefined;
};
/**
* Messages
* @description A list of messages about why the invocation did not succeed.
Expand All @@ -11095,35 +11081,11 @@ export interface components {
* @enum {string}
*/
model_class: "WorkflowInvocation";
/**
* Output collections
* @description Output dataset collections of the workflow invocation.
*/
output_collections?: {
[key: string]: components["schemas"]["InvocationOutputCollection"] | undefined;
};
/**
* Output values
* @description Output values of the workflow invocation.
*/
output_values?: Record<string, never>;
/**
* Outputs
* @description Output datasets of the workflow invocation.
*/
outputs?: {
[key: string]: components["schemas"]["InvocationOutput"] | undefined;
};
/**
* Invocation state
* @description State of workflow invocation.
*/
state: components["schemas"]["InvocationState"];
/**
* Steps
* @description Steps of the workflow invocation.
*/
steps?: components["schemas"]["InvocationStep"][];
/**
* Update Time
* Format: date-time
Expand Down

0 comments on commit 6adb682

Please sign in to comment.