@dynamic-labs/sdk-api 0.0.218 → 0.0.219

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",
3
- "version": "0.0.218",
3
+ "version": "0.0.219",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -23,6 +23,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
23
23
  'authorizationUrl': !runtime.exists(json, 'authorizationUrl') ? undefined : json['authorizationUrl'],
24
24
  'redirectUrl': !runtime.exists(json, 'redirectUrl') ? undefined : json['redirectUrl'],
25
25
  'defaultChainId': !runtime.exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
26
+ 'keyExportUrl': !runtime.exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
26
27
  };
27
28
  }
28
29
  function ProviderToJSON(value) {
@@ -42,6 +43,7 @@ function ProviderToJSON(value) {
42
43
  'authorizationUrl': value.authorizationUrl,
43
44
  'redirectUrl': value.redirectUrl,
44
45
  'defaultChainId': value.defaultChainId,
46
+ 'keyExportUrl': value.keyExportUrl,
45
47
  };
46
48
  }
47
49
 
@@ -70,6 +70,12 @@ export interface Provider {
70
70
  * @memberof Provider
71
71
  */
72
72
  defaultChainId?: number;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof Provider
77
+ */
78
+ keyExportUrl?: string;
73
79
  }
74
80
  export declare function ProviderFromJSON(json: any): Provider;
75
81
  export declare function ProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Provider;
@@ -19,6 +19,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
19
19
  'authorizationUrl': !exists(json, 'authorizationUrl') ? undefined : json['authorizationUrl'],
20
20
  'redirectUrl': !exists(json, 'redirectUrl') ? undefined : json['redirectUrl'],
21
21
  'defaultChainId': !exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
22
+ 'keyExportUrl': !exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
22
23
  };
23
24
  }
24
25
  function ProviderToJSON(value) {
@@ -38,6 +39,7 @@ function ProviderToJSON(value) {
38
39
  'authorizationUrl': value.authorizationUrl,
39
40
  'redirectUrl': value.redirectUrl,
40
41
  'defaultChainId': value.defaultChainId,
42
+ 'keyExportUrl': value.keyExportUrl,
41
43
  };
42
44
  }
43
45
 
@@ -19,6 +19,7 @@ function ProviderCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
19
19
  'clientSecret': !runtime.exists(json, 'clientSecret') ? undefined : json['clientSecret'],
20
20
  'providerProjectId': !runtime.exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
21
21
  'defaultChainId': !runtime.exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
22
+ 'keyExportUrl': !runtime.exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
22
23
  };
23
24
  }
24
25
  function ProviderCreateRequestToJSON(value) {
@@ -34,6 +35,7 @@ function ProviderCreateRequestToJSON(value) {
34
35
  'clientSecret': value.clientSecret,
35
36
  'providerProjectId': value.providerProjectId,
36
37
  'defaultChainId': value.defaultChainId,
38
+ 'keyExportUrl': value.keyExportUrl,
37
39
  };
38
40
  }
39
41
 
@@ -46,6 +46,12 @@ export interface ProviderCreateRequest {
46
46
  * @memberof ProviderCreateRequest
47
47
  */
48
48
  defaultChainId?: number;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof ProviderCreateRequest
53
+ */
54
+ keyExportUrl?: string;
49
55
  }
50
56
  export declare function ProviderCreateRequestFromJSON(json: any): ProviderCreateRequest;
51
57
  export declare function ProviderCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProviderCreateRequest;
@@ -15,6 +15,7 @@ function ProviderCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
15
15
  'clientSecret': !exists(json, 'clientSecret') ? undefined : json['clientSecret'],
16
16
  'providerProjectId': !exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
17
17
  'defaultChainId': !exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
18
+ 'keyExportUrl': !exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
18
19
  };
19
20
  }
20
21
  function ProviderCreateRequestToJSON(value) {
@@ -30,6 +31,7 @@ function ProviderCreateRequestToJSON(value) {
30
31
  'clientSecret': value.clientSecret,
31
32
  'providerProjectId': value.providerProjectId,
32
33
  'defaultChainId': value.defaultChainId,
34
+ 'keyExportUrl': value.keyExportUrl,
33
35
  };
34
36
  }
35
37
 
@@ -17,6 +17,7 @@ function ProviderUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
17
17
  'clientSecret': !runtime.exists(json, 'clientSecret') ? undefined : json['clientSecret'],
18
18
  'providerProjectId': !runtime.exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
19
19
  'defaultChainId': !runtime.exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
20
+ 'keyExportUrl': !runtime.exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
20
21
  };
21
22
  }
22
23
  function ProviderUpdateRequestToJSON(value) {
@@ -31,6 +32,7 @@ function ProviderUpdateRequestToJSON(value) {
31
32
  'clientSecret': value.clientSecret,
32
33
  'providerProjectId': value.providerProjectId,
33
34
  'defaultChainId': value.defaultChainId,
35
+ 'keyExportUrl': value.keyExportUrl,
34
36
  };
35
37
  }
36
38
 
@@ -39,6 +39,12 @@ export interface ProviderUpdateRequest {
39
39
  * @memberof ProviderUpdateRequest
40
40
  */
41
41
  defaultChainId?: number;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ProviderUpdateRequest
46
+ */
47
+ keyExportUrl?: string;
42
48
  }
43
49
  export declare function ProviderUpdateRequestFromJSON(json: any): ProviderUpdateRequest;
44
50
  export declare function ProviderUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProviderUpdateRequest;
@@ -13,6 +13,7 @@ function ProviderUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
13
13
  'clientSecret': !exists(json, 'clientSecret') ? undefined : json['clientSecret'],
14
14
  'providerProjectId': !exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
15
15
  'defaultChainId': !exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
16
+ 'keyExportUrl': !exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
16
17
  };
17
18
  }
18
19
  function ProviderUpdateRequestToJSON(value) {
@@ -27,6 +28,7 @@ function ProviderUpdateRequestToJSON(value) {
27
28
  'clientSecret': value.clientSecret,
28
29
  'providerProjectId': value.providerProjectId,
29
30
  'defaultChainId': value.defaultChainId,
31
+ 'keyExportUrl': value.keyExportUrl,
30
32
  };
31
33
  }
32
34