@gambulls-org/gambulls-apis 3.0.607 → 3.0.609

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.
@@ -63,6 +63,8 @@ exports.ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerStatusEnum
63
63
  function instanceOfApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner(value) {
64
64
  if (!('id' in value) || value['id'] === undefined)
65
65
  return false;
66
+ if (!('amountCrypto' in value) || value['amountCrypto'] === undefined)
67
+ return false;
66
68
  if (!('cryptoCurrency' in value) || value['cryptoCurrency'] === undefined)
67
69
  return false;
68
70
  if (!('destinationAddress' in value) || value['destinationAddress'] === undefined)
@@ -90,6 +92,7 @@ function ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerFromJSONT
90
92
  }
91
93
  return {
92
94
  'id': json['id'],
95
+ 'amountCrypto': json['amountCrypto'],
93
96
  'cryptoCurrency': json['cryptoCurrency'],
94
97
  'destinationAddress': json['destinationAddress'],
95
98
  'amountFIAT': json['amountFIAT'],
@@ -109,6 +112,7 @@ function ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerToJSONTyp
109
112
  }
110
113
  return {
111
114
  'id': value['id'],
115
+ 'amountCrypto': value['amountCrypto'],
112
116
  'cryptoCurrency': value['cryptoCurrency'],
113
117
  'destinationAddress': value['destinationAddress'],
114
118
  'amountFIAT': value['amountFIAT'],
@@ -25,6 +25,12 @@ export interface ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner
25
25
  * @memberof ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner
26
26
  */
27
27
  id: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner
32
+ */
33
+ amountCrypto: string;
28
34
  /**
29
35
  *
30
36
  * @type {string}
@@ -126,6 +132,7 @@ export type ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerStatus
126
132
  */
127
133
  export function instanceOfApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner(value: object): value is ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInner {
128
134
  if (!('id' in value) || value['id'] === undefined) return false;
135
+ if (!('amountCrypto' in value) || value['amountCrypto'] === undefined) return false;
129
136
  if (!('cryptoCurrency' in value) || value['cryptoCurrency'] === undefined) return false;
130
137
  if (!('destinationAddress' in value) || value['destinationAddress'] === undefined) return false;
131
138
  if (!('amountFIAT' in value) || value['amountFIAT'] === undefined) return false;
@@ -148,6 +155,7 @@ export function ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerFr
148
155
  return {
149
156
 
150
157
  'id': json['id'],
158
+ 'amountCrypto': json['amountCrypto'],
151
159
  'cryptoCurrency': json['cryptoCurrency'],
152
160
  'destinationAddress': json['destinationAddress'],
153
161
  'amountFIAT': json['amountFIAT'],
@@ -171,6 +179,7 @@ export function ApiUserHistoryWithdrawalGet200ResponseResponseObjectItemsInnerFr
171
179
  return {
172
180
 
173
181
  'id': value['id'],
182
+ 'amountCrypto': value['amountCrypto'],
174
183
  'cryptoCurrency': value['cryptoCurrency'],
175
184
  'destinationAddress': value['destinationAddress'],
176
185
  'amountFIAT': value['amountFIAT'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gambulls-org/gambulls-apis",
3
- "version": "3.0.607",
3
+ "version": "3.0.609",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "tsc",