update schema

This commit is contained in:
Mary Hipp
2025-02-24 20:05:21 -05:00
committed by psychedelicious
parent b0593eda92
commit a409aec00f

View File

@@ -1417,7 +1417,11 @@ export type paths = {
path?: never;
cookie?: never;
};
get?: never;
/**
* Get Workflow Thumbnail
* @description Gets a workflow's thumbnail image
*/
get: operations["get_workflow_thumbnail"];
/**
* Set Workflow Thumbnail
* @description Sets a workflow's thumbnail image
@@ -24315,6 +24319,52 @@ export interface operations {
};
};
};
get_workflow_thumbnail: {
parameters: {
query?: never;
header?: never;
path: {
/** @description The id of the workflow thumbnail to get */
workflow_id: string;
};
cookie?: never;
};
requestBody?: never;
responses: {
/** @description The workflow thumbnail was fetched successfully */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": unknown;
};
};
/** @description Bad request */
400: {
headers: {
[name: string]: unknown;
};
content?: never;
};
/** @description The workflow thumbnail could not be found */
404: {
headers: {
[name: string]: unknown;
};
content?: never;
};
/** @description Validation Error */
422: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
set_workflow_thumbnail: {
parameters: {
query?: never;