Skip to content

Commit

Permalink
Regenerate cient schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Jan 6, 2024
1 parent 4599b59 commit ebd3e71
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7088,6 +7088,12 @@ export interface components {
* @enum {string}
*/
InvocationSerializationView: "element" | "collection";
/**
* InvocationSortByEnum
* @description An enumeration.
* @enum {string}
*/
InvocationSortByEnum: "create_time" | "update_time" | "None";
/**
* InvocationState
* @description An enumeration.
Expand Down Expand Up @@ -16715,6 +16721,11 @@ export interface operations {
history_id?: string;
job_id?: string;
user_id?: string;
sort_by?: components["schemas"]["InvocationSortByEnum"];
sort_desc?: boolean;
include_terminal?: boolean;
limit?: number;
offset?: number;
instance?: boolean;
view?: components["schemas"]["InvocationSerializationView"];
step_details?: boolean;
Expand Down Expand Up @@ -21773,6 +21784,11 @@ export interface operations {
history_id?: string;
job_id?: string;
user_id?: string;
sort_by?: components["schemas"]["InvocationSortByEnum"];
sort_desc?: boolean;
include_terminal?: boolean;
limit?: number;
offset?: number;
instance?: boolean;
view?: components["schemas"]["InvocationSerializationView"];
step_details?: boolean;
Expand Down

0 comments on commit ebd3e71

Please sign in to comment.