@cobo/cobo-waas2 1.28.0 → 1.29.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 +66 -9
- package/dist/ApiClient.js +1 -1
- package/dist/api/AutoSweepApi.js +2 -2
- package/dist/api/ComplianceApi.js +144 -4
- package/dist/api/FeeStationApi.js +2 -2
- package/dist/api/PaymentApi.js +960 -85
- package/dist/api/StakingsApi.js +2 -2
- package/dist/api/TransactionsApi.js +6 -6
- package/dist/index.js +245 -0
- package/dist/model/AddressRiskLevel.js +71 -0
- package/dist/model/AddressesEventData.js +8 -3
- package/dist/model/AllocationRecord.js +8 -5
- package/dist/model/AllocationRequest.js +10 -7
- package/dist/model/BalanceUpdateInfoEventData.js +8 -3
- package/dist/model/BatchAllocation.js +1 -1
- package/dist/model/ChainsEventData.js +8 -3
- package/dist/model/CommissionFee.js +2 -2
- package/dist/model/ComplianceDispositionUpdateEventData.js +8 -3
- package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +341 -0
- package/dist/model/ComplianceKytScreeningsUpdateEventData.js +8 -3
- package/dist/model/ContractCallParams.js +2 -2
- package/dist/model/CounterpartyWalletAddressDetail.js +2 -2
- package/dist/model/CreateBatchAllocationRequest.js +2 -2
- package/dist/model/CreateCounterpartyEntry201Response.js +143 -0
- package/dist/model/CreateCounterpartyEntryRequest.js +141 -0
- package/dist/model/CreateDestinationEntry201Response.js +172 -0
- package/dist/model/CreateDestinationEntryRequest.js +172 -0
- package/dist/model/CreateKyaScreeningsBody.js +129 -0
- package/dist/model/CreateMerchantRequest.js +1 -1
- package/dist/model/CreatePaymentOrderRequest.js +11 -11
- package/dist/model/CreatePayoutRequest.js +5 -5
- package/dist/model/CreateRefundRequest.js +2 -2
- package/dist/model/CreateReportRequest.js +156 -0
- package/dist/model/CreateWalletAddress.js +2 -2
- package/dist/model/DeleteCounterpartyById200Response.js +110 -0
- package/dist/model/DeleteCounterpartyEntry200Response.js +110 -0
- package/dist/model/DeleteDestinationById200Response.js +110 -0
- package/dist/model/DeleteDestinationEntry200Response.js +110 -0
- package/dist/model/EntryType.js +61 -0
- package/dist/model/GetCounterpartyEntry200Response.js +90 -0
- package/dist/model/GetDestinationEntry200Response.js +106 -0
- package/dist/model/GetReports200Response.js +123 -0
- package/dist/model/KyaRiskAssessment.js +151 -0
- package/dist/model/KyaRiskDetail.js +126 -0
- package/dist/model/KyaRiskLevel.js +66 -0
- package/dist/model/KyaScreeningRequest.js +154 -0
- package/dist/model/KyaScreeningResult.js +222 -0
- package/dist/model/KyaScreeningResultRiskAssessment.js +171 -0
- package/dist/model/KyaScreeningStatus.js +71 -0
- package/dist/model/KyaScreeningsEventData.js +174 -0
- package/dist/model/LinkDisplayInfo.js +1 -1
- package/dist/model/ListCounterpartyEntries200Response.js +123 -0
- package/dist/model/ListDestinationEntries200Response.js +153 -0
- package/dist/model/ListKyaScreenings200Response.js +145 -0
- package/dist/model/MPCVaultEventData.js +8 -3
- package/dist/model/MerchantBalance.js +4 -4
- package/dist/model/Order.js +10 -10
- package/dist/model/OrderLinkBusinessInfo.js +12 -12
- package/dist/model/OrderLinkBusinessInfoCustomExchangeRatesInner.js +2 -4
- package/dist/model/OrderLinkBusinessInfoPayableAmountsInner.js +4 -4
- package/dist/model/PaymentAddressUpdateEventData.js +8 -3
- package/dist/model/PaymentAllocationAmount.js +2 -2
- package/dist/model/PaymentOrderEventData.js +26 -21
- package/dist/model/PaymentPayout.js +3 -3
- package/dist/model/PaymentPayoutDetail.js +3 -3
- package/dist/model/PaymentPayoutEvent.js +14 -9
- package/dist/model/PaymentPayoutItem.js +8 -7
- package/dist/model/PaymentPayoutItemDetail.js +8 -7
- package/dist/model/PaymentPayoutParam.js +8 -7
- package/dist/model/PaymentRefundEventData.js +8 -3
- package/dist/model/PaymentSettlementEvent.js +8 -3
- package/dist/model/PaymentTransactionEventData.js +8 -3
- package/dist/model/PspBalance.js +4 -4
- package/dist/model/RefundLinkBusinessInfo.js +1 -1
- package/dist/model/Report.js +209 -0
- package/dist/model/ReportExportFormat.js +66 -0
- package/dist/model/ReportStatus.js +61 -0
- package/dist/model/ReportType.js +121 -0
- 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/TransactionWebhookEventData.js +8 -3
- package/dist/model/TransferParams.js +2 -2
- package/dist/model/UpdateCounterpartyRequest.js +160 -0
- package/dist/model/UpdateDestinationEntry200Response.js +90 -0
- package/dist/model/UpdateDestinationEntryRequest.js +135 -0
- package/dist/model/UpdateDestinationRequest.js +173 -0
- package/dist/model/UpdateMerchantByIdRequest.js +1 -1
- package/dist/model/WalletAddress.js +20 -2
- package/dist/model/WalletInfoEventData.js +8 -3
- package/dist/model/WebhookEventData.js +58 -24
- package/dist/model/WebhookEventDataType.js +7 -2
- package/dist/model/WebhookEventType.js +5 -0
- package/docs/AddressRiskLevel.md +16 -0
- package/docs/AddressesEventData.md +3 -1
- package/docs/AllocationRecord.md +5 -5
- package/docs/AllocationRequest.md +5 -5
- package/docs/AutoSweepApi.md +1 -1
- package/docs/BalanceUpdateInfoEventData.md +3 -1
- package/docs/BatchAllocation.md +1 -1
- package/docs/ChainsEventData.md +3 -1
- package/docs/CommissionFee.md +1 -1
- package/docs/ComplianceApi.md +163 -0
- package/docs/ComplianceDispositionUpdateEventData.md +3 -1
- package/docs/ComplianceKyaScreeningsUpdateEventData.md +62 -0
- package/docs/ComplianceKytScreeningsUpdateEventData.md +3 -1
- package/docs/ContractCallParams.md +1 -1
- package/docs/CounterpartyWalletAddressDetail.md +1 -1
- package/docs/CreateBatchAllocationRequest.md +1 -1
- package/docs/CreateCounterpartyEntry201Response.md +10 -0
- package/docs/CreateCounterpartyEntryRequest.md +10 -0
- package/docs/CreateDestinationEntry201Response.md +11 -0
- package/docs/CreateDestinationEntryRequest.md +11 -0
- package/docs/CreateKyaScreeningsBody.md +9 -0
- package/docs/CreateMerchantRequest.md +1 -1
- package/docs/CreatePaymentOrderRequest.md +10 -10
- package/docs/CreatePayoutRequest.md +4 -4
- package/docs/CreateRefundRequest.md +2 -2
- package/docs/CreateReportRequest.md +13 -0
- package/docs/CreateWalletAddress.md +1 -1
- package/docs/DeleteCounterpartyById200Response.md +9 -0
- package/docs/DeleteCounterpartyEntry200Response.md +9 -0
- package/docs/DeleteDestinationById200Response.md +9 -0
- package/docs/DeleteDestinationEntry200Response.md +9 -0
- package/docs/EntryType.md +12 -0
- package/docs/FeeStationApi.md +1 -1
- package/docs/GetCounterpartyEntry200Response.md +9 -0
- package/docs/GetDestinationEntry200Response.md +10 -0
- package/docs/GetReports200Response.md +10 -0
- package/docs/KyaRiskAssessment.md +11 -0
- package/docs/KyaRiskDetail.md +10 -0
- package/docs/KyaRiskLevel.md +14 -0
- package/docs/KyaScreeningRequest.md +12 -0
- package/docs/KyaScreeningResult.md +17 -0
- package/docs/KyaScreeningResultRiskAssessment.md +11 -0
- package/docs/KyaScreeningStatus.md +16 -0
- package/docs/KyaScreeningsEventData.md +14 -0
- package/docs/LinkDisplayInfo.md +1 -1
- package/docs/ListCounterpartyEntries200Response.md +10 -0
- package/docs/ListDestinationEntries200Response.md +11 -0
- package/docs/ListKyaScreenings200Response.md +10 -0
- package/docs/MPCVaultEventData.md +3 -1
- package/docs/MerchantBalance.md +4 -4
- package/docs/Order.md +8 -8
- package/docs/OrderLinkBusinessInfo.md +11 -11
- package/docs/OrderLinkBusinessInfoCustomExchangeRatesInner.md +2 -2
- package/docs/OrderLinkBusinessInfoPayableAmountsInner.md +2 -2
- package/docs/PaymentAddressUpdateEventData.md +3 -1
- package/docs/PaymentAllocationAmount.md +1 -1
- package/docs/PaymentApi.md +1104 -161
- package/docs/PaymentOrderEventData.md +11 -9
- package/docs/PaymentPayout.md +3 -3
- package/docs/PaymentPayoutDetail.md +3 -3
- package/docs/PaymentPayoutEvent.md +6 -4
- package/docs/PaymentPayoutItem.md +6 -6
- package/docs/PaymentPayoutItemDetail.md +6 -6
- package/docs/PaymentPayoutParam.md +5 -5
- package/docs/PaymentRefundEventData.md +3 -1
- package/docs/PaymentSettlementEvent.md +3 -1
- package/docs/PaymentTransactionEventData.md +3 -1
- package/docs/PspBalance.md +4 -4
- package/docs/RefundLinkBusinessInfo.md +1 -1
- package/docs/Report.md +17 -0
- package/docs/ReportExportFormat.md +14 -0
- package/docs/ReportStatus.md +12 -0
- package/docs/ReportType.md +36 -0
- package/docs/StakingsApi.md +1 -1
- package/docs/SuspendedTokenEventData.md +3 -1
- package/docs/TSSRequestWebhookEventData.md +3 -1
- package/docs/TokenListingEventData.md +3 -1
- package/docs/TokensEventData.md +3 -1
- package/docs/TransactionWebhookEventData.md +3 -1
- package/docs/TransactionsApi.md +3 -3
- package/docs/TransferParams.md +1 -1
- package/docs/UpdateCounterpartyRequest.md +13 -0
- package/docs/UpdateDestinationEntry200Response.md +9 -0
- package/docs/UpdateDestinationEntryRequest.md +11 -0
- package/docs/UpdateDestinationRequest.md +14 -0
- package/docs/UpdateMerchantByIdRequest.md +1 -1
- package/docs/WalletAddress.md +3 -1
- package/docs/WalletInfoEventData.md +3 -1
- package/docs/WebhookEventData.md +18 -15
- package/docs/WebhookEventDataType.md +3 -1
- package/docs/WebhookEventType.md +2 -0
- package/package.json +1 -1
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.29.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)
|
|
@@ -82,9 +82,12 @@ Class | Method | HTTP request | Description
|
|
|
82
82
|
*CoboWaas2.AutoSweepApi* | [**getAutoSweepTaskById**](docs/AutoSweepApi.md#getAutoSweepTaskById) | **GET** /auto_sweep/tasks/{task_id} | Get auto-sweep task details
|
|
83
83
|
*CoboWaas2.AutoSweepApi* | [**listAutoSweepTask**](docs/AutoSweepApi.md#listAutoSweepTask) | **GET** /auto_sweep/tasks | List auto-sweep tasks
|
|
84
84
|
*CoboWaas2.AutoSweepApi* | [**listWalletSweepToAddresses**](docs/AutoSweepApi.md#listWalletSweepToAddresses) | **GET** /auto_sweep/sweep_to_addresses | List sweep-to addresses
|
|
85
|
+
*CoboWaas2.ComplianceApi* | [**createKyaScreenings**](docs/ComplianceApi.md#createKyaScreenings) | **POST** /compliance/kya/screenings | Create KYA address screening requests
|
|
85
86
|
*CoboWaas2.ComplianceApi* | [**getDispositionStatus**](docs/ComplianceApi.md#getDispositionStatus) | **GET** /compliance/funds/disposition | Get disposition status
|
|
87
|
+
*CoboWaas2.ComplianceApi* | [**getKyaScreening**](docs/ComplianceApi.md#getKyaScreening) | **GET** /compliance/kya/screenings/{screening_id} | Get KYA address screening result
|
|
86
88
|
*CoboWaas2.ComplianceApi* | [**getKytScreeningStatus**](docs/ComplianceApi.md#getKytScreeningStatus) | **GET** /compliance/kyt/screenings/status | Get KYT screening status
|
|
87
89
|
*CoboWaas2.ComplianceApi* | [**isolateFunds**](docs/ComplianceApi.md#isolateFunds) | **POST** /compliance/funds/disposition/isolate | Isolate funds
|
|
90
|
+
*CoboWaas2.ComplianceApi* | [**listKyaScreenings**](docs/ComplianceApi.md#listKyaScreenings) | **GET** /compliance/kya/screenings | List KYA address screening results
|
|
88
91
|
*CoboWaas2.ComplianceApi* | [**refundFunds**](docs/ComplianceApi.md#refundFunds) | **POST** /compliance/funds/disposition/refund | Refund funds
|
|
89
92
|
*CoboWaas2.ComplianceApi* | [**submitKytManualReview**](docs/ComplianceApi.md#submitKytManualReview) | **POST** /compliance/kyt/screenings/manual_review | Submit KYT manual review result
|
|
90
93
|
*CoboWaas2.ComplianceApi* | [**submitKytScreeningDecisions**](docs/ComplianceApi.md#submitKytScreeningDecisions) | **POST** /compliance/kyt/screenings/decisions | Submit KYT screening decision
|
|
@@ -117,10 +120,12 @@ Class | Method | HTTP request | Description
|
|
|
117
120
|
*CoboWaas2.PaymentApi* | [**cancelRefundById**](docs/PaymentApi.md#cancelRefundById) | **PUT** /payments/refunds/{refund_id}/cancel | Cancel refund order
|
|
118
121
|
*CoboWaas2.PaymentApi* | [**createBatchAllocation**](docs/PaymentApi.md#createBatchAllocation) | **POST** /payments/batch_allocations | Create batch allocation
|
|
119
122
|
*CoboWaas2.PaymentApi* | [**createCounterparty**](docs/PaymentApi.md#createCounterparty) | **POST** /payments/counterparty | Create counterparty
|
|
123
|
+
*CoboWaas2.PaymentApi* | [**createCounterpartyEntry**](docs/PaymentApi.md#createCounterpartyEntry) | **POST** /payments/counterparty_entry | Create counterparty entry
|
|
120
124
|
*CoboWaas2.PaymentApi* | [**createCounterpartyWalletAddress**](docs/PaymentApi.md#createCounterpartyWalletAddress) | **POST** /payments/counterparty/wallet_address | Create counterparty wallet address
|
|
121
125
|
*CoboWaas2.PaymentApi* | [**createCryptoAddress**](docs/PaymentApi.md#createCryptoAddress) | **POST** /payments/crypto_addresses | Create crypto address
|
|
122
126
|
*CoboWaas2.PaymentApi* | [**createDestination**](docs/PaymentApi.md#createDestination) | **POST** /payments/destination | Create destination
|
|
123
127
|
*CoboWaas2.PaymentApi* | [**createDestinationBankAccount**](docs/PaymentApi.md#createDestinationBankAccount) | **POST** /payments/destination/bank_account | Create destination bank account
|
|
128
|
+
*CoboWaas2.PaymentApi* | [**createDestinationEntry**](docs/PaymentApi.md#createDestinationEntry) | **POST** /payments/destination_entry | Create destination entry
|
|
124
129
|
*CoboWaas2.PaymentApi* | [**createDestinationWalletAddress**](docs/PaymentApi.md#createDestinationWalletAddress) | **POST** /payments/destination/wallet_address | Create destination wallet address
|
|
125
130
|
*CoboWaas2.PaymentApi* | [**createForcedSweepRequest**](docs/PaymentApi.md#createForcedSweepRequest) | **POST** /payments/force_sweep_requests | Create forced sweep
|
|
126
131
|
*CoboWaas2.PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
|
|
@@ -129,35 +134,47 @@ Class | Method | HTTP request | Description
|
|
|
129
134
|
*CoboWaas2.PaymentApi* | [**createPayout**](docs/PaymentApi.md#createPayout) | **POST** /payments/payouts | Create payout
|
|
130
135
|
*CoboWaas2.PaymentApi* | [**createRefund**](docs/PaymentApi.md#createRefund) | **POST** /payments/refunds | Create refund order
|
|
131
136
|
*CoboWaas2.PaymentApi* | [**createRefundLink**](docs/PaymentApi.md#createRefundLink) | **POST** /payments/links/refunds | Create refund link
|
|
137
|
+
*CoboWaas2.PaymentApi* | [**createReport**](docs/PaymentApi.md#createReport) | **POST** /payments/reports | Generate reports
|
|
132
138
|
*CoboWaas2.PaymentApi* | [**createSettlementRequest**](docs/PaymentApi.md#createSettlementRequest) | **POST** /payments/settlement_requests | Create settlement request
|
|
133
|
-
*CoboWaas2.PaymentApi* | [**deleteCounterparty**](docs/PaymentApi.md#deleteCounterparty) | **PUT** /payments/counterparty/{counterparty_id}/delete | Delete counterparty
|
|
139
|
+
*CoboWaas2.PaymentApi* | [**deleteCounterparty**](docs/PaymentApi.md#deleteCounterparty) | **PUT** /payments/counterparty/{counterparty_id}/delete | Delete counterparty (Deprecated)
|
|
140
|
+
*CoboWaas2.PaymentApi* | [**deleteCounterpartyById**](docs/PaymentApi.md#deleteCounterpartyById) | **DELETE** /payments/counterparty/{counterparty_id} | Delete counterparty
|
|
141
|
+
*CoboWaas2.PaymentApi* | [**deleteCounterpartyEntry**](docs/PaymentApi.md#deleteCounterpartyEntry) | **DELETE** /payments/counterparty_entry/{counterparty_entry_id} | Delete counterparty entry
|
|
134
142
|
*CoboWaas2.PaymentApi* | [**deleteCounterpartyWalletAddress**](docs/PaymentApi.md#deleteCounterpartyWalletAddress) | **PUT** /payments/counterparty/wallet_address/{wallet_address_id}/delete | Delete counterparty wallet address
|
|
135
143
|
*CoboWaas2.PaymentApi* | [**deleteCryptoAddress**](docs/PaymentApi.md#deleteCryptoAddress) | **POST** /payments/crypto_addresses/{crypto_address_id}/delete | Delete crypto address
|
|
136
|
-
*CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination
|
|
144
|
+
*CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination (Deprecated)
|
|
137
145
|
*CoboWaas2.PaymentApi* | [**deleteDestinationBankAccount**](docs/PaymentApi.md#deleteDestinationBankAccount) | **PUT** /payments/destination/bank_account/{bank_account_id}/delete | Delete destination bank account
|
|
146
|
+
*CoboWaas2.PaymentApi* | [**deleteDestinationById**](docs/PaymentApi.md#deleteDestinationById) | **DELETE** /payments/destination/{destination_id} | Delete destination
|
|
147
|
+
*CoboWaas2.PaymentApi* | [**deleteDestinationEntry**](docs/PaymentApi.md#deleteDestinationEntry) | **DELETE** /payments/destination_entry/{destination_entry_id} | Delete destination entry
|
|
138
148
|
*CoboWaas2.PaymentApi* | [**deleteDestinationWalletAddress**](docs/PaymentApi.md#deleteDestinationWalletAddress) | **PUT** /payments/destination/wallet_address/{wallet_address_id}/delete | Delete destination wallet address
|
|
139
149
|
*CoboWaas2.PaymentApi* | [**enableDestinationWhitelist**](docs/PaymentApi.md#enableDestinationWhitelist) | **POST** /payments/destination/enable_whitelist | Enable or disable destination whitelist
|
|
140
150
|
*CoboWaas2.PaymentApi* | [**getAvailableAllocationAmount**](docs/PaymentApi.md#getAvailableAllocationAmount) | **GET** /payments/allocation_amount | Get available allocation amount
|
|
141
|
-
*CoboWaas2.PaymentApi* | [**getBatchAllocationById**](docs/PaymentApi.md#getBatchAllocationById) | **GET** /payments/batch_allocations/{batch_allocation_id} | Get batch allocation
|
|
142
|
-
*CoboWaas2.PaymentApi* | [**
|
|
151
|
+
*CoboWaas2.PaymentApi* | [**getBatchAllocationById**](docs/PaymentApi.md#getBatchAllocationById) | **GET** /payments/batch_allocations/{batch_allocation_id} | Get batch allocation information
|
|
152
|
+
*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
|
+
*CoboWaas2.PaymentApi* | [**getCounterpartyEntry**](docs/PaymentApi.md#getCounterpartyEntry) | **GET** /payments/counterparty_entry/{counterparty_entry_id} | Get counterparty entry information
|
|
155
|
+
*CoboWaas2.PaymentApi* | [**getDestination**](docs/PaymentApi.md#getDestination) | **GET** /payments/destination/{destination_id} | Get destination information
|
|
143
156
|
*CoboWaas2.PaymentApi* | [**getDestinationBankAccountDetailById**](docs/PaymentApi.md#getDestinationBankAccountDetailById) | **GET** /payments/destination/bank_account/{bank_account_id}/detail | Get destination bank account information
|
|
144
|
-
*CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information
|
|
157
|
+
*CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information (Deprecated)
|
|
158
|
+
*CoboWaas2.PaymentApi* | [**getDestinationEntry**](docs/PaymentApi.md#getDestinationEntry) | **GET** /payments/destination_entry/{destination_entry_id} | Get destination entry information
|
|
145
159
|
*CoboWaas2.PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
|
|
146
160
|
*CoboWaas2.PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
|
|
147
161
|
*CoboWaas2.PaymentApi* | [**getPayoutById**](docs/PaymentApi.md#getPayoutById) | **GET** /payments/payouts/{payout_id} | Get payout information
|
|
148
162
|
*CoboWaas2.PaymentApi* | [**getPspBalance**](docs/PaymentApi.md#getPspBalance) | **GET** /payments/balance/psp | Get developer balance
|
|
149
163
|
*CoboWaas2.PaymentApi* | [**getRefundDetailById**](docs/PaymentApi.md#getRefundDetailById) | **GET** /payments/refunds/{refund_id} | Get refund order information
|
|
150
164
|
*CoboWaas2.PaymentApi* | [**getRefunds**](docs/PaymentApi.md#getRefunds) | **GET** /payments/refunds | List all refund orders
|
|
165
|
+
*CoboWaas2.PaymentApi* | [**getReports**](docs/PaymentApi.md#getReports) | **GET** /payments/reports | List all reports
|
|
151
166
|
*CoboWaas2.PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
|
|
152
167
|
*CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
|
|
153
168
|
*CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Create/Get top-up address
|
|
154
|
-
*CoboWaas2.PaymentApi* | [**listAllocations**](docs/PaymentApi.md#listAllocations) | **GET** /payments/allocation_records | List all
|
|
169
|
+
*CoboWaas2.PaymentApi* | [**listAllocations**](docs/PaymentApi.md#listAllocations) | **GET** /payments/allocation_records | List all allocation records
|
|
155
170
|
*CoboWaas2.PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
|
|
156
171
|
*CoboWaas2.PaymentApi* | [**listBatchAllocations**](docs/PaymentApi.md#listBatchAllocations) | **GET** /payments/batch_allocations | List all batch allocations
|
|
157
172
|
*CoboWaas2.PaymentApi* | [**listCounterparties**](docs/PaymentApi.md#listCounterparties) | **GET** /payments/counterparty | List all counterparties
|
|
173
|
+
*CoboWaas2.PaymentApi* | [**listCounterpartyEntries**](docs/PaymentApi.md#listCounterpartyEntries) | **GET** /payments/counterparty_entry | List counterparty entries
|
|
158
174
|
*CoboWaas2.PaymentApi* | [**listCounterpartyWalletAddress**](docs/PaymentApi.md#listCounterpartyWalletAddress) | **GET** /payments/counterparty/wallet_address | List counterparty wallet addresses
|
|
159
175
|
*CoboWaas2.PaymentApi* | [**listCryptoAddresses**](docs/PaymentApi.md#listCryptoAddresses) | **GET** /payments/crypto_addresses | List crypto addresses
|
|
160
176
|
*CoboWaas2.PaymentApi* | [**listDestinationBankAccounts**](docs/PaymentApi.md#listDestinationBankAccounts) | **GET** /payments/destination/bank_account | List destination bank accounts
|
|
177
|
+
*CoboWaas2.PaymentApi* | [**listDestinationEntries**](docs/PaymentApi.md#listDestinationEntries) | **GET** /payments/destination_entry | List destination entries
|
|
161
178
|
*CoboWaas2.PaymentApi* | [**listDestinationWalletAddresses**](docs/PaymentApi.md#listDestinationWalletAddresses) | **GET** /payments/destination/wallet_address | List destination wallet addresses
|
|
162
179
|
*CoboWaas2.PaymentApi* | [**listDestinations**](docs/PaymentApi.md#listDestinations) | **GET** /payments/destination | List all destinations
|
|
163
180
|
*CoboWaas2.PaymentApi* | [**listForcedSweepRequests**](docs/PaymentApi.md#listForcedSweepRequests) | **GET** /payments/force_sweep_requests | List forced sweeps
|
|
@@ -175,9 +192,12 @@ Class | Method | HTTP request | Description
|
|
|
175
192
|
*CoboWaas2.PaymentApi* | [**paymentEstimateFee**](docs/PaymentApi.md#paymentEstimateFee) | **POST** /payments/estimate_fee | Estimate fees
|
|
176
193
|
*CoboWaas2.PaymentApi* | [**queryDestinationWhitelistEnabled**](docs/PaymentApi.md#queryDestinationWhitelistEnabled) | **GET** /payments/destination/enable_whitelist | Query destination whitelist enabled status
|
|
177
194
|
*CoboWaas2.PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
|
|
178
|
-
*CoboWaas2.PaymentApi* | [**
|
|
195
|
+
*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
|
+
*CoboWaas2.PaymentApi* | [**updateDestination**](docs/PaymentApi.md#updateDestination) | **PUT** /payments/destination/{destination_id} | Update destination
|
|
179
198
|
*CoboWaas2.PaymentApi* | [**updateDestinationBankAccountById**](docs/PaymentApi.md#updateDestinationBankAccountById) | **PUT** /payments/destination/bank_account/{bank_account_id}/update | Update destination bank account
|
|
180
|
-
*CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination
|
|
199
|
+
*CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination (Deprecated)
|
|
200
|
+
*CoboWaas2.PaymentApi* | [**updateDestinationEntry**](docs/PaymentApi.md#updateDestinationEntry) | **PUT** /payments/destination_entry/{destination_entry_id} | Update destination entry
|
|
181
201
|
*CoboWaas2.PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
|
|
182
202
|
*CoboWaas2.PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
|
|
183
203
|
*CoboWaas2.PaymentApi* | [**updateRefundById**](docs/PaymentApi.md#updateRefundById) | **PUT** /payments/refunds/{refund_id} | Update refund order
|
|
@@ -328,6 +348,7 @@ Class | Method | HTTP request | Description
|
|
|
328
348
|
- [CoboWaas2.AddressBook](docs/AddressBook.md)
|
|
329
349
|
- [CoboWaas2.AddressEncoding](docs/AddressEncoding.md)
|
|
330
350
|
- [CoboWaas2.AddressInfo](docs/AddressInfo.md)
|
|
351
|
+
- [CoboWaas2.AddressRiskLevel](docs/AddressRiskLevel.md)
|
|
331
352
|
- [CoboWaas2.AddressTransferDestination](docs/AddressTransferDestination.md)
|
|
332
353
|
- [CoboWaas2.AddressTransferDestinationAccountOutput](docs/AddressTransferDestinationAccountOutput.md)
|
|
333
354
|
- [CoboWaas2.AddressTransferDestinationUtxoOutputsInner](docs/AddressTransferDestinationUtxoOutputsInner.md)
|
|
@@ -401,6 +422,7 @@ Class | Method | HTTP request | Description
|
|
|
401
422
|
- [CoboWaas2.CoboSafeDelegateType](docs/CoboSafeDelegateType.md)
|
|
402
423
|
- [CoboWaas2.CommissionFee](docs/CommissionFee.md)
|
|
403
424
|
- [CoboWaas2.ComplianceDispositionUpdateEventData](docs/ComplianceDispositionUpdateEventData.md)
|
|
425
|
+
- [CoboWaas2.ComplianceKyaScreeningsUpdateEventData](docs/ComplianceKyaScreeningsUpdateEventData.md)
|
|
404
426
|
- [CoboWaas2.ComplianceKytScreeningsUpdateEventData](docs/ComplianceKytScreeningsUpdateEventData.md)
|
|
405
427
|
- [CoboWaas2.ContractCallDestination](docs/ContractCallDestination.md)
|
|
406
428
|
- [CoboWaas2.ContractCallDestinationType](docs/ContractCallDestinationType.md)
|
|
@@ -430,17 +452,22 @@ Class | Method | HTTP request | Description
|
|
|
430
452
|
- [CoboWaas2.CreateBatchAllocationRequest](docs/CreateBatchAllocationRequest.md)
|
|
431
453
|
- [CoboWaas2.CreateClaimActivity](docs/CreateClaimActivity.md)
|
|
432
454
|
- [CoboWaas2.CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
|
|
455
|
+
- [CoboWaas2.CreateCounterpartyEntry201Response](docs/CreateCounterpartyEntry201Response.md)
|
|
456
|
+
- [CoboWaas2.CreateCounterpartyEntryRequest](docs/CreateCounterpartyEntryRequest.md)
|
|
433
457
|
- [CoboWaas2.CreateCounterpartyRequest](docs/CreateCounterpartyRequest.md)
|
|
434
458
|
- [CoboWaas2.CreateCounterpartyWalletAddressRequest](docs/CreateCounterpartyWalletAddressRequest.md)
|
|
435
459
|
- [CoboWaas2.CreateCryptoAddressRequest](docs/CreateCryptoAddressRequest.md)
|
|
436
460
|
- [CoboWaas2.CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
|
|
437
461
|
- [CoboWaas2.CreateDestinationBankAccount](docs/CreateDestinationBankAccount.md)
|
|
438
462
|
- [CoboWaas2.CreateDestinationBankAccountRequest](docs/CreateDestinationBankAccountRequest.md)
|
|
463
|
+
- [CoboWaas2.CreateDestinationEntry201Response](docs/CreateDestinationEntry201Response.md)
|
|
464
|
+
- [CoboWaas2.CreateDestinationEntryRequest](docs/CreateDestinationEntryRequest.md)
|
|
439
465
|
- [CoboWaas2.CreateDestinationRequest](docs/CreateDestinationRequest.md)
|
|
440
466
|
- [CoboWaas2.CreateDestinationWalletAddressRequest](docs/CreateDestinationWalletAddressRequest.md)
|
|
441
467
|
- [CoboWaas2.CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
|
|
442
468
|
- [CoboWaas2.CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
|
|
443
469
|
- [CoboWaas2.CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
|
|
470
|
+
- [CoboWaas2.CreateKyaScreeningsBody](docs/CreateKyaScreeningsBody.md)
|
|
444
471
|
- [CoboWaas2.CreateMerchantRequest](docs/CreateMerchantRequest.md)
|
|
445
472
|
- [CoboWaas2.CreateMpcProjectRequest](docs/CreateMpcProjectRequest.md)
|
|
446
473
|
- [CoboWaas2.CreateMpcVaultRequest](docs/CreateMpcVaultRequest.md)
|
|
@@ -452,6 +479,7 @@ Class | Method | HTTP request | Description
|
|
|
452
479
|
- [CoboWaas2.CreatePrimeBrokerAddressRequest](docs/CreatePrimeBrokerAddressRequest.md)
|
|
453
480
|
- [CoboWaas2.CreateRefundLinkRequest](docs/CreateRefundLinkRequest.md)
|
|
454
481
|
- [CoboWaas2.CreateRefundRequest](docs/CreateRefundRequest.md)
|
|
482
|
+
- [CoboWaas2.CreateReportRequest](docs/CreateReportRequest.md)
|
|
455
483
|
- [CoboWaas2.CreateSafeWalletParams](docs/CreateSafeWalletParams.md)
|
|
456
484
|
- [CoboWaas2.CreateSettlement](docs/CreateSettlement.md)
|
|
457
485
|
- [CoboWaas2.CreateSettlementRequestRequest](docs/CreateSettlementRequestRequest.md)
|
|
@@ -485,10 +513,14 @@ Class | Method | HTTP request | Description
|
|
|
485
513
|
- [CoboWaas2.CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
|
|
486
514
|
- [CoboWaas2.DeleteAddressBookById201Response](docs/DeleteAddressBookById201Response.md)
|
|
487
515
|
- [CoboWaas2.DeleteCounterparty200Response](docs/DeleteCounterparty200Response.md)
|
|
516
|
+
- [CoboWaas2.DeleteCounterpartyById200Response](docs/DeleteCounterpartyById200Response.md)
|
|
517
|
+
- [CoboWaas2.DeleteCounterpartyEntry200Response](docs/DeleteCounterpartyEntry200Response.md)
|
|
488
518
|
- [CoboWaas2.DeleteCounterpartyWalletAddress200Response](docs/DeleteCounterpartyWalletAddress200Response.md)
|
|
489
519
|
- [CoboWaas2.DeleteCryptoAddress201Response](docs/DeleteCryptoAddress201Response.md)
|
|
490
520
|
- [CoboWaas2.DeleteDestination200Response](docs/DeleteDestination200Response.md)
|
|
491
521
|
- [CoboWaas2.DeleteDestinationBankAccount200Response](docs/DeleteDestinationBankAccount200Response.md)
|
|
522
|
+
- [CoboWaas2.DeleteDestinationById200Response](docs/DeleteDestinationById200Response.md)
|
|
523
|
+
- [CoboWaas2.DeleteDestinationEntry200Response](docs/DeleteDestinationEntry200Response.md)
|
|
492
524
|
- [CoboWaas2.DeleteDestinationWalletAddress200Response](docs/DeleteDestinationWalletAddress200Response.md)
|
|
493
525
|
- [CoboWaas2.DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
|
|
494
526
|
- [CoboWaas2.DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
|
|
@@ -509,6 +541,7 @@ Class | Method | HTTP request | Description
|
|
|
509
541
|
- [CoboWaas2.EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
|
|
510
542
|
- [CoboWaas2.EigenlayerValidator](docs/EigenlayerValidator.md)
|
|
511
543
|
- [CoboWaas2.EnableDestinationWhitelistRequest](docs/EnableDestinationWhitelistRequest.md)
|
|
544
|
+
- [CoboWaas2.EntryType](docs/EntryType.md)
|
|
512
545
|
- [CoboWaas2.ErrorResponse](docs/ErrorResponse.md)
|
|
513
546
|
- [CoboWaas2.EstimateClaimFee](docs/EstimateClaimFee.md)
|
|
514
547
|
- [CoboWaas2.EstimateContractCallFeeParams](docs/EstimateContractCallFeeParams.md)
|
|
@@ -571,9 +604,12 @@ Class | Method | HTTP request | Description
|
|
|
571
604
|
- [CoboWaas2.ForcedSweepStatus](docs/ForcedSweepStatus.md)
|
|
572
605
|
- [CoboWaas2.FundsStatusType](docs/FundsStatusType.md)
|
|
573
606
|
- [CoboWaas2.GetApiKeyInfo200Response](docs/GetApiKeyInfo200Response.md)
|
|
607
|
+
- [CoboWaas2.GetCounterpartyEntry200Response](docs/GetCounterpartyEntry200Response.md)
|
|
608
|
+
- [CoboWaas2.GetDestinationEntry200Response](docs/GetDestinationEntry200Response.md)
|
|
574
609
|
- [CoboWaas2.GetExchangeRate200Response](docs/GetExchangeRate200Response.md)
|
|
575
610
|
- [CoboWaas2.GetMaxTransferableValueWithFeeModelRequest](docs/GetMaxTransferableValueWithFeeModelRequest.md)
|
|
576
611
|
- [CoboWaas2.GetRefunds200Response](docs/GetRefunds200Response.md)
|
|
612
|
+
- [CoboWaas2.GetReports200Response](docs/GetReports200Response.md)
|
|
577
613
|
- [CoboWaas2.GetSettlementInfoByIds200Response](docs/GetSettlementInfoByIds200Response.md)
|
|
578
614
|
- [CoboWaas2.GetStakingEstimationFee201Response](docs/GetStakingEstimationFee201Response.md)
|
|
579
615
|
- [CoboWaas2.GetStakingEstimationFeeRequest](docs/GetStakingEstimationFeeRequest.md)
|
|
@@ -594,6 +630,14 @@ Class | Method | HTTP request | Description
|
|
|
594
630
|
- [CoboWaas2.KeyShareHolderGroupType](docs/KeyShareHolderGroupType.md)
|
|
595
631
|
- [CoboWaas2.KeyShareHolderStatus](docs/KeyShareHolderStatus.md)
|
|
596
632
|
- [CoboWaas2.KeyShareHolderType](docs/KeyShareHolderType.md)
|
|
633
|
+
- [CoboWaas2.KyaRiskAssessment](docs/KyaRiskAssessment.md)
|
|
634
|
+
- [CoboWaas2.KyaRiskDetail](docs/KyaRiskDetail.md)
|
|
635
|
+
- [CoboWaas2.KyaRiskLevel](docs/KyaRiskLevel.md)
|
|
636
|
+
- [CoboWaas2.KyaScreeningRequest](docs/KyaScreeningRequest.md)
|
|
637
|
+
- [CoboWaas2.KyaScreeningResult](docs/KyaScreeningResult.md)
|
|
638
|
+
- [CoboWaas2.KyaScreeningResultRiskAssessment](docs/KyaScreeningResultRiskAssessment.md)
|
|
639
|
+
- [CoboWaas2.KyaScreeningStatus](docs/KyaScreeningStatus.md)
|
|
640
|
+
- [CoboWaas2.KyaScreeningsEventData](docs/KyaScreeningsEventData.md)
|
|
597
641
|
- [CoboWaas2.KytScreeningsDecisionsType](docs/KytScreeningsDecisionsType.md)
|
|
598
642
|
- [CoboWaas2.KytScreeningsEventData](docs/KytScreeningsEventData.md)
|
|
599
643
|
- [CoboWaas2.KytScreeningsReviewType](docs/KytScreeningsReviewType.md)
|
|
@@ -616,14 +660,17 @@ Class | Method | HTTP request | Description
|
|
|
616
660
|
- [CoboWaas2.ListBatchAllocations200Response](docs/ListBatchAllocations200Response.md)
|
|
617
661
|
- [CoboWaas2.ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
|
|
618
662
|
- [CoboWaas2.ListCounterparties200Response](docs/ListCounterparties200Response.md)
|
|
663
|
+
- [CoboWaas2.ListCounterpartyEntries200Response](docs/ListCounterpartyEntries200Response.md)
|
|
619
664
|
- [CoboWaas2.ListCounterpartyWalletAddress200Response](docs/ListCounterpartyWalletAddress200Response.md)
|
|
620
665
|
- [CoboWaas2.ListDestinationBankAccounts200Response](docs/ListDestinationBankAccounts200Response.md)
|
|
666
|
+
- [CoboWaas2.ListDestinationEntries200Response](docs/ListDestinationEntries200Response.md)
|
|
621
667
|
- [CoboWaas2.ListDestinationWalletAddresses200Response](docs/ListDestinationWalletAddresses200Response.md)
|
|
622
668
|
- [CoboWaas2.ListDestinations200Response](docs/ListDestinations200Response.md)
|
|
623
669
|
- [CoboWaas2.ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
|
|
624
670
|
- [CoboWaas2.ListForcedSweepRequests200Response](docs/ListForcedSweepRequests200Response.md)
|
|
625
671
|
- [CoboWaas2.ListKeyShareHolderGroups200Response](docs/ListKeyShareHolderGroups200Response.md)
|
|
626
672
|
- [CoboWaas2.ListKeyShareHolders200Response](docs/ListKeyShareHolders200Response.md)
|
|
673
|
+
- [CoboWaas2.ListKyaScreenings200Response](docs/ListKyaScreenings200Response.md)
|
|
627
674
|
- [CoboWaas2.ListMerchantBalances200Response](docs/ListMerchantBalances200Response.md)
|
|
628
675
|
- [CoboWaas2.ListMerchants200Response](docs/ListMerchants200Response.md)
|
|
629
676
|
- [CoboWaas2.ListMpcProjects200Response](docs/ListMpcProjects200Response.md)
|
|
@@ -741,6 +788,10 @@ Class | Method | HTTP request | Description
|
|
|
741
788
|
- [CoboWaas2.RefundStatus](docs/RefundStatus.md)
|
|
742
789
|
- [CoboWaas2.RefundType](docs/RefundType.md)
|
|
743
790
|
- [CoboWaas2.ReplaceType](docs/ReplaceType.md)
|
|
791
|
+
- [CoboWaas2.Report](docs/Report.md)
|
|
792
|
+
- [CoboWaas2.ReportExportFormat](docs/ReportExportFormat.md)
|
|
793
|
+
- [CoboWaas2.ReportStatus](docs/ReportStatus.md)
|
|
794
|
+
- [CoboWaas2.ReportType](docs/ReportType.md)
|
|
744
795
|
- [CoboWaas2.RequestApproval](docs/RequestApproval.md)
|
|
745
796
|
- [CoboWaas2.RetryCallbackMessage201Response](docs/RetryCallbackMessage201Response.md)
|
|
746
797
|
- [CoboWaas2.RetryWebhookEventById201Response](docs/RetryWebhookEventById201Response.md)
|
|
@@ -1057,9 +1108,13 @@ Class | Method | HTTP request | Description
|
|
|
1057
1108
|
- [CoboWaas2.UpdateAddressBookParam](docs/UpdateAddressBookParam.md)
|
|
1058
1109
|
- [CoboWaas2.UpdateBankAccountByIdRequest](docs/UpdateBankAccountByIdRequest.md)
|
|
1059
1110
|
- [CoboWaas2.UpdateCounterpartyByIdRequest](docs/UpdateCounterpartyByIdRequest.md)
|
|
1111
|
+
- [CoboWaas2.UpdateCounterpartyRequest](docs/UpdateCounterpartyRequest.md)
|
|
1060
1112
|
- [CoboWaas2.UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
|
|
1061
1113
|
- [CoboWaas2.UpdateDestinationBankAccount](docs/UpdateDestinationBankAccount.md)
|
|
1062
1114
|
- [CoboWaas2.UpdateDestinationByIdRequest](docs/UpdateDestinationByIdRequest.md)
|
|
1115
|
+
- [CoboWaas2.UpdateDestinationEntry200Response](docs/UpdateDestinationEntry200Response.md)
|
|
1116
|
+
- [CoboWaas2.UpdateDestinationEntryRequest](docs/UpdateDestinationEntryRequest.md)
|
|
1117
|
+
- [CoboWaas2.UpdateDestinationRequest](docs/UpdateDestinationRequest.md)
|
|
1063
1118
|
- [CoboWaas2.UpdateExchangeWalletParams](docs/UpdateExchangeWalletParams.md)
|
|
1064
1119
|
- [CoboWaas2.UpdateGroupAction](docs/UpdateGroupAction.md)
|
|
1065
1120
|
- [CoboWaas2.UpdateKeyShareHolderGroupByIdRequest](docs/UpdateKeyShareHolderGroupByIdRequest.md)
|
|
@@ -1178,4 +1233,6 @@ Authentication schemes defined for the API:
|
|
|
1178
1233
|
- compliance_kyt_review.update: Update KYT review status
|
|
1179
1234
|
- compliance_kyt_decisions.update: Update KYT decision status
|
|
1180
1235
|
- compliance_kyt_status.read: Read KYT screening status
|
|
1236
|
+
- compliance_kya_screenings.create: Create KYA address screening requests
|
|
1237
|
+
- compliance_kya_screenings.read: Read KYA address screening results
|
|
1181
1238
|
|
package/dist/ApiClient.js
CHANGED
package/dist/api/AutoSweepApi.js
CHANGED
|
@@ -244,7 +244,7 @@ var AutoSweepApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
244
244
|
|
|
245
245
|
/**
|
|
246
246
|
* List sweep-to addresses
|
|
247
|
-
* This operation retrieves a list of sweep-to addresses within your wallet.
|
|
247
|
+
* This operation retrieves a list of sweep-to addresses within your wallet. <Note>Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.</Note> <Info>For EVM-compatible chains (such as Ethereum and BNB Smart Chain), the same address is used across chains. As a result, when listing sweep-to addresses, only one address entry (shown under Ethereum) is returned for all EVM-compatible chains. Separate entries are not returned for each individual EVM chain.</Info>
|
|
248
248
|
* @param {String} wallet_id The wallet ID.
|
|
249
249
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListWalletSweepToAddresses200Response} and HTTP response
|
|
250
250
|
*/
|
|
@@ -274,7 +274,7 @@ var AutoSweepApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
274
274
|
|
|
275
275
|
/**
|
|
276
276
|
* List sweep-to addresses
|
|
277
|
-
* This operation retrieves a list of sweep-to addresses within your wallet.
|
|
277
|
+
* This operation retrieves a list of sweep-to addresses within your wallet. <Note>Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.</Note> <Info>For EVM-compatible chains (such as Ethereum and BNB Smart Chain), the same address is used across chains. As a result, when listing sweep-to addresses, only one address entry (shown under Ethereum) is returned for all EVM-compatible chains. Separate entries are not returned for each individual EVM chain.</Info>
|
|
278
278
|
* @param {String} wallet_id The wallet ID.
|
|
279
279
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListWalletSweepToAddresses200Response}
|
|
280
280
|
*/
|
|
@@ -5,11 +5,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _CreateKyaScreeningsBody = _interopRequireDefault(require("../model/CreateKyaScreeningsBody"));
|
|
8
9
|
var _DispositionQueryResponse = _interopRequireDefault(require("../model/DispositionQueryResponse"));
|
|
9
10
|
var _DispositionResponse = _interopRequireDefault(require("../model/DispositionResponse"));
|
|
10
11
|
var _ErrorResponse = _interopRequireDefault(require("../model/ErrorResponse"));
|
|
11
12
|
var _IsolateDisposition = _interopRequireDefault(require("../model/IsolateDisposition"));
|
|
13
|
+
var _KyaScreeningResult = _interopRequireDefault(require("../model/KyaScreeningResult"));
|
|
12
14
|
var _KytScreeningsTransaction = _interopRequireDefault(require("../model/KytScreeningsTransaction"));
|
|
15
|
+
var _ListKyaScreenings200Response = _interopRequireDefault(require("../model/ListKyaScreenings200Response"));
|
|
13
16
|
var _RefundDisposition = _interopRequireDefault(require("../model/RefundDisposition"));
|
|
14
17
|
var _SubmitKytResponse = _interopRequireDefault(require("../model/SubmitKytResponse"));
|
|
15
18
|
var _SubmitKytScreeningsDecisionsBody = _interopRequireDefault(require("../model/SubmitKytScreeningsDecisionsBody"));
|
|
@@ -49,12 +52,53 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
49
52
|
}
|
|
50
53
|
|
|
51
54
|
/**
|
|
52
|
-
*
|
|
53
|
-
* This operation
|
|
54
|
-
* @param {
|
|
55
|
-
* @
|
|
55
|
+
* Create KYA address screening requests
|
|
56
|
+
* This operation submits up to 50 address screening requests in one request 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
|
+
* @param {Object} opts Optional parameters
|
|
58
|
+
* @param {module:model/CreateKyaScreeningsBody} [CreateKyaScreeningsBody] The request body to create KYA address screening requests.
|
|
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
|
|
56
60
|
*/
|
|
57
61
|
return _createClass(ComplianceApi, [{
|
|
62
|
+
key: "createKyaScreeningsWithHttpInfo",
|
|
63
|
+
value: function createKyaScreeningsWithHttpInfo(opts) {
|
|
64
|
+
opts = opts || {};
|
|
65
|
+
var postBody = opts['CreateKyaScreeningsBody'];
|
|
66
|
+
if (postBody && postBody.toJSON) {
|
|
67
|
+
postBody = postBody.toJSON();
|
|
68
|
+
}
|
|
69
|
+
var pathParams = {};
|
|
70
|
+
var queryParams = {};
|
|
71
|
+
var headerParams = {};
|
|
72
|
+
var formParams = {};
|
|
73
|
+
var authNames = ['OAuth2', 'CoboAuth'];
|
|
74
|
+
var contentTypes = ['application/json'];
|
|
75
|
+
var accepts = ['application/json'];
|
|
76
|
+
var returnType = [_KyaScreeningResult["default"]];
|
|
77
|
+
return this.apiClient.callApi('/compliance/kya/screenings', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Create KYA address screening requests
|
|
82
|
+
* This operation submits up to 50 address screening requests in one request 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
|
+
* @param {Object} opts Optional parameters
|
|
84
|
+
* @param {module:model/CreateKyaScreeningsBody} opts.CreateKyaScreeningsBody The request body to create KYA address screening requests.
|
|
85
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/KyaScreeningResult>}
|
|
86
|
+
*/
|
|
87
|
+
}, {
|
|
88
|
+
key: "createKyaScreenings",
|
|
89
|
+
value: function createKyaScreenings(opts) {
|
|
90
|
+
return this.createKyaScreeningsWithHttpInfo(opts).then(function (response_and_data) {
|
|
91
|
+
return response_and_data.data;
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Get disposition status
|
|
97
|
+
* This operation retrieves the current status of a disposition request for a specific transaction. You can use this endpoint to check the status of any disposition operation (Refund, Isolate, or Unfreeze) that has been initiated for a transaction. The response includes the disposition type, current status, and the disposition transaction ID if applicable. <Note>Use this endpoint to monitor the progress of disposition operations and verify their completion.</Note>
|
|
98
|
+
* @param {String} transaction_id The unique identifier (UUID) of the transaction to retrieve KYT screening status information for.
|
|
99
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/DispositionQueryResponse} and HTTP response
|
|
100
|
+
*/
|
|
101
|
+
}, {
|
|
58
102
|
key: "getDispositionStatusWithHttpInfo",
|
|
59
103
|
value: function getDispositionStatusWithHttpInfo(transaction_id) {
|
|
60
104
|
var postBody = null;
|
|
@@ -92,6 +136,50 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
92
136
|
});
|
|
93
137
|
}
|
|
94
138
|
|
|
139
|
+
/**
|
|
140
|
+
* Get KYA address screening result
|
|
141
|
+
* This operation retrieves a specific address screening result by `screening_id`, including risk assessment information. <Info>This endpoint returns the full screening details including risk level, summary, and detailed risk category exposures.</Info>
|
|
142
|
+
* @param {String} screening_id The unique identifier (UUID) of the address screening request.
|
|
143
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/KyaScreeningResult} and HTTP response
|
|
144
|
+
*/
|
|
145
|
+
}, {
|
|
146
|
+
key: "getKyaScreeningWithHttpInfo",
|
|
147
|
+
value: function getKyaScreeningWithHttpInfo(screening_id) {
|
|
148
|
+
var postBody = null;
|
|
149
|
+
if (postBody && postBody.toJSON) {
|
|
150
|
+
postBody = postBody.toJSON();
|
|
151
|
+
}
|
|
152
|
+
// verify the required parameter 'screening_id' is set
|
|
153
|
+
if (screening_id === undefined || screening_id === null) {
|
|
154
|
+
throw new Error("Missing the required parameter 'screening_id' when calling getKyaScreening");
|
|
155
|
+
}
|
|
156
|
+
var pathParams = {
|
|
157
|
+
'screening_id': screening_id
|
|
158
|
+
};
|
|
159
|
+
var queryParams = {};
|
|
160
|
+
var headerParams = {};
|
|
161
|
+
var formParams = {};
|
|
162
|
+
var authNames = ['OAuth2', 'CoboAuth'];
|
|
163
|
+
var contentTypes = [];
|
|
164
|
+
var accepts = ['application/json'];
|
|
165
|
+
var returnType = _KyaScreeningResult["default"];
|
|
166
|
+
return this.apiClient.callApi('/compliance/kya/screenings/{screening_id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Get KYA address screening result
|
|
171
|
+
* This operation retrieves a specific address screening result by `screening_id`, including risk assessment information. <Info>This endpoint returns the full screening details including risk level, summary, and detailed risk category exposures.</Info>
|
|
172
|
+
* @param {String} screening_id The unique identifier (UUID) of the address screening request.
|
|
173
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/KyaScreeningResult}
|
|
174
|
+
*/
|
|
175
|
+
}, {
|
|
176
|
+
key: "getKyaScreening",
|
|
177
|
+
value: function getKyaScreening(screening_id) {
|
|
178
|
+
return this.getKyaScreeningWithHttpInfo(screening_id).then(function (response_and_data) {
|
|
179
|
+
return response_and_data.data;
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
|
|
95
183
|
/**
|
|
96
184
|
* Get KYT screening status
|
|
97
185
|
* This operation retrieves the current KYT (Know Your Transaction) screening status, including review status and fund disposition status, for a specific transaction. Use this endpoint to monitor the real-time screening progress for transactions processed through the KYT compliance system. <Note>This endpoint provides comprehensive compliance monitoring capabilities to help maintain AML (Anti-Money Laundering) regulatory compliance and audit trail requirements.</Note>
|
|
@@ -177,6 +265,58 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
177
265
|
});
|
|
178
266
|
}
|
|
179
267
|
|
|
268
|
+
/**
|
|
269
|
+
* List KYA address screening results
|
|
270
|
+
* This operation retrieves the results of specified screening requests with pagination support. You can filter specific screening requests using screening_ids (up to 50 IDs). <Note>For larger result sets (exceeding 50 screening results), use pagination parameters (limit, before, after) to page through results.</Note>
|
|
271
|
+
* @param {Object} opts Optional parameters
|
|
272
|
+
* @param {String} [screening_ids] A comma-separated list of screening request IDs to filter specific screening results. Maximum 50 IDs allowed to ensure URL length stays within standard web server limits (typically 8KB). Each ID must be in standard UUID format (36 characters fixed length). Example: `f47ac10b-58cc-4372-a567-0e02b2c3d479,a1b2c3d4-e5f6-4321-8765-fedcba987654`
|
|
273
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. For most operations, the value range is [1, 50].
|
|
274
|
+
* @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.
|
|
275
|
+
* @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.
|
|
276
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListKyaScreenings200Response} and HTTP response
|
|
277
|
+
*/
|
|
278
|
+
}, {
|
|
279
|
+
key: "listKyaScreeningsWithHttpInfo",
|
|
280
|
+
value: function listKyaScreeningsWithHttpInfo(opts) {
|
|
281
|
+
opts = opts || {};
|
|
282
|
+
var postBody = null;
|
|
283
|
+
if (postBody && postBody.toJSON) {
|
|
284
|
+
postBody = postBody.toJSON();
|
|
285
|
+
}
|
|
286
|
+
var pathParams = {};
|
|
287
|
+
var queryParams = {
|
|
288
|
+
'screening_ids': opts['screening_ids'],
|
|
289
|
+
'limit': opts['limit'],
|
|
290
|
+
'before': opts['before'],
|
|
291
|
+
'after': opts['after']
|
|
292
|
+
};
|
|
293
|
+
var headerParams = {};
|
|
294
|
+
var formParams = {};
|
|
295
|
+
var authNames = ['OAuth2', 'CoboAuth'];
|
|
296
|
+
var contentTypes = [];
|
|
297
|
+
var accepts = ['application/json'];
|
|
298
|
+
var returnType = _ListKyaScreenings200Response["default"];
|
|
299
|
+
return this.apiClient.callApi('/compliance/kya/screenings', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* List KYA address screening results
|
|
304
|
+
* This operation retrieves the results of specified screening requests with pagination support. You can filter specific screening requests using screening_ids (up to 50 IDs). <Note>For larger result sets (exceeding 50 screening results), use pagination parameters (limit, before, after) to page through results.</Note>
|
|
305
|
+
* @param {Object} opts Optional parameters
|
|
306
|
+
* @param {String} opts.screening_ids A comma-separated list of screening request IDs to filter specific screening results. Maximum 50 IDs allowed to ensure URL length stays within standard web server limits (typically 8KB). Each ID must be in standard UUID format (36 characters fixed length). Example: `f47ac10b-58cc-4372-a567-0e02b2c3d479,a1b2c3d4-e5f6-4321-8765-fedcba987654`
|
|
307
|
+
* @param {Number} opts.limit The maximum number of objects to return. For most operations, the value range is [1, 50]. (default to 10)
|
|
308
|
+
* @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.
|
|
309
|
+
* @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.
|
|
310
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListKyaScreenings200Response}
|
|
311
|
+
*/
|
|
312
|
+
}, {
|
|
313
|
+
key: "listKyaScreenings",
|
|
314
|
+
value: function listKyaScreenings(opts) {
|
|
315
|
+
return this.listKyaScreeningsWithHttpInfo(opts).then(function (response_and_data) {
|
|
316
|
+
return response_and_data.data;
|
|
317
|
+
});
|
|
318
|
+
}
|
|
319
|
+
|
|
180
320
|
/**
|
|
181
321
|
* Refund funds
|
|
182
322
|
* This operation creates a request to refund funds for a specific transaction. The funds will be sent to the specified destination address. You need to specify the transaction ID to be refunded and the destination address. Optional parameters include custom categories for tracking purposes. <Note>The refund will initiate a withdrawal transaction from the compliance-managed address to the specified destination.</Note>
|
|
@@ -51,7 +51,7 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
51
51
|
* Check Fee Station usage
|
|
52
52
|
* This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USD stablecoin.
|
|
53
53
|
* @param {Object} opts Optional parameters
|
|
54
|
-
* @param {module:model/FeeStationCheckFeeStationUsage} [FeeStationCheckFeeStationUsage] The
|
|
54
|
+
* @param {module:model/FeeStationCheckFeeStationUsage} [FeeStationCheckFeeStationUsage] The request body for evaluating Fee Station usage.
|
|
55
55
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/FeeStationCheckFeeStationUsageResponse} and HTTP response
|
|
56
56
|
*/
|
|
57
57
|
return _createClass(FeeStationApi, [{
|
|
@@ -77,7 +77,7 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
77
77
|
* Check Fee Station usage
|
|
78
78
|
* This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USD stablecoin.
|
|
79
79
|
* @param {Object} opts Optional parameters
|
|
80
|
-
* @param {module:model/FeeStationCheckFeeStationUsage} opts.FeeStationCheckFeeStationUsage The
|
|
80
|
+
* @param {module:model/FeeStationCheckFeeStationUsage} opts.FeeStationCheckFeeStationUsage The request body for evaluating Fee Station usage.
|
|
81
81
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/FeeStationCheckFeeStationUsageResponse}
|
|
82
82
|
*/
|
|
83
83
|
}, {
|