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 14, 2024
1 parent c5655a5 commit 6630653
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,6 @@ export interface paths {
* query. If neither a workflow_id or history_id is supplied, all the current user's
* workflow invocations will be indexed (as determined by the invocation being
* executed on one of the user's histories)
* :raises: exceptions.MessageException, exceptions.ObjectNotFound
*/
get: operations["index_invocations_api_invocations_get"];
};
Expand Down Expand Up @@ -3047,7 +3046,11 @@ export interface components {
};
/** CreateInvocationsFromStorePayload */
CreateInvocationsFromStorePayload: {
/** History ID */
/**
* History ID
* @description The ID of the history associated with the invocations.
* @example 0123456789ABCDEF
*/
history_id: string;
/**
* Legacy Job State
Expand Down Expand Up @@ -3075,7 +3078,6 @@ export interface components {
* @description The name of the view used to serialize this item. This will return a predefined set of attributes of the item.
*/
view?: components["schemas"]["InvocationSerializationView"] | null;
[key: string]: unknown | undefined;
};
/** CreateLibrariesFromStore */
CreateLibrariesFromStore: {
Expand Down Expand Up @@ -16446,7 +16448,6 @@ export interface operations {
* query. If neither a workflow_id or history_id is supplied, all the current user's
* workflow invocations will be indexed (as determined by the invocation being
* executed on one of the user's histories)
* :raises: exceptions.MessageException, exceptions.ObjectNotFound
*/
parameters?: {
/** @description Return only invocations for this Workflow ID */
Expand Down

0 comments on commit 6630653

Please sign in to comment.