@cobo/cobo-waas2 1.17.0 → 1.18.0
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/README.md +36 -4
- package/dist/ApiClient.js +1 -1
- package/dist/api/FeeStationApi.js +2 -2
- package/dist/api/OAuthApi.js +12 -12
- package/dist/api/OrganizationsApi.js +79 -0
- package/dist/api/PaymentApi.js +233 -16
- package/dist/api/TransactionsApi.js +2 -2
- package/dist/api/WalletsApi.js +5 -2
- package/dist/index.js +203 -7
- package/dist/model/Account.js +174 -0
- package/dist/model/AcquiringType.js +61 -0
- package/dist/model/AddressTransferDestination.js +2 -2
- package/dist/model/AddressesEventData.js +8 -3
- package/dist/model/BalanceUpdateInfo.js +170 -0
- package/dist/model/BalanceUpdateInfoEventData.js +297 -0
- package/dist/model/BankAccount.js +2 -2
- package/dist/model/ChainsEventData.js +8 -3
- package/dist/model/CreateMerchantRequest.js +13 -0
- package/dist/model/CreatePaymentOrderRequest.js +10 -1
- package/dist/model/CreateRefundRequest.js +9 -11
- package/dist/model/CreateSettlement.js +8 -27
- package/dist/model/CreateSettlementRequestRequest.js +27 -0
- package/dist/model/CryptoAddress.js +7 -7
- package/dist/model/CustodialTransferDestination.js +1 -1
- package/dist/model/EstimateContractCallFeeParams.js +2 -2
- package/dist/model/EstimateFeeParams.js +1 -1
- package/dist/model/EstimatedFILFee.js +170 -0
- package/dist/model/EstimatedFILFeeSlow.js +186 -0
- package/dist/model/EstimatedFee.js +68 -12
- package/dist/model/EstimatedSOLFee.js +170 -0
- package/dist/model/EstimatedSOLFeeSlow.js +184 -0
- package/dist/model/ExchangePermissionToken201Response.js +4 -4
- package/dist/model/ExchangePermissionTokenRequest.js +2 -2
- package/dist/model/FILBase.js +88 -0
- package/dist/model/FILPrice.js +114 -0
- package/dist/model/FeeType.js +10 -0
- package/dist/model/GetExchangeRate200Response.js +2 -2
- package/dist/model/GraphQLError.js +135 -0
- package/dist/model/GraphQLErrorLocationsInner.js +92 -0
- package/dist/model/{TransactionMessageSignBTCEIP191Destination.js → GraphQLRequest.js} +49 -36
- package/dist/model/GraphQLResponse.js +119 -0
- package/dist/model/ListTopUpPayers200Response.js +123 -0
- package/dist/model/ListTopUpPayers200ResponseDataInner.js +189 -0
- package/dist/model/MPCVaultEventData.js +8 -3
- package/dist/model/Merchant.js +15 -2
- package/dist/model/Order.js +12 -3
- package/dist/model/PayerAccount.js +189 -0
- package/dist/model/PaymentOrderEventData.js +27 -9
- package/dist/model/PaymentRefundEventData.js +66 -11
- package/dist/model/PaymentSettlementEvent.js +14 -9
- package/dist/model/RefreshPermissionTokenRequest.js +2 -2
- package/dist/model/Refund.js +39 -4
- package/dist/model/RefundStatus.js +5 -0
- package/dist/model/SOLBase.js +101 -0
- package/dist/model/SOLComputeUnit.js +101 -0
- package/dist/model/Settlement.js +3 -3
- package/dist/model/SettlementDetail.js +15 -6
- package/dist/model/SettlementInfo.js +11 -2
- package/dist/model/SwapActivityDetail.js +30 -0
- package/dist/model/SwapActivitySigners.js +110 -0
- package/dist/model/SwapQuote.js +17 -4
- package/dist/model/SwapSingingStatus.js +71 -0
- package/dist/model/TSSRequestWebhookEventData.js +8 -3
- package/dist/model/TokenListingEventData.js +8 -3
- package/dist/model/TokensEventData.js +8 -3
- package/dist/model/TopUpAddress.js +230 -0
- package/dist/model/TransactionCoboCategory.js +20 -0
- package/dist/model/TransactionDestination.js +10 -38
- package/dist/model/TransactionEvmCalldataInfo.js +1 -1
- package/dist/model/TransactionFILFee.js +229 -0
- package/dist/model/TransactionFee.js +107 -9
- package/dist/model/TransactionRequestFILFee.js +186 -0
- package/dist/model/TransactionRequestFee.js +89 -9
- package/dist/model/TransactionRequestSOLFee.js +168 -0
- package/dist/model/TransactionSOLFee.js +229 -0
- package/dist/model/TransactionTransferToAddressDestination.js +2 -2
- package/dist/model/TransactionTransferToWalletDestination.js +1 -1
- package/dist/model/TransactionWebhookEventData.js +8 -3
- package/dist/model/TransferDestination.js +2 -2
- package/dist/model/UpdateMerchantByIdRequest.js +13 -0
- package/dist/model/UpdateRefundByIdRequest.js +110 -0
- package/dist/model/UpdateTopUpAddress.js +141 -0
- package/dist/model/WalletInfoEventData.js +8 -3
- package/dist/model/WebhookEvent.js +2 -2
- package/dist/model/WebhookEventData.js +83 -13
- package/dist/model/WebhookEventDataType.js +7 -2
- package/dist/model/WebhookEventLog.js +2 -2
- package/dist/model/WebhookEventType.js +15 -0
- package/docs/Account.md +14 -0
- package/docs/AcquiringType.md +12 -0
- package/docs/AddressTransferDestination.md +2 -2
- package/docs/AddressesEventData.md +3 -1
- package/docs/BalanceUpdateInfo.md +13 -0
- package/docs/BalanceUpdateInfoEventData.md +47 -0
- package/docs/BankAccount.md +2 -2
- package/docs/ChainsEventData.md +3 -1
- package/docs/CreateMerchantRequest.md +1 -0
- package/docs/CreatePaymentOrderRequest.md +2 -1
- package/docs/CreateRefundRequest.md +5 -5
- package/docs/CreateSettlement.md +7 -9
- package/docs/CreateSettlementRequestRequest.md +3 -0
- package/docs/CryptoAddress.md +5 -5
- package/docs/EstimateContractCallFeeParams.md +1 -1
- package/docs/EstimateFeeParams.md +1 -1
- package/docs/EstimatedFILFee.md +13 -0
- package/docs/EstimatedFILFeeSlow.md +12 -0
- package/docs/EstimatedFee.md +3 -3
- package/docs/EstimatedSOLFee.md +13 -0
- package/docs/EstimatedSOLFeeSlow.md +12 -0
- package/docs/ExchangePermissionToken201Response.md +4 -4
- package/docs/ExchangePermissionTokenRequest.md +1 -1
- package/docs/FILBase.md +9 -0
- package/docs/FILPrice.md +11 -0
- package/docs/FeeStationApi.md +1 -1
- package/docs/FeeType.md +4 -0
- package/docs/GetExchangeRate200Response.md +1 -1
- package/docs/GraphQLError.md +11 -0
- package/docs/GraphQLErrorLocationsInner.md +10 -0
- package/docs/GraphQLRequest.md +11 -0
- package/docs/GraphQLResponse.md +10 -0
- package/docs/ListTopUpPayers200Response.md +10 -0
- package/docs/ListTopUpPayers200ResponseDataInner.md +14 -0
- package/docs/MPCVaultEventData.md +3 -1
- package/docs/Merchant.md +3 -2
- package/docs/OAuthApi.md +8 -8
- package/docs/Order.md +4 -3
- package/docs/OrganizationsApi.md +55 -0
- package/docs/PayerAccount.md +14 -0
- package/docs/PaymentApi.md +230 -6
- package/docs/PaymentOrderEventData.md +7 -4
- package/docs/PaymentRefundEventData.md +10 -5
- package/docs/PaymentSettlementEvent.md +6 -4
- package/docs/RefreshPermissionTokenRequest.md +1 -1
- package/docs/Refund.md +7 -4
- package/docs/RefundStatus.md +2 -0
- package/docs/SOLBase.md +10 -0
- package/docs/SOLComputeUnit.md +10 -0
- package/docs/Settlement.md +3 -3
- package/docs/SettlementDetail.md +7 -6
- package/docs/SettlementInfo.md +3 -2
- package/docs/SwapActivityDetail.md +1 -0
- package/docs/SwapActivitySigners.md +11 -0
- package/docs/SwapQuote.md +3 -2
- package/docs/SwapSingingStatus.md +16 -0
- package/docs/TSSRequestWebhookEventData.md +3 -1
- package/docs/TokenListingEventData.md +3 -1
- package/docs/TokensEventData.md +3 -1
- package/docs/TopUpAddress.md +18 -0
- package/docs/TransactionCoboCategory.md +8 -0
- package/docs/TransactionDestination.md +2 -2
- package/docs/TransactionEvmCalldataInfo.md +1 -1
- package/docs/TransactionFILFee.md +16 -0
- package/docs/TransactionFee.md +8 -1
- package/docs/TransactionRequestFILFee.md +13 -0
- package/docs/TransactionRequestFee.md +5 -1
- package/docs/TransactionRequestSOLFee.md +12 -0
- package/docs/TransactionSOLFee.md +16 -0
- package/docs/TransactionTransferToAddressDestination.md +2 -2
- package/docs/TransactionTransferToWalletDestination.md +1 -1
- package/docs/TransactionWebhookEventData.md +3 -1
- package/docs/TransactionsApi.md +1 -1
- package/docs/TransferDestination.md +2 -2
- package/docs/UpdateMerchantByIdRequest.md +1 -0
- package/docs/UpdateRefundByIdRequest.md +9 -0
- package/docs/UpdateTopUpAddress.md +11 -0
- package/docs/WalletInfoEventData.md +3 -1
- package/docs/WalletsApi.md +3 -1
- package/docs/WebhookEvent.md +1 -1
- package/docs/WebhookEventData.md +14 -5
- package/docs/WebhookEventDataType.md +3 -1
- package/docs/WebhookEventLog.md +1 -1
- package/docs/WebhookEventType.md +6 -0
- package/package.json +1 -1
- package/docs/TransactionMessageSignBTCEIP191Destination.md +0 -10
|
@@ -39,7 +39,7 @@ var PaymentRefundEventData = /*#__PURE__*/function () {
|
|
|
39
39
|
* @alias module:model/PaymentRefundEventData
|
|
40
40
|
* @implements module:model/WebhookEventDataType
|
|
41
41
|
* @implements module:model/Refund
|
|
42
|
-
* @param data_type {module:model/PaymentRefundEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
42
|
+
* @param data_type {module:model/PaymentRefundEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
43
43
|
* @param refund_id {String} The refund order ID.
|
|
44
44
|
* @param token_id {String} The ID of the cryptocurrency used for refund.
|
|
45
45
|
* @param chain_id {String} The ID of the blockchain network on which the refund transaction occurs.
|
|
@@ -130,6 +130,15 @@ var PaymentRefundEventData = /*#__PURE__*/function () {
|
|
|
130
130
|
if (data.hasOwnProperty('transactions')) {
|
|
131
131
|
obj['transactions'] = _ApiClient["default"].convertToType(data['transactions'], [_PaymentTransaction["default"]]);
|
|
132
132
|
}
|
|
133
|
+
if (data.hasOwnProperty('charge_merchant_fee')) {
|
|
134
|
+
obj['charge_merchant_fee'] = _ApiClient["default"].convertToType(data['charge_merchant_fee'], 'Boolean');
|
|
135
|
+
}
|
|
136
|
+
if (data.hasOwnProperty('merchant_fee_amount')) {
|
|
137
|
+
obj['merchant_fee_amount'] = _ApiClient["default"].convertToType(data['merchant_fee_amount'], 'String');
|
|
138
|
+
}
|
|
139
|
+
if (data.hasOwnProperty('merchant_fee_token_id')) {
|
|
140
|
+
obj['merchant_fee_token_id'] = _ApiClient["default"].convertToType(data['merchant_fee_token_id'], 'String');
|
|
141
|
+
}
|
|
133
142
|
}
|
|
134
143
|
return obj;
|
|
135
144
|
}
|
|
@@ -218,6 +227,14 @@ var PaymentRefundEventData = /*#__PURE__*/function () {
|
|
|
218
227
|
}
|
|
219
228
|
;
|
|
220
229
|
}
|
|
230
|
+
// ensure the json data is a string
|
|
231
|
+
if (data['merchant_fee_amount'] && !(typeof data['merchant_fee_amount'] === 'string' || data['merchant_fee_amount'] instanceof String)) {
|
|
232
|
+
throw new Error("Expected the field `merchant_fee_amount` to be a primitive type in the JSON string but got " + data['merchant_fee_amount']);
|
|
233
|
+
}
|
|
234
|
+
// ensure the json data is a string
|
|
235
|
+
if (data['merchant_fee_token_id'] && !(typeof data['merchant_fee_token_id'] === 'string' || data['merchant_fee_token_id'] instanceof String)) {
|
|
236
|
+
throw new Error("Expected the field `merchant_fee_token_id` to be a primitive type in the JSON string but got " + data['merchant_fee_token_id']);
|
|
237
|
+
}
|
|
221
238
|
return true;
|
|
222
239
|
}
|
|
223
240
|
}]);
|
|
@@ -225,7 +242,7 @@ var PaymentRefundEventData = /*#__PURE__*/function () {
|
|
|
225
242
|
PaymentRefundEventData.RequiredProperties = ["data_type", "refund_id", "token_id", "chain_id", "amount", "to_address", "status"];
|
|
226
243
|
|
|
227
244
|
/**
|
|
228
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
245
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
229
246
|
* @member {module:model/PaymentRefundEventData.DataTypeEnum} data_type
|
|
230
247
|
*/
|
|
231
248
|
PaymentRefundEventData.prototype['data_type'] = undefined;
|
|
@@ -243,7 +260,7 @@ PaymentRefundEventData.prototype['request_id'] = undefined;
|
|
|
243
260
|
PaymentRefundEventData.prototype['refund_id'] = undefined;
|
|
244
261
|
|
|
245
262
|
/**
|
|
246
|
-
* The order
|
|
263
|
+
* The ID of the pay-in order corresponding to this refund.
|
|
247
264
|
* @member {String} order_id
|
|
248
265
|
*/
|
|
249
266
|
PaymentRefundEventData.prototype['order_id'] = undefined;
|
|
@@ -289,19 +306,19 @@ PaymentRefundEventData.prototype['status'] = undefined;
|
|
|
289
306
|
PaymentRefundEventData.prototype['refund_type'] = undefined;
|
|
290
307
|
|
|
291
308
|
/**
|
|
292
|
-
* The
|
|
309
|
+
* The creation time of the refund order, represented as a UNIX timestamp in seconds.
|
|
293
310
|
* @member {Number} created_timestamp
|
|
294
311
|
*/
|
|
295
312
|
PaymentRefundEventData.prototype['created_timestamp'] = undefined;
|
|
296
313
|
|
|
297
314
|
/**
|
|
298
|
-
* The
|
|
315
|
+
* The last update time of the refund order, represented as a UNIX timestamp in seconds.
|
|
299
316
|
* @member {Number} updated_timestamp
|
|
300
317
|
*/
|
|
301
318
|
PaymentRefundEventData.prototype['updated_timestamp'] = undefined;
|
|
302
319
|
|
|
303
320
|
/**
|
|
304
|
-
*
|
|
321
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
305
322
|
* @member {String} initiator
|
|
306
323
|
*/
|
|
307
324
|
PaymentRefundEventData.prototype['initiator'] = undefined;
|
|
@@ -312,9 +329,27 @@ PaymentRefundEventData.prototype['initiator'] = undefined;
|
|
|
312
329
|
*/
|
|
313
330
|
PaymentRefundEventData.prototype['transactions'] = undefined;
|
|
314
331
|
|
|
332
|
+
/**
|
|
333
|
+
* Whether to charge developer fee to the merchant for the refund. - `true`: The fee amount (specified in `merchant_fee_amount`) will be deducted from the merchant's balance and added to the developer's balance - `false`: The merchant is not charged any developer fee.
|
|
334
|
+
* @member {Boolean} charge_merchant_fee
|
|
335
|
+
*/
|
|
336
|
+
PaymentRefundEventData.prototype['charge_merchant_fee'] = undefined;
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* The developer fee amount to charge the merchant, denominated in the cryptocurrency specified by `merchant_fee_token_id`. This is only applicable if `charge_merchant_fee` is set to `true`.
|
|
340
|
+
* @member {String} merchant_fee_amount
|
|
341
|
+
*/
|
|
342
|
+
PaymentRefundEventData.prototype['merchant_fee_amount'] = undefined;
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* The ID of the cryptocurrency used for the developer fee. This is only applicable if `charge_merchant_fee` is set to true.
|
|
346
|
+
* @member {String} merchant_fee_token_id
|
|
347
|
+
*/
|
|
348
|
+
PaymentRefundEventData.prototype['merchant_fee_token_id'] = undefined;
|
|
349
|
+
|
|
315
350
|
// Implement WebhookEventDataType interface:
|
|
316
351
|
/**
|
|
317
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
352
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
318
353
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
319
354
|
*/
|
|
320
355
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -330,7 +365,7 @@ _Refund["default"].prototype['request_id'] = undefined;
|
|
|
330
365
|
*/
|
|
331
366
|
_Refund["default"].prototype['refund_id'] = undefined;
|
|
332
367
|
/**
|
|
333
|
-
* The order
|
|
368
|
+
* The ID of the pay-in order corresponding to this refund.
|
|
334
369
|
* @member {String} order_id
|
|
335
370
|
*/
|
|
336
371
|
_Refund["default"].prototype['order_id'] = undefined;
|
|
@@ -368,17 +403,17 @@ _Refund["default"].prototype['status'] = undefined;
|
|
|
368
403
|
*/
|
|
369
404
|
_Refund["default"].prototype['refund_type'] = undefined;
|
|
370
405
|
/**
|
|
371
|
-
* The
|
|
406
|
+
* The creation time of the refund order, represented as a UNIX timestamp in seconds.
|
|
372
407
|
* @member {Number} created_timestamp
|
|
373
408
|
*/
|
|
374
409
|
_Refund["default"].prototype['created_timestamp'] = undefined;
|
|
375
410
|
/**
|
|
376
|
-
* The
|
|
411
|
+
* The last update time of the refund order, represented as a UNIX timestamp in seconds.
|
|
377
412
|
* @member {Number} updated_timestamp
|
|
378
413
|
*/
|
|
379
414
|
_Refund["default"].prototype['updated_timestamp'] = undefined;
|
|
380
415
|
/**
|
|
381
|
-
*
|
|
416
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
382
417
|
* @member {String} initiator
|
|
383
418
|
*/
|
|
384
419
|
_Refund["default"].prototype['initiator'] = undefined;
|
|
@@ -387,6 +422,21 @@ _Refund["default"].prototype['initiator'] = undefined;
|
|
|
387
422
|
* @member {Array.<module:model/PaymentTransaction>} transactions
|
|
388
423
|
*/
|
|
389
424
|
_Refund["default"].prototype['transactions'] = undefined;
|
|
425
|
+
/**
|
|
426
|
+
* Whether to charge developer fee to the merchant for the refund. - `true`: The fee amount (specified in `merchant_fee_amount`) will be deducted from the merchant's balance and added to the developer's balance - `false`: The merchant is not charged any developer fee.
|
|
427
|
+
* @member {Boolean} charge_merchant_fee
|
|
428
|
+
*/
|
|
429
|
+
_Refund["default"].prototype['charge_merchant_fee'] = undefined;
|
|
430
|
+
/**
|
|
431
|
+
* The developer fee amount to charge the merchant, denominated in the cryptocurrency specified by `merchant_fee_token_id`. This is only applicable if `charge_merchant_fee` is set to `true`.
|
|
432
|
+
* @member {String} merchant_fee_amount
|
|
433
|
+
*/
|
|
434
|
+
_Refund["default"].prototype['merchant_fee_amount'] = undefined;
|
|
435
|
+
/**
|
|
436
|
+
* The ID of the cryptocurrency used for the developer fee. This is only applicable if `charge_merchant_fee` is set to true.
|
|
437
|
+
* @member {String} merchant_fee_token_id
|
|
438
|
+
*/
|
|
439
|
+
_Refund["default"].prototype['merchant_fee_token_id'] = undefined;
|
|
390
440
|
|
|
391
441
|
/**
|
|
392
442
|
* Allowed values for the <code>data_type</code> property.
|
|
@@ -434,6 +484,11 @@ PaymentRefundEventData['DataTypeEnum'] = {
|
|
|
434
484
|
* @const
|
|
435
485
|
*/
|
|
436
486
|
"TokenListing": "TokenListing",
|
|
487
|
+
/**
|
|
488
|
+
* value: "BalanceUpdateInfo"
|
|
489
|
+
* @const
|
|
490
|
+
*/
|
|
491
|
+
"BalanceUpdateInfo": "BalanceUpdateInfo",
|
|
437
492
|
/**
|
|
438
493
|
* value: "PaymentOrder"
|
|
439
494
|
* @const
|
|
@@ -38,7 +38,7 @@ var PaymentSettlementEvent = /*#__PURE__*/function () {
|
|
|
38
38
|
* @alias module:model/PaymentSettlementEvent
|
|
39
39
|
* @implements module:model/WebhookEventDataType
|
|
40
40
|
* @implements module:model/Settlement
|
|
41
|
-
* @param data_type {module:model/PaymentSettlementEvent.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
41
|
+
* @param data_type {module:model/PaymentSettlementEvent.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
42
42
|
* @param settlement_request_id {String} The settlement request ID generated by Cobo.
|
|
43
43
|
* @param request_id {String} The request ID provided by you when creating the settlement request.
|
|
44
44
|
* @param status {module:model/SettleRequestStatus}
|
|
@@ -175,7 +175,7 @@ var PaymentSettlementEvent = /*#__PURE__*/function () {
|
|
|
175
175
|
PaymentSettlementEvent.RequiredProperties = ["data_type", "settlement_request_id", "request_id", "status", "settlements"];
|
|
176
176
|
|
|
177
177
|
/**
|
|
178
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
178
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
179
179
|
* @member {module:model/PaymentSettlementEvent.DataTypeEnum} data_type
|
|
180
180
|
*/
|
|
181
181
|
PaymentSettlementEvent.prototype['data_type'] = undefined;
|
|
@@ -203,26 +203,26 @@ PaymentSettlementEvent.prototype['status'] = undefined;
|
|
|
203
203
|
PaymentSettlementEvent.prototype['settlements'] = undefined;
|
|
204
204
|
|
|
205
205
|
/**
|
|
206
|
-
* The
|
|
206
|
+
* The creation time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
207
207
|
* @member {Number} created_timestamp
|
|
208
208
|
*/
|
|
209
209
|
PaymentSettlementEvent.prototype['created_timestamp'] = undefined;
|
|
210
210
|
|
|
211
211
|
/**
|
|
212
|
-
* The
|
|
212
|
+
* The last update time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
213
213
|
* @member {Number} updated_timestamp
|
|
214
214
|
*/
|
|
215
215
|
PaymentSettlementEvent.prototype['updated_timestamp'] = undefined;
|
|
216
216
|
|
|
217
217
|
/**
|
|
218
|
-
*
|
|
218
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
219
219
|
* @member {String} initiator
|
|
220
220
|
*/
|
|
221
221
|
PaymentSettlementEvent.prototype['initiator'] = undefined;
|
|
222
222
|
|
|
223
223
|
// Implement WebhookEventDataType interface:
|
|
224
224
|
/**
|
|
225
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
225
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `BalanceUpdateInfo`: The balance update event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data.
|
|
226
226
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
227
227
|
*/
|
|
228
228
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -246,17 +246,17 @@ _Settlement["default"].prototype['status'] = undefined;
|
|
|
246
246
|
*/
|
|
247
247
|
_Settlement["default"].prototype['settlements'] = undefined;
|
|
248
248
|
/**
|
|
249
|
-
* The
|
|
249
|
+
* The creation time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
250
250
|
* @member {Number} created_timestamp
|
|
251
251
|
*/
|
|
252
252
|
_Settlement["default"].prototype['created_timestamp'] = undefined;
|
|
253
253
|
/**
|
|
254
|
-
* The
|
|
254
|
+
* The last update time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
255
255
|
* @member {Number} updated_timestamp
|
|
256
256
|
*/
|
|
257
257
|
_Settlement["default"].prototype['updated_timestamp'] = undefined;
|
|
258
258
|
/**
|
|
259
|
-
*
|
|
259
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
260
260
|
* @member {String} initiator
|
|
261
261
|
*/
|
|
262
262
|
_Settlement["default"].prototype['initiator'] = undefined;
|
|
@@ -307,6 +307,11 @@ PaymentSettlementEvent['DataTypeEnum'] = {
|
|
|
307
307
|
* @const
|
|
308
308
|
*/
|
|
309
309
|
"TokenListing": "TokenListing",
|
|
310
|
+
/**
|
|
311
|
+
* value: "BalanceUpdateInfo"
|
|
312
|
+
* @const
|
|
313
|
+
*/
|
|
314
|
+
"BalanceUpdateInfo": "BalanceUpdateInfo",
|
|
310
315
|
/**
|
|
311
316
|
* value: "PaymentOrder"
|
|
312
317
|
* @const
|
|
@@ -32,7 +32,7 @@ var RefreshPermissionTokenRequest = /*#__PURE__*/function () {
|
|
|
32
32
|
/**
|
|
33
33
|
* Constructs a new <code>RefreshPermissionTokenRequest</code>.
|
|
34
34
|
* @alias module:model/RefreshPermissionTokenRequest
|
|
35
|
-
* @param refresh_token {String} The Refresh Token of the current
|
|
35
|
+
* @param refresh_token {String} The Refresh Token of the current Access Token.
|
|
36
36
|
*/
|
|
37
37
|
function RefreshPermissionTokenRequest(refresh_token) {
|
|
38
38
|
_classCallCheck(this, RefreshPermissionTokenRequest);
|
|
@@ -103,7 +103,7 @@ var RefreshPermissionTokenRequest = /*#__PURE__*/function () {
|
|
|
103
103
|
RefreshPermissionTokenRequest.RequiredProperties = ["refresh_token"];
|
|
104
104
|
|
|
105
105
|
/**
|
|
106
|
-
* The Refresh Token of the current
|
|
106
|
+
* The Refresh Token of the current Access Token.
|
|
107
107
|
* @member {String} refresh_token
|
|
108
108
|
*/
|
|
109
109
|
RefreshPermissionTokenRequest.prototype['refresh_token'] = undefined;
|
package/dist/model/Refund.js
CHANGED
|
@@ -117,6 +117,15 @@ var Refund = /*#__PURE__*/function () {
|
|
|
117
117
|
if (data.hasOwnProperty('transactions')) {
|
|
118
118
|
obj['transactions'] = _ApiClient["default"].convertToType(data['transactions'], [_PaymentTransaction["default"]]);
|
|
119
119
|
}
|
|
120
|
+
if (data.hasOwnProperty('charge_merchant_fee')) {
|
|
121
|
+
obj['charge_merchant_fee'] = _ApiClient["default"].convertToType(data['charge_merchant_fee'], 'Boolean');
|
|
122
|
+
}
|
|
123
|
+
if (data.hasOwnProperty('merchant_fee_amount')) {
|
|
124
|
+
obj['merchant_fee_amount'] = _ApiClient["default"].convertToType(data['merchant_fee_amount'], 'String');
|
|
125
|
+
}
|
|
126
|
+
if (data.hasOwnProperty('merchant_fee_token_id')) {
|
|
127
|
+
obj['merchant_fee_token_id'] = _ApiClient["default"].convertToType(data['merchant_fee_token_id'], 'String');
|
|
128
|
+
}
|
|
120
129
|
}
|
|
121
130
|
return obj;
|
|
122
131
|
}
|
|
@@ -201,6 +210,14 @@ var Refund = /*#__PURE__*/function () {
|
|
|
201
210
|
}
|
|
202
211
|
;
|
|
203
212
|
}
|
|
213
|
+
// ensure the json data is a string
|
|
214
|
+
if (data['merchant_fee_amount'] && !(typeof data['merchant_fee_amount'] === 'string' || data['merchant_fee_amount'] instanceof String)) {
|
|
215
|
+
throw new Error("Expected the field `merchant_fee_amount` to be a primitive type in the JSON string but got " + data['merchant_fee_amount']);
|
|
216
|
+
}
|
|
217
|
+
// ensure the json data is a string
|
|
218
|
+
if (data['merchant_fee_token_id'] && !(typeof data['merchant_fee_token_id'] === 'string' || data['merchant_fee_token_id'] instanceof String)) {
|
|
219
|
+
throw new Error("Expected the field `merchant_fee_token_id` to be a primitive type in the JSON string but got " + data['merchant_fee_token_id']);
|
|
220
|
+
}
|
|
204
221
|
return true;
|
|
205
222
|
}
|
|
206
223
|
}]);
|
|
@@ -220,7 +237,7 @@ Refund.prototype['request_id'] = undefined;
|
|
|
220
237
|
Refund.prototype['refund_id'] = undefined;
|
|
221
238
|
|
|
222
239
|
/**
|
|
223
|
-
* The order
|
|
240
|
+
* The ID of the pay-in order corresponding to this refund.
|
|
224
241
|
* @member {String} order_id
|
|
225
242
|
*/
|
|
226
243
|
Refund.prototype['order_id'] = undefined;
|
|
@@ -266,19 +283,19 @@ Refund.prototype['status'] = undefined;
|
|
|
266
283
|
Refund.prototype['refund_type'] = undefined;
|
|
267
284
|
|
|
268
285
|
/**
|
|
269
|
-
* The
|
|
286
|
+
* The creation time of the refund order, represented as a UNIX timestamp in seconds.
|
|
270
287
|
* @member {Number} created_timestamp
|
|
271
288
|
*/
|
|
272
289
|
Refund.prototype['created_timestamp'] = undefined;
|
|
273
290
|
|
|
274
291
|
/**
|
|
275
|
-
* The
|
|
292
|
+
* The last update time of the refund order, represented as a UNIX timestamp in seconds.
|
|
276
293
|
* @member {Number} updated_timestamp
|
|
277
294
|
*/
|
|
278
295
|
Refund.prototype['updated_timestamp'] = undefined;
|
|
279
296
|
|
|
280
297
|
/**
|
|
281
|
-
*
|
|
298
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
282
299
|
* @member {String} initiator
|
|
283
300
|
*/
|
|
284
301
|
Refund.prototype['initiator'] = undefined;
|
|
@@ -288,4 +305,22 @@ Refund.prototype['initiator'] = undefined;
|
|
|
288
305
|
* @member {Array.<module:model/PaymentTransaction>} transactions
|
|
289
306
|
*/
|
|
290
307
|
Refund.prototype['transactions'] = undefined;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Whether to charge developer fee to the merchant for the refund. - `true`: The fee amount (specified in `merchant_fee_amount`) will be deducted from the merchant's balance and added to the developer's balance - `false`: The merchant is not charged any developer fee.
|
|
311
|
+
* @member {Boolean} charge_merchant_fee
|
|
312
|
+
*/
|
|
313
|
+
Refund.prototype['charge_merchant_fee'] = undefined;
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* The developer fee amount to charge the merchant, denominated in the cryptocurrency specified by `merchant_fee_token_id`. This is only applicable if `charge_merchant_fee` is set to `true`.
|
|
317
|
+
* @member {String} merchant_fee_amount
|
|
318
|
+
*/
|
|
319
|
+
Refund.prototype['merchant_fee_amount'] = undefined;
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* The ID of the cryptocurrency used for the developer fee. This is only applicable if `charge_merchant_fee` is set to true.
|
|
323
|
+
* @member {String} merchant_fee_token_id
|
|
324
|
+
*/
|
|
325
|
+
Refund.prototype['merchant_fee_token_id'] = undefined;
|
|
291
326
|
var _default = exports["default"] = Refund;
|
|
@@ -55,6 +55,11 @@ var RefundStatus = exports["default"] = /*#__PURE__*/function () {
|
|
|
55
55
|
* @const
|
|
56
56
|
*/
|
|
57
57
|
_defineProperty(this, "Failed", "Failed");
|
|
58
|
+
/**
|
|
59
|
+
* value: "PendingConfirmation"
|
|
60
|
+
* @const
|
|
61
|
+
*/
|
|
62
|
+
_defineProperty(this, "PendingConfirmation", "PendingConfirmation");
|
|
58
63
|
/**
|
|
59
64
|
* value: "unknown_default_open_api"
|
|
60
65
|
* @const
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
15
|
+
* Cobo Wallet as a Service 2.0
|
|
16
|
+
*
|
|
17
|
+
* Contact: help@cobo.com
|
|
18
|
+
*
|
|
19
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
20
|
+
* https://openapi-generator.tech
|
|
21
|
+
* Do not edit the class manually.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
/**
|
|
25
|
+
* The SOLBase model module.
|
|
26
|
+
* @module model/SOLBase
|
|
27
|
+
*/
|
|
28
|
+
var SOLBase = /*#__PURE__*/function () {
|
|
29
|
+
/**
|
|
30
|
+
* Constructs a new <code>SOLBase</code>.
|
|
31
|
+
* The transaction base fee based on the SOL fee model.
|
|
32
|
+
* @alias module:model/SOLBase
|
|
33
|
+
*/
|
|
34
|
+
function SOLBase() {
|
|
35
|
+
_classCallCheck(this, SOLBase);
|
|
36
|
+
SOLBase.initialize(this);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Initializes the fields of this object.
|
|
41
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
42
|
+
* Only for internal use.
|
|
43
|
+
*/
|
|
44
|
+
return _createClass(SOLBase, null, [{
|
|
45
|
+
key: "initialize",
|
|
46
|
+
value: function initialize(obj) {}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Constructs a <code>SOLBase</code> from a plain JavaScript object, optionally creating a new instance.
|
|
50
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
51
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
52
|
+
* @param {module:model/SOLBase} obj Optional instance to populate.
|
|
53
|
+
* @return {module:model/SOLBase} The populated <code>SOLBase</code> instance.
|
|
54
|
+
*/
|
|
55
|
+
}, {
|
|
56
|
+
key: "constructFromObject",
|
|
57
|
+
value: function constructFromObject(data, obj) {
|
|
58
|
+
if (data) {
|
|
59
|
+
obj = obj || new SOLBase();
|
|
60
|
+
if (data.hasOwnProperty('base_fee')) {
|
|
61
|
+
obj['base_fee'] = _ApiClient["default"].convertToType(data['base_fee'], 'String');
|
|
62
|
+
}
|
|
63
|
+
if (data.hasOwnProperty('rent_amount')) {
|
|
64
|
+
obj['rent_amount'] = _ApiClient["default"].convertToType(data['rent_amount'], 'String');
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return obj;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Validates the JSON data with respect to <code>SOLBase</code>.
|
|
72
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
73
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>SOLBase</code>.
|
|
74
|
+
*/
|
|
75
|
+
}, {
|
|
76
|
+
key: "validateJSON",
|
|
77
|
+
value: function validateJSON(data) {
|
|
78
|
+
// ensure the json data is a string
|
|
79
|
+
if (data['base_fee'] && !(typeof data['base_fee'] === 'string' || data['base_fee'] instanceof String)) {
|
|
80
|
+
throw new Error("Expected the field `base_fee` to be a primitive type in the JSON string but got " + data['base_fee']);
|
|
81
|
+
}
|
|
82
|
+
// ensure the json data is a string
|
|
83
|
+
if (data['rent_amount'] && !(typeof data['rent_amount'] === 'string' || data['rent_amount'] instanceof String)) {
|
|
84
|
+
throw new Error("Expected the field `rent_amount` to be a primitive type in the JSON string but got " + data['rent_amount']);
|
|
85
|
+
}
|
|
86
|
+
return true;
|
|
87
|
+
}
|
|
88
|
+
}]);
|
|
89
|
+
}();
|
|
90
|
+
/**
|
|
91
|
+
* The fundamental fee required for each transaction. It is charged to prevent spam transactions and network congestion, ensuring that only meaningful transactions consume network resources.
|
|
92
|
+
* @member {String} base_fee
|
|
93
|
+
*/
|
|
94
|
+
SOLBase.prototype['base_fee'] = undefined;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* The fee charged as rent for maintaining the state of accounts on the blockchain. This rent ensures accounts are stored on-chain over the long term and that there's sufficient balance to sustain the account state.
|
|
98
|
+
* @member {String} rent_amount
|
|
99
|
+
*/
|
|
100
|
+
SOLBase.prototype['rent_amount'] = undefined;
|
|
101
|
+
var _default = exports["default"] = SOLBase;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
15
|
+
* Cobo Wallet as a Service 2.0
|
|
16
|
+
*
|
|
17
|
+
* Contact: help@cobo.com
|
|
18
|
+
*
|
|
19
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
20
|
+
* https://openapi-generator.tech
|
|
21
|
+
* Do not edit the class manually.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
/**
|
|
25
|
+
* The SOLComputeUnit model module.
|
|
26
|
+
* @module model/SOLComputeUnit
|
|
27
|
+
*/
|
|
28
|
+
var SOLComputeUnit = /*#__PURE__*/function () {
|
|
29
|
+
/**
|
|
30
|
+
* Constructs a new <code>SOLComputeUnit</code>.
|
|
31
|
+
* The transaction gas price based on the SOL fee model.
|
|
32
|
+
* @alias module:model/SOLComputeUnit
|
|
33
|
+
*/
|
|
34
|
+
function SOLComputeUnit() {
|
|
35
|
+
_classCallCheck(this, SOLComputeUnit);
|
|
36
|
+
SOLComputeUnit.initialize(this);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Initializes the fields of this object.
|
|
41
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
42
|
+
* Only for internal use.
|
|
43
|
+
*/
|
|
44
|
+
return _createClass(SOLComputeUnit, null, [{
|
|
45
|
+
key: "initialize",
|
|
46
|
+
value: function initialize(obj) {}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Constructs a <code>SOLComputeUnit</code> from a plain JavaScript object, optionally creating a new instance.
|
|
50
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
51
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
52
|
+
* @param {module:model/SOLComputeUnit} obj Optional instance to populate.
|
|
53
|
+
* @return {module:model/SOLComputeUnit} The populated <code>SOLComputeUnit</code> instance.
|
|
54
|
+
*/
|
|
55
|
+
}, {
|
|
56
|
+
key: "constructFromObject",
|
|
57
|
+
value: function constructFromObject(data, obj) {
|
|
58
|
+
if (data) {
|
|
59
|
+
obj = obj || new SOLComputeUnit();
|
|
60
|
+
if (data.hasOwnProperty('compute_unit_price')) {
|
|
61
|
+
obj['compute_unit_price'] = _ApiClient["default"].convertToType(data['compute_unit_price'], 'String');
|
|
62
|
+
}
|
|
63
|
+
if (data.hasOwnProperty('compute_unit_limit')) {
|
|
64
|
+
obj['compute_unit_limit'] = _ApiClient["default"].convertToType(data['compute_unit_limit'], 'String');
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return obj;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Validates the JSON data with respect to <code>SOLComputeUnit</code>.
|
|
72
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
73
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>SOLComputeUnit</code>.
|
|
74
|
+
*/
|
|
75
|
+
}, {
|
|
76
|
+
key: "validateJSON",
|
|
77
|
+
value: function validateJSON(data) {
|
|
78
|
+
// ensure the json data is a string
|
|
79
|
+
if (data['compute_unit_price'] && !(typeof data['compute_unit_price'] === 'string' || data['compute_unit_price'] instanceof String)) {
|
|
80
|
+
throw new Error("Expected the field `compute_unit_price` to be a primitive type in the JSON string but got " + data['compute_unit_price']);
|
|
81
|
+
}
|
|
82
|
+
// ensure the json data is a string
|
|
83
|
+
if (data['compute_unit_limit'] && !(typeof data['compute_unit_limit'] === 'string' || data['compute_unit_limit'] instanceof String)) {
|
|
84
|
+
throw new Error("Expected the field `compute_unit_limit` to be a primitive type in the JSON string but got " + data['compute_unit_limit']);
|
|
85
|
+
}
|
|
86
|
+
return true;
|
|
87
|
+
}
|
|
88
|
+
}]);
|
|
89
|
+
}();
|
|
90
|
+
/**
|
|
91
|
+
* The cost per compute unit. Transactions consume computational resources measured in compute units, and this price helps determine the cost of executing transactions, especially complex ones involving smart contracts.
|
|
92
|
+
* @member {String} compute_unit_price
|
|
93
|
+
*/
|
|
94
|
+
SOLComputeUnit.prototype['compute_unit_price'] = undefined;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* The maximum number of compute units allowed for a transaction. This limits the resources any single transaction can consume, preventing excessive resource usage that could impact network performance negatively.
|
|
98
|
+
* @member {String} compute_unit_limit
|
|
99
|
+
*/
|
|
100
|
+
SOLComputeUnit.prototype['compute_unit_limit'] = undefined;
|
|
101
|
+
var _default = exports["default"] = SOLComputeUnit;
|
package/dist/model/Settlement.js
CHANGED
|
@@ -180,19 +180,19 @@ Settlement.prototype['status'] = undefined;
|
|
|
180
180
|
Settlement.prototype['settlements'] = undefined;
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
|
-
* The
|
|
183
|
+
* The creation time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
184
184
|
* @member {Number} created_timestamp
|
|
185
185
|
*/
|
|
186
186
|
Settlement.prototype['created_timestamp'] = undefined;
|
|
187
187
|
|
|
188
188
|
/**
|
|
189
|
-
* The
|
|
189
|
+
* The last update time of the settlement request, represented as a UNIX timestamp in seconds.
|
|
190
190
|
* @member {Number} updated_timestamp
|
|
191
191
|
*/
|
|
192
192
|
Settlement.prototype['updated_timestamp'] = undefined;
|
|
193
193
|
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* The initiator of this settlement request. Can return either an API key or the Payment Management App's ID. - Format `api_key_<API_KEY>`: Indicates the settlement request was initiated via the Payment API using the API key. - Format `app_<APP_ID>`: Indicates the settlement request was initiated through the Payment Management App using the App ID.
|
|
196
196
|
* @member {String} initiator
|
|
197
197
|
*/
|
|
198
198
|
Settlement.prototype['initiator'] = undefined;
|