@dynamic-labs/sdk-api 0.0.1050 → 0.0.1052

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.1050",
3
+ "version": "0.0.1052",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -53,6 +53,7 @@ function FlowFromJSONTyped(json, ignoreDiscriminator) {
53
53
  'expiresAt': !runtime.exists(json, 'expiresAt') ? undefined : (new Date(json['expiresAt'])),
54
54
  'createdAt': (new Date(json['createdAt'])),
55
55
  'updatedAt': (new Date(json['updatedAt'])),
56
+ 'depositAddress': !runtime.exists(json, 'depositAddress') ? undefined : json['depositAddress'],
56
57
  'exchangeSource': !runtime.exists(json, 'exchangeSource') ? undefined : FlowExchangeSource.FlowExchangeSourceFromJSON(json['exchangeSource']),
57
58
  };
58
59
  }
@@ -94,6 +95,7 @@ function FlowToJSON(value) {
94
95
  'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt.toISOString()),
95
96
  'createdAt': (value.createdAt.toISOString()),
96
97
  'updatedAt': (value.updatedAt.toISOString()),
98
+ 'depositAddress': value.depositAddress,
97
99
  'exchangeSource': FlowExchangeSource.FlowExchangeSourceToJSON(value.exchangeSource),
98
100
  };
99
101
  }
@@ -205,6 +205,12 @@ export interface Flow {
205
205
  * @memberof Flow
206
206
  */
207
207
  updatedAt: Date;
208
+ /**
209
+ * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight, hyphens allowed for chains using base64url-encoded addresses like TON)
210
+ * @type {string}
211
+ * @memberof Flow
212
+ */
213
+ depositAddress?: string;
208
214
  /**
209
215
  *
210
216
  * @type {FlowExchangeSource}
@@ -49,6 +49,7 @@ function FlowFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'expiresAt': !exists(json, 'expiresAt') ? undefined : (new Date(json['expiresAt'])),
50
50
  'createdAt': (new Date(json['createdAt'])),
51
51
  'updatedAt': (new Date(json['updatedAt'])),
52
+ 'depositAddress': !exists(json, 'depositAddress') ? undefined : json['depositAddress'],
52
53
  'exchangeSource': !exists(json, 'exchangeSource') ? undefined : FlowExchangeSourceFromJSON(json['exchangeSource']),
53
54
  };
54
55
  }
@@ -90,6 +91,7 @@ function FlowToJSON(value) {
90
91
  'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt.toISOString()),
91
92
  'createdAt': (value.createdAt.toISOString()),
92
93
  'updatedAt': (value.updatedAt.toISOString()),
94
+ 'depositAddress': value.depositAddress,
93
95
  'exchangeSource': FlowExchangeSourceToJSON(value.exchangeSource),
94
96
  };
95
97
  }