cyberdesk 1.4.1 → 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.
@@ -225,6 +225,12 @@ export type TrajectoryCreate = {
225
225
  trajectory_data: Array<{
226
226
  [key: string]: unknown;
227
227
  }>;
228
+ /**
229
+ * Display dimensions when trajectory was recorded
230
+ */
231
+ dimensions: {
232
+ [key: string]: number;
233
+ };
228
234
  };
229
235
  /**
230
236
  * Trajectory response schema
@@ -234,6 +240,12 @@ export type TrajectoryResponse = {
234
240
  trajectory_data: Array<{
235
241
  [key: string]: unknown;
236
242
  }>;
243
+ /**
244
+ * Display dimensions when trajectory was recorded
245
+ */
246
+ dimensions: {
247
+ [key: string]: number;
248
+ };
237
249
  id: string;
238
250
  user_id: string;
239
251
  created_at: string;
@@ -258,6 +270,10 @@ export type ValidationError = {
258
270
  export type WorkflowCreate = {
259
271
  name?: string | null;
260
272
  main_prompt: string;
273
+ /**
274
+ * JSON schema for output data transformation
275
+ */
276
+ output_schema?: string | null;
261
277
  };
262
278
  /**
263
279
  * Workflow response schema
@@ -265,6 +281,10 @@ export type WorkflowCreate = {
265
281
  export type WorkflowResponse = {
266
282
  name?: string | null;
267
283
  main_prompt: string;
284
+ /**
285
+ * JSON schema for output data transformation
286
+ */
287
+ output_schema?: string | null;
268
288
  id: string;
269
289
  user_id: string;
270
290
  old_versions?: Array<{
@@ -279,6 +299,10 @@ export type WorkflowResponse = {
279
299
  export type WorkflowUpdate = {
280
300
  name?: string | null;
281
301
  main_prompt?: string | null;
302
+ /**
303
+ * JSON schema for output data transformation
304
+ */
305
+ output_schema?: string | null;
282
306
  };
283
307
  export type HealthCheckV1HealthGetData = {
284
308
  body?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "1.4.1",
3
+ "version": "1.6.0",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",