cyberdesk 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/types.gen.d.ts +12 -0
- package/package.json +1 -1
|
@@ -270,6 +270,10 @@ export type ValidationError = {
|
|
|
270
270
|
export type WorkflowCreate = {
|
|
271
271
|
name?: string | null;
|
|
272
272
|
main_prompt: string;
|
|
273
|
+
/**
|
|
274
|
+
* JSON schema for output data transformation
|
|
275
|
+
*/
|
|
276
|
+
output_schema?: string | null;
|
|
273
277
|
};
|
|
274
278
|
/**
|
|
275
279
|
* Workflow response schema
|
|
@@ -277,6 +281,10 @@ export type WorkflowCreate = {
|
|
|
277
281
|
export type WorkflowResponse = {
|
|
278
282
|
name?: string | null;
|
|
279
283
|
main_prompt: string;
|
|
284
|
+
/**
|
|
285
|
+
* JSON schema for output data transformation
|
|
286
|
+
*/
|
|
287
|
+
output_schema?: string | null;
|
|
280
288
|
id: string;
|
|
281
289
|
user_id: string;
|
|
282
290
|
old_versions?: Array<{
|
|
@@ -291,6 +299,10 @@ export type WorkflowResponse = {
|
|
|
291
299
|
export type WorkflowUpdate = {
|
|
292
300
|
name?: string | null;
|
|
293
301
|
main_prompt?: string | null;
|
|
302
|
+
/**
|
|
303
|
+
* JSON schema for output data transformation
|
|
304
|
+
*/
|
|
305
|
+
output_schema?: string | null;
|
|
294
306
|
};
|
|
295
307
|
export type HealthCheckV1HealthGetData = {
|
|
296
308
|
body?: never;
|