@dynamic-labs/sdk-api-core 0.0.721 → 0.0.723
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
|
@@ -19,7 +19,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
19
|
'onSignUp': ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpFromJSON(json['onSignUp']),
|
|
20
20
|
'backupOptions': (json['backupOptions'].map(WaasBackupOptionsEnum.WaasBackupOptionsEnumFromJSON)),
|
|
21
21
|
'relayUrl': !runtime.exists(json, 'relayUrl') ? undefined : json['relayUrl'],
|
|
22
|
-
'
|
|
22
|
+
'delegatedAccessEndpoint': !runtime.exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
|
|
23
23
|
};
|
|
24
24
|
}
|
|
25
25
|
function ProjectSettingsSdkWaasToJSON(value) {
|
|
@@ -34,7 +34,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
|
|
|
34
34
|
'onSignUp': ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpToJSON(value.onSignUp),
|
|
35
35
|
'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnum.WaasBackupOptionsEnumToJSON)),
|
|
36
36
|
'relayUrl': value.relayUrl,
|
|
37
|
-
'
|
|
37
|
+
'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
|
|
38
38
|
};
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -42,11 +42,11 @@ export interface ProjectSettingsSdkWaas {
|
|
|
42
42
|
*/
|
|
43
43
|
relayUrl?: string;
|
|
44
44
|
/**
|
|
45
|
-
* The URL of the
|
|
45
|
+
* The URL of the delegated access endpoint for WAAS. If not provided, no delegated access endpoint will be used.
|
|
46
46
|
* @type {string}
|
|
47
47
|
* @memberof ProjectSettingsSdkWaas
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
delegatedAccessEndpoint?: string;
|
|
50
50
|
}
|
|
51
51
|
export declare function ProjectSettingsSdkWaasFromJSON(json: any): ProjectSettingsSdkWaas;
|
|
52
52
|
export declare function ProjectSettingsSdkWaasFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWaas;
|
|
@@ -15,7 +15,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
15
15
|
'onSignUp': ProjectSettingsSdkWaasOnSignUpFromJSON(json['onSignUp']),
|
|
16
16
|
'backupOptions': (json['backupOptions'].map(WaasBackupOptionsEnumFromJSON)),
|
|
17
17
|
'relayUrl': !exists(json, 'relayUrl') ? undefined : json['relayUrl'],
|
|
18
|
-
'
|
|
18
|
+
'delegatedAccessEndpoint': !exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
21
|
function ProjectSettingsSdkWaasToJSON(value) {
|
|
@@ -30,7 +30,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
|
|
|
30
30
|
'onSignUp': ProjectSettingsSdkWaasOnSignUpToJSON(value.onSignUp),
|
|
31
31
|
'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnumToJSON)),
|
|
32
32
|
'relayUrl': value.relayUrl,
|
|
33
|
-
'
|
|
33
|
+
'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
|
|
34
34
|
};
|
|
35
35
|
}
|
|
36
36
|
|