@dynamic-labs/sdk-api 0.0.1121 → 0.0.1122

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.1121",
3
+ "version": "0.0.1122",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -23,6 +23,7 @@ function CreateExchangeTransferRequestFromJSONTyped(json, ignoreDiscriminator) {
23
23
  'id': !runtime.exists(json, 'id') ? undefined : json['id'],
24
24
  'description': !runtime.exists(json, 'description') ? undefined : json['description'],
25
25
  'mfaCode': !runtime.exists(json, 'mfaCode') ? undefined : json['mfaCode'],
26
+ 'destinationTag': !runtime.exists(json, 'destinationTag') ? undefined : json['destinationTag'],
26
27
  'travelRuleData': !runtime.exists(json, 'travelRuleData') ? undefined : TravelRuleData.TravelRuleDataFromJSON(json['travelRuleData']),
27
28
  };
28
29
  }
@@ -42,6 +43,7 @@ function CreateExchangeTransferRequestToJSON(value) {
42
43
  'id': value.id,
43
44
  'description': value.description,
44
45
  'mfaCode': value.mfaCode,
46
+ 'destinationTag': value.destinationTag,
45
47
  'travelRuleData': TravelRuleData.TravelRuleDataToJSON(value.travelRuleData),
46
48
  };
47
49
  }
@@ -65,6 +65,12 @@ export interface CreateExchangeTransferRequest {
65
65
  * @memberof CreateExchangeTransferRequest
66
66
  */
67
67
  mfaCode?: string;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof CreateExchangeTransferRequest
72
+ */
73
+ destinationTag?: string;
68
74
  /**
69
75
  *
70
76
  * @type {TravelRuleData}
@@ -19,6 +19,7 @@ function CreateExchangeTransferRequestFromJSONTyped(json, ignoreDiscriminator) {
19
19
  'id': !exists(json, 'id') ? undefined : json['id'],
20
20
  'description': !exists(json, 'description') ? undefined : json['description'],
21
21
  'mfaCode': !exists(json, 'mfaCode') ? undefined : json['mfaCode'],
22
+ 'destinationTag': !exists(json, 'destinationTag') ? undefined : json['destinationTag'],
22
23
  'travelRuleData': !exists(json, 'travelRuleData') ? undefined : TravelRuleDataFromJSON(json['travelRuleData']),
23
24
  };
24
25
  }
@@ -38,6 +39,7 @@ function CreateExchangeTransferRequestToJSON(value) {
38
39
  'id': value.id,
39
40
  'description': value.description,
40
41
  'mfaCode': value.mfaCode,
42
+ 'destinationTag': value.destinationTag,
41
43
  'travelRuleData': TravelRuleDataToJSON(value.travelRuleData),
42
44
  };
43
45
  }