cyberdesk 2.2.1 → 2.2.3

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.
@@ -501,10 +501,10 @@ export type RunBulkCreate = {
501
501
  */
502
502
  count: number;
503
503
  /**
504
- * Sensitive input values to store in the secure vault per run. Not persisted in our database.
504
+ * Sensitive input values (supports nested objects) to store in the secure vault per run. Not persisted in our database.
505
505
  */
506
506
  sensitive_input_values?: {
507
- [key: string]: string;
507
+ [key: string]: unknown;
508
508
  } | null;
509
509
  /**
510
510
  * Join an existing session; overrides machine_id/pool_ids for all runs
@@ -568,10 +568,10 @@ export type RunCreate = {
568
568
  */
569
569
  file_inputs?: Array<FileInput> | null;
570
570
  /**
571
- * Sensitive input values. These are not stored and will be written to a secure vault and referenced by alias only.
571
+ * Sensitive input values (supports nested objects). These are not stored and will be written to a secure vault and referenced by alias only.
572
572
  */
573
573
  sensitive_input_values?: {
574
- [key: string]: string;
574
+ [key: string]: unknown;
575
575
  } | null;
576
576
  /**
577
577
  * Join an existing session; overrides machine_id/pool_ids
@@ -652,10 +652,10 @@ export type RunRetry = {
652
652
  [key: string]: unknown;
653
653
  } | null;
654
654
  /**
655
- * Provide new sensitive inputs; stored in vault and mapped to aliases
655
+ * Provide new sensitive inputs (supports nested objects); stored in vault and mapped to aliases
656
656
  */
657
657
  sensitive_input_values?: {
658
- [key: string]: string;
658
+ [key: string]: unknown;
659
659
  } | null;
660
660
  /**
661
661
  * Provide new input files for this retry; replaces existing input attachments
@@ -699,17 +699,11 @@ export type RunUpdate = {
699
699
  input_values?: {
700
700
  [key: string]: unknown;
701
701
  } | null;
702
- /**
703
- * Arbitrary usage/billing metadata captured during a run (schema is flexible)
704
- */
705
702
  usage_metadata?: {
706
703
  [key: string]: unknown;
707
704
  } | null;
708
705
  started_at?: string | null;
709
706
  ended_at?: string | null;
710
- /**
711
- * Set to True to indicate this run released the session
712
- */
713
707
  release_session_after?: boolean | null;
714
708
  };
715
709
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",