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 Jun 14, 2024
1 parent fb8a363 commit aa95902
Showing 1 changed file with 85 additions and 10 deletions.
95 changes: 85 additions & 10 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13345,7 +13345,22 @@ export interface components {
* Errors
* @description An message indicating possible errors in the step.
*/
errors?: string[] | string | Record<string, never> | null;
errors?:
| {
[key: string]:
| (
| (
| "The number of repeat elements is outside the range specified by the tool."
| "The selected case is unavailable/invalid."
)
| string
)
| undefined;
}
| "Tool is not installed"
| string
| ("Tool is not installed" | string)[]
| null;
/**
* ID
* @description The identifier of the step. It matches the index order of the step inside the workflow.
Expand Down Expand Up @@ -13407,7 +13422,7 @@ export interface components {
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
Expand Down Expand Up @@ -13514,7 +13529,22 @@ export interface components {
* Errors
* @description An message indicating possible errors in the step.
*/
errors?: string[] | string | Record<string, never> | null;
errors?:
| {
[key: string]:
| (
| (
| "The number of repeat elements is outside the range specified by the tool."
| "The selected case is unavailable/invalid."
)
| string
)
| undefined;
}
| "Tool is not installed"
| string
| ("Tool is not installed" | string)[]
| null;
/**
* ID
* @description The identifier of the step. It matches the index order of the step inside the workflow.
Expand Down Expand Up @@ -13595,7 +13625,7 @@ export interface components {
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
Expand Down Expand Up @@ -13803,7 +13833,22 @@ export interface components {
* Errors
* @description An message indicating possible errors in the step.
*/
errors?: string[] | string | Record<string, never> | null;
errors?:
| {
[key: string]:
| (
| (
| "The number of repeat elements is outside the range specified by the tool."
| "The selected case is unavailable/invalid."
)
| string
)
| undefined;
}
| "Tool is not installed"
| string
| ("Tool is not installed" | string)[]
| null;
/**
* Inputs
* @description The inputs of the step.
Expand Down Expand Up @@ -13848,7 +13893,7 @@ export interface components {
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
Expand Down Expand Up @@ -13904,7 +13949,22 @@ export interface components {
* Errors
* @description An message indicating possible errors in the step.
*/
errors?: string[] | string | Record<string, never> | null;
errors?:
| {
[key: string]:
| (
| (
| "The number of repeat elements is outside the range specified by the tool."
| "The selected case is unavailable/invalid."
)
| string
)
| undefined;
}
| "Tool is not installed"
| string
| ("Tool is not installed" | string)[]
| null;
/**
* Inputs
* @description The inputs of the step.
Expand Down Expand Up @@ -13979,7 +14039,7 @@ export interface components {
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
Expand Down Expand Up @@ -14095,7 +14155,22 @@ export interface components {
* Errors
* @description An message indicating possible errors in the step.
*/
errors?: string[] | string | Record<string, never> | null;
errors?:
| {
[key: string]:
| (
| (
| "The number of repeat elements is outside the range specified by the tool."
| "The selected case is unavailable/invalid."
)
| string
)
| undefined;
}
| "Tool is not installed"
| string
| ("Tool is not installed" | string)[]
| null;
/**
* Form Style
* @description The form style of the tool step.
Expand Down Expand Up @@ -14292,7 +14367,7 @@ export interface components {
* Tool State
* @description The state of the tool associated with the step
*/
tool_state?: Record<string, never> | null;
tool_state?: Record<string, never> | string | null;
/**
* Tool Version
* @description The version of the tool associated with the step.
Expand Down

0 comments on commit aa95902

Please sign in to comment.