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 May 30, 2024
1 parent 2d11ee8 commit decf8a3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25359,7 +25359,14 @@ export interface operations {
/** @description Successful Response */
200: {
content: {
"application/json": Record<string, never>;
"application/json":
| components["schemas"]["WorkflowDictEditorSummary"]
| components["schemas"]["StoredWorkflowDetailed"]
| components["schemas"]["WorkflowDictRunSummary"]
| components["schemas"]["WorkflowDictPreviewSummary"]
| components["schemas"]["WorkflowDictFormat2Summary"]
| components["schemas"]["WorkflowDictExportSummary"]
| components["schemas"]["WorkflowDictFormat2WrappedYamlSummary"];
};
};
/** @description Validation Error */
Expand Down Expand Up @@ -25392,14 +25399,7 @@ export interface operations {
/** @description Successful Response */
200: {
content: {
"application/json":
| components["schemas"]["WorkflowDictEditorSummary"]
| components["schemas"]["StoredWorkflowDetailed"]
| components["schemas"]["WorkflowDictRunSummary"]
| components["schemas"]["WorkflowDictPreviewSummary"]
| components["schemas"]["WorkflowDictFormat2Summary"]
| components["schemas"]["WorkflowDictExportSummary"]
| components["schemas"]["WorkflowDictFormat2WrappedYamlSummary"];
"application/json": Record<string, never>;
};
};
/** @description Validation Error */
Expand Down Expand Up @@ -25488,14 +25488,7 @@ export interface operations {
/** @description Successful Response */
200: {
content: {
"application/json":
| components["schemas"]["WorkflowDictEditorSummary"]
| components["schemas"]["StoredWorkflowDetailed"]
| components["schemas"]["WorkflowDictRunSummary"]
| components["schemas"]["WorkflowDictPreviewSummary"]
| components["schemas"]["WorkflowDictFormat2Summary"]
| components["schemas"]["WorkflowDictExportSummary"]
| components["schemas"]["WorkflowDictFormat2WrappedYamlSummary"];
"application/json": Record<string, never>;
};
};
/** @description Validation Error */
Expand Down Expand Up @@ -25594,7 +25587,14 @@ export interface operations {
/** @description Successful Response */
200: {
content: {
"application/json": Record<string, never>;
"application/json":
| components["schemas"]["WorkflowDictEditorSummary"]
| components["schemas"]["StoredWorkflowDetailed"]
| components["schemas"]["WorkflowDictRunSummary"]
| components["schemas"]["WorkflowDictPreviewSummary"]
| components["schemas"]["WorkflowDictFormat2Summary"]
| components["schemas"]["WorkflowDictExportSummary"]
| components["schemas"]["WorkflowDictFormat2WrappedYamlSummary"];
};
};
/** @description Validation Error */
Expand Down

0 comments on commit decf8a3

Please sign in to comment.