@dynamic-labs/sdk-api-core 0.0.718 → 0.0.719

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.718",
3
+ "version": "0.0.719",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -19,6 +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
+ 'verifiedAccessEndpoint': !runtime.exists(json, 'verifiedAccessEndpoint') ? undefined : json['verifiedAccessEndpoint'],
22
23
  };
23
24
  }
24
25
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -33,6 +34,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
33
34
  'onSignUp': ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpToJSON(value.onSignUp),
34
35
  'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnum.WaasBackupOptionsEnumToJSON)),
35
36
  'relayUrl': value.relayUrl,
37
+ 'verifiedAccessEndpoint': value.verifiedAccessEndpoint,
36
38
  };
37
39
  }
38
40
 
@@ -41,6 +41,12 @@ export interface ProjectSettingsSdkWaas {
41
41
  * @memberof ProjectSettingsSdkWaas
42
42
  */
43
43
  relayUrl?: string;
44
+ /**
45
+ * The URL of the verified access endpoint for WAAS. If not provided, no verified access endpoint will be used.
46
+ * @type {string}
47
+ * @memberof ProjectSettingsSdkWaas
48
+ */
49
+ verifiedAccessEndpoint?: string;
44
50
  }
45
51
  export declare function ProjectSettingsSdkWaasFromJSON(json: any): ProjectSettingsSdkWaas;
46
52
  export declare function ProjectSettingsSdkWaasFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWaas;
@@ -15,6 +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
+ 'verifiedAccessEndpoint': !exists(json, 'verifiedAccessEndpoint') ? undefined : json['verifiedAccessEndpoint'],
18
19
  };
19
20
  }
20
21
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -29,6 +30,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
29
30
  'onSignUp': ProjectSettingsSdkWaasOnSignUpToJSON(value.onSignUp),
30
31
  'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnumToJSON)),
31
32
  'relayUrl': value.relayUrl,
33
+ 'verifiedAccessEndpoint': value.verifiedAccessEndpoint,
32
34
  };
33
35
  }
34
36