@dynamic-labs/sdk-api-core 0.0.839 → 0.0.840

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.839",
3
+ "version": "0.0.840",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -23,6 +23,7 @@ function CryptoDotComPaymentCreateRequestFromJSONTyped(json, ignoreDiscriminator
23
23
  'walletAddress': json['walletAddress'],
24
24
  'networkId': !runtime.exists(json, 'networkId') ? undefined : json['networkId'],
25
25
  'chain': ChainEnum.ChainEnumFromJSON(json['chain']),
26
+ 'merchantName': !runtime.exists(json, 'merchantName') ? undefined : json['merchantName'],
26
27
  };
27
28
  }
28
29
  function CryptoDotComPaymentCreateRequestToJSON(value) {
@@ -42,6 +43,7 @@ function CryptoDotComPaymentCreateRequestToJSON(value) {
42
43
  'walletAddress': value.walletAddress,
43
44
  'networkId': value.networkId,
44
45
  'chain': ChainEnum.ChainEnumToJSON(value.chain),
46
+ 'merchantName': value.merchantName,
45
47
  };
46
48
  }
47
49
 
@@ -70,6 +70,12 @@ export interface CryptoDotComPaymentCreateRequest {
70
70
  * @memberof CryptoDotComPaymentCreateRequest
71
71
  */
72
72
  chain: ChainEnum;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof CryptoDotComPaymentCreateRequest
77
+ */
78
+ merchantName?: string;
73
79
  }
74
80
  export declare function CryptoDotComPaymentCreateRequestFromJSON(json: any): CryptoDotComPaymentCreateRequest;
75
81
  export declare function CryptoDotComPaymentCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CryptoDotComPaymentCreateRequest;
@@ -19,6 +19,7 @@ function CryptoDotComPaymentCreateRequestFromJSONTyped(json, ignoreDiscriminator
19
19
  'walletAddress': json['walletAddress'],
20
20
  'networkId': !exists(json, 'networkId') ? undefined : json['networkId'],
21
21
  'chain': ChainEnumFromJSON(json['chain']),
22
+ 'merchantName': !exists(json, 'merchantName') ? undefined : json['merchantName'],
22
23
  };
23
24
  }
24
25
  function CryptoDotComPaymentCreateRequestToJSON(value) {
@@ -38,6 +39,7 @@ function CryptoDotComPaymentCreateRequestToJSON(value) {
38
39
  'walletAddress': value.walletAddress,
39
40
  'networkId': value.networkId,
40
41
  'chain': ChainEnumToJSON(value.chain),
42
+ 'merchantName': value.merchantName,
41
43
  };
42
44
  }
43
45