cyberdesk 2.2.24 → 2.2.25
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
|
@@ -1152,6 +1152,10 @@ export type WorkflowChainResponse = {
|
|
|
1152
1152
|
export type WorkflowCreate = {
|
|
1153
1153
|
name?: string | null;
|
|
1154
1154
|
main_prompt: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* JSON schema for validating merged run inputs
|
|
1157
|
+
*/
|
|
1158
|
+
input_schema?: string | null;
|
|
1155
1159
|
/**
|
|
1156
1160
|
* JSON schema for output data transformation
|
|
1157
1161
|
*/
|
|
@@ -1275,6 +1279,10 @@ export type WorkflowPromptImageSignedUrlResponse = {
|
|
|
1275
1279
|
export type WorkflowResponse = {
|
|
1276
1280
|
name?: string | null;
|
|
1277
1281
|
main_prompt: string;
|
|
1282
|
+
/**
|
|
1283
|
+
* JSON schema for validating merged run inputs
|
|
1284
|
+
*/
|
|
1285
|
+
input_schema?: string | null;
|
|
1278
1286
|
/**
|
|
1279
1287
|
* JSON schema for output data transformation
|
|
1280
1288
|
*/
|
|
@@ -1400,6 +1408,10 @@ export type WorkflowTagUpdate = {
|
|
|
1400
1408
|
export type WorkflowUpdate = {
|
|
1401
1409
|
name?: string | null;
|
|
1402
1410
|
main_prompt?: string | null;
|
|
1411
|
+
/**
|
|
1412
|
+
* JSON schema for validating merged run inputs
|
|
1413
|
+
*/
|
|
1414
|
+
input_schema?: string | null;
|
|
1403
1415
|
/**
|
|
1404
1416
|
* JSON schema for output data transformation
|
|
1405
1417
|
*/
|