@cobo/cobo-waas2 1.26.0 → 1.27.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 +64 -4
- package/dist/ApiClient.js +1 -1
- package/dist/api/DevelopersWebhooksApi.js +2 -2
- package/dist/api/PaymentApi.js +1298 -200
- package/dist/api/TransactionsApi.js +2 -2
- package/dist/index.js +266 -7
- package/dist/model/BankAccountStatus.js +66 -0
- package/dist/model/ContractCallDestination.js +38 -10
- package/dist/model/ContractCallDestinationType.js +5 -0
- package/dist/model/Counterparty.js +195 -0
- package/dist/model/CounterpartyDetail.js +228 -0
- package/dist/model/CounterpartyType.js +61 -0
- package/dist/model/CounterpartyWalletAddressDetail.js +192 -0
- package/dist/model/CreateCounterpartyRequest.js +193 -0
- package/dist/model/CreateCounterpartyWalletAddressRequest.js +140 -0
- package/dist/model/CreateDestinationBankAccount.js +257 -0
- package/dist/model/CreateDestinationBankAccountRequest.js +272 -0
- package/dist/model/CreateDestinationRequest.js +235 -0
- package/dist/model/CreateDestinationWalletAddressRequest.js +140 -0
- package/dist/model/CreateKeyShareHolder.js +1 -1
- package/dist/model/CreatePaymentOrderRequest.js +2 -2
- package/dist/model/CreateSettlement.js +13 -0
- package/dist/model/{ReceivedAmountPerAddress.js → CreateWalletAddress.js} +31 -32
- package/dist/model/DeleteCounterparty200Response.js +110 -0
- package/dist/model/DeleteCounterpartyWalletAddress200Response.js +110 -0
- package/dist/model/DeleteDestination200Response.js +110 -0
- package/dist/model/DeleteDestinationBankAccount200Response.js +110 -0
- package/dist/model/DeleteDestinationWalletAddress200Response.js +110 -0
- package/dist/model/Destination.js +208 -0
- package/dist/model/DestinationBankAccount.js +301 -0
- package/dist/model/DestinationBankAccountDetail.js +394 -0
- package/dist/model/DestinationDetail.js +272 -0
- package/dist/model/DestinationType.js +61 -0
- package/dist/model/DestinationWalletAddressDetail.js +205 -0
- package/dist/model/EnableDestinationWhitelistRequest.js +106 -0
- package/dist/model/EvmContractCallDestination.js +2 -2
- package/dist/model/ExchangeRate.js +140 -0
- package/dist/model/IntermediaryBankInfo.js +140 -0
- package/dist/model/Link.js +4 -4
- package/dist/model/LinkDisplayInfo.js +2 -2
- package/dist/model/ListCounterparties200Response.js +123 -0
- package/dist/model/ListCounterpartyWalletAddress200Response.js +123 -0
- package/dist/model/ListDestinationBankAccounts200Response.js +123 -0
- package/dist/model/ListDestinationWalletAddresses200Response.js +123 -0
- package/dist/model/ListDestinations200Response.js +123 -0
- package/dist/model/PaymentTransaction.js +32 -0
- package/dist/model/PaymentTransactionEventData.js +2 -2
- package/dist/model/QueryDestinationWhitelistEnabled200Response.js +106 -0
- package/dist/model/RefundLinkBusinessInfo.js +6 -6
- package/dist/model/SettlementDetail.js +13 -0
- package/dist/model/SwapActivityTimeline.js +1 -1
- package/dist/model/Transaction.js +1 -1
- package/dist/model/TransactionDestination.js +38 -10
- package/dist/model/TransactionDestinationType.js +5 -0
- package/dist/model/TransactionDetail.js +2 -2
- package/dist/model/TransactionDetails.js +2 -2
- package/dist/model/TransactionTronContractDestination.js +150 -0
- package/dist/model/TransactionWebhookEventData.js +2 -2
- package/dist/model/TronContractCallDestination.js +150 -0
- package/dist/model/UpdateCounterpartyByIdRequest.js +160 -0
- package/dist/model/UpdateDestinationBankAccount.js +257 -0
- package/dist/model/UpdateDestinationByIdRequest.js +173 -0
- package/dist/model/WalletAddress.js +151 -0
- package/dist/model/WebhookEventData.js +1 -1
- package/docs/BankAccountStatus.md +14 -0
- package/docs/ContractCallDestination.md +2 -2
- package/docs/ContractCallDestinationType.md +2 -0
- package/docs/Counterparty.md +16 -0
- package/docs/CounterpartyDetail.md +17 -0
- package/docs/CounterpartyType.md +12 -0
- package/docs/CounterpartyWalletAddressDetail.md +15 -0
- package/docs/CreateCounterpartyRequest.md +14 -0
- package/docs/CreateCounterpartyWalletAddressRequest.md +11 -0
- package/docs/CreateDestinationBankAccount.md +19 -0
- package/docs/CreateDestinationBankAccountRequest.md +20 -0
- package/docs/CreateDestinationRequest.md +16 -0
- package/docs/CreateDestinationWalletAddressRequest.md +11 -0
- package/docs/CreateKeyShareHolder.md +1 -1
- package/docs/CreatePaymentOrderRequest.md +1 -1
- package/docs/CreateSettlement.md +1 -0
- package/docs/CreateWalletAddress.md +10 -0
- package/docs/DeleteCounterparty200Response.md +9 -0
- package/docs/DeleteCounterpartyWalletAddress200Response.md +9 -0
- package/docs/DeleteDestination200Response.md +9 -0
- package/docs/DeleteDestinationBankAccount200Response.md +9 -0
- package/docs/DeleteDestinationWalletAddress200Response.md +9 -0
- package/docs/Destination.md +17 -0
- package/docs/DestinationBankAccount.md +23 -0
- package/docs/DestinationBankAccountDetail.md +30 -0
- package/docs/DestinationDetail.md +19 -0
- package/docs/DestinationType.md +12 -0
- package/docs/DestinationWalletAddressDetail.md +16 -0
- package/docs/DevelopersWebhooksApi.md +1 -1
- package/docs/EnableDestinationWhitelistRequest.md +9 -0
- package/docs/EvmContractCallDestination.md +1 -1
- package/docs/ExchangeRate.md +11 -0
- package/docs/IntermediaryBankInfo.md +11 -0
- package/docs/Link.md +2 -2
- package/docs/LinkDisplayInfo.md +2 -2
- package/docs/ListCounterparties200Response.md +10 -0
- package/docs/ListCounterpartyWalletAddress200Response.md +10 -0
- package/docs/ListDestinationBankAccounts200Response.md +10 -0
- package/docs/ListDestinationWalletAddresses200Response.md +10 -0
- package/docs/ListDestinations200Response.md +10 -0
- package/docs/PaymentApi.md +1459 -208
- package/docs/PaymentTransaction.md +2 -0
- package/docs/PaymentTransactionEventData.md +1 -1
- package/docs/QueryDestinationWhitelistEnabled200Response.md +9 -0
- package/docs/RefundLinkBusinessInfo.md +4 -4
- package/docs/SettlementDetail.md +1 -0
- package/docs/SwapActivityTimeline.md +1 -1
- package/docs/Transaction.md +1 -1
- package/docs/TransactionDestination.md +2 -2
- package/docs/TransactionDestinationType.md +2 -0
- package/docs/TransactionDetail.md +1 -1
- package/docs/TransactionDetails.md +1 -1
- package/docs/TransactionTronContractDestination.md +12 -0
- package/docs/TransactionWebhookEventData.md +1 -1
- package/docs/TransactionsApi.md +1 -1
- package/docs/TronContractCallDestination.md +12 -0
- package/docs/UpdateCounterpartyByIdRequest.md +13 -0
- package/docs/UpdateDestinationBankAccount.md +19 -0
- package/docs/UpdateDestinationByIdRequest.md +14 -0
- package/docs/WalletAddress.md +12 -0
- package/docs/WebhookEventData.md +1 -1
- package/package.json +1 -1
- package/docs/ReceivedAmountPerAddress.md +0 -10
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ For more information about the WaaS 2.0 API, see [Introduction to WaaS 2.0](http
|
|
|
15
15
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
16
16
|
|
|
17
17
|
- API version: v2
|
|
18
|
-
- Package version: 1.
|
|
18
|
+
- Package version: 1.27.0
|
|
19
19
|
- Generator version: 7.6.0
|
|
20
20
|
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
21
21
|
For more information, please visit [https://www.cobo.com/waas](https://www.cobo.com/waas)
|
|
@@ -113,8 +113,14 @@ Class | Method | HTTP request | Description
|
|
|
113
113
|
*CoboWaas2.OAuthApi* | [**refreshPermissionToken**](docs/OAuthApi.md#refreshPermissionToken) | **POST** /oauth/permission_token/refresh | Refresh Access Token
|
|
114
114
|
*CoboWaas2.OAuthApi* | [**refreshToken**](docs/OAuthApi.md#refreshToken) | **POST** /oauth/token | Refresh Org Access Token
|
|
115
115
|
*CoboWaas2.OrganizationsApi* | [**getOrgInfo**](docs/OrganizationsApi.md#getOrgInfo) | **GET** /organizations/info | Get organization information
|
|
116
|
+
*CoboWaas2.PaymentApi* | [**batchGetExchangeRates**](docs/PaymentApi.md#batchGetExchangeRates) | **GET** /payments/exchange_rates | Batch get exchange rates
|
|
116
117
|
*CoboWaas2.PaymentApi* | [**cancelRefundById**](docs/PaymentApi.md#cancelRefundById) | **PUT** /payments/refunds/{refund_id}/cancel | Cancel refund order
|
|
118
|
+
*CoboWaas2.PaymentApi* | [**createCounterparty**](docs/PaymentApi.md#createCounterparty) | **POST** /payments/counterparty | Create counterparty
|
|
119
|
+
*CoboWaas2.PaymentApi* | [**createCounterpartyWalletAddress**](docs/PaymentApi.md#createCounterpartyWalletAddress) | **POST** /payments/counterparty/wallet_address | Create counterparty wallet address
|
|
117
120
|
*CoboWaas2.PaymentApi* | [**createCryptoAddress**](docs/PaymentApi.md#createCryptoAddress) | **POST** /payments/crypto_addresses | Create crypto address
|
|
121
|
+
*CoboWaas2.PaymentApi* | [**createDestination**](docs/PaymentApi.md#createDestination) | **POST** /payments/destination | Create destination
|
|
122
|
+
*CoboWaas2.PaymentApi* | [**createDestinationBankAccount**](docs/PaymentApi.md#createDestinationBankAccount) | **POST** /payments/destination/bank_account | Create destination bank account
|
|
123
|
+
*CoboWaas2.PaymentApi* | [**createDestinationWalletAddress**](docs/PaymentApi.md#createDestinationWalletAddress) | **POST** /payments/destination/wallet_address | Create destination wallet address
|
|
118
124
|
*CoboWaas2.PaymentApi* | [**createForcedSweepRequest**](docs/PaymentApi.md#createForcedSweepRequest) | **POST** /payments/force_sweep_requests | Create forced sweep
|
|
119
125
|
*CoboWaas2.PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
|
|
120
126
|
*CoboWaas2.PaymentApi* | [**createOrderLink**](docs/PaymentApi.md#createOrderLink) | **POST** /payments/links/orders | Create order link
|
|
@@ -122,18 +128,31 @@ Class | Method | HTTP request | Description
|
|
|
122
128
|
*CoboWaas2.PaymentApi* | [**createRefund**](docs/PaymentApi.md#createRefund) | **POST** /payments/refunds | Create refund order
|
|
123
129
|
*CoboWaas2.PaymentApi* | [**createRefundLink**](docs/PaymentApi.md#createRefundLink) | **POST** /payments/links/refunds | Create refund link
|
|
124
130
|
*CoboWaas2.PaymentApi* | [**createSettlementRequest**](docs/PaymentApi.md#createSettlementRequest) | **POST** /payments/settlement_requests | Create settlement request
|
|
131
|
+
*CoboWaas2.PaymentApi* | [**deleteCounterparty**](docs/PaymentApi.md#deleteCounterparty) | **PUT** /payments/counterparty/{counterparty_id}/delete | Delete counterparty
|
|
132
|
+
*CoboWaas2.PaymentApi* | [**deleteCounterpartyWalletAddress**](docs/PaymentApi.md#deleteCounterpartyWalletAddress) | **PUT** /payments/counterparty/wallet_address/{wallet_address_id}/delete | Delete counterparty wallet address
|
|
125
133
|
*CoboWaas2.PaymentApi* | [**deleteCryptoAddress**](docs/PaymentApi.md#deleteCryptoAddress) | **POST** /payments/crypto_addresses/{crypto_address_id}/delete | Delete crypto address
|
|
134
|
+
*CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination
|
|
135
|
+
*CoboWaas2.PaymentApi* | [**deleteDestinationBankAccount**](docs/PaymentApi.md#deleteDestinationBankAccount) | **PUT** /payments/destination/bank_account/{bank_account_id}/delete | Delete destination bank account
|
|
136
|
+
*CoboWaas2.PaymentApi* | [**deleteDestinationWalletAddress**](docs/PaymentApi.md#deleteDestinationWalletAddress) | **PUT** /payments/destination/wallet_address/{wallet_address_id}/delete | Delete destination wallet address
|
|
137
|
+
*CoboWaas2.PaymentApi* | [**enableDestinationWhitelist**](docs/PaymentApi.md#enableDestinationWhitelist) | **POST** /payments/destination/enable_whitelist | Enable or disable destination whitelist
|
|
138
|
+
*CoboWaas2.PaymentApi* | [**getCounterpartyDetailById**](docs/PaymentApi.md#getCounterpartyDetailById) | **GET** /payments/counterparty/{counterparty_id}/detail | Get counterparty information
|
|
139
|
+
*CoboWaas2.PaymentApi* | [**getDestinationBankAccountDetailById**](docs/PaymentApi.md#getDestinationBankAccountDetailById) | **GET** /payments/destination/bank_account/{bank_account_id}/detail | Get destination bank account information
|
|
140
|
+
*CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information
|
|
126
141
|
*CoboWaas2.PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
|
|
127
|
-
*CoboWaas2.PaymentApi* | [**getPayerBalanceByAddress**](docs/PaymentApi.md#getPayerBalanceByAddress) | **GET** /payments/balance/payer/address | Get payer balance
|
|
128
142
|
*CoboWaas2.PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
|
|
129
143
|
*CoboWaas2.PaymentApi* | [**getPspBalance**](docs/PaymentApi.md#getPspBalance) | **GET** /payments/balance/psp | Get developer balance
|
|
130
144
|
*CoboWaas2.PaymentApi* | [**getRefundDetailById**](docs/PaymentApi.md#getRefundDetailById) | **GET** /payments/refunds/{refund_id} | Get refund order information
|
|
131
145
|
*CoboWaas2.PaymentApi* | [**getRefunds**](docs/PaymentApi.md#getRefunds) | **GET** /payments/refunds | List all refund orders
|
|
132
146
|
*CoboWaas2.PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
|
|
133
147
|
*CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
|
|
134
|
-
*CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Get top-up address
|
|
148
|
+
*CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Create/Get top-up address
|
|
135
149
|
*CoboWaas2.PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
|
|
150
|
+
*CoboWaas2.PaymentApi* | [**listCounterparties**](docs/PaymentApi.md#listCounterparties) | **GET** /payments/counterparty | List all counterparties
|
|
151
|
+
*CoboWaas2.PaymentApi* | [**listCounterpartyWalletAddress**](docs/PaymentApi.md#listCounterpartyWalletAddress) | **GET** /payments/counterparty/wallet_address | List counterparty wallet addresses
|
|
136
152
|
*CoboWaas2.PaymentApi* | [**listCryptoAddresses**](docs/PaymentApi.md#listCryptoAddresses) | **GET** /payments/crypto_addresses | List crypto addresses
|
|
153
|
+
*CoboWaas2.PaymentApi* | [**listDestinationBankAccounts**](docs/PaymentApi.md#listDestinationBankAccounts) | **GET** /payments/destination/bank_account | List destination bank accounts
|
|
154
|
+
*CoboWaas2.PaymentApi* | [**listDestinationWalletAddresses**](docs/PaymentApi.md#listDestinationWalletAddresses) | **GET** /payments/destination/wallet_address | List destination wallet addresses
|
|
155
|
+
*CoboWaas2.PaymentApi* | [**listDestinations**](docs/PaymentApi.md#listDestinations) | **GET** /payments/destination | List all destinations
|
|
137
156
|
*CoboWaas2.PaymentApi* | [**listForcedSweepRequests**](docs/PaymentApi.md#listForcedSweepRequests) | **GET** /payments/force_sweep_requests | List forced sweeps
|
|
138
157
|
*CoboWaas2.PaymentApi* | [**listMerchantBalances**](docs/PaymentApi.md#listMerchantBalances) | **GET** /payments/balance/merchants | List merchant balances
|
|
139
158
|
*CoboWaas2.PaymentApi* | [**listMerchants**](docs/PaymentApi.md#listMerchants) | **GET** /payments/merchants | List all merchants
|
|
@@ -145,7 +164,11 @@ Class | Method | HTTP request | Description
|
|
|
145
164
|
*CoboWaas2.PaymentApi* | [**listTopUpPayerAccounts**](docs/PaymentApi.md#listTopUpPayerAccounts) | **GET** /payments/topup/payer_accounts | List top-up payer accounts
|
|
146
165
|
*CoboWaas2.PaymentApi* | [**listTopUpPayers**](docs/PaymentApi.md#listTopUpPayers) | **GET** /payments/topup/payers | List payers
|
|
147
166
|
*CoboWaas2.PaymentApi* | [**paymentEstimateFee**](docs/PaymentApi.md#paymentEstimateFee) | **POST** /payments/estimate_fee | Estimate fees
|
|
167
|
+
*CoboWaas2.PaymentApi* | [**queryDestinationWhitelistEnabled**](docs/PaymentApi.md#queryDestinationWhitelistEnabled) | **GET** /payments/destination/enable_whitelist | Query destination whitelist enabled status
|
|
148
168
|
*CoboWaas2.PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
|
|
169
|
+
*CoboWaas2.PaymentApi* | [**updateCounterpartyById**](docs/PaymentApi.md#updateCounterpartyById) | **PUT** /payments/counterparty/{counterparty_id}/update | Update counterparty
|
|
170
|
+
*CoboWaas2.PaymentApi* | [**updateDestinationBankAccountById**](docs/PaymentApi.md#updateDestinationBankAccountById) | **PUT** /payments/destination/bank_account/{bank_account_id}/update | Update destination bank account
|
|
171
|
+
*CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination
|
|
149
172
|
*CoboWaas2.PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
|
|
150
173
|
*CoboWaas2.PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
|
|
151
174
|
*CoboWaas2.PaymentApi* | [**updateRefundById**](docs/PaymentApi.md#updateRefundById) | **PUT** /payments/refunds/{refund_id} | Update refund order
|
|
@@ -340,6 +363,7 @@ Class | Method | HTTP request | Description
|
|
|
340
363
|
- [CoboWaas2.BalanceUpdateInfo](docs/BalanceUpdateInfo.md)
|
|
341
364
|
- [CoboWaas2.BalanceUpdateInfoEventData](docs/BalanceUpdateInfoEventData.md)
|
|
342
365
|
- [CoboWaas2.BankAccount](docs/BankAccount.md)
|
|
366
|
+
- [CoboWaas2.BankAccountStatus](docs/BankAccountStatus.md)
|
|
343
367
|
- [CoboWaas2.BaseContractCallSource](docs/BaseContractCallSource.md)
|
|
344
368
|
- [CoboWaas2.BaseEstimateStakingFee](docs/BaseEstimateStakingFee.md)
|
|
345
369
|
- [CoboWaas2.BaseStakeExtra](docs/BaseStakeExtra.md)
|
|
@@ -374,6 +398,10 @@ Class | Method | HTTP request | Description
|
|
|
374
398
|
- [CoboWaas2.CosmosAdr36MessageSignDestination](docs/CosmosAdr36MessageSignDestination.md)
|
|
375
399
|
- [CoboWaas2.CosmosContractCallDestination](docs/CosmosContractCallDestination.md)
|
|
376
400
|
- [CoboWaas2.CosmosContractCallMessage](docs/CosmosContractCallMessage.md)
|
|
401
|
+
- [CoboWaas2.Counterparty](docs/Counterparty.md)
|
|
402
|
+
- [CoboWaas2.CounterpartyDetail](docs/CounterpartyDetail.md)
|
|
403
|
+
- [CoboWaas2.CounterpartyType](docs/CounterpartyType.md)
|
|
404
|
+
- [CoboWaas2.CounterpartyWalletAddressDetail](docs/CounterpartyWalletAddressDetail.md)
|
|
377
405
|
- [CoboWaas2.CreateAddressBookParam](docs/CreateAddressBookParam.md)
|
|
378
406
|
- [CoboWaas2.CreateAddressBooks201Response](docs/CreateAddressBooks201Response.md)
|
|
379
407
|
- [CoboWaas2.CreateAddressBooksParam](docs/CreateAddressBooksParam.md)
|
|
@@ -386,8 +414,14 @@ Class | Method | HTTP request | Description
|
|
|
386
414
|
- [CoboWaas2.CreateBabylonStakingRegistrationRequest](docs/CreateBabylonStakingRegistrationRequest.md)
|
|
387
415
|
- [CoboWaas2.CreateClaimActivity](docs/CreateClaimActivity.md)
|
|
388
416
|
- [CoboWaas2.CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
|
|
417
|
+
- [CoboWaas2.CreateCounterpartyRequest](docs/CreateCounterpartyRequest.md)
|
|
418
|
+
- [CoboWaas2.CreateCounterpartyWalletAddressRequest](docs/CreateCounterpartyWalletAddressRequest.md)
|
|
389
419
|
- [CoboWaas2.CreateCryptoAddressRequest](docs/CreateCryptoAddressRequest.md)
|
|
390
420
|
- [CoboWaas2.CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
|
|
421
|
+
- [CoboWaas2.CreateDestinationBankAccount](docs/CreateDestinationBankAccount.md)
|
|
422
|
+
- [CoboWaas2.CreateDestinationBankAccountRequest](docs/CreateDestinationBankAccountRequest.md)
|
|
423
|
+
- [CoboWaas2.CreateDestinationRequest](docs/CreateDestinationRequest.md)
|
|
424
|
+
- [CoboWaas2.CreateDestinationWalletAddressRequest](docs/CreateDestinationWalletAddressRequest.md)
|
|
391
425
|
- [CoboWaas2.CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
|
|
392
426
|
- [CoboWaas2.CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
|
|
393
427
|
- [CoboWaas2.CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
|
|
@@ -418,6 +452,7 @@ Class | Method | HTTP request | Description
|
|
|
418
452
|
- [CoboWaas2.CreateUnstakeActivity](docs/CreateUnstakeActivity.md)
|
|
419
453
|
- [CoboWaas2.CreateUnstakeActivityExtra](docs/CreateUnstakeActivityExtra.md)
|
|
420
454
|
- [CoboWaas2.CreateUnstakeActivityRequest](docs/CreateUnstakeActivityRequest.md)
|
|
455
|
+
- [CoboWaas2.CreateWalletAddress](docs/CreateWalletAddress.md)
|
|
421
456
|
- [CoboWaas2.CreateWalletParams](docs/CreateWalletParams.md)
|
|
422
457
|
- [CoboWaas2.CreateWebhookEndpointRequest](docs/CreateWebhookEndpointRequest.md)
|
|
423
458
|
- [CoboWaas2.CreateWithdrawActivity](docs/CreateWithdrawActivity.md)
|
|
@@ -432,10 +467,21 @@ Class | Method | HTTP request | Description
|
|
|
432
467
|
- [CoboWaas2.CustodialWeb3MessageSignSource](docs/CustodialWeb3MessageSignSource.md)
|
|
433
468
|
- [CoboWaas2.CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
|
|
434
469
|
- [CoboWaas2.DeleteAddressBookById201Response](docs/DeleteAddressBookById201Response.md)
|
|
470
|
+
- [CoboWaas2.DeleteCounterparty200Response](docs/DeleteCounterparty200Response.md)
|
|
471
|
+
- [CoboWaas2.DeleteCounterpartyWalletAddress200Response](docs/DeleteCounterpartyWalletAddress200Response.md)
|
|
435
472
|
- [CoboWaas2.DeleteCryptoAddress201Response](docs/DeleteCryptoAddress201Response.md)
|
|
473
|
+
- [CoboWaas2.DeleteDestination200Response](docs/DeleteDestination200Response.md)
|
|
474
|
+
- [CoboWaas2.DeleteDestinationBankAccount200Response](docs/DeleteDestinationBankAccount200Response.md)
|
|
475
|
+
- [CoboWaas2.DeleteDestinationWalletAddress200Response](docs/DeleteDestinationWalletAddress200Response.md)
|
|
436
476
|
- [CoboWaas2.DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
|
|
437
477
|
- [CoboWaas2.DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
|
|
438
478
|
- [CoboWaas2.DeleteWalletById201Response](docs/DeleteWalletById201Response.md)
|
|
479
|
+
- [CoboWaas2.Destination](docs/Destination.md)
|
|
480
|
+
- [CoboWaas2.DestinationBankAccount](docs/DestinationBankAccount.md)
|
|
481
|
+
- [CoboWaas2.DestinationBankAccountDetail](docs/DestinationBankAccountDetail.md)
|
|
482
|
+
- [CoboWaas2.DestinationDetail](docs/DestinationDetail.md)
|
|
483
|
+
- [CoboWaas2.DestinationType](docs/DestinationType.md)
|
|
484
|
+
- [CoboWaas2.DestinationWalletAddressDetail](docs/DestinationWalletAddressDetail.md)
|
|
439
485
|
- [CoboWaas2.DestinationWalletType](docs/DestinationWalletType.md)
|
|
440
486
|
- [CoboWaas2.DispositionEventData](docs/DispositionEventData.md)
|
|
441
487
|
- [CoboWaas2.DispositionQueryResponse](docs/DispositionQueryResponse.md)
|
|
@@ -445,6 +491,7 @@ Class | Method | HTTP request | Description
|
|
|
445
491
|
- [CoboWaas2.EigenLayerLstStakeExtra](docs/EigenLayerLstStakeExtra.md)
|
|
446
492
|
- [CoboWaas2.EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
|
|
447
493
|
- [CoboWaas2.EigenlayerValidator](docs/EigenlayerValidator.md)
|
|
494
|
+
- [CoboWaas2.EnableDestinationWhitelistRequest](docs/EnableDestinationWhitelistRequest.md)
|
|
448
495
|
- [CoboWaas2.ErrorResponse](docs/ErrorResponse.md)
|
|
449
496
|
- [CoboWaas2.EstimateClaimFee](docs/EstimateClaimFee.md)
|
|
450
497
|
- [CoboWaas2.EstimateContractCallFeeParams](docs/EstimateContractCallFeeParams.md)
|
|
@@ -482,6 +529,7 @@ Class | Method | HTTP request | Description
|
|
|
482
529
|
- [CoboWaas2.ExchangeId](docs/ExchangeId.md)
|
|
483
530
|
- [CoboWaas2.ExchangePermissionToken201Response](docs/ExchangePermissionToken201Response.md)
|
|
484
531
|
- [CoboWaas2.ExchangePermissionTokenRequest](docs/ExchangePermissionTokenRequest.md)
|
|
532
|
+
- [CoboWaas2.ExchangeRate](docs/ExchangeRate.md)
|
|
485
533
|
- [CoboWaas2.ExchangeTransferDestination](docs/ExchangeTransferDestination.md)
|
|
486
534
|
- [CoboWaas2.ExchangeTransferSource](docs/ExchangeTransferSource.md)
|
|
487
535
|
- [CoboWaas2.ExchangeWalletInfo](docs/ExchangeWalletInfo.md)
|
|
@@ -521,6 +569,7 @@ Class | Method | HTTP request | Description
|
|
|
521
569
|
- [CoboWaas2.GraphQLRequest](docs/GraphQLRequest.md)
|
|
522
570
|
- [CoboWaas2.GraphQLResponse](docs/GraphQLResponse.md)
|
|
523
571
|
- [CoboWaas2.GuardPubkeyStatus](docs/GuardPubkeyStatus.md)
|
|
572
|
+
- [CoboWaas2.IntermediaryBankInfo](docs/IntermediaryBankInfo.md)
|
|
524
573
|
- [CoboWaas2.IsolateDisposition](docs/IsolateDisposition.md)
|
|
525
574
|
- [CoboWaas2.KeyShareHolder](docs/KeyShareHolder.md)
|
|
526
575
|
- [CoboWaas2.KeyShareHolderGroup](docs/KeyShareHolderGroup.md)
|
|
@@ -547,6 +596,11 @@ Class | Method | HTTP request | Description
|
|
|
547
596
|
- [CoboWaas2.ListBabylonEligibleStakings200ResponseDataInner](docs/ListBabylonEligibleStakings200ResponseDataInner.md)
|
|
548
597
|
- [CoboWaas2.ListBabylonStakingRegistrations200Response](docs/ListBabylonStakingRegistrations200Response.md)
|
|
549
598
|
- [CoboWaas2.ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
|
|
599
|
+
- [CoboWaas2.ListCounterparties200Response](docs/ListCounterparties200Response.md)
|
|
600
|
+
- [CoboWaas2.ListCounterpartyWalletAddress200Response](docs/ListCounterpartyWalletAddress200Response.md)
|
|
601
|
+
- [CoboWaas2.ListDestinationBankAccounts200Response](docs/ListDestinationBankAccounts200Response.md)
|
|
602
|
+
- [CoboWaas2.ListDestinationWalletAddresses200Response](docs/ListDestinationWalletAddresses200Response.md)
|
|
603
|
+
- [CoboWaas2.ListDestinations200Response](docs/ListDestinations200Response.md)
|
|
550
604
|
- [CoboWaas2.ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
|
|
551
605
|
- [CoboWaas2.ListForcedSweepRequests200Response](docs/ListForcedSweepRequests200Response.md)
|
|
552
606
|
- [CoboWaas2.ListKeyShareHolderGroups200Response](docs/ListKeyShareHolderGroups200Response.md)
|
|
@@ -641,9 +695,9 @@ Class | Method | HTTP request | Description
|
|
|
641
695
|
- [CoboWaas2.PoolSummary](docs/PoolSummary.md)
|
|
642
696
|
- [CoboWaas2.PspBalance](docs/PspBalance.md)
|
|
643
697
|
- [CoboWaas2.QueryApprovalStatement200Response](docs/QueryApprovalStatement200Response.md)
|
|
698
|
+
- [CoboWaas2.QueryDestinationWhitelistEnabled200Response](docs/QueryDestinationWhitelistEnabled200Response.md)
|
|
644
699
|
- [CoboWaas2.QueryGuardPubkey200Response](docs/QueryGuardPubkey200Response.md)
|
|
645
700
|
- [CoboWaas2.QueryGuardPubkey200ResponseAddressesInner](docs/QueryGuardPubkey200ResponseAddressesInner.md)
|
|
646
|
-
- [CoboWaas2.ReceivedAmountPerAddress](docs/ReceivedAmountPerAddress.md)
|
|
647
701
|
- [CoboWaas2.RefreshAddressBalancesByToken200Response](docs/RefreshAddressBalancesByToken200Response.md)
|
|
648
702
|
- [CoboWaas2.RefreshAddressBalancesByTokenRequest](docs/RefreshAddressBalancesByTokenRequest.md)
|
|
649
703
|
- [CoboWaas2.RefreshPermissionTokenRequest](docs/RefreshPermissionTokenRequest.md)
|
|
@@ -940,6 +994,7 @@ Class | Method | HTTP request | Description
|
|
|
940
994
|
- [CoboWaas2.TransactionTransferToAddressDestinationAccountOutput](docs/TransactionTransferToAddressDestinationAccountOutput.md)
|
|
941
995
|
- [CoboWaas2.TransactionTransferToAddressDestinationUtxoOutputsInner](docs/TransactionTransferToAddressDestinationUtxoOutputsInner.md)
|
|
942
996
|
- [CoboWaas2.TransactionTransferToWalletDestination](docs/TransactionTransferToWalletDestination.md)
|
|
997
|
+
- [CoboWaas2.TransactionTronContractDestination](docs/TransactionTronContractDestination.md)
|
|
943
998
|
- [CoboWaas2.TransactionType](docs/TransactionType.md)
|
|
944
999
|
- [CoboWaas2.TransactionUserApprovalDetail](docs/TransactionUserApprovalDetail.md)
|
|
945
1000
|
- [CoboWaas2.TransactionUtxo](docs/TransactionUtxo.md)
|
|
@@ -964,11 +1019,15 @@ Class | Method | HTTP request | Description
|
|
|
964
1019
|
- [CoboWaas2.TravelRuleWithdrawRequestTravelRuleInfo](docs/TravelRuleWithdrawRequestTravelRuleInfo.md)
|
|
965
1020
|
- [CoboWaas2.TriggerTestWebhookEvent201Response](docs/TriggerTestWebhookEvent201Response.md)
|
|
966
1021
|
- [CoboWaas2.TriggerTestWebhookEventRequest](docs/TriggerTestWebhookEventRequest.md)
|
|
1022
|
+
- [CoboWaas2.TronContractCallDestination](docs/TronContractCallDestination.md)
|
|
967
1023
|
- [CoboWaas2.UTXO](docs/UTXO.md)
|
|
968
1024
|
- [CoboWaas2.UnfreezeDisposition](docs/UnfreezeDisposition.md)
|
|
969
1025
|
- [CoboWaas2.UpdateAddressBookParam](docs/UpdateAddressBookParam.md)
|
|
970
1026
|
- [CoboWaas2.UpdateBankAccountByIdRequest](docs/UpdateBankAccountByIdRequest.md)
|
|
1027
|
+
- [CoboWaas2.UpdateCounterpartyByIdRequest](docs/UpdateCounterpartyByIdRequest.md)
|
|
971
1028
|
- [CoboWaas2.UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
|
|
1029
|
+
- [CoboWaas2.UpdateDestinationBankAccount](docs/UpdateDestinationBankAccount.md)
|
|
1030
|
+
- [CoboWaas2.UpdateDestinationByIdRequest](docs/UpdateDestinationByIdRequest.md)
|
|
972
1031
|
- [CoboWaas2.UpdateExchangeWalletParams](docs/UpdateExchangeWalletParams.md)
|
|
973
1032
|
- [CoboWaas2.UpdateGroupAction](docs/UpdateGroupAction.md)
|
|
974
1033
|
- [CoboWaas2.UpdateKeyShareHolderGroupByIdRequest](docs/UpdateKeyShareHolderGroupByIdRequest.md)
|
|
@@ -985,6 +1044,7 @@ Class | Method | HTTP request | Description
|
|
|
985
1044
|
- [CoboWaas2.UtxoFeeBasePrice](docs/UtxoFeeBasePrice.md)
|
|
986
1045
|
- [CoboWaas2.UtxoFeeRate](docs/UtxoFeeRate.md)
|
|
987
1046
|
- [CoboWaas2.Vasp](docs/Vasp.md)
|
|
1047
|
+
- [CoboWaas2.WalletAddress](docs/WalletAddress.md)
|
|
988
1048
|
- [CoboWaas2.WalletInfo](docs/WalletInfo.md)
|
|
989
1049
|
- [CoboWaas2.WalletInfoEventData](docs/WalletInfoEventData.md)
|
|
990
1050
|
- [CoboWaas2.WalletSetup](docs/WalletSetup.md)
|
package/dist/ApiClient.js
CHANGED
|
@@ -460,7 +460,7 @@ var DevelopersWebhooksApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
460
460
|
|
|
461
461
|
/**
|
|
462
462
|
* Trigger test event
|
|
463
|
-
* This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types `Transaction` and `TSSRequest
|
|
463
|
+
* This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types [`Transaction`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#transaction-events-deposits%2Fwithdrawals%2Fcontract-calls%2Fmessage-signing) and [`TSSRequest`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#mpc-tss-request-events).</Note>
|
|
464
464
|
* @param {Object} opts Optional parameters
|
|
465
465
|
* @param {module:model/TriggerTestWebhookEventRequest} [TriggerTestWebhookEventRequest] The request body used to trigger a test webhook event.
|
|
466
466
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/TriggerTestWebhookEvent201Response} and HTTP response
|
|
@@ -486,7 +486,7 @@ var DevelopersWebhooksApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* Trigger test event
|
|
489
|
-
* This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types `Transaction` and `TSSRequest
|
|
489
|
+
* This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types [`Transaction`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#transaction-events-deposits%2Fwithdrawals%2Fcontract-calls%2Fmessage-signing) and [`TSSRequest`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#mpc-tss-request-events).</Note>
|
|
490
490
|
* @param {Object} opts Optional parameters
|
|
491
491
|
* @param {module:model/TriggerTestWebhookEventRequest} opts.TriggerTestWebhookEventRequest The request body used to trigger a test webhook event.
|
|
492
492
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/TriggerTestWebhookEvent201Response}
|