@cobo/cobo-waas2 1.29.0 → 1.31.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 +28 -44
- 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 +194 -954
- package/dist/api/SwapsApi.js +3 -0
- package/dist/api/WalletsApi.js +18 -18
- package/dist/index.js +133 -133
- 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/Balance.js +14 -0
- 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 +12 -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 +17 -1
- package/dist/model/CreateBatchAllocationRequest.js +17 -17
- package/dist/model/CreateBulkSendRequest.js +167 -0
- package/dist/model/{CreateCounterpartyWalletAddressRequest.js → CreateBulkSendRequestPayoutParamsInner.js} +59 -46
- package/dist/model/CreateKyaScreeningsBody.js +3 -3
- package/dist/model/CreatePaymentOrderRequest.js +10 -7
- package/dist/model/CreatePayoutRequest.js +33 -26
- package/dist/model/{DeleteDestination200Response.js → CreateTopUpAddresses.js} +57 -28
- package/dist/model/{ListDestinationBankAccounts200Response.js → CreateTopUpAddresses201Response.js} +21 -37
- package/dist/model/CreateWalletAddress.js +2 -2
- 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/PaymentBridgeStatus.js +61 -0
- 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 +93 -44
- package/dist/model/PaymentPayoutDetail.js +204 -54
- package/dist/model/PaymentPayoutEvent.js +185 -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/PreCheck.js +89 -0
- package/dist/model/SkipCheckType.js +56 -0
- package/dist/model/SupportedToken.js +17 -17
- 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/{CreateDestinationWalletAddressRequest.js → TransactionWalletConnectInfo.js} +52 -46
- package/dist/model/TransactionWebhookEventData.js +8 -3
- package/dist/model/TransferParams.js +16 -0
- package/dist/model/WalletInfoEventData.js +8 -3
- package/dist/model/WebhookEventData.js +82 -17
- package/dist/model/WebhookEventDataType.js +7 -2
- package/dist/model/WebhookEventType.js +25 -0
- package/docs/AddressesEventData.md +3 -1
- package/docs/AllocationItem.md +15 -0
- package/docs/AllocationParam.md +13 -0
- package/docs/Balance.md +1 -0
- package/docs/BalanceUpdateInfoEventData.md +3 -1
- package/docs/BatchAllocation.md +1 -1
- package/docs/BatchAllocationDetail.md +1 -1
- package/docs/BridgingFee.md +3 -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 +2 -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 +3 -3
- package/docs/CreatePayoutRequest.md +3 -3
- package/docs/CreateTopUpAddresses.md +11 -0
- package/docs/{DeleteDestination200Response.md → CreateTopUpAddresses201Response.md} +2 -2
- package/docs/CreateWalletAddress.md +1 -1
- 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 +197 -1063
- package/docs/PaymentBridgeStatus.md +12 -0
- 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 +9 -7
- package/docs/PaymentPayoutDetail.md +11 -8
- package/docs/PaymentPayoutEvent.md +14 -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/PreCheck.md +9 -0
- package/docs/SkipCheckType.md +10 -0
- package/docs/SupportedToken.md +10 -10
- 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/TransferParams.md +1 -0
- package/docs/WalletInfoEventData.md +3 -1
- package/docs/WalletsApi.md +9 -9
- package/docs/WebhookEventData.md +16 -8
- package/docs/WebhookEventDataType.md +3 -1
- package/docs/WebhookEventType.md +10 -0
- package/package.json +1 -1
- package/dist/model/CreateDestinationBankAccountRequest.js +0 -272
- package/dist/model/DeleteCounterparty200Response.js +0 -110
- package/dist/model/DeleteCounterpartyWalletAddress200Response.js +0 -110
- package/dist/model/DeleteDestinationBankAccount200Response.js +0 -110
- package/dist/model/DeleteDestinationWalletAddress200Response.js +0 -110
- package/dist/model/EnableDestinationWhitelistRequest.js +0 -106
- package/dist/model/ListCounterpartyWalletAddress200Response.js +0 -123
- package/dist/model/ListDestinationWalletAddresses200Response.js +0 -123
- package/dist/model/PaymentPayoutItemDetail.js +0 -299
- package/dist/model/QueryDestinationWhitelistEnabled200Response.js +0 -106
- package/dist/model/UpdateCounterpartyByIdRequest.js +0 -160
- package/dist/model/UpdateDestinationByIdRequest.js +0 -173
- package/docs/AllocationRecord.md +0 -15
- package/docs/AllocationRequest.md +0 -13
- package/docs/CreateCounterpartyWalletAddressRequest.md +0 -11
- package/docs/CreateDestinationBankAccountRequest.md +0 -20
- package/docs/CreateDestinationWalletAddressRequest.md +0 -11
- package/docs/DeleteCounterparty200Response.md +0 -9
- package/docs/DeleteCounterpartyWalletAddress200Response.md +0 -9
- package/docs/DeleteDestinationBankAccount200Response.md +0 -9
- package/docs/DeleteDestinationWalletAddress200Response.md +0 -9
- package/docs/EnableDestinationWhitelistRequest.md +0 -9
- package/docs/ListCounterpartyWalletAddress200Response.md +0 -10
- package/docs/ListDestinationBankAccounts200Response.md +0 -10
- package/docs/ListDestinationWalletAddresses200Response.md +0 -10
- package/docs/PaymentPayoutItemDetail.md +0 -22
- package/docs/QueryDestinationWhitelistEnabled200Response.md +0 -9
- package/docs/UpdateCounterpartyByIdRequest.md +0 -13
- package/docs/UpdateDestinationByIdRequest.md +0 -14
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.31.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)
|
|
@@ -111,6 +111,7 @@ Class | Method | HTTP request | Description
|
|
|
111
111
|
*CoboWaas2.FeeStationApi* | [**listFeeStationAddresses**](docs/FeeStationApi.md#listFeeStationAddresses) | **GET** /fee_station/addresses | List Fee Station addresses
|
|
112
112
|
*CoboWaas2.FeeStationApi* | [**listFeeStationTransactions**](docs/FeeStationApi.md#listFeeStationTransactions) | **GET** /fee_station/transactions | List all Fee Station transactions
|
|
113
113
|
*CoboWaas2.FeeStationApi* | [**listTokenBalancesForFeeStation**](docs/FeeStationApi.md#listTokenBalancesForFeeStation) | **GET** /fee_station/tokens | List Fee Station token balances
|
|
114
|
+
*CoboWaas2.GraphQLApi* | [**executeGraphql**](docs/GraphQLApi.md#executeGraphql) | **POST** /graphql | Execute a GraphQL query or mutation
|
|
114
115
|
*CoboWaas2.OAuthApi* | [**exchangePermissionToken**](docs/OAuthApi.md#exchangePermissionToken) | **POST** /oauth/permission_token/exchange | Get Access Token
|
|
115
116
|
*CoboWaas2.OAuthApi* | [**getToken**](docs/OAuthApi.md#getToken) | **GET** /oauth/token | Get Org Access Token
|
|
116
117
|
*CoboWaas2.OAuthApi* | [**refreshPermissionToken**](docs/OAuthApi.md#refreshPermissionToken) | **POST** /oauth/permission_token/refresh | Refresh Access Token
|
|
@@ -119,14 +120,12 @@ Class | Method | HTTP request | Description
|
|
|
119
120
|
*CoboWaas2.PaymentApi* | [**batchGetExchangeRates**](docs/PaymentApi.md#batchGetExchangeRates) | **GET** /payments/exchange_rates | Batch get exchange rates
|
|
120
121
|
*CoboWaas2.PaymentApi* | [**cancelRefundById**](docs/PaymentApi.md#cancelRefundById) | **PUT** /payments/refunds/{refund_id}/cancel | Cancel refund order
|
|
121
122
|
*CoboWaas2.PaymentApi* | [**createBatchAllocation**](docs/PaymentApi.md#createBatchAllocation) | **POST** /payments/batch_allocations | Create batch allocation
|
|
123
|
+
*CoboWaas2.PaymentApi* | [**createBulkSend**](docs/PaymentApi.md#createBulkSend) | **POST** /payments/bulk_sends | Create bulk send
|
|
122
124
|
*CoboWaas2.PaymentApi* | [**createCounterparty**](docs/PaymentApi.md#createCounterparty) | **POST** /payments/counterparty | Create counterparty
|
|
123
125
|
*CoboWaas2.PaymentApi* | [**createCounterpartyEntry**](docs/PaymentApi.md#createCounterpartyEntry) | **POST** /payments/counterparty_entry | Create counterparty entry
|
|
124
|
-
*CoboWaas2.PaymentApi* | [**createCounterpartyWalletAddress**](docs/PaymentApi.md#createCounterpartyWalletAddress) | **POST** /payments/counterparty/wallet_address | Create counterparty wallet address
|
|
125
126
|
*CoboWaas2.PaymentApi* | [**createCryptoAddress**](docs/PaymentApi.md#createCryptoAddress) | **POST** /payments/crypto_addresses | Create crypto address
|
|
126
127
|
*CoboWaas2.PaymentApi* | [**createDestination**](docs/PaymentApi.md#createDestination) | **POST** /payments/destination | Create destination
|
|
127
|
-
*CoboWaas2.PaymentApi* | [**createDestinationBankAccount**](docs/PaymentApi.md#createDestinationBankAccount) | **POST** /payments/destination/bank_account | Create destination bank account
|
|
128
128
|
*CoboWaas2.PaymentApi* | [**createDestinationEntry**](docs/PaymentApi.md#createDestinationEntry) | **POST** /payments/destination_entry | Create destination entry
|
|
129
|
-
*CoboWaas2.PaymentApi* | [**createDestinationWalletAddress**](docs/PaymentApi.md#createDestinationWalletAddress) | **POST** /payments/destination/wallet_address | Create destination wallet address
|
|
130
129
|
*CoboWaas2.PaymentApi* | [**createForcedSweepRequest**](docs/PaymentApi.md#createForcedSweepRequest) | **POST** /payments/force_sweep_requests | Create forced sweep
|
|
131
130
|
*CoboWaas2.PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
|
|
132
131
|
*CoboWaas2.PaymentApi* | [**createOrderLink**](docs/PaymentApi.md#createOrderLink) | **POST** /payments/links/orders | Create order link
|
|
@@ -136,25 +135,18 @@ Class | Method | HTTP request | Description
|
|
|
136
135
|
*CoboWaas2.PaymentApi* | [**createRefundLink**](docs/PaymentApi.md#createRefundLink) | **POST** /payments/links/refunds | Create refund link
|
|
137
136
|
*CoboWaas2.PaymentApi* | [**createReport**](docs/PaymentApi.md#createReport) | **POST** /payments/reports | Generate reports
|
|
138
137
|
*CoboWaas2.PaymentApi* | [**createSettlementRequest**](docs/PaymentApi.md#createSettlementRequest) | **POST** /payments/settlement_requests | Create settlement request
|
|
139
|
-
*CoboWaas2.PaymentApi* | [**
|
|
138
|
+
*CoboWaas2.PaymentApi* | [**createTopUpAddresses**](docs/PaymentApi.md#createTopUpAddresses) | **POST** /payments/topup/address | Batch create top-up addresses
|
|
140
139
|
*CoboWaas2.PaymentApi* | [**deleteCounterpartyById**](docs/PaymentApi.md#deleteCounterpartyById) | **DELETE** /payments/counterparty/{counterparty_id} | Delete counterparty
|
|
141
140
|
*CoboWaas2.PaymentApi* | [**deleteCounterpartyEntry**](docs/PaymentApi.md#deleteCounterpartyEntry) | **DELETE** /payments/counterparty_entry/{counterparty_entry_id} | Delete counterparty entry
|
|
142
|
-
*CoboWaas2.PaymentApi* | [**deleteCounterpartyWalletAddress**](docs/PaymentApi.md#deleteCounterpartyWalletAddress) | **PUT** /payments/counterparty/wallet_address/{wallet_address_id}/delete | Delete counterparty wallet address
|
|
143
141
|
*CoboWaas2.PaymentApi* | [**deleteCryptoAddress**](docs/PaymentApi.md#deleteCryptoAddress) | **POST** /payments/crypto_addresses/{crypto_address_id}/delete | Delete crypto address
|
|
144
|
-
*CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination (Deprecated)
|
|
145
|
-
*CoboWaas2.PaymentApi* | [**deleteDestinationBankAccount**](docs/PaymentApi.md#deleteDestinationBankAccount) | **PUT** /payments/destination/bank_account/{bank_account_id}/delete | Delete destination bank account
|
|
146
142
|
*CoboWaas2.PaymentApi* | [**deleteDestinationById**](docs/PaymentApi.md#deleteDestinationById) | **DELETE** /payments/destination/{destination_id} | Delete destination
|
|
147
143
|
*CoboWaas2.PaymentApi* | [**deleteDestinationEntry**](docs/PaymentApi.md#deleteDestinationEntry) | **DELETE** /payments/destination_entry/{destination_entry_id} | Delete destination entry
|
|
148
|
-
*CoboWaas2.PaymentApi* | [**deleteDestinationWalletAddress**](docs/PaymentApi.md#deleteDestinationWalletAddress) | **PUT** /payments/destination/wallet_address/{wallet_address_id}/delete | Delete destination wallet address
|
|
149
|
-
*CoboWaas2.PaymentApi* | [**enableDestinationWhitelist**](docs/PaymentApi.md#enableDestinationWhitelist) | **POST** /payments/destination/enable_whitelist | Enable or disable destination whitelist
|
|
150
144
|
*CoboWaas2.PaymentApi* | [**getAvailableAllocationAmount**](docs/PaymentApi.md#getAvailableAllocationAmount) | **GET** /payments/allocation_amount | Get available allocation amount
|
|
151
145
|
*CoboWaas2.PaymentApi* | [**getBatchAllocationById**](docs/PaymentApi.md#getBatchAllocationById) | **GET** /payments/batch_allocations/{batch_allocation_id} | Get batch allocation information
|
|
146
|
+
*CoboWaas2.PaymentApi* | [**getBulkSendById**](docs/PaymentApi.md#getBulkSendById) | **GET** /payments/bulk_sends/{bulk_send_id} | Get bulk send information
|
|
152
147
|
*CoboWaas2.PaymentApi* | [**getCounterparty**](docs/PaymentApi.md#getCounterparty) | **GET** /payments/counterparty/{counterparty_id} | Get counterparty information
|
|
153
|
-
*CoboWaas2.PaymentApi* | [**getCounterpartyDetailById**](docs/PaymentApi.md#getCounterpartyDetailById) | **GET** /payments/counterparty/{counterparty_id}/detail | Get counterparty information (Deprecated)
|
|
154
148
|
*CoboWaas2.PaymentApi* | [**getCounterpartyEntry**](docs/PaymentApi.md#getCounterpartyEntry) | **GET** /payments/counterparty_entry/{counterparty_entry_id} | Get counterparty entry information
|
|
155
149
|
*CoboWaas2.PaymentApi* | [**getDestination**](docs/PaymentApi.md#getDestination) | **GET** /payments/destination/{destination_id} | Get destination information
|
|
156
|
-
*CoboWaas2.PaymentApi* | [**getDestinationBankAccountDetailById**](docs/PaymentApi.md#getDestinationBankAccountDetailById) | **GET** /payments/destination/bank_account/{bank_account_id}/detail | Get destination bank account information
|
|
157
|
-
*CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information (Deprecated)
|
|
158
150
|
*CoboWaas2.PaymentApi* | [**getDestinationEntry**](docs/PaymentApi.md#getDestinationEntry) | **GET** /payments/destination_entry/{destination_entry_id} | Get destination entry information
|
|
159
151
|
*CoboWaas2.PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
|
|
160
152
|
*CoboWaas2.PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
|
|
@@ -166,37 +158,30 @@ Class | Method | HTTP request | Description
|
|
|
166
158
|
*CoboWaas2.PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
|
|
167
159
|
*CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
|
|
168
160
|
*CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Create/Get top-up address
|
|
169
|
-
*CoboWaas2.PaymentApi* | [**
|
|
161
|
+
*CoboWaas2.PaymentApi* | [**listAllocationItems**](docs/PaymentApi.md#listAllocationItems) | **GET** /payments/allocation_items | List all allocation items
|
|
170
162
|
*CoboWaas2.PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
|
|
171
163
|
*CoboWaas2.PaymentApi* | [**listBatchAllocations**](docs/PaymentApi.md#listBatchAllocations) | **GET** /payments/batch_allocations | List all batch allocations
|
|
164
|
+
*CoboWaas2.PaymentApi* | [**listBulkSendItems**](docs/PaymentApi.md#listBulkSendItems) | **GET** /payments/bulk_sends/{bulk_send_id}/items | List bulk send items
|
|
172
165
|
*CoboWaas2.PaymentApi* | [**listCounterparties**](docs/PaymentApi.md#listCounterparties) | **GET** /payments/counterparty | List all counterparties
|
|
173
166
|
*CoboWaas2.PaymentApi* | [**listCounterpartyEntries**](docs/PaymentApi.md#listCounterpartyEntries) | **GET** /payments/counterparty_entry | List counterparty entries
|
|
174
|
-
*CoboWaas2.PaymentApi* | [**listCounterpartyWalletAddress**](docs/PaymentApi.md#listCounterpartyWalletAddress) | **GET** /payments/counterparty/wallet_address | List counterparty wallet addresses
|
|
175
167
|
*CoboWaas2.PaymentApi* | [**listCryptoAddresses**](docs/PaymentApi.md#listCryptoAddresses) | **GET** /payments/crypto_addresses | List crypto addresses
|
|
176
|
-
*CoboWaas2.PaymentApi* | [**listDestinationBankAccounts**](docs/PaymentApi.md#listDestinationBankAccounts) | **GET** /payments/destination/bank_account | List destination bank accounts
|
|
177
168
|
*CoboWaas2.PaymentApi* | [**listDestinationEntries**](docs/PaymentApi.md#listDestinationEntries) | **GET** /payments/destination_entry | List destination entries
|
|
178
|
-
*CoboWaas2.PaymentApi* | [**listDestinationWalletAddresses**](docs/PaymentApi.md#listDestinationWalletAddresses) | **GET** /payments/destination/wallet_address | List destination wallet addresses
|
|
179
169
|
*CoboWaas2.PaymentApi* | [**listDestinations**](docs/PaymentApi.md#listDestinations) | **GET** /payments/destination | List all destinations
|
|
180
170
|
*CoboWaas2.PaymentApi* | [**listForcedSweepRequests**](docs/PaymentApi.md#listForcedSweepRequests) | **GET** /payments/force_sweep_requests | List forced sweeps
|
|
181
171
|
*CoboWaas2.PaymentApi* | [**listMerchantBalances**](docs/PaymentApi.md#listMerchantBalances) | **GET** /payments/balance/merchants | List merchant balances
|
|
182
172
|
*CoboWaas2.PaymentApi* | [**listMerchants**](docs/PaymentApi.md#listMerchants) | **GET** /payments/merchants | List all merchants
|
|
183
173
|
*CoboWaas2.PaymentApi* | [**listPaymentOrders**](docs/PaymentApi.md#listPaymentOrders) | **GET** /payments/orders | List all pay-in orders
|
|
184
|
-
*CoboWaas2.PaymentApi* | [**listPaymentSupportedTokens**](docs/PaymentApi.md#listPaymentSupportedTokens) | **GET** /payments/supported_tokens | List
|
|
174
|
+
*CoboWaas2.PaymentApi* | [**listPaymentSupportedTokens**](docs/PaymentApi.md#listPaymentSupportedTokens) | **GET** /payments/supported_tokens | List supported tokens
|
|
185
175
|
*CoboWaas2.PaymentApi* | [**listPaymentWalletBalances**](docs/PaymentApi.md#listPaymentWalletBalances) | **GET** /payments/balance/payment_wallets | List payment wallet balances
|
|
186
|
-
*CoboWaas2.PaymentApi* | [**listPayoutItems**](docs/PaymentApi.md#listPayoutItems) | **GET** /payments/payout_items | List all payout items
|
|
187
176
|
*CoboWaas2.PaymentApi* | [**listPayouts**](docs/PaymentApi.md#listPayouts) | **GET** /payments/payouts | List all payouts
|
|
188
177
|
*CoboWaas2.PaymentApi* | [**listSettlementDetails**](docs/PaymentApi.md#listSettlementDetails) | **GET** /payments/settlement_details | List all settlement details
|
|
189
178
|
*CoboWaas2.PaymentApi* | [**listSettlementRequests**](docs/PaymentApi.md#listSettlementRequests) | **GET** /payments/settlement_requests | List all settlement requests
|
|
190
179
|
*CoboWaas2.PaymentApi* | [**listTopUpPayerAccounts**](docs/PaymentApi.md#listTopUpPayerAccounts) | **GET** /payments/topup/payer_accounts | List top-up payer accounts
|
|
191
180
|
*CoboWaas2.PaymentApi* | [**listTopUpPayers**](docs/PaymentApi.md#listTopUpPayers) | **GET** /payments/topup/payers | List payers
|
|
192
181
|
*CoboWaas2.PaymentApi* | [**paymentEstimateFee**](docs/PaymentApi.md#paymentEstimateFee) | **POST** /payments/estimate_fee | Estimate fees
|
|
193
|
-
*CoboWaas2.PaymentApi* | [**queryDestinationWhitelistEnabled**](docs/PaymentApi.md#queryDestinationWhitelistEnabled) | **GET** /payments/destination/enable_whitelist | Query destination whitelist enabled status
|
|
194
182
|
*CoboWaas2.PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
|
|
195
183
|
*CoboWaas2.PaymentApi* | [**updateCounterparty**](docs/PaymentApi.md#updateCounterparty) | **PUT** /payments/counterparty/{counterparty_id} | Update counterparty
|
|
196
|
-
*CoboWaas2.PaymentApi* | [**updateCounterpartyById**](docs/PaymentApi.md#updateCounterpartyById) | **PUT** /payments/counterparty/{counterparty_id}/update | Update counterparty (Deprecated)
|
|
197
184
|
*CoboWaas2.PaymentApi* | [**updateDestination**](docs/PaymentApi.md#updateDestination) | **PUT** /payments/destination/{destination_id} | Update destination
|
|
198
|
-
*CoboWaas2.PaymentApi* | [**updateDestinationBankAccountById**](docs/PaymentApi.md#updateDestinationBankAccountById) | **PUT** /payments/destination/bank_account/{bank_account_id}/update | Update destination bank account
|
|
199
|
-
*CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination (Deprecated)
|
|
200
185
|
*CoboWaas2.PaymentApi* | [**updateDestinationEntry**](docs/PaymentApi.md#updateDestinationEntry) | **PUT** /payments/destination_entry/{destination_entry_id} | Update destination entry
|
|
201
186
|
*CoboWaas2.PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
|
|
202
187
|
*CoboWaas2.PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
|
|
@@ -354,8 +339,8 @@ Class | Method | HTTP request | Description
|
|
|
354
339
|
- [CoboWaas2.AddressTransferDestinationUtxoOutputsInner](docs/AddressTransferDestinationUtxoOutputsInner.md)
|
|
355
340
|
- [CoboWaas2.AddressesEventData](docs/AddressesEventData.md)
|
|
356
341
|
- [CoboWaas2.AddressesEventDataAllOfAddresses](docs/AddressesEventDataAllOfAddresses.md)
|
|
357
|
-
- [CoboWaas2.
|
|
358
|
-
- [CoboWaas2.
|
|
342
|
+
- [CoboWaas2.AllocationItem](docs/AllocationItem.md)
|
|
343
|
+
- [CoboWaas2.AllocationParam](docs/AllocationParam.md)
|
|
359
344
|
- [CoboWaas2.AmountDetailsInner](docs/AmountDetailsInner.md)
|
|
360
345
|
- [CoboWaas2.AmountStatus](docs/AmountStatus.md)
|
|
361
346
|
- [CoboWaas2.ApiLogDetails](docs/ApiLogDetails.md)
|
|
@@ -450,20 +435,19 @@ Class | Method | HTTP request | Description
|
|
|
450
435
|
- [CoboWaas2.CreateBabylonStakingRegistration201Response](docs/CreateBabylonStakingRegistration201Response.md)
|
|
451
436
|
- [CoboWaas2.CreateBabylonStakingRegistrationRequest](docs/CreateBabylonStakingRegistrationRequest.md)
|
|
452
437
|
- [CoboWaas2.CreateBatchAllocationRequest](docs/CreateBatchAllocationRequest.md)
|
|
438
|
+
- [CoboWaas2.CreateBulkSendRequest](docs/CreateBulkSendRequest.md)
|
|
439
|
+
- [CoboWaas2.CreateBulkSendRequestPayoutParamsInner](docs/CreateBulkSendRequestPayoutParamsInner.md)
|
|
453
440
|
- [CoboWaas2.CreateClaimActivity](docs/CreateClaimActivity.md)
|
|
454
441
|
- [CoboWaas2.CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
|
|
455
442
|
- [CoboWaas2.CreateCounterpartyEntry201Response](docs/CreateCounterpartyEntry201Response.md)
|
|
456
443
|
- [CoboWaas2.CreateCounterpartyEntryRequest](docs/CreateCounterpartyEntryRequest.md)
|
|
457
444
|
- [CoboWaas2.CreateCounterpartyRequest](docs/CreateCounterpartyRequest.md)
|
|
458
|
-
- [CoboWaas2.CreateCounterpartyWalletAddressRequest](docs/CreateCounterpartyWalletAddressRequest.md)
|
|
459
445
|
- [CoboWaas2.CreateCryptoAddressRequest](docs/CreateCryptoAddressRequest.md)
|
|
460
446
|
- [CoboWaas2.CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
|
|
461
447
|
- [CoboWaas2.CreateDestinationBankAccount](docs/CreateDestinationBankAccount.md)
|
|
462
|
-
- [CoboWaas2.CreateDestinationBankAccountRequest](docs/CreateDestinationBankAccountRequest.md)
|
|
463
448
|
- [CoboWaas2.CreateDestinationEntry201Response](docs/CreateDestinationEntry201Response.md)
|
|
464
449
|
- [CoboWaas2.CreateDestinationEntryRequest](docs/CreateDestinationEntryRequest.md)
|
|
465
450
|
- [CoboWaas2.CreateDestinationRequest](docs/CreateDestinationRequest.md)
|
|
466
|
-
- [CoboWaas2.CreateDestinationWalletAddressRequest](docs/CreateDestinationWalletAddressRequest.md)
|
|
467
451
|
- [CoboWaas2.CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
|
|
468
452
|
- [CoboWaas2.CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
|
|
469
453
|
- [CoboWaas2.CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
|
|
@@ -492,6 +476,8 @@ Class | Method | HTTP request | Description
|
|
|
492
476
|
- [CoboWaas2.CreateSweepToAddress](docs/CreateSweepToAddress.md)
|
|
493
477
|
- [CoboWaas2.CreateTokenListingRequest201Response](docs/CreateTokenListingRequest201Response.md)
|
|
494
478
|
- [CoboWaas2.CreateTokenListingRequestRequest](docs/CreateTokenListingRequestRequest.md)
|
|
479
|
+
- [CoboWaas2.CreateTopUpAddresses](docs/CreateTopUpAddresses.md)
|
|
480
|
+
- [CoboWaas2.CreateTopUpAddresses201Response](docs/CreateTopUpAddresses201Response.md)
|
|
495
481
|
- [CoboWaas2.CreateTransferTransaction201Response](docs/CreateTransferTransaction201Response.md)
|
|
496
482
|
- [CoboWaas2.CreateTssRequestRequest](docs/CreateTssRequestRequest.md)
|
|
497
483
|
- [CoboWaas2.CreateUnstakeActivity](docs/CreateUnstakeActivity.md)
|
|
@@ -512,16 +498,11 @@ Class | Method | HTTP request | Description
|
|
|
512
498
|
- [CoboWaas2.CustodialWeb3MessageSignSource](docs/CustodialWeb3MessageSignSource.md)
|
|
513
499
|
- [CoboWaas2.CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
|
|
514
500
|
- [CoboWaas2.DeleteAddressBookById201Response](docs/DeleteAddressBookById201Response.md)
|
|
515
|
-
- [CoboWaas2.DeleteCounterparty200Response](docs/DeleteCounterparty200Response.md)
|
|
516
501
|
- [CoboWaas2.DeleteCounterpartyById200Response](docs/DeleteCounterpartyById200Response.md)
|
|
517
502
|
- [CoboWaas2.DeleteCounterpartyEntry200Response](docs/DeleteCounterpartyEntry200Response.md)
|
|
518
|
-
- [CoboWaas2.DeleteCounterpartyWalletAddress200Response](docs/DeleteCounterpartyWalletAddress200Response.md)
|
|
519
503
|
- [CoboWaas2.DeleteCryptoAddress201Response](docs/DeleteCryptoAddress201Response.md)
|
|
520
|
-
- [CoboWaas2.DeleteDestination200Response](docs/DeleteDestination200Response.md)
|
|
521
|
-
- [CoboWaas2.DeleteDestinationBankAccount200Response](docs/DeleteDestinationBankAccount200Response.md)
|
|
522
504
|
- [CoboWaas2.DeleteDestinationById200Response](docs/DeleteDestinationById200Response.md)
|
|
523
505
|
- [CoboWaas2.DeleteDestinationEntry200Response](docs/DeleteDestinationEntry200Response.md)
|
|
524
|
-
- [CoboWaas2.DeleteDestinationWalletAddress200Response](docs/DeleteDestinationWalletAddress200Response.md)
|
|
525
506
|
- [CoboWaas2.DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
|
|
526
507
|
- [CoboWaas2.DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
|
|
527
508
|
- [CoboWaas2.DeleteWalletById201Response](docs/DeleteWalletById201Response.md)
|
|
@@ -540,7 +521,6 @@ Class | Method | HTTP request | Description
|
|
|
540
521
|
- [CoboWaas2.EigenLayerLstStakeExtra](docs/EigenLayerLstStakeExtra.md)
|
|
541
522
|
- [CoboWaas2.EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
|
|
542
523
|
- [CoboWaas2.EigenlayerValidator](docs/EigenlayerValidator.md)
|
|
543
|
-
- [CoboWaas2.EnableDestinationWhitelistRequest](docs/EnableDestinationWhitelistRequest.md)
|
|
544
524
|
- [CoboWaas2.EntryType](docs/EntryType.md)
|
|
545
525
|
- [CoboWaas2.ErrorResponse](docs/ErrorResponse.md)
|
|
546
526
|
- [CoboWaas2.EstimateClaimFee](docs/EstimateClaimFee.md)
|
|
@@ -648,7 +628,7 @@ Class | Method | HTTP request | Description
|
|
|
648
628
|
- [CoboWaas2.ListAddressBalancesByToken200Response](docs/ListAddressBalancesByToken200Response.md)
|
|
649
629
|
- [CoboWaas2.ListAddressBooks200Response](docs/ListAddressBooks200Response.md)
|
|
650
630
|
- [CoboWaas2.ListAddresses200Response](docs/ListAddresses200Response.md)
|
|
651
|
-
- [CoboWaas2.
|
|
631
|
+
- [CoboWaas2.ListAllocationItems200Response](docs/ListAllocationItems200Response.md)
|
|
652
632
|
- [CoboWaas2.ListApprovalRequests200Response](docs/ListApprovalRequests200Response.md)
|
|
653
633
|
- [CoboWaas2.ListAssetBalancesForExchangeWallet200Response](docs/ListAssetBalancesForExchangeWallet200Response.md)
|
|
654
634
|
- [CoboWaas2.ListAutoSweepTask200Response](docs/ListAutoSweepTask200Response.md)
|
|
@@ -658,13 +638,11 @@ Class | Method | HTTP request | Description
|
|
|
658
638
|
- [CoboWaas2.ListBabylonEligibleStakings200ResponseDataInner](docs/ListBabylonEligibleStakings200ResponseDataInner.md)
|
|
659
639
|
- [CoboWaas2.ListBabylonStakingRegistrations200Response](docs/ListBabylonStakingRegistrations200Response.md)
|
|
660
640
|
- [CoboWaas2.ListBatchAllocations200Response](docs/ListBatchAllocations200Response.md)
|
|
641
|
+
- [CoboWaas2.ListBulkSendItems200Response](docs/ListBulkSendItems200Response.md)
|
|
661
642
|
- [CoboWaas2.ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
|
|
662
643
|
- [CoboWaas2.ListCounterparties200Response](docs/ListCounterparties200Response.md)
|
|
663
644
|
- [CoboWaas2.ListCounterpartyEntries200Response](docs/ListCounterpartyEntries200Response.md)
|
|
664
|
-
- [CoboWaas2.ListCounterpartyWalletAddress200Response](docs/ListCounterpartyWalletAddress200Response.md)
|
|
665
|
-
- [CoboWaas2.ListDestinationBankAccounts200Response](docs/ListDestinationBankAccounts200Response.md)
|
|
666
645
|
- [CoboWaas2.ListDestinationEntries200Response](docs/ListDestinationEntries200Response.md)
|
|
667
|
-
- [CoboWaas2.ListDestinationWalletAddresses200Response](docs/ListDestinationWalletAddresses200Response.md)
|
|
668
646
|
- [CoboWaas2.ListDestinations200Response](docs/ListDestinations200Response.md)
|
|
669
647
|
- [CoboWaas2.ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
|
|
670
648
|
- [CoboWaas2.ListForcedSweepRequests200Response](docs/ListForcedSweepRequests200Response.md)
|
|
@@ -677,7 +655,6 @@ Class | Method | HTTP request | Description
|
|
|
677
655
|
- [CoboWaas2.ListMpcVaults200Response](docs/ListMpcVaults200Response.md)
|
|
678
656
|
- [CoboWaas2.ListPaymentOrders200Response](docs/ListPaymentOrders200Response.md)
|
|
679
657
|
- [CoboWaas2.ListPaymentWalletBalances200Response](docs/ListPaymentWalletBalances200Response.md)
|
|
680
|
-
- [CoboWaas2.ListPayoutItems200Response](docs/ListPayoutItems200Response.md)
|
|
681
658
|
- [CoboWaas2.ListPayouts200Response](docs/ListPayouts200Response.md)
|
|
682
659
|
- [CoboWaas2.ListSettlementDetails200Response](docs/ListSettlementDetails200Response.md)
|
|
683
660
|
- [CoboWaas2.ListSettlementRequests200Response](docs/ListSettlementRequests200Response.md)
|
|
@@ -742,6 +719,14 @@ Class | Method | HTTP request | Description
|
|
|
742
719
|
- [CoboWaas2.PayerAccount](docs/PayerAccount.md)
|
|
743
720
|
- [CoboWaas2.PaymentAddressUpdateEventData](docs/PaymentAddressUpdateEventData.md)
|
|
744
721
|
- [CoboWaas2.PaymentAllocationAmount](docs/PaymentAllocationAmount.md)
|
|
722
|
+
- [CoboWaas2.PaymentBridgeStatus](docs/PaymentBridgeStatus.md)
|
|
723
|
+
- [CoboWaas2.PaymentBulkSend](docs/PaymentBulkSend.md)
|
|
724
|
+
- [CoboWaas2.PaymentBulkSendEvent](docs/PaymentBulkSendEvent.md)
|
|
725
|
+
- [CoboWaas2.PaymentBulkSendExecutionMode](docs/PaymentBulkSendExecutionMode.md)
|
|
726
|
+
- [CoboWaas2.PaymentBulkSendItem](docs/PaymentBulkSendItem.md)
|
|
727
|
+
- [CoboWaas2.PaymentBulkSendItemStatus](docs/PaymentBulkSendItemStatus.md)
|
|
728
|
+
- [CoboWaas2.PaymentBulkSendItemValidationStatus](docs/PaymentBulkSendItemValidationStatus.md)
|
|
729
|
+
- [CoboWaas2.PaymentBulkSendStatus](docs/PaymentBulkSendStatus.md)
|
|
745
730
|
- [CoboWaas2.PaymentEstimateFee](docs/PaymentEstimateFee.md)
|
|
746
731
|
- [CoboWaas2.PaymentEstimateFee201Response](docs/PaymentEstimateFee201Response.md)
|
|
747
732
|
- [CoboWaas2.PaymentEstimateFeeRequest](docs/PaymentEstimateFeeRequest.md)
|
|
@@ -752,9 +737,8 @@ Class | Method | HTTP request | Description
|
|
|
752
737
|
- [CoboWaas2.PaymentPayoutDetail](docs/PaymentPayoutDetail.md)
|
|
753
738
|
- [CoboWaas2.PaymentPayoutEvent](docs/PaymentPayoutEvent.md)
|
|
754
739
|
- [CoboWaas2.PaymentPayoutItem](docs/PaymentPayoutItem.md)
|
|
755
|
-
- [CoboWaas2.PaymentPayoutItemDetail](docs/PaymentPayoutItemDetail.md)
|
|
756
|
-
- [CoboWaas2.PaymentPayoutItemStatus](docs/PaymentPayoutItemStatus.md)
|
|
757
740
|
- [CoboWaas2.PaymentPayoutParam](docs/PaymentPayoutParam.md)
|
|
741
|
+
- [CoboWaas2.PaymentPayoutRecipientInfo](docs/PaymentPayoutRecipientInfo.md)
|
|
758
742
|
- [CoboWaas2.PaymentPayoutStatus](docs/PaymentPayoutStatus.md)
|
|
759
743
|
- [CoboWaas2.PaymentRefundEventData](docs/PaymentRefundEventData.md)
|
|
760
744
|
- [CoboWaas2.PaymentSettlementEvent](docs/PaymentSettlementEvent.md)
|
|
@@ -772,9 +756,9 @@ Class | Method | HTTP request | Description
|
|
|
772
756
|
- [CoboWaas2.PoolDetails](docs/PoolDetails.md)
|
|
773
757
|
- [CoboWaas2.PoolDetailsAllOfValidatorsInfo](docs/PoolDetailsAllOfValidatorsInfo.md)
|
|
774
758
|
- [CoboWaas2.PoolSummary](docs/PoolSummary.md)
|
|
759
|
+
- [CoboWaas2.PreCheck](docs/PreCheck.md)
|
|
775
760
|
- [CoboWaas2.PspBalance](docs/PspBalance.md)
|
|
776
761
|
- [CoboWaas2.QueryApprovalStatement200Response](docs/QueryApprovalStatement200Response.md)
|
|
777
|
-
- [CoboWaas2.QueryDestinationWhitelistEnabled200Response](docs/QueryDestinationWhitelistEnabled200Response.md)
|
|
778
762
|
- [CoboWaas2.QueryGuardPubkey200Response](docs/QueryGuardPubkey200Response.md)
|
|
779
763
|
- [CoboWaas2.QueryGuardPubkey200ResponseAddressesInner](docs/QueryGuardPubkey200ResponseAddressesInner.md)
|
|
780
764
|
- [CoboWaas2.RefreshAddressBalancesByToken200Response](docs/RefreshAddressBalancesByToken200Response.md)
|
|
@@ -822,6 +806,7 @@ Class | Method | HTTP request | Description
|
|
|
822
806
|
- [CoboWaas2.SettlementDetail](docs/SettlementDetail.md)
|
|
823
807
|
- [CoboWaas2.SettlementInfo](docs/SettlementInfo.md)
|
|
824
808
|
- [CoboWaas2.SettlementType](docs/SettlementType.md)
|
|
809
|
+
- [CoboWaas2.SkipCheckType](docs/SkipCheckType.md)
|
|
825
810
|
- [CoboWaas2.SmartContractInitiator](docs/SmartContractInitiator.md)
|
|
826
811
|
- [CoboWaas2.SmartContractWalletInfo](docs/SmartContractWalletInfo.md)
|
|
827
812
|
- [CoboWaas2.SmartContractWalletOperationType](docs/SmartContractWalletOperationType.md)
|
|
@@ -1083,6 +1068,7 @@ Class | Method | HTTP request | Description
|
|
|
1083
1068
|
- [CoboWaas2.TransactionUtxo](docs/TransactionUtxo.md)
|
|
1084
1069
|
- [CoboWaas2.TransactionUtxoChange](docs/TransactionUtxoChange.md)
|
|
1085
1070
|
- [CoboWaas2.TransactionUtxoFee](docs/TransactionUtxoFee.md)
|
|
1071
|
+
- [CoboWaas2.TransactionWalletConnectInfo](docs/TransactionWalletConnectInfo.md)
|
|
1086
1072
|
- [CoboWaas2.TransactionWebhookEventData](docs/TransactionWebhookEventData.md)
|
|
1087
1073
|
- [CoboWaas2.TransferDestination](docs/TransferDestination.md)
|
|
1088
1074
|
- [CoboWaas2.TransferDestinationType](docs/TransferDestinationType.md)
|
|
@@ -1107,11 +1093,9 @@ Class | Method | HTTP request | Description
|
|
|
1107
1093
|
- [CoboWaas2.UnfreezeDisposition](docs/UnfreezeDisposition.md)
|
|
1108
1094
|
- [CoboWaas2.UpdateAddressBookParam](docs/UpdateAddressBookParam.md)
|
|
1109
1095
|
- [CoboWaas2.UpdateBankAccountByIdRequest](docs/UpdateBankAccountByIdRequest.md)
|
|
1110
|
-
- [CoboWaas2.UpdateCounterpartyByIdRequest](docs/UpdateCounterpartyByIdRequest.md)
|
|
1111
1096
|
- [CoboWaas2.UpdateCounterpartyRequest](docs/UpdateCounterpartyRequest.md)
|
|
1112
1097
|
- [CoboWaas2.UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
|
|
1113
1098
|
- [CoboWaas2.UpdateDestinationBankAccount](docs/UpdateDestinationBankAccount.md)
|
|
1114
|
-
- [CoboWaas2.UpdateDestinationByIdRequest](docs/UpdateDestinationByIdRequest.md)
|
|
1115
1099
|
- [CoboWaas2.UpdateDestinationEntry200Response](docs/UpdateDestinationEntry200Response.md)
|
|
1116
1100
|
- [CoboWaas2.UpdateDestinationEntryRequest](docs/UpdateDestinationEntryRequest.md)
|
|
1117
1101
|
- [CoboWaas2.UpdateDestinationRequest](docs/UpdateDestinationRequest.md)
|
package/dist/ApiClient.js
CHANGED
|
@@ -53,7 +53,7 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
53
53
|
|
|
54
54
|
/**
|
|
55
55
|
* Create KYA address screening requests
|
|
56
|
-
* This operation submits up to 50 address screening requests in one
|
|
56
|
+
* This operation submits up to 50 address screening requests in one call to assess address compliance and risk levels. <Note>This endpoint supports cross-chain address screening with independent idempotency for each address, enabling flexible error handling and partial retries.</Note>
|
|
57
57
|
* @param {Object} opts Optional parameters
|
|
58
58
|
* @param {module:model/CreateKyaScreeningsBody} [CreateKyaScreeningsBody] The request body to create KYA address screening requests.
|
|
59
59
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/KyaScreeningResult>} and HTTP response
|
|
@@ -79,7 +79,7 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
79
79
|
|
|
80
80
|
/**
|
|
81
81
|
* Create KYA address screening requests
|
|
82
|
-
* This operation submits up to 50 address screening requests in one
|
|
82
|
+
* This operation submits up to 50 address screening requests in one call to assess address compliance and risk levels. <Note>This endpoint supports cross-chain address screening with independent idempotency for each address, enabling flexible error handling and partial retries.</Note>
|
|
83
83
|
* @param {Object} opts Optional parameters
|
|
84
84
|
* @param {module:model/CreateKyaScreeningsBody} opts.CreateKyaScreeningsBody The request body to create KYA address screening requests.
|
|
85
85
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/KyaScreeningResult>}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _ErrorResponse = _interopRequireDefault(require("../model/ErrorResponse"));
|
|
9
|
+
var _GraphQLRequest = _interopRequireDefault(require("../model/GraphQLRequest"));
|
|
10
|
+
var _GraphQLResponse = _interopRequireDefault(require("../model/GraphQLResponse"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
13
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
14
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
15
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
18
|
+
* Cobo Wallet as a Service 2.0
|
|
19
|
+
*
|
|
20
|
+
* Contact: help@cobo.com
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* GraphQL service.
|
|
29
|
+
* @module api/GraphQLApi
|
|
30
|
+
*/
|
|
31
|
+
var GraphQLApi = exports["default"] = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new GraphQLApi.
|
|
34
|
+
* @alias module:api/GraphQLApi
|
|
35
|
+
* @class
|
|
36
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
37
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
38
|
+
*/
|
|
39
|
+
function GraphQLApi(apiClient) {
|
|
40
|
+
_classCallCheck(this, GraphQLApi);
|
|
41
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Execute a GraphQL query or mutation
|
|
46
|
+
* This endpoint executes a GraphQL query or mutation. The request body must include a valid GraphQL query string.
|
|
47
|
+
* @param {Object} opts Optional parameters
|
|
48
|
+
* @param {module:model/GraphQLRequest} [GraphQLRequest] The request body to generate addresses within a specified wallet.
|
|
49
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphQLResponse} and HTTP response
|
|
50
|
+
*/
|
|
51
|
+
return _createClass(GraphQLApi, [{
|
|
52
|
+
key: "executeGraphqlWithHttpInfo",
|
|
53
|
+
value: function executeGraphqlWithHttpInfo(opts) {
|
|
54
|
+
opts = opts || {};
|
|
55
|
+
var postBody = opts['GraphQLRequest'];
|
|
56
|
+
if (postBody && postBody.toJSON) {
|
|
57
|
+
postBody = postBody.toJSON();
|
|
58
|
+
}
|
|
59
|
+
var pathParams = {};
|
|
60
|
+
var queryParams = {};
|
|
61
|
+
var headerParams = {};
|
|
62
|
+
var formParams = {};
|
|
63
|
+
var authNames = ['CoboNonce', 'OAuth2', 'CoboAuth', 'CoboSignature'];
|
|
64
|
+
var contentTypes = ['application/json'];
|
|
65
|
+
var accepts = ['application/json'];
|
|
66
|
+
var returnType = _GraphQLResponse["default"];
|
|
67
|
+
return this.apiClient.callApi('/graphql', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Execute a GraphQL query or mutation
|
|
72
|
+
* This endpoint executes a GraphQL query or mutation. The request body must include a valid GraphQL query string.
|
|
73
|
+
* @param {Object} opts Optional parameters
|
|
74
|
+
* @param {module:model/GraphQLRequest} opts.GraphQLRequest The request body to generate addresses within a specified wallet.
|
|
75
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphQLResponse}
|
|
76
|
+
*/
|
|
77
|
+
}, {
|
|
78
|
+
key: "executeGraphql",
|
|
79
|
+
value: function executeGraphql(opts) {
|
|
80
|
+
return this.executeGraphqlWithHttpInfo(opts).then(function (response_and_data) {
|
|
81
|
+
return response_and_data.data;
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
}]);
|
|
85
|
+
}();
|