cyberdesk 2.2.25 → 2.2.26
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.
|
@@ -732,7 +732,7 @@ export type RunBulkCreate = {
|
|
|
732
732
|
*/
|
|
733
733
|
count: number;
|
|
734
734
|
/**
|
|
735
|
-
* Sensitive input values (supports nested objects) to store in the secure vault per run. Not persisted in our database.
|
|
735
|
+
* Sensitive input values (supports nested objects) to store in the secure vault per run. Not persisted in our database. In workflow input_schema, sensitive root keys are validated under a '$' prefixed key.
|
|
736
736
|
*/
|
|
737
737
|
sensitive_input_values?: {
|
|
738
738
|
[key: string]: unknown;
|
|
@@ -799,7 +799,7 @@ export type RunCreate = {
|
|
|
799
799
|
*/
|
|
800
800
|
file_inputs?: Array<FileInput> | null;
|
|
801
801
|
/**
|
|
802
|
-
* Sensitive input values (supports nested objects). These are not stored and will be written to a secure vault and referenced by alias only.
|
|
802
|
+
* Sensitive input values (supports nested objects). These are not stored and will be written to a secure vault and referenced by alias only. In workflow input_schema, sensitive root keys are validated under a '$' prefixed key (for example input key 'api_key' is '$api_key').
|
|
803
803
|
*/
|
|
804
804
|
sensitive_input_values?: {
|
|
805
805
|
[key: string]: unknown;
|
|
@@ -1153,7 +1153,7 @@ export type WorkflowCreate = {
|
|
|
1153
1153
|
name?: string | null;
|
|
1154
1154
|
main_prompt: string;
|
|
1155
1155
|
/**
|
|
1156
|
-
* JSON schema for validating merged run inputs
|
|
1156
|
+
* JSON schema for validating merged run inputs. Sensitive root keys are exposed with a '$' prefix in schema validation (for example sensitive_input_values.api_key -> '$api_key').
|
|
1157
1157
|
*/
|
|
1158
1158
|
input_schema?: string | null;
|
|
1159
1159
|
/**
|
|
@@ -1280,7 +1280,7 @@ export type WorkflowResponse = {
|
|
|
1280
1280
|
name?: string | null;
|
|
1281
1281
|
main_prompt: string;
|
|
1282
1282
|
/**
|
|
1283
|
-
* JSON schema for validating merged run inputs
|
|
1283
|
+
* JSON schema for validating merged run inputs. Sensitive root keys are exposed with a '$' prefix in schema validation (for example sensitive_input_values.api_key -> '$api_key').
|
|
1284
1284
|
*/
|
|
1285
1285
|
input_schema?: string | null;
|
|
1286
1286
|
/**
|
|
@@ -1409,7 +1409,7 @@ export type WorkflowUpdate = {
|
|
|
1409
1409
|
name?: string | null;
|
|
1410
1410
|
main_prompt?: string | null;
|
|
1411
1411
|
/**
|
|
1412
|
-
* JSON schema for validating merged run inputs
|
|
1412
|
+
* JSON schema for validating merged run inputs. Sensitive root keys are exposed with a '$' prefix in schema validation (for example sensitive_input_values.api_key -> '$api_key').
|
|
1413
1413
|
*/
|
|
1414
1414
|
input_schema?: string | null;
|
|
1415
1415
|
/**
|