@cobo/cobo-waas2 1.29.0 → 1.30.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 +24 -9
- package/dist/ApiClient.js +1 -1
- package/dist/api/ComplianceApi.js +2 -2
- package/dist/api/GraphQLApi.js +85 -0
- package/dist/api/PaymentApi.js +218 -86
- package/dist/api/SwapsApi.js +3 -0
- package/dist/api/WalletsApi.js +18 -18
- package/dist/index.js +112 -28
- package/dist/model/AddressesEventData.js +8 -3
- package/dist/model/{AllocationRecord.js → AllocationItem.js} +42 -42
- package/dist/model/{AllocationRequest.js → AllocationParam.js} +33 -33
- package/dist/model/BalanceUpdateInfoEventData.js +8 -3
- package/dist/model/BatchAllocation.js +11 -11
- package/dist/model/BatchAllocationDetail.js +15 -17
- package/dist/model/BridgingFee.js +3 -3
- package/dist/model/ChainsEventData.js +8 -3
- package/dist/model/ComplianceDispositionUpdateEventData.js +8 -3
- package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +8 -3
- package/dist/model/ComplianceKytScreeningsUpdateEventData.js +8 -3
- package/dist/model/ContractCallParams.js +1 -1
- package/dist/model/CreateBatchAllocationRequest.js +17 -17
- package/dist/model/CreateBulkSendRequest.js +167 -0
- package/dist/model/CreateBulkSendRequestPayoutParamsInner.js +153 -0
- package/dist/model/CreateKyaScreeningsBody.js +3 -3
- package/dist/model/CreatePaymentOrderRequest.js +7 -5
- package/dist/model/CreatePayoutRequest.js +33 -26
- package/dist/model/CreateTopUpAddresses.js +139 -0
- package/dist/model/CreateTopUpAddresses201Response.js +107 -0
- package/dist/model/{ListAllocations200Response.js → ListAllocationItems200Response.js} +22 -22
- package/dist/model/{ListPayoutItems200Response.js → ListBulkSendItems200Response.js} +22 -22
- package/dist/model/MPCVaultEventData.js +8 -3
- package/dist/model/OrderLinkBusinessInfo.js +10 -4
- package/dist/model/PaymentAddressUpdateEventData.js +8 -3
- package/dist/model/PaymentBulkSend.js +182 -0
- package/dist/model/PaymentBulkSendEvent.js +359 -0
- package/dist/model/PaymentBulkSendExecutionMode.js +61 -0
- package/dist/model/PaymentBulkSendItem.js +190 -0
- package/dist/model/{PaymentPayoutItemStatus.js → PaymentBulkSendItemStatus.js} +11 -11
- package/dist/model/PaymentBulkSendItemValidationStatus.js +66 -0
- package/dist/model/PaymentBulkSendStatus.js +81 -0
- package/dist/model/PaymentEstimateFeeRequest.js +13 -0
- package/dist/model/PaymentFeeType.js +15 -0
- package/dist/model/PaymentOrderEventData.js +8 -3
- package/dist/model/PaymentPayout.js +64 -46
- package/dist/model/PaymentPayoutDetail.js +166 -52
- package/dist/model/PaymentPayoutEvent.js +149 -82
- package/dist/model/PaymentPayoutItem.js +9 -167
- package/dist/model/PaymentPayoutParam.js +6 -47
- package/dist/model/PaymentPayoutRecipientInfo.js +126 -0
- package/dist/model/PaymentPayoutStatus.js +9 -4
- package/dist/model/PaymentRefundEventData.js +8 -3
- package/dist/model/PaymentSettlementEvent.js +8 -3
- package/dist/model/PaymentTransactionEventData.js +8 -3
- package/dist/model/SuspendedTokenEventData.js +8 -3
- package/dist/model/TSSRequestWebhookEventData.js +8 -3
- package/dist/model/TokenListingEventData.js +8 -3
- package/dist/model/TokensEventData.js +8 -3
- package/dist/model/TransactionCoboCategory.js +5 -0
- package/dist/model/TransactionExtraType.js +5 -0
- package/dist/model/TransactionWalletConnectInfo.js +146 -0
- package/dist/model/TransactionWebhookEventData.js +8 -3
- package/dist/model/WalletInfoEventData.js +8 -3
- package/dist/model/WebhookEventData.js +76 -17
- package/dist/model/WebhookEventDataType.js +7 -2
- package/dist/model/WebhookEventType.js +10 -0
- package/docs/AddressesEventData.md +3 -1
- package/docs/AllocationItem.md +15 -0
- package/docs/AllocationParam.md +13 -0
- package/docs/BalanceUpdateInfoEventData.md +3 -1
- package/docs/BatchAllocation.md +1 -1
- package/docs/BatchAllocationDetail.md +1 -1
- package/docs/BridgingFee.md +2 -2
- package/docs/ChainsEventData.md +3 -1
- package/docs/ComplianceApi.md +1 -1
- package/docs/ComplianceDispositionUpdateEventData.md +3 -1
- package/docs/ComplianceKyaScreeningsUpdateEventData.md +3 -1
- package/docs/ComplianceKytScreeningsUpdateEventData.md +3 -1
- package/docs/ContractCallParams.md +1 -1
- package/docs/CreateBatchAllocationRequest.md +1 -1
- package/docs/CreateBulkSendRequest.md +12 -0
- package/docs/CreateBulkSendRequestPayoutParamsInner.md +12 -0
- package/docs/CreateKyaScreeningsBody.md +1 -1
- package/docs/CreatePaymentOrderRequest.md +2 -2
- package/docs/CreatePayoutRequest.md +3 -3
- package/docs/CreateTopUpAddresses.md +11 -0
- package/docs/CreateTopUpAddresses201Response.md +9 -0
- package/docs/GraphQLApi.md +61 -0
- package/docs/{ListAllocations200Response.md → ListAllocationItems200Response.md} +2 -2
- package/docs/{ListPayoutItems200Response.md → ListBulkSendItems200Response.md} +2 -2
- package/docs/MPCVaultEventData.md +3 -1
- package/docs/OrderLinkBusinessInfo.md +3 -3
- package/docs/PaymentAddressUpdateEventData.md +3 -1
- package/docs/PaymentApi.md +231 -76
- package/docs/PaymentBulkSend.md +15 -0
- package/docs/PaymentBulkSendEvent.md +65 -0
- package/docs/PaymentBulkSendExecutionMode.md +12 -0
- package/docs/PaymentBulkSendItem.md +15 -0
- package/docs/{PaymentPayoutItemStatus.md → PaymentBulkSendItemStatus.md} +3 -3
- package/docs/PaymentBulkSendItemValidationStatus.md +14 -0
- package/docs/PaymentBulkSendStatus.md +20 -0
- package/docs/PaymentEstimateFeeRequest.md +1 -0
- package/docs/PaymentFeeType.md +6 -0
- package/docs/PaymentOrderEventData.md +3 -1
- package/docs/PaymentPayout.md +8 -7
- package/docs/PaymentPayoutDetail.md +10 -8
- package/docs/PaymentPayoutEvent.md +13 -9
- package/docs/PaymentPayoutItem.md +2 -13
- package/docs/PaymentPayoutParam.md +1 -4
- package/docs/PaymentPayoutRecipientInfo.md +12 -0
- package/docs/PaymentPayoutStatus.md +4 -2
- package/docs/PaymentRefundEventData.md +3 -1
- package/docs/PaymentSettlementEvent.md +3 -1
- package/docs/PaymentTransactionEventData.md +3 -1
- package/docs/SuspendedTokenEventData.md +3 -1
- package/docs/SwapsApi.md +2 -0
- package/docs/TSSRequestWebhookEventData.md +3 -1
- package/docs/TokenListingEventData.md +3 -1
- package/docs/TokensEventData.md +3 -1
- package/docs/TransactionCoboCategory.md +2 -0
- package/docs/TransactionExtraType.md +2 -0
- package/docs/TransactionWalletConnectInfo.md +12 -0
- package/docs/TransactionWebhookEventData.md +3 -1
- package/docs/WalletInfoEventData.md +3 -1
- package/docs/WalletsApi.md +9 -9
- package/docs/WebhookEventData.md +15 -8
- package/docs/WebhookEventDataType.md +3 -1
- package/docs/WebhookEventType.md +4 -0
- package/package.json +1 -1
- package/dist/model/PaymentPayoutItemDetail.js +0 -299
- package/docs/AllocationRecord.md +0 -15
- package/docs/AllocationRequest.md +0 -13
- package/docs/PaymentPayoutItemDetail.md +0 -22
package/dist/api/WalletsApi.js
CHANGED
|
@@ -884,7 +884,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
884
884
|
* @param {Object} opts Optional parameters
|
|
885
885
|
* @param {module:model/WalletType} [wallet_type] The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
886
886
|
* @param {module:model/WalletSubtype} [wallet_subtype] The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
887
|
-
* @param {Number} [limit = 10)] The maximum number of objects to return.
|
|
887
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. The value range is [1, 500].
|
|
888
888
|
* @param {String} [before] A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
889
889
|
* @param {String} [after] A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
890
890
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListSupportedChains200Response} and HTTP response
|
|
@@ -920,7 +920,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
920
920
|
* @param {Object} opts Optional parameters
|
|
921
921
|
* @param {module:model/WalletType} opts.wallet_type The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
922
922
|
* @param {module:model/WalletSubtype} opts.wallet_subtype The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
923
|
-
* @param {Number} opts.limit The maximum number of objects to return.
|
|
923
|
+
* @param {Number} opts.limit The maximum number of objects to return. The value range is [1, 500]. (default to 10)
|
|
924
924
|
* @param {String} opts.before A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
925
925
|
* @param {String} opts.after A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
926
926
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListSupportedChains200Response}
|
|
@@ -939,9 +939,9 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
939
939
|
* @param {Object} opts Optional parameters
|
|
940
940
|
* @param {module:model/WalletType} [wallet_type] The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
941
941
|
* @param {module:model/WalletSubtype} [wallet_subtype] The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
942
|
-
* @param {String} [chain_ids] A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
943
|
-
* @param {String} [token_ids] A list of token IDs, separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
944
|
-
* @param {Number} [limit = 10)] The maximum number of objects to return.
|
|
942
|
+
* @param {String} [chain_ids] A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
943
|
+
* @param {String} [token_ids] A list of token IDs(Supports up to 500), separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
944
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. The value range is [1, 500].
|
|
945
945
|
* @param {String} [before] A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
946
946
|
* @param {String} [after] A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
947
947
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListSupportedTokens200Response} and HTTP response
|
|
@@ -979,9 +979,9 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
979
979
|
* @param {Object} opts Optional parameters
|
|
980
980
|
* @param {module:model/WalletType} opts.wallet_type The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
981
981
|
* @param {module:model/WalletSubtype} opts.wallet_subtype The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
982
|
-
* @param {String} opts.chain_ids A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
983
|
-
* @param {String} opts.token_ids A list of token IDs, separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
984
|
-
* @param {Number} opts.limit The maximum number of objects to return.
|
|
982
|
+
* @param {String} opts.chain_ids A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
983
|
+
* @param {String} opts.token_ids A list of token IDs(Supports up to 500), separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
984
|
+
* @param {Number} opts.limit The maximum number of objects to return. The value range is [1, 500]. (default to 10)
|
|
985
985
|
* @param {String} opts.before A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
986
986
|
* @param {String} opts.after A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
987
987
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListSupportedTokens200Response}
|
|
@@ -1000,8 +1000,8 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
1000
1000
|
* @param {Object} opts Optional parameters
|
|
1001
1001
|
* @param {module:model/WalletType} [wallet_type] The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
1002
1002
|
* @param {module:model/WalletSubtype} [wallet_subtype] The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
1003
|
-
* @param {String} [chain_ids] A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1004
|
-
* @param {Number} [limit = 10)] The maximum number of objects to return.
|
|
1003
|
+
* @param {String} [chain_ids] A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1004
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. The value range is [1, 500].
|
|
1005
1005
|
* @param {String} [before] A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
1006
1006
|
* @param {String} [after] A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
1007
1007
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListSupportedChains200Response} and HTTP response
|
|
@@ -1038,8 +1038,8 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
1038
1038
|
* @param {Object} opts Optional parameters
|
|
1039
1039
|
* @param {module:model/WalletType} opts.wallet_type The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
1040
1040
|
* @param {module:model/WalletSubtype} opts.wallet_subtype The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
1041
|
-
* @param {String} opts.chain_ids A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1042
|
-
* @param {Number} opts.limit The maximum number of objects to return.
|
|
1041
|
+
* @param {String} opts.chain_ids A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1042
|
+
* @param {Number} opts.limit The maximum number of objects to return. The value range is [1, 500]. (default to 10)
|
|
1043
1043
|
* @param {String} opts.before A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
1044
1044
|
* @param {String} opts.after A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
1045
1045
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListSupportedChains200Response}
|
|
@@ -1058,9 +1058,9 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
1058
1058
|
* @param {Object} opts Optional parameters
|
|
1059
1059
|
* @param {module:model/WalletType} [wallet_type] The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
1060
1060
|
* @param {module:model/WalletSubtype} [wallet_subtype] The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
1061
|
-
* @param {String} [chain_ids] A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1062
|
-
* @param {String} [token_ids] A list of token IDs, separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
1063
|
-
* @param {Number} [limit = 10)] The maximum number of objects to return.
|
|
1061
|
+
* @param {String} [chain_ids] A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1062
|
+
* @param {String} [token_ids] A list of token IDs(Supports up to 500), separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
1063
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. The value range is [1, 500].
|
|
1064
1064
|
* @param {String} [before] A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
1065
1065
|
* @param {String} [after] A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
1066
1066
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListSupportedTokens200Response} and HTTP response
|
|
@@ -1098,9 +1098,9 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
1098
1098
|
* @param {Object} opts Optional parameters
|
|
1099
1099
|
* @param {module:model/WalletType} opts.wallet_type The wallet type. - `Custodial`: [Custodial Wallets](https://manuals.cobo.com/en/portal/custodial-wallets/introduction) - `MPC`: [MPC Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/introduction) - `SmartContract`: [Smart Contract Wallets](https://manuals.cobo.com/en/portal/smart-contract-wallets/introduction) - `Exchange`: [Exchange Wallets](https://manuals.cobo.com/en/portal/exchange-wallets/introduction)
|
|
1100
1100
|
* @param {module:model/WalletSubtype} opts.wallet_subtype The wallet subtype. - `Asset`: Custodial Wallets (Asset Wallets) - `Web3`: Custodial Wallets (Web3 Wallets) - `Main`: Exchange Wallets (Main Account) - `Sub`: Exchange Wallets (Sub Account) - `Org-Controlled`: MPC Wallets (Organization-Controlled Wallets) - `User-Controlled`: MPC Wallets (User-Controlled Wallets) - `Safe{Wallet}`: Smart Contract Wallets (Safe{Wallet})
|
|
1101
|
-
* @param {String} opts.chain_ids A list of chain IDs, separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1102
|
-
* @param {String} opts.token_ids A list of token IDs, separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
1103
|
-
* @param {Number} opts.limit The maximum number of objects to return.
|
|
1101
|
+
* @param {String} opts.chain_ids A list of chain IDs(Supports up to 500), separated by comma. The chain ID is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
|
|
1102
|
+
* @param {String} opts.token_ids A list of token IDs(Supports up to 500), separated by comma. The token ID is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
1103
|
+
* @param {Number} opts.limit The maximum number of objects to return. The value range is [1, 500]. (default to 10)
|
|
1104
1104
|
* @param {String} opts.before A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.
|
|
1105
1105
|
* @param {String} opts.after A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.
|
|
1106
1106
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListSupportedTokens200Response}
|
package/dist/index.js
CHANGED
|
@@ -123,16 +123,16 @@ Object.defineProperty(exports, "AddressesEventDataAllOfAddresses", {
|
|
|
123
123
|
return _AddressesEventDataAllOfAddresses["default"];
|
|
124
124
|
}
|
|
125
125
|
});
|
|
126
|
-
Object.defineProperty(exports, "
|
|
126
|
+
Object.defineProperty(exports, "AllocationItem", {
|
|
127
127
|
enumerable: true,
|
|
128
128
|
get: function get() {
|
|
129
|
-
return
|
|
129
|
+
return _AllocationItem["default"];
|
|
130
130
|
}
|
|
131
131
|
});
|
|
132
|
-
Object.defineProperty(exports, "
|
|
132
|
+
Object.defineProperty(exports, "AllocationParam", {
|
|
133
133
|
enumerable: true,
|
|
134
134
|
get: function get() {
|
|
135
|
-
return
|
|
135
|
+
return _AllocationParam["default"];
|
|
136
136
|
}
|
|
137
137
|
});
|
|
138
138
|
Object.defineProperty(exports, "AmountDetailsInner", {
|
|
@@ -723,6 +723,18 @@ Object.defineProperty(exports, "CreateBatchAllocationRequest", {
|
|
|
723
723
|
return _CreateBatchAllocationRequest["default"];
|
|
724
724
|
}
|
|
725
725
|
});
|
|
726
|
+
Object.defineProperty(exports, "CreateBulkSendRequest", {
|
|
727
|
+
enumerable: true,
|
|
728
|
+
get: function get() {
|
|
729
|
+
return _CreateBulkSendRequest["default"];
|
|
730
|
+
}
|
|
731
|
+
});
|
|
732
|
+
Object.defineProperty(exports, "CreateBulkSendRequestPayoutParamsInner", {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function get() {
|
|
735
|
+
return _CreateBulkSendRequestPayoutParamsInner["default"];
|
|
736
|
+
}
|
|
737
|
+
});
|
|
726
738
|
Object.defineProperty(exports, "CreateClaimActivity", {
|
|
727
739
|
enumerable: true,
|
|
728
740
|
get: function get() {
|
|
@@ -975,6 +987,18 @@ Object.defineProperty(exports, "CreateTokenListingRequestRequest", {
|
|
|
975
987
|
return _CreateTokenListingRequestRequest["default"];
|
|
976
988
|
}
|
|
977
989
|
});
|
|
990
|
+
Object.defineProperty(exports, "CreateTopUpAddresses", {
|
|
991
|
+
enumerable: true,
|
|
992
|
+
get: function get() {
|
|
993
|
+
return _CreateTopUpAddresses["default"];
|
|
994
|
+
}
|
|
995
|
+
});
|
|
996
|
+
Object.defineProperty(exports, "CreateTopUpAddresses201Response", {
|
|
997
|
+
enumerable: true,
|
|
998
|
+
get: function get() {
|
|
999
|
+
return _CreateTopUpAddresses201Response["default"];
|
|
1000
|
+
}
|
|
1001
|
+
});
|
|
978
1002
|
Object.defineProperty(exports, "CreateTransferTransaction201Response", {
|
|
979
1003
|
enumerable: true,
|
|
980
1004
|
get: function get() {
|
|
@@ -1755,6 +1779,12 @@ Object.defineProperty(exports, "GetTransactionLimitation200Response", {
|
|
|
1755
1779
|
return _GetTransactionLimitation200Response["default"];
|
|
1756
1780
|
}
|
|
1757
1781
|
});
|
|
1782
|
+
Object.defineProperty(exports, "GraphQLApi", {
|
|
1783
|
+
enumerable: true,
|
|
1784
|
+
get: function get() {
|
|
1785
|
+
return _GraphQLApi["default"];
|
|
1786
|
+
}
|
|
1787
|
+
});
|
|
1758
1788
|
Object.defineProperty(exports, "GraphQLError", {
|
|
1759
1789
|
enumerable: true,
|
|
1760
1790
|
get: function get() {
|
|
@@ -1941,10 +1971,10 @@ Object.defineProperty(exports, "ListAddresses200Response", {
|
|
|
1941
1971
|
return _ListAddresses200Response["default"];
|
|
1942
1972
|
}
|
|
1943
1973
|
});
|
|
1944
|
-
Object.defineProperty(exports, "
|
|
1974
|
+
Object.defineProperty(exports, "ListAllocationItems200Response", {
|
|
1945
1975
|
enumerable: true,
|
|
1946
1976
|
get: function get() {
|
|
1947
|
-
return
|
|
1977
|
+
return _ListAllocationItems200Response["default"];
|
|
1948
1978
|
}
|
|
1949
1979
|
});
|
|
1950
1980
|
Object.defineProperty(exports, "ListApprovalRequests200Response", {
|
|
@@ -2001,6 +2031,12 @@ Object.defineProperty(exports, "ListBatchAllocations200Response", {
|
|
|
2001
2031
|
return _ListBatchAllocations200Response["default"];
|
|
2002
2032
|
}
|
|
2003
2033
|
});
|
|
2034
|
+
Object.defineProperty(exports, "ListBulkSendItems200Response", {
|
|
2035
|
+
enumerable: true,
|
|
2036
|
+
get: function get() {
|
|
2037
|
+
return _ListBulkSendItems200Response["default"];
|
|
2038
|
+
}
|
|
2039
|
+
});
|
|
2004
2040
|
Object.defineProperty(exports, "ListCallbackMessages200Response", {
|
|
2005
2041
|
enumerable: true,
|
|
2006
2042
|
get: function get() {
|
|
@@ -2115,12 +2151,6 @@ Object.defineProperty(exports, "ListPaymentWalletBalances200Response", {
|
|
|
2115
2151
|
return _ListPaymentWalletBalances200Response["default"];
|
|
2116
2152
|
}
|
|
2117
2153
|
});
|
|
2118
|
-
Object.defineProperty(exports, "ListPayoutItems200Response", {
|
|
2119
|
-
enumerable: true,
|
|
2120
|
-
get: function get() {
|
|
2121
|
-
return _ListPayoutItems200Response["default"];
|
|
2122
|
-
}
|
|
2123
|
-
});
|
|
2124
2154
|
Object.defineProperty(exports, "ListPayouts200Response", {
|
|
2125
2155
|
enumerable: true,
|
|
2126
2156
|
get: function get() {
|
|
@@ -2523,6 +2553,48 @@ Object.defineProperty(exports, "PaymentApi", {
|
|
|
2523
2553
|
return _PaymentApi["default"];
|
|
2524
2554
|
}
|
|
2525
2555
|
});
|
|
2556
|
+
Object.defineProperty(exports, "PaymentBulkSend", {
|
|
2557
|
+
enumerable: true,
|
|
2558
|
+
get: function get() {
|
|
2559
|
+
return _PaymentBulkSend["default"];
|
|
2560
|
+
}
|
|
2561
|
+
});
|
|
2562
|
+
Object.defineProperty(exports, "PaymentBulkSendEvent", {
|
|
2563
|
+
enumerable: true,
|
|
2564
|
+
get: function get() {
|
|
2565
|
+
return _PaymentBulkSendEvent["default"];
|
|
2566
|
+
}
|
|
2567
|
+
});
|
|
2568
|
+
Object.defineProperty(exports, "PaymentBulkSendExecutionMode", {
|
|
2569
|
+
enumerable: true,
|
|
2570
|
+
get: function get() {
|
|
2571
|
+
return _PaymentBulkSendExecutionMode["default"];
|
|
2572
|
+
}
|
|
2573
|
+
});
|
|
2574
|
+
Object.defineProperty(exports, "PaymentBulkSendItem", {
|
|
2575
|
+
enumerable: true,
|
|
2576
|
+
get: function get() {
|
|
2577
|
+
return _PaymentBulkSendItem["default"];
|
|
2578
|
+
}
|
|
2579
|
+
});
|
|
2580
|
+
Object.defineProperty(exports, "PaymentBulkSendItemStatus", {
|
|
2581
|
+
enumerable: true,
|
|
2582
|
+
get: function get() {
|
|
2583
|
+
return _PaymentBulkSendItemStatus["default"];
|
|
2584
|
+
}
|
|
2585
|
+
});
|
|
2586
|
+
Object.defineProperty(exports, "PaymentBulkSendItemValidationStatus", {
|
|
2587
|
+
enumerable: true,
|
|
2588
|
+
get: function get() {
|
|
2589
|
+
return _PaymentBulkSendItemValidationStatus["default"];
|
|
2590
|
+
}
|
|
2591
|
+
});
|
|
2592
|
+
Object.defineProperty(exports, "PaymentBulkSendStatus", {
|
|
2593
|
+
enumerable: true,
|
|
2594
|
+
get: function get() {
|
|
2595
|
+
return _PaymentBulkSendStatus["default"];
|
|
2596
|
+
}
|
|
2597
|
+
});
|
|
2526
2598
|
Object.defineProperty(exports, "PaymentEstimateFee", {
|
|
2527
2599
|
enumerable: true,
|
|
2528
2600
|
get: function get() {
|
|
@@ -2583,22 +2655,16 @@ Object.defineProperty(exports, "PaymentPayoutItem", {
|
|
|
2583
2655
|
return _PaymentPayoutItem["default"];
|
|
2584
2656
|
}
|
|
2585
2657
|
});
|
|
2586
|
-
Object.defineProperty(exports, "
|
|
2587
|
-
enumerable: true,
|
|
2588
|
-
get: function get() {
|
|
2589
|
-
return _PaymentPayoutItemDetail["default"];
|
|
2590
|
-
}
|
|
2591
|
-
});
|
|
2592
|
-
Object.defineProperty(exports, "PaymentPayoutItemStatus", {
|
|
2658
|
+
Object.defineProperty(exports, "PaymentPayoutParam", {
|
|
2593
2659
|
enumerable: true,
|
|
2594
2660
|
get: function get() {
|
|
2595
|
-
return
|
|
2661
|
+
return _PaymentPayoutParam["default"];
|
|
2596
2662
|
}
|
|
2597
2663
|
});
|
|
2598
|
-
Object.defineProperty(exports, "
|
|
2664
|
+
Object.defineProperty(exports, "PaymentPayoutRecipientInfo", {
|
|
2599
2665
|
enumerable: true,
|
|
2600
2666
|
get: function get() {
|
|
2601
|
-
return
|
|
2667
|
+
return _PaymentPayoutRecipientInfo["default"];
|
|
2602
2668
|
}
|
|
2603
2669
|
});
|
|
2604
2670
|
Object.defineProperty(exports, "PaymentPayoutStatus", {
|
|
@@ -4599,6 +4665,12 @@ Object.defineProperty(exports, "TransactionUtxoFee", {
|
|
|
4599
4665
|
return _TransactionUtxoFee["default"];
|
|
4600
4666
|
}
|
|
4601
4667
|
});
|
|
4668
|
+
Object.defineProperty(exports, "TransactionWalletConnectInfo", {
|
|
4669
|
+
enumerable: true,
|
|
4670
|
+
get: function get() {
|
|
4671
|
+
return _TransactionWalletConnectInfo["default"];
|
|
4672
|
+
}
|
|
4673
|
+
});
|
|
4602
4674
|
Object.defineProperty(exports, "TransactionWebhookEventData", {
|
|
4603
4675
|
enumerable: true,
|
|
4604
4676
|
get: function get() {
|
|
@@ -5030,8 +5102,8 @@ var _AddressTransferDestinationAccountOutput = _interopRequireDefault(require(".
|
|
|
5030
5102
|
var _AddressTransferDestinationUtxoOutputsInner = _interopRequireDefault(require("./model/AddressTransferDestinationUtxoOutputsInner"));
|
|
5031
5103
|
var _AddressesEventData = _interopRequireDefault(require("./model/AddressesEventData"));
|
|
5032
5104
|
var _AddressesEventDataAllOfAddresses = _interopRequireDefault(require("./model/AddressesEventDataAllOfAddresses"));
|
|
5033
|
-
var
|
|
5034
|
-
var
|
|
5105
|
+
var _AllocationItem = _interopRequireDefault(require("./model/AllocationItem"));
|
|
5106
|
+
var _AllocationParam = _interopRequireDefault(require("./model/AllocationParam"));
|
|
5035
5107
|
var _AmountDetailsInner = _interopRequireDefault(require("./model/AmountDetailsInner"));
|
|
5036
5108
|
var _AmountStatus = _interopRequireDefault(require("./model/AmountStatus"));
|
|
5037
5109
|
var _ApiLogDetails = _interopRequireDefault(require("./model/ApiLogDetails"));
|
|
@@ -5126,6 +5198,8 @@ var _CreateBabylonAirdropRegistrationRequest = _interopRequireDefault(require(".
|
|
|
5126
5198
|
var _CreateBabylonStakingRegistration201Response = _interopRequireDefault(require("./model/CreateBabylonStakingRegistration201Response"));
|
|
5127
5199
|
var _CreateBabylonStakingRegistrationRequest = _interopRequireDefault(require("./model/CreateBabylonStakingRegistrationRequest"));
|
|
5128
5200
|
var _CreateBatchAllocationRequest = _interopRequireDefault(require("./model/CreateBatchAllocationRequest"));
|
|
5201
|
+
var _CreateBulkSendRequest = _interopRequireDefault(require("./model/CreateBulkSendRequest"));
|
|
5202
|
+
var _CreateBulkSendRequestPayoutParamsInner = _interopRequireDefault(require("./model/CreateBulkSendRequestPayoutParamsInner"));
|
|
5129
5203
|
var _CreateClaimActivity = _interopRequireDefault(require("./model/CreateClaimActivity"));
|
|
5130
5204
|
var _CreateClaimActivityRequest = _interopRequireDefault(require("./model/CreateClaimActivityRequest"));
|
|
5131
5205
|
var _CreateCounterpartyEntry201Response = _interopRequireDefault(require("./model/CreateCounterpartyEntry201Response"));
|
|
@@ -5168,6 +5242,8 @@ var _CreateSwapActivityRequest = _interopRequireDefault(require("./model/CreateS
|
|
|
5168
5242
|
var _CreateSweepToAddress = _interopRequireDefault(require("./model/CreateSweepToAddress"));
|
|
5169
5243
|
var _CreateTokenListingRequest201Response = _interopRequireDefault(require("./model/CreateTokenListingRequest201Response"));
|
|
5170
5244
|
var _CreateTokenListingRequestRequest = _interopRequireDefault(require("./model/CreateTokenListingRequestRequest"));
|
|
5245
|
+
var _CreateTopUpAddresses = _interopRequireDefault(require("./model/CreateTopUpAddresses"));
|
|
5246
|
+
var _CreateTopUpAddresses201Response = _interopRequireDefault(require("./model/CreateTopUpAddresses201Response"));
|
|
5171
5247
|
var _CreateTransferTransaction201Response = _interopRequireDefault(require("./model/CreateTransferTransaction201Response"));
|
|
5172
5248
|
var _CreateTssRequestRequest = _interopRequireDefault(require("./model/CreateTssRequestRequest"));
|
|
5173
5249
|
var _CreateUnstakeActivity = _interopRequireDefault(require("./model/CreateUnstakeActivity"));
|
|
@@ -5324,7 +5400,7 @@ var _LinkDisplayInfo = _interopRequireDefault(require("./model/LinkDisplayInfo")
|
|
|
5324
5400
|
var _ListAddressBalancesByToken200Response = _interopRequireDefault(require("./model/ListAddressBalancesByToken200Response"));
|
|
5325
5401
|
var _ListAddressBooks200Response = _interopRequireDefault(require("./model/ListAddressBooks200Response"));
|
|
5326
5402
|
var _ListAddresses200Response = _interopRequireDefault(require("./model/ListAddresses200Response"));
|
|
5327
|
-
var
|
|
5403
|
+
var _ListAllocationItems200Response = _interopRequireDefault(require("./model/ListAllocationItems200Response"));
|
|
5328
5404
|
var _ListApprovalRequests200Response = _interopRequireDefault(require("./model/ListApprovalRequests200Response"));
|
|
5329
5405
|
var _ListAssetBalancesForExchangeWallet200Response = _interopRequireDefault(require("./model/ListAssetBalancesForExchangeWallet200Response"));
|
|
5330
5406
|
var _ListAutoSweepTask200Response = _interopRequireDefault(require("./model/ListAutoSweepTask200Response"));
|
|
@@ -5334,6 +5410,7 @@ var _ListBabylonEligibleStakings200Response = _interopRequireDefault(require("./
|
|
|
5334
5410
|
var _ListBabylonEligibleStakings200ResponseDataInner = _interopRequireDefault(require("./model/ListBabylonEligibleStakings200ResponseDataInner"));
|
|
5335
5411
|
var _ListBabylonStakingRegistrations200Response = _interopRequireDefault(require("./model/ListBabylonStakingRegistrations200Response"));
|
|
5336
5412
|
var _ListBatchAllocations200Response = _interopRequireDefault(require("./model/ListBatchAllocations200Response"));
|
|
5413
|
+
var _ListBulkSendItems200Response = _interopRequireDefault(require("./model/ListBulkSendItems200Response"));
|
|
5337
5414
|
var _ListCallbackMessages200Response = _interopRequireDefault(require("./model/ListCallbackMessages200Response"));
|
|
5338
5415
|
var _ListCounterparties200Response = _interopRequireDefault(require("./model/ListCounterparties200Response"));
|
|
5339
5416
|
var _ListCounterpartyEntries200Response = _interopRequireDefault(require("./model/ListCounterpartyEntries200Response"));
|
|
@@ -5353,7 +5430,6 @@ var _ListMpcProjects200Response = _interopRequireDefault(require("./model/ListMp
|
|
|
5353
5430
|
var _ListMpcVaults200Response = _interopRequireDefault(require("./model/ListMpcVaults200Response"));
|
|
5354
5431
|
var _ListPaymentOrders200Response = _interopRequireDefault(require("./model/ListPaymentOrders200Response"));
|
|
5355
5432
|
var _ListPaymentWalletBalances200Response = _interopRequireDefault(require("./model/ListPaymentWalletBalances200Response"));
|
|
5356
|
-
var _ListPayoutItems200Response = _interopRequireDefault(require("./model/ListPayoutItems200Response"));
|
|
5357
5433
|
var _ListPayouts200Response = _interopRequireDefault(require("./model/ListPayouts200Response"));
|
|
5358
5434
|
var _ListSettlementDetails200Response = _interopRequireDefault(require("./model/ListSettlementDetails200Response"));
|
|
5359
5435
|
var _ListSettlementRequests200Response = _interopRequireDefault(require("./model/ListSettlementRequests200Response"));
|
|
@@ -5418,6 +5494,13 @@ var _Pagination = _interopRequireDefault(require("./model/Pagination"));
|
|
|
5418
5494
|
var _PayerAccount = _interopRequireDefault(require("./model/PayerAccount"));
|
|
5419
5495
|
var _PaymentAddressUpdateEventData = _interopRequireDefault(require("./model/PaymentAddressUpdateEventData"));
|
|
5420
5496
|
var _PaymentAllocationAmount = _interopRequireDefault(require("./model/PaymentAllocationAmount"));
|
|
5497
|
+
var _PaymentBulkSend = _interopRequireDefault(require("./model/PaymentBulkSend"));
|
|
5498
|
+
var _PaymentBulkSendEvent = _interopRequireDefault(require("./model/PaymentBulkSendEvent"));
|
|
5499
|
+
var _PaymentBulkSendExecutionMode = _interopRequireDefault(require("./model/PaymentBulkSendExecutionMode"));
|
|
5500
|
+
var _PaymentBulkSendItem = _interopRequireDefault(require("./model/PaymentBulkSendItem"));
|
|
5501
|
+
var _PaymentBulkSendItemStatus = _interopRequireDefault(require("./model/PaymentBulkSendItemStatus"));
|
|
5502
|
+
var _PaymentBulkSendItemValidationStatus = _interopRequireDefault(require("./model/PaymentBulkSendItemValidationStatus"));
|
|
5503
|
+
var _PaymentBulkSendStatus = _interopRequireDefault(require("./model/PaymentBulkSendStatus"));
|
|
5421
5504
|
var _PaymentEstimateFee = _interopRequireDefault(require("./model/PaymentEstimateFee"));
|
|
5422
5505
|
var _PaymentEstimateFee201Response = _interopRequireDefault(require("./model/PaymentEstimateFee201Response"));
|
|
5423
5506
|
var _PaymentEstimateFeeRequest = _interopRequireDefault(require("./model/PaymentEstimateFeeRequest"));
|
|
@@ -5428,9 +5511,8 @@ var _PaymentPayout = _interopRequireDefault(require("./model/PaymentPayout"));
|
|
|
5428
5511
|
var _PaymentPayoutDetail = _interopRequireDefault(require("./model/PaymentPayoutDetail"));
|
|
5429
5512
|
var _PaymentPayoutEvent = _interopRequireDefault(require("./model/PaymentPayoutEvent"));
|
|
5430
5513
|
var _PaymentPayoutItem = _interopRequireDefault(require("./model/PaymentPayoutItem"));
|
|
5431
|
-
var _PaymentPayoutItemDetail = _interopRequireDefault(require("./model/PaymentPayoutItemDetail"));
|
|
5432
|
-
var _PaymentPayoutItemStatus = _interopRequireDefault(require("./model/PaymentPayoutItemStatus"));
|
|
5433
5514
|
var _PaymentPayoutParam = _interopRequireDefault(require("./model/PaymentPayoutParam"));
|
|
5515
|
+
var _PaymentPayoutRecipientInfo = _interopRequireDefault(require("./model/PaymentPayoutRecipientInfo"));
|
|
5434
5516
|
var _PaymentPayoutStatus = _interopRequireDefault(require("./model/PaymentPayoutStatus"));
|
|
5435
5517
|
var _PaymentRefundEventData = _interopRequireDefault(require("./model/PaymentRefundEventData"));
|
|
5436
5518
|
var _PaymentSettlementEvent = _interopRequireDefault(require("./model/PaymentSettlementEvent"));
|
|
@@ -5759,6 +5841,7 @@ var _TransactionUserApprovalDetail = _interopRequireDefault(require("./model/Tra
|
|
|
5759
5841
|
var _TransactionUtxo = _interopRequireDefault(require("./model/TransactionUtxo"));
|
|
5760
5842
|
var _TransactionUtxoChange = _interopRequireDefault(require("./model/TransactionUtxoChange"));
|
|
5761
5843
|
var _TransactionUtxoFee = _interopRequireDefault(require("./model/TransactionUtxoFee"));
|
|
5844
|
+
var _TransactionWalletConnectInfo = _interopRequireDefault(require("./model/TransactionWalletConnectInfo"));
|
|
5762
5845
|
var _TransactionWebhookEventData = _interopRequireDefault(require("./model/TransactionWebhookEventData"));
|
|
5763
5846
|
var _TransferDestination = _interopRequireDefault(require("./model/TransferDestination"));
|
|
5764
5847
|
var _TransferDestinationType = _interopRequireDefault(require("./model/TransferDestinationType"));
|
|
@@ -5828,6 +5911,7 @@ var _ComplianceApi = _interopRequireDefault(require("./api/ComplianceApi"));
|
|
|
5828
5911
|
var _DevelopersApi = _interopRequireDefault(require("./api/DevelopersApi"));
|
|
5829
5912
|
var _DevelopersWebhooksApi = _interopRequireDefault(require("./api/DevelopersWebhooksApi"));
|
|
5830
5913
|
var _FeeStationApi = _interopRequireDefault(require("./api/FeeStationApi"));
|
|
5914
|
+
var _GraphQLApi = _interopRequireDefault(require("./api/GraphQLApi"));
|
|
5831
5915
|
var _OAuthApi = _interopRequireDefault(require("./api/OAuthApi"));
|
|
5832
5916
|
var _OrganizationsApi = _interopRequireDefault(require("./api/OrganizationsApi"));
|
|
5833
5917
|
var _PaymentApi = _interopRequireDefault(require("./api/PaymentApi"));
|
|
@@ -35,7 +35,7 @@ var AddressesEventData = /*#__PURE__*/function () {
|
|
|
35
35
|
* Constructs a new <code>AddressesEventData</code>.
|
|
36
36
|
* @alias module:model/AddressesEventData
|
|
37
37
|
* @implements module:model/WebhookEventDataType
|
|
38
|
-
* @param data_type {module:model/AddressesEventData.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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
38
|
+
* @param data_type {module:model/AddressesEventData.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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
39
39
|
*/
|
|
40
40
|
function AddressesEventData(data_type) {
|
|
41
41
|
_classCallCheck(this, AddressesEventData);
|
|
@@ -132,7 +132,7 @@ var AddressesEventData = /*#__PURE__*/function () {
|
|
|
132
132
|
AddressesEventData.RequiredProperties = ["data_type"];
|
|
133
133
|
|
|
134
134
|
/**
|
|
135
|
-
* 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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
135
|
+
* 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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
136
136
|
* @member {module:model/AddressesEventData.DataTypeEnum} data_type
|
|
137
137
|
*/
|
|
138
138
|
AddressesEventData.prototype['data_type'] = undefined;
|
|
@@ -145,7 +145,7 @@ AddressesEventData.prototype['addresses'] = undefined;
|
|
|
145
145
|
|
|
146
146
|
// Implement WebhookEventDataType interface:
|
|
147
147
|
/**
|
|
148
|
-
* 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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
148
|
+
* 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. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
149
149
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
150
150
|
*/
|
|
151
151
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -226,6 +226,11 @@ AddressesEventData['DataTypeEnum'] = {
|
|
|
226
226
|
* @const
|
|
227
227
|
*/
|
|
228
228
|
"PaymentPayout": "PaymentPayout",
|
|
229
|
+
/**
|
|
230
|
+
* value: "PaymentBulkSend"
|
|
231
|
+
* @const
|
|
232
|
+
*/
|
|
233
|
+
"PaymentBulkSend": "PaymentBulkSend",
|
|
229
234
|
/**
|
|
230
235
|
* value: "BalanceUpdateInfo"
|
|
231
236
|
* @const
|