cyberdesk 2.2.2 → 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]:
|
|
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]:
|
|
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]:
|
|
658
|
+
[key: string]: unknown;
|
|
659
659
|
} | null;
|
|
660
660
|
/**
|
|
661
661
|
* Provide new input files for this retry; replaces existing input attachments
|