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 Mar 15, 2024
1 parent 854d9dd commit 29adbd3
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12205,6 +12205,11 @@ export interface components {
* @description The inputs of the step.
*/
inputs?: Record<string, never>[] | null;
/**
* Label
* @description The label of the step.
*/
label?: string | null;
/**
* Name
* @description The name of the step.
Expand All @@ -12225,16 +12230,6 @@ export interface components {
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
/**
* Label
* @description The label of the step.
*/
step_label?: string | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
step_type: components["schemas"]["WorkflowModuleType"];
/**
* Tool ID
* @description The tool ID associated with the step.
Expand All @@ -12255,6 +12250,11 @@ export interface components {
* @description The tooltip for the step.
*/
tooltip?: string | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
type: string;
/**
* UUID
* @description The UUID of the step.
Expand Down Expand Up @@ -12369,6 +12369,11 @@ export interface components {
* @description The inputs of the step.
*/
inputs?: Record<string, never>[] | null;
/**
* Label
* @description The label of the step.
*/
label?: string | null;
/**
* Name
* @description The name of the step.
Expand All @@ -12389,16 +12394,6 @@ export interface components {
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
/**
* Label
* @description The label of the step.
*/
step_label?: string | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
step_type: components["schemas"]["WorkflowModuleType"];
/**
* Sub Workflow
* @description The sub-workflow associated with the step.
Expand Down Expand Up @@ -12429,6 +12424,11 @@ export interface components {
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
type: string;
/**
* UUID
* @description The UUID (Universally Unique Identifier) of the step.
Expand Down Expand Up @@ -12632,11 +12632,6 @@ export interface components {
* @description A dictionary of post-job actions for the step.
*/
post_job_actions?: Record<string, never> | Record<string, never>[] | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
step_type: components["schemas"]["WorkflowModuleType"];
/**
* Tool ID
* @description The tool ID associated with the step.
Expand All @@ -12652,6 +12647,11 @@ export interface components {
* @description The version of the tool associated with the step.
*/
tool_version?: string | null;
/**
* Type
* @description The type of the module that represents a step in the workflow.
*/
type: string;
/**
* When
* @description The when expression for the step.
Expand Down Expand Up @@ -12739,7 +12739,7 @@ export interface components {
*/
step_index: number;
/**
* Label
* Step Label
* @description The label of the step.
*/
step_label?: string | null;
Expand All @@ -12749,10 +12749,10 @@ export interface components {
*/
step_name: string;
/**
* Type
* @description The type of the module that represents a step in the workflow.
* Step Type
* @description The type of the step.
*/
step_type: components["schemas"]["WorkflowModuleType"];
step_type: string;
/**
* Step Version
* @description The version of the step's module.
Expand Down

0 comments on commit 29adbd3

Please sign in to comment.