cyberdesk 2.2.3 → 2.2.4
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.
|
@@ -15,10 +15,10 @@ export type ChainStep = {
|
|
|
15
15
|
[key: string]: string | RefValue;
|
|
16
16
|
} | null;
|
|
17
17
|
/**
|
|
18
|
-
* Step-specific sensitive inputs that override or extend shared_sensitive_inputs
|
|
18
|
+
* Step-specific sensitive inputs (supports nested objects) that override or extend shared_sensitive_inputs
|
|
19
19
|
*/
|
|
20
20
|
sensitive_inputs?: {
|
|
21
|
-
[key: string]:
|
|
21
|
+
[key: string]: unknown;
|
|
22
22
|
} | null;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
@@ -789,8 +789,11 @@ export type WorkflowChainCreate = {
|
|
|
789
789
|
shared_inputs?: {
|
|
790
790
|
[key: string]: unknown;
|
|
791
791
|
} | null;
|
|
792
|
+
/**
|
|
793
|
+
* Shared sensitive inputs (supports nested objects) for all steps
|
|
794
|
+
*/
|
|
792
795
|
shared_sensitive_inputs?: {
|
|
793
|
-
[key: string]:
|
|
796
|
+
[key: string]: unknown;
|
|
794
797
|
} | null;
|
|
795
798
|
shared_file_inputs?: Array<FileInput> | null;
|
|
796
799
|
keep_session_after_completion?: boolean | null;
|