@dynamic-labs/sdk-api-core 0.0.823 → 0.0.824

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.823",
3
+ "version": "0.0.824",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -24,6 +24,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
24
24
  'delegatedAccessEndpoint': !runtime.exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
25
25
  'delegatedAccess': !runtime.exists(json, 'delegatedAccess') ? undefined : ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessFromJSON(json['delegatedAccess']),
26
26
  'enableForwardMPCClient': !runtime.exists(json, 'enableForwardMPCClient') ? undefined : json['enableForwardMPCClient'],
27
+ 'customKeyshareRelayBaseUrl': !runtime.exists(json, 'customKeyshareRelayBaseUrl') ? undefined : json['customKeyshareRelayBaseUrl'],
27
28
  };
28
29
  }
29
30
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -42,6 +43,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
42
43
  'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
43
44
  'delegatedAccess': ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessToJSON(value.delegatedAccess),
44
45
  'enableForwardMPCClient': value.enableForwardMPCClient,
46
+ 'customKeyshareRelayBaseUrl': value.customKeyshareRelayBaseUrl,
45
47
  };
46
48
  }
47
49
 
@@ -66,6 +66,12 @@ export interface ProjectSettingsSdkWaas {
66
66
  * @memberof ProjectSettingsSdkWaas
67
67
  */
68
68
  enableForwardMPCClient?: boolean;
69
+ /**
70
+ * When applicable, this is the custom base URL hostname to use for the WAAS keyshare backup relay. If not provided, the default will be used.
71
+ * @type {string}
72
+ * @memberof ProjectSettingsSdkWaas
73
+ */
74
+ customKeyshareRelayBaseUrl?: string;
69
75
  }
70
76
  export declare function ProjectSettingsSdkWaasFromJSON(json: any): ProjectSettingsSdkWaas;
71
77
  export declare function ProjectSettingsSdkWaasFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWaas;
@@ -20,6 +20,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
20
20
  'delegatedAccessEndpoint': !exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
21
21
  'delegatedAccess': !exists(json, 'delegatedAccess') ? undefined : ProjectSettingsSdkWaasDelegatedAccessFromJSON(json['delegatedAccess']),
22
22
  'enableForwardMPCClient': !exists(json, 'enableForwardMPCClient') ? undefined : json['enableForwardMPCClient'],
23
+ 'customKeyshareRelayBaseUrl': !exists(json, 'customKeyshareRelayBaseUrl') ? undefined : json['customKeyshareRelayBaseUrl'],
23
24
  };
24
25
  }
25
26
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -38,6 +39,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
38
39
  'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
39
40
  'delegatedAccess': ProjectSettingsSdkWaasDelegatedAccessToJSON(value.delegatedAccess),
40
41
  'enableForwardMPCClient': value.enableForwardMPCClient,
42
+ 'customKeyshareRelayBaseUrl': value.customKeyshareRelayBaseUrl,
41
43
  };
42
44
  }
43
45