@dynamic-labs/sdk-api 0.0.856 → 0.0.857
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.
package/package.json
CHANGED
|
@@ -23,6 +23,7 @@ function ProjectSettingsSecurityFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
'mfa': !runtime.exists(json, 'mfa') ? undefined : MFASettings.MFASettingsFromJSON(json['mfa']),
|
|
24
24
|
'auth': !runtime.exists(json, 'auth') ? undefined : AuthSettings.AuthSettingsFromJSON(json['auth']),
|
|
25
25
|
'externalAuth': !runtime.exists(json, 'externalAuth') ? undefined : ExternalAuth.ExternalAuthFromJSON(json['externalAuth']),
|
|
26
|
+
'environmentLocked': !runtime.exists(json, 'environmentLocked') ? undefined : json['environmentLocked'],
|
|
26
27
|
};
|
|
27
28
|
}
|
|
28
29
|
function ProjectSettingsSecurityToJSON(value) {
|
|
@@ -38,6 +39,7 @@ function ProjectSettingsSecurityToJSON(value) {
|
|
|
38
39
|
'mfa': MFASettings.MFASettingsToJSON(value.mfa),
|
|
39
40
|
'auth': AuthSettings.AuthSettingsToJSON(value.auth),
|
|
40
41
|
'externalAuth': ExternalAuth.ExternalAuthToJSON(value.externalAuth),
|
|
42
|
+
'environmentLocked': value.environmentLocked,
|
|
41
43
|
};
|
|
42
44
|
}
|
|
43
45
|
|
|
@@ -50,6 +50,12 @@ export interface ProjectSettingsSecurity {
|
|
|
50
50
|
* @memberof ProjectSettingsSecurity
|
|
51
51
|
*/
|
|
52
52
|
externalAuth?: ExternalAuth;
|
|
53
|
+
/**
|
|
54
|
+
* When enabled, all SDK requests to this environment will be blocked.
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof ProjectSettingsSecurity
|
|
57
|
+
*/
|
|
58
|
+
environmentLocked?: boolean;
|
|
53
59
|
}
|
|
54
60
|
export declare function ProjectSettingsSecurityFromJSON(json: any): ProjectSettingsSecurity;
|
|
55
61
|
export declare function ProjectSettingsSecurityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSecurity;
|
|
@@ -19,6 +19,7 @@ function ProjectSettingsSecurityFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
19
|
'mfa': !exists(json, 'mfa') ? undefined : MFASettingsFromJSON(json['mfa']),
|
|
20
20
|
'auth': !exists(json, 'auth') ? undefined : AuthSettingsFromJSON(json['auth']),
|
|
21
21
|
'externalAuth': !exists(json, 'externalAuth') ? undefined : ExternalAuthFromJSON(json['externalAuth']),
|
|
22
|
+
'environmentLocked': !exists(json, 'environmentLocked') ? undefined : json['environmentLocked'],
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
25
|
function ProjectSettingsSecurityToJSON(value) {
|
|
@@ -34,6 +35,7 @@ function ProjectSettingsSecurityToJSON(value) {
|
|
|
34
35
|
'mfa': MFASettingsToJSON(value.mfa),
|
|
35
36
|
'auth': AuthSettingsToJSON(value.auth),
|
|
36
37
|
'externalAuth': ExternalAuthToJSON(value.externalAuth),
|
|
38
|
+
'environmentLocked': value.environmentLocked,
|
|
37
39
|
};
|
|
38
40
|
}
|
|
39
41
|
|