You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/sdk/src/lib/types/coreTypes.ts
+1-12Lines changed: 1 addition & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -40,8 +40,7 @@ export type ProtectDataStatuses =
40
40
|'ENCRYPT_FILE'
41
41
|'UPLOAD_ENCRYPTED_FILE'
42
42
|'DEPLOY_PROTECTED_DATA'
43
-
|'PUSH_SECRET_TO_SMS'
44
-
|'PUSH_SECRET_TO_DEBUG_SMS';
43
+
|'PUSH_SECRET_TO_SMS';
45
44
46
45
exporttypeOneProtectDataStatus={
47
46
title: ProtectDataStatuses;
@@ -62,16 +61,6 @@ export type ProtectDataParams = {
62
61
*/
63
62
name?: string;
64
63
65
-
/**
66
-
* allow to use the protected data in TEE debug apps (default `false`)
67
-
*
68
-
* ⚠️ TEE debug apps runs in enclave simulation mode which does not prevent the worker host to inspect data or temper the app output.
69
-
* You should never set this parameter to `true` with real data, use it for development purpose only.
70
-
*
71
-
* setting this parameter to `true` adds a signature request to the protectData workflow, this signature is used to push the protected data encryption key to the debug Secret Management System
72
-
*/
73
-
allowDebug?: boolean;
74
-
75
64
/**
76
65
* specify the platform used for storing the encrypted payload of the protected data
0 commit comments