@dynamic-labs/sdk-api 0.0.191 → 0.0.192

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.191",
3
+ "version": "0.0.192",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -25,6 +25,7 @@ function VerifyRequestFromJSONTyped(json, ignoreDiscriminator) {
25
25
  'walletProvider': WalletProviderEnum.WalletProviderEnumFromJSON(json['walletProvider']),
26
26
  'skipEmptyAccountCheck': !runtime.exists(json, 'skipEmptyAccountCheck') ? undefined : json['skipEmptyAccountCheck'],
27
27
  'captchaToken': !runtime.exists(json, 'captchaToken') ? undefined : json['captchaToken'],
28
+ 'network': !runtime.exists(json, 'network') ? undefined : json['network'],
28
29
  };
29
30
  }
30
31
  function VerifyRequestToJSON(value) {
@@ -44,6 +45,7 @@ function VerifyRequestToJSON(value) {
44
45
  'walletProvider': WalletProviderEnum.WalletProviderEnumToJSON(value.walletProvider),
45
46
  'skipEmptyAccountCheck': value.skipEmptyAccountCheck,
46
47
  'captchaToken': value.captchaToken,
48
+ 'network': value.network,
47
49
  };
48
50
  }
49
51
 
@@ -72,6 +72,12 @@ export interface VerifyRequest {
72
72
  * @memberof VerifyRequest
73
73
  */
74
74
  captchaToken?: string;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof VerifyRequest
79
+ */
80
+ network?: string;
75
81
  }
76
82
  export declare function VerifyRequestFromJSON(json: any): VerifyRequest;
77
83
  export declare function VerifyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyRequest;
@@ -21,6 +21,7 @@ function VerifyRequestFromJSONTyped(json, ignoreDiscriminator) {
21
21
  'walletProvider': WalletProviderEnumFromJSON(json['walletProvider']),
22
22
  'skipEmptyAccountCheck': !exists(json, 'skipEmptyAccountCheck') ? undefined : json['skipEmptyAccountCheck'],
23
23
  'captchaToken': !exists(json, 'captchaToken') ? undefined : json['captchaToken'],
24
+ 'network': !exists(json, 'network') ? undefined : json['network'],
24
25
  };
25
26
  }
26
27
  function VerifyRequestToJSON(value) {
@@ -40,6 +41,7 @@ function VerifyRequestToJSON(value) {
40
41
  'walletProvider': WalletProviderEnumToJSON(value.walletProvider),
41
42
  'skipEmptyAccountCheck': value.skipEmptyAccountCheck,
42
43
  'captchaToken': value.captchaToken,
44
+ 'network': value.network,
43
45
  };
44
46
  }
45
47