cyberdesk 2.1.12 → 2.1.13

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.
@@ -540,16 +540,16 @@ export type RunResponse = {
540
540
  user_id?: string | null;
541
541
  organization_id?: string | null;
542
542
  status: RunStatus;
543
- error: Array<string> | null;
544
- output_data: {
543
+ error?: Array<string> | null;
544
+ output_data?: {
545
545
  [key: string]: unknown;
546
546
  } | null;
547
- input_attachment_ids: Array<string> | null;
548
- output_attachment_ids: Array<string> | null;
549
- run_message_history: Array<{
547
+ input_attachment_ids?: Array<string> | null;
548
+ output_attachment_ids?: Array<string> | null;
549
+ run_message_history?: Array<{
550
550
  [key: string]: unknown;
551
551
  }> | null;
552
- input_values: {
552
+ input_values?: {
553
553
  [key: string]: unknown;
554
554
  } | null;
555
555
  pool_ids?: Array<string> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.1.12",
3
+ "version": "2.1.13",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",