@cobo/cobo-waas2 1.28.0 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (238) hide show
  1. package/README.md +88 -16
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AutoSweepApi.js +2 -2
  4. package/dist/api/ComplianceApi.js +144 -4
  5. package/dist/api/FeeStationApi.js +2 -2
  6. package/dist/api/GraphQLApi.js +85 -0
  7. package/dist/api/PaymentApi.js +1161 -154
  8. package/dist/api/StakingsApi.js +2 -2
  9. package/dist/api/SwapsApi.js +3 -0
  10. package/dist/api/TransactionsApi.js +6 -6
  11. package/dist/api/WalletsApi.js +18 -18
  12. package/dist/index.js +357 -28
  13. package/dist/model/AddressRiskLevel.js +71 -0
  14. package/dist/model/AddressesEventData.js +13 -3
  15. package/dist/model/{AllocationRecord.js → AllocationItem.js} +38 -35
  16. package/dist/model/{AllocationRequest.js → AllocationParam.js} +29 -26
  17. package/dist/model/BalanceUpdateInfoEventData.js +13 -3
  18. package/dist/model/BatchAllocation.js +12 -12
  19. package/dist/model/BatchAllocationDetail.js +15 -17
  20. package/dist/model/BridgingFee.js +3 -3
  21. package/dist/model/ChainsEventData.js +13 -3
  22. package/dist/model/CommissionFee.js +2 -2
  23. package/dist/model/ComplianceDispositionUpdateEventData.js +13 -3
  24. package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +346 -0
  25. package/dist/model/ComplianceKytScreeningsUpdateEventData.js +13 -3
  26. package/dist/model/ContractCallParams.js +3 -3
  27. package/dist/model/CounterpartyWalletAddressDetail.js +2 -2
  28. package/dist/model/CreateBatchAllocationRequest.js +19 -19
  29. package/dist/model/CreateBulkSendRequest.js +167 -0
  30. package/dist/model/CreateBulkSendRequestPayoutParamsInner.js +153 -0
  31. package/dist/model/CreateCounterpartyEntry201Response.js +143 -0
  32. package/dist/model/CreateCounterpartyEntryRequest.js +141 -0
  33. package/dist/model/CreateDestinationEntry201Response.js +172 -0
  34. package/dist/model/CreateDestinationEntryRequest.js +172 -0
  35. package/dist/model/CreateKyaScreeningsBody.js +129 -0
  36. package/dist/model/CreateMerchantRequest.js +1 -1
  37. package/dist/model/CreatePaymentOrderRequest.js +17 -15
  38. package/dist/model/CreatePayoutRequest.js +35 -28
  39. package/dist/model/CreateRefundRequest.js +2 -2
  40. package/dist/model/CreateReportRequest.js +156 -0
  41. package/dist/model/CreateTopUpAddresses.js +139 -0
  42. package/dist/model/CreateTopUpAddresses201Response.js +107 -0
  43. package/dist/model/CreateWalletAddress.js +2 -2
  44. package/dist/model/DeleteCounterpartyById200Response.js +110 -0
  45. package/dist/model/DeleteCounterpartyEntry200Response.js +110 -0
  46. package/dist/model/DeleteDestinationById200Response.js +110 -0
  47. package/dist/model/DeleteDestinationEntry200Response.js +110 -0
  48. package/dist/model/EntryType.js +61 -0
  49. package/dist/model/GetCounterpartyEntry200Response.js +90 -0
  50. package/dist/model/GetDestinationEntry200Response.js +106 -0
  51. package/dist/model/{ListPayoutItems200Response.js → GetReports200Response.js} +22 -22
  52. package/dist/model/KyaRiskAssessment.js +151 -0
  53. package/dist/model/KyaRiskDetail.js +126 -0
  54. package/dist/model/KyaRiskLevel.js +66 -0
  55. package/dist/model/KyaScreeningRequest.js +154 -0
  56. package/dist/model/KyaScreeningResult.js +222 -0
  57. package/dist/model/KyaScreeningResultRiskAssessment.js +171 -0
  58. package/dist/model/KyaScreeningStatus.js +71 -0
  59. package/dist/model/KyaScreeningsEventData.js +174 -0
  60. package/dist/model/LinkDisplayInfo.js +1 -1
  61. package/dist/model/{ListAllocations200Response.js → ListAllocationItems200Response.js} +22 -22
  62. package/dist/model/ListBulkSendItems200Response.js +123 -0
  63. package/dist/model/ListCounterpartyEntries200Response.js +123 -0
  64. package/dist/model/ListDestinationEntries200Response.js +153 -0
  65. package/dist/model/ListKyaScreenings200Response.js +145 -0
  66. package/dist/model/MPCVaultEventData.js +13 -3
  67. package/dist/model/MerchantBalance.js +4 -4
  68. package/dist/model/Order.js +10 -10
  69. package/dist/model/OrderLinkBusinessInfo.js +22 -16
  70. package/dist/model/OrderLinkBusinessInfoCustomExchangeRatesInner.js +2 -4
  71. package/dist/model/OrderLinkBusinessInfoPayableAmountsInner.js +4 -4
  72. package/dist/model/PaymentAddressUpdateEventData.js +13 -3
  73. package/dist/model/PaymentAllocationAmount.js +2 -2
  74. package/dist/model/PaymentBulkSend.js +182 -0
  75. package/dist/model/PaymentBulkSendEvent.js +359 -0
  76. package/dist/model/PaymentBulkSendExecutionMode.js +61 -0
  77. package/dist/model/PaymentBulkSendItem.js +190 -0
  78. package/dist/model/{PaymentPayoutItemStatus.js → PaymentBulkSendItemStatus.js} +11 -11
  79. package/dist/model/PaymentBulkSendItemValidationStatus.js +66 -0
  80. package/dist/model/PaymentBulkSendStatus.js +81 -0
  81. package/dist/model/PaymentEstimateFeeRequest.js +13 -0
  82. package/dist/model/PaymentFeeType.js +15 -0
  83. package/dist/model/PaymentOrderEventData.js +31 -21
  84. package/dist/model/PaymentPayout.js +64 -46
  85. package/dist/model/PaymentPayoutDetail.js +166 -52
  86. package/dist/model/PaymentPayoutEvent.js +152 -80
  87. package/dist/model/PaymentPayoutItem.js +9 -166
  88. package/dist/model/PaymentPayoutParam.js +6 -46
  89. package/dist/model/PaymentPayoutRecipientInfo.js +126 -0
  90. package/dist/model/PaymentPayoutStatus.js +9 -4
  91. package/dist/model/PaymentRefundEventData.js +13 -3
  92. package/dist/model/PaymentSettlementEvent.js +13 -3
  93. package/dist/model/PaymentTransactionEventData.js +13 -3
  94. package/dist/model/PspBalance.js +4 -4
  95. package/dist/model/RefundLinkBusinessInfo.js +1 -1
  96. package/dist/model/Report.js +209 -0
  97. package/dist/model/ReportExportFormat.js +66 -0
  98. package/dist/model/ReportStatus.js +61 -0
  99. package/dist/model/ReportType.js +121 -0
  100. package/dist/model/SuspendedTokenEventData.js +13 -3
  101. package/dist/model/TSSRequestWebhookEventData.js +13 -3
  102. package/dist/model/TokenListingEventData.js +13 -3
  103. package/dist/model/TokensEventData.js +13 -3
  104. package/dist/model/TransactionCoboCategory.js +5 -0
  105. package/dist/model/TransactionExtraType.js +5 -0
  106. package/dist/model/TransactionWalletConnectInfo.js +146 -0
  107. package/dist/model/TransactionWebhookEventData.js +13 -3
  108. package/dist/model/TransferParams.js +2 -2
  109. package/dist/model/UpdateCounterpartyRequest.js +160 -0
  110. package/dist/model/UpdateDestinationEntry200Response.js +90 -0
  111. package/dist/model/UpdateDestinationEntryRequest.js +135 -0
  112. package/dist/model/UpdateDestinationRequest.js +173 -0
  113. package/dist/model/UpdateMerchantByIdRequest.js +1 -1
  114. package/dist/model/WalletAddress.js +20 -2
  115. package/dist/model/WalletInfoEventData.js +13 -3
  116. package/dist/model/WebhookEventData.js +121 -28
  117. package/dist/model/WebhookEventDataType.js +12 -2
  118. package/dist/model/WebhookEventType.js +15 -0
  119. package/docs/AddressRiskLevel.md +16 -0
  120. package/docs/AddressesEventData.md +5 -1
  121. package/docs/AllocationItem.md +15 -0
  122. package/docs/AllocationParam.md +13 -0
  123. package/docs/AutoSweepApi.md +1 -1
  124. package/docs/BalanceUpdateInfoEventData.md +5 -1
  125. package/docs/BatchAllocation.md +2 -2
  126. package/docs/BatchAllocationDetail.md +1 -1
  127. package/docs/BridgingFee.md +2 -2
  128. package/docs/ChainsEventData.md +5 -1
  129. package/docs/CommissionFee.md +1 -1
  130. package/docs/ComplianceApi.md +163 -0
  131. package/docs/ComplianceDispositionUpdateEventData.md +5 -1
  132. package/docs/ComplianceKyaScreeningsUpdateEventData.md +64 -0
  133. package/docs/ComplianceKytScreeningsUpdateEventData.md +5 -1
  134. package/docs/ContractCallParams.md +2 -2
  135. package/docs/CounterpartyWalletAddressDetail.md +1 -1
  136. package/docs/CreateBatchAllocationRequest.md +2 -2
  137. package/docs/CreateBulkSendRequest.md +12 -0
  138. package/docs/CreateBulkSendRequestPayoutParamsInner.md +12 -0
  139. package/docs/CreateCounterpartyEntry201Response.md +10 -0
  140. package/docs/CreateCounterpartyEntryRequest.md +10 -0
  141. package/docs/CreateDestinationEntry201Response.md +11 -0
  142. package/docs/CreateDestinationEntryRequest.md +11 -0
  143. package/docs/CreateKyaScreeningsBody.md +9 -0
  144. package/docs/CreateMerchantRequest.md +1 -1
  145. package/docs/CreatePaymentOrderRequest.md +11 -11
  146. package/docs/CreatePayoutRequest.md +4 -4
  147. package/docs/CreateRefundRequest.md +2 -2
  148. package/docs/CreateReportRequest.md +13 -0
  149. package/docs/CreateTopUpAddresses.md +11 -0
  150. package/docs/CreateTopUpAddresses201Response.md +9 -0
  151. package/docs/CreateWalletAddress.md +1 -1
  152. package/docs/DeleteCounterpartyById200Response.md +9 -0
  153. package/docs/DeleteCounterpartyEntry200Response.md +9 -0
  154. package/docs/DeleteDestinationById200Response.md +9 -0
  155. package/docs/DeleteDestinationEntry200Response.md +9 -0
  156. package/docs/EntryType.md +12 -0
  157. package/docs/FeeStationApi.md +1 -1
  158. package/docs/GetCounterpartyEntry200Response.md +9 -0
  159. package/docs/GetDestinationEntry200Response.md +10 -0
  160. package/docs/{ListAllocations200Response.md → GetReports200Response.md} +2 -2
  161. package/docs/GraphQLApi.md +61 -0
  162. package/docs/KyaRiskAssessment.md +11 -0
  163. package/docs/KyaRiskDetail.md +10 -0
  164. package/docs/KyaRiskLevel.md +14 -0
  165. package/docs/KyaScreeningRequest.md +12 -0
  166. package/docs/KyaScreeningResult.md +17 -0
  167. package/docs/KyaScreeningResultRiskAssessment.md +11 -0
  168. package/docs/KyaScreeningStatus.md +16 -0
  169. package/docs/KyaScreeningsEventData.md +14 -0
  170. package/docs/LinkDisplayInfo.md +1 -1
  171. package/docs/{ListPayoutItems200Response.md → ListAllocationItems200Response.md} +2 -2
  172. package/docs/ListBulkSendItems200Response.md +10 -0
  173. package/docs/ListCounterpartyEntries200Response.md +10 -0
  174. package/docs/ListDestinationEntries200Response.md +11 -0
  175. package/docs/ListKyaScreenings200Response.md +10 -0
  176. package/docs/MPCVaultEventData.md +5 -1
  177. package/docs/MerchantBalance.md +4 -4
  178. package/docs/Order.md +8 -8
  179. package/docs/OrderLinkBusinessInfo.md +11 -11
  180. package/docs/OrderLinkBusinessInfoCustomExchangeRatesInner.md +2 -2
  181. package/docs/OrderLinkBusinessInfoPayableAmountsInner.md +2 -2
  182. package/docs/PaymentAddressUpdateEventData.md +5 -1
  183. package/docs/PaymentAllocationAmount.md +1 -1
  184. package/docs/PaymentApi.md +1296 -198
  185. package/docs/PaymentBulkSend.md +15 -0
  186. package/docs/PaymentBulkSendEvent.md +65 -0
  187. package/docs/PaymentBulkSendExecutionMode.md +12 -0
  188. package/docs/PaymentBulkSendItem.md +15 -0
  189. package/docs/{PaymentPayoutItemStatus.md → PaymentBulkSendItemStatus.md} +3 -3
  190. package/docs/PaymentBulkSendItemValidationStatus.md +14 -0
  191. package/docs/PaymentBulkSendStatus.md +20 -0
  192. package/docs/PaymentEstimateFeeRequest.md +1 -0
  193. package/docs/PaymentFeeType.md +6 -0
  194. package/docs/PaymentOrderEventData.md +13 -9
  195. package/docs/PaymentPayout.md +8 -7
  196. package/docs/PaymentPayoutDetail.md +10 -8
  197. package/docs/PaymentPayoutEvent.md +15 -9
  198. package/docs/PaymentPayoutItem.md +2 -13
  199. package/docs/PaymentPayoutParam.md +1 -4
  200. package/docs/PaymentPayoutRecipientInfo.md +12 -0
  201. package/docs/PaymentPayoutStatus.md +4 -2
  202. package/docs/PaymentRefundEventData.md +5 -1
  203. package/docs/PaymentSettlementEvent.md +5 -1
  204. package/docs/PaymentTransactionEventData.md +5 -1
  205. package/docs/PspBalance.md +4 -4
  206. package/docs/RefundLinkBusinessInfo.md +1 -1
  207. package/docs/Report.md +17 -0
  208. package/docs/ReportExportFormat.md +14 -0
  209. package/docs/ReportStatus.md +12 -0
  210. package/docs/ReportType.md +36 -0
  211. package/docs/StakingsApi.md +1 -1
  212. package/docs/SuspendedTokenEventData.md +5 -1
  213. package/docs/SwapsApi.md +2 -0
  214. package/docs/TSSRequestWebhookEventData.md +5 -1
  215. package/docs/TokenListingEventData.md +5 -1
  216. package/docs/TokensEventData.md +5 -1
  217. package/docs/TransactionCoboCategory.md +2 -0
  218. package/docs/TransactionExtraType.md +2 -0
  219. package/docs/TransactionWalletConnectInfo.md +12 -0
  220. package/docs/TransactionWebhookEventData.md +5 -1
  221. package/docs/TransactionsApi.md +3 -3
  222. package/docs/TransferParams.md +1 -1
  223. package/docs/UpdateCounterpartyRequest.md +13 -0
  224. package/docs/UpdateDestinationEntry200Response.md +9 -0
  225. package/docs/UpdateDestinationEntryRequest.md +11 -0
  226. package/docs/UpdateDestinationRequest.md +14 -0
  227. package/docs/UpdateMerchantByIdRequest.md +1 -1
  228. package/docs/WalletAddress.md +3 -1
  229. package/docs/WalletInfoEventData.md +5 -1
  230. package/docs/WalletsApi.md +9 -9
  231. package/docs/WebhookEventData.md +28 -18
  232. package/docs/WebhookEventDataType.md +5 -1
  233. package/docs/WebhookEventType.md +6 -0
  234. package/package.json +1 -1
  235. package/dist/model/PaymentPayoutItemDetail.js +0 -298
  236. package/docs/AllocationRecord.md +0 -15
  237. package/docs/AllocationRequest.md +0 -13
  238. package/docs/PaymentPayoutItemDetail.md +0 -22
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.28.0
18
+ - Package version: 1.30.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
@@ -108,6 +111,7 @@ Class | Method | HTTP request | Description
108
111
  *CoboWaas2.FeeStationApi* | [**listFeeStationAddresses**](docs/FeeStationApi.md#listFeeStationAddresses) | **GET** /fee_station/addresses | List Fee Station addresses
109
112
  *CoboWaas2.FeeStationApi* | [**listFeeStationTransactions**](docs/FeeStationApi.md#listFeeStationTransactions) | **GET** /fee_station/transactions | List all Fee Station transactions
110
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
111
115
  *CoboWaas2.OAuthApi* | [**exchangePermissionToken**](docs/OAuthApi.md#exchangePermissionToken) | **POST** /oauth/permission_token/exchange | Get Access Token
112
116
  *CoboWaas2.OAuthApi* | [**getToken**](docs/OAuthApi.md#getToken) | **GET** /oauth/token | Get Org Access Token
113
117
  *CoboWaas2.OAuthApi* | [**refreshPermissionToken**](docs/OAuthApi.md#refreshPermissionToken) | **POST** /oauth/permission_token/refresh | Refresh Access Token
@@ -116,11 +120,14 @@ Class | Method | HTTP request | Description
116
120
  *CoboWaas2.PaymentApi* | [**batchGetExchangeRates**](docs/PaymentApi.md#batchGetExchangeRates) | **GET** /payments/exchange_rates | Batch get exchange rates
117
121
  *CoboWaas2.PaymentApi* | [**cancelRefundById**](docs/PaymentApi.md#cancelRefundById) | **PUT** /payments/refunds/{refund_id}/cancel | Cancel refund order
118
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
119
124
  *CoboWaas2.PaymentApi* | [**createCounterparty**](docs/PaymentApi.md#createCounterparty) | **POST** /payments/counterparty | Create counterparty
125
+ *CoboWaas2.PaymentApi* | [**createCounterpartyEntry**](docs/PaymentApi.md#createCounterpartyEntry) | **POST** /payments/counterparty_entry | Create counterparty entry
120
126
  *CoboWaas2.PaymentApi* | [**createCounterpartyWalletAddress**](docs/PaymentApi.md#createCounterpartyWalletAddress) | **POST** /payments/counterparty/wallet_address | Create counterparty wallet address
121
127
  *CoboWaas2.PaymentApi* | [**createCryptoAddress**](docs/PaymentApi.md#createCryptoAddress) | **POST** /payments/crypto_addresses | Create crypto address
122
128
  *CoboWaas2.PaymentApi* | [**createDestination**](docs/PaymentApi.md#createDestination) | **POST** /payments/destination | Create destination
123
129
  *CoboWaas2.PaymentApi* | [**createDestinationBankAccount**](docs/PaymentApi.md#createDestinationBankAccount) | **POST** /payments/destination/bank_account | Create destination bank account
130
+ *CoboWaas2.PaymentApi* | [**createDestinationEntry**](docs/PaymentApi.md#createDestinationEntry) | **POST** /payments/destination_entry | Create destination entry
124
131
  *CoboWaas2.PaymentApi* | [**createDestinationWalletAddress**](docs/PaymentApi.md#createDestinationWalletAddress) | **POST** /payments/destination/wallet_address | Create destination wallet address
125
132
  *CoboWaas2.PaymentApi* | [**createForcedSweepRequest**](docs/PaymentApi.md#createForcedSweepRequest) | **POST** /payments/force_sweep_requests | Create forced sweep
126
133
  *CoboWaas2.PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
@@ -129,35 +136,50 @@ Class | Method | HTTP request | Description
129
136
  *CoboWaas2.PaymentApi* | [**createPayout**](docs/PaymentApi.md#createPayout) | **POST** /payments/payouts | Create payout
130
137
  *CoboWaas2.PaymentApi* | [**createRefund**](docs/PaymentApi.md#createRefund) | **POST** /payments/refunds | Create refund order
131
138
  *CoboWaas2.PaymentApi* | [**createRefundLink**](docs/PaymentApi.md#createRefundLink) | **POST** /payments/links/refunds | Create refund link
139
+ *CoboWaas2.PaymentApi* | [**createReport**](docs/PaymentApi.md#createReport) | **POST** /payments/reports | Generate reports
132
140
  *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
141
+ *CoboWaas2.PaymentApi* | [**createTopUpAddresses**](docs/PaymentApi.md#createTopUpAddresses) | **POST** /payments/topup/address | Batch create top-up addresses
142
+ *CoboWaas2.PaymentApi* | [**deleteCounterparty**](docs/PaymentApi.md#deleteCounterparty) | **PUT** /payments/counterparty/{counterparty_id}/delete | Delete counterparty (Deprecated)
143
+ *CoboWaas2.PaymentApi* | [**deleteCounterpartyById**](docs/PaymentApi.md#deleteCounterpartyById) | **DELETE** /payments/counterparty/{counterparty_id} | Delete counterparty
144
+ *CoboWaas2.PaymentApi* | [**deleteCounterpartyEntry**](docs/PaymentApi.md#deleteCounterpartyEntry) | **DELETE** /payments/counterparty_entry/{counterparty_entry_id} | Delete counterparty entry
134
145
  *CoboWaas2.PaymentApi* | [**deleteCounterpartyWalletAddress**](docs/PaymentApi.md#deleteCounterpartyWalletAddress) | **PUT** /payments/counterparty/wallet_address/{wallet_address_id}/delete | Delete counterparty wallet address
135
146
  *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
147
+ *CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination (Deprecated)
137
148
  *CoboWaas2.PaymentApi* | [**deleteDestinationBankAccount**](docs/PaymentApi.md#deleteDestinationBankAccount) | **PUT** /payments/destination/bank_account/{bank_account_id}/delete | Delete destination bank account
149
+ *CoboWaas2.PaymentApi* | [**deleteDestinationById**](docs/PaymentApi.md#deleteDestinationById) | **DELETE** /payments/destination/{destination_id} | Delete destination
150
+ *CoboWaas2.PaymentApi* | [**deleteDestinationEntry**](docs/PaymentApi.md#deleteDestinationEntry) | **DELETE** /payments/destination_entry/{destination_entry_id} | Delete destination entry
138
151
  *CoboWaas2.PaymentApi* | [**deleteDestinationWalletAddress**](docs/PaymentApi.md#deleteDestinationWalletAddress) | **PUT** /payments/destination/wallet_address/{wallet_address_id}/delete | Delete destination wallet address
139
152
  *CoboWaas2.PaymentApi* | [**enableDestinationWhitelist**](docs/PaymentApi.md#enableDestinationWhitelist) | **POST** /payments/destination/enable_whitelist | Enable or disable destination whitelist
140
153
  *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 by id
142
- *CoboWaas2.PaymentApi* | [**getCounterpartyDetailById**](docs/PaymentApi.md#getCounterpartyDetailById) | **GET** /payments/counterparty/{counterparty_id}/detail | Get counterparty information
154
+ *CoboWaas2.PaymentApi* | [**getBatchAllocationById**](docs/PaymentApi.md#getBatchAllocationById) | **GET** /payments/batch_allocations/{batch_allocation_id} | Get batch allocation information
155
+ *CoboWaas2.PaymentApi* | [**getBulkSendById**](docs/PaymentApi.md#getBulkSendById) | **GET** /payments/bulk_sends/{bulk_send_id} | Get bulk send information
156
+ *CoboWaas2.PaymentApi* | [**getCounterparty**](docs/PaymentApi.md#getCounterparty) | **GET** /payments/counterparty/{counterparty_id} | Get counterparty information
157
+ *CoboWaas2.PaymentApi* | [**getCounterpartyDetailById**](docs/PaymentApi.md#getCounterpartyDetailById) | **GET** /payments/counterparty/{counterparty_id}/detail | Get counterparty information (Deprecated)
158
+ *CoboWaas2.PaymentApi* | [**getCounterpartyEntry**](docs/PaymentApi.md#getCounterpartyEntry) | **GET** /payments/counterparty_entry/{counterparty_entry_id} | Get counterparty entry information
159
+ *CoboWaas2.PaymentApi* | [**getDestination**](docs/PaymentApi.md#getDestination) | **GET** /payments/destination/{destination_id} | Get destination information
143
160
  *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
161
+ *CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information (Deprecated)
162
+ *CoboWaas2.PaymentApi* | [**getDestinationEntry**](docs/PaymentApi.md#getDestinationEntry) | **GET** /payments/destination_entry/{destination_entry_id} | Get destination entry information
145
163
  *CoboWaas2.PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
146
164
  *CoboWaas2.PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
147
165
  *CoboWaas2.PaymentApi* | [**getPayoutById**](docs/PaymentApi.md#getPayoutById) | **GET** /payments/payouts/{payout_id} | Get payout information
148
166
  *CoboWaas2.PaymentApi* | [**getPspBalance**](docs/PaymentApi.md#getPspBalance) | **GET** /payments/balance/psp | Get developer balance
149
167
  *CoboWaas2.PaymentApi* | [**getRefundDetailById**](docs/PaymentApi.md#getRefundDetailById) | **GET** /payments/refunds/{refund_id} | Get refund order information
150
168
  *CoboWaas2.PaymentApi* | [**getRefunds**](docs/PaymentApi.md#getRefunds) | **GET** /payments/refunds | List all refund orders
169
+ *CoboWaas2.PaymentApi* | [**getReports**](docs/PaymentApi.md#getReports) | **GET** /payments/reports | List all reports
151
170
  *CoboWaas2.PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
152
171
  *CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
153
172
  *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 allocations
173
+ *CoboWaas2.PaymentApi* | [**listAllocationItems**](docs/PaymentApi.md#listAllocationItems) | **GET** /payments/allocation_items | List all allocation items
155
174
  *CoboWaas2.PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
156
175
  *CoboWaas2.PaymentApi* | [**listBatchAllocations**](docs/PaymentApi.md#listBatchAllocations) | **GET** /payments/batch_allocations | List all batch allocations
176
+ *CoboWaas2.PaymentApi* | [**listBulkSendItems**](docs/PaymentApi.md#listBulkSendItems) | **GET** /payments/bulk_sends/{bulk_send_id}/items | List bulk send items
157
177
  *CoboWaas2.PaymentApi* | [**listCounterparties**](docs/PaymentApi.md#listCounterparties) | **GET** /payments/counterparty | List all counterparties
178
+ *CoboWaas2.PaymentApi* | [**listCounterpartyEntries**](docs/PaymentApi.md#listCounterpartyEntries) | **GET** /payments/counterparty_entry | List counterparty entries
158
179
  *CoboWaas2.PaymentApi* | [**listCounterpartyWalletAddress**](docs/PaymentApi.md#listCounterpartyWalletAddress) | **GET** /payments/counterparty/wallet_address | List counterparty wallet addresses
159
180
  *CoboWaas2.PaymentApi* | [**listCryptoAddresses**](docs/PaymentApi.md#listCryptoAddresses) | **GET** /payments/crypto_addresses | List crypto addresses
160
181
  *CoboWaas2.PaymentApi* | [**listDestinationBankAccounts**](docs/PaymentApi.md#listDestinationBankAccounts) | **GET** /payments/destination/bank_account | List destination bank accounts
182
+ *CoboWaas2.PaymentApi* | [**listDestinationEntries**](docs/PaymentApi.md#listDestinationEntries) | **GET** /payments/destination_entry | List destination entries
161
183
  *CoboWaas2.PaymentApi* | [**listDestinationWalletAddresses**](docs/PaymentApi.md#listDestinationWalletAddresses) | **GET** /payments/destination/wallet_address | List destination wallet addresses
162
184
  *CoboWaas2.PaymentApi* | [**listDestinations**](docs/PaymentApi.md#listDestinations) | **GET** /payments/destination | List all destinations
163
185
  *CoboWaas2.PaymentApi* | [**listForcedSweepRequests**](docs/PaymentApi.md#listForcedSweepRequests) | **GET** /payments/force_sweep_requests | List forced sweeps
@@ -166,7 +188,6 @@ Class | Method | HTTP request | Description
166
188
  *CoboWaas2.PaymentApi* | [**listPaymentOrders**](docs/PaymentApi.md#listPaymentOrders) | **GET** /payments/orders | List all pay-in orders
167
189
  *CoboWaas2.PaymentApi* | [**listPaymentSupportedTokens**](docs/PaymentApi.md#listPaymentSupportedTokens) | **GET** /payments/supported_tokens | List all supported tokens
168
190
  *CoboWaas2.PaymentApi* | [**listPaymentWalletBalances**](docs/PaymentApi.md#listPaymentWalletBalances) | **GET** /payments/balance/payment_wallets | List payment wallet balances
169
- *CoboWaas2.PaymentApi* | [**listPayoutItems**](docs/PaymentApi.md#listPayoutItems) | **GET** /payments/payout_items | List all payout items
170
191
  *CoboWaas2.PaymentApi* | [**listPayouts**](docs/PaymentApi.md#listPayouts) | **GET** /payments/payouts | List all payouts
171
192
  *CoboWaas2.PaymentApi* | [**listSettlementDetails**](docs/PaymentApi.md#listSettlementDetails) | **GET** /payments/settlement_details | List all settlement details
172
193
  *CoboWaas2.PaymentApi* | [**listSettlementRequests**](docs/PaymentApi.md#listSettlementRequests) | **GET** /payments/settlement_requests | List all settlement requests
@@ -175,9 +196,12 @@ Class | Method | HTTP request | Description
175
196
  *CoboWaas2.PaymentApi* | [**paymentEstimateFee**](docs/PaymentApi.md#paymentEstimateFee) | **POST** /payments/estimate_fee | Estimate fees
176
197
  *CoboWaas2.PaymentApi* | [**queryDestinationWhitelistEnabled**](docs/PaymentApi.md#queryDestinationWhitelistEnabled) | **GET** /payments/destination/enable_whitelist | Query destination whitelist enabled status
177
198
  *CoboWaas2.PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
178
- *CoboWaas2.PaymentApi* | [**updateCounterpartyById**](docs/PaymentApi.md#updateCounterpartyById) | **PUT** /payments/counterparty/{counterparty_id}/update | Update counterparty
199
+ *CoboWaas2.PaymentApi* | [**updateCounterparty**](docs/PaymentApi.md#updateCounterparty) | **PUT** /payments/counterparty/{counterparty_id} | Update counterparty
200
+ *CoboWaas2.PaymentApi* | [**updateCounterpartyById**](docs/PaymentApi.md#updateCounterpartyById) | **PUT** /payments/counterparty/{counterparty_id}/update | Update counterparty (Deprecated)
201
+ *CoboWaas2.PaymentApi* | [**updateDestination**](docs/PaymentApi.md#updateDestination) | **PUT** /payments/destination/{destination_id} | Update destination
179
202
  *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
203
+ *CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination (Deprecated)
204
+ *CoboWaas2.PaymentApi* | [**updateDestinationEntry**](docs/PaymentApi.md#updateDestinationEntry) | **PUT** /payments/destination_entry/{destination_entry_id} | Update destination entry
181
205
  *CoboWaas2.PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
182
206
  *CoboWaas2.PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
183
207
  *CoboWaas2.PaymentApi* | [**updateRefundById**](docs/PaymentApi.md#updateRefundById) | **PUT** /payments/refunds/{refund_id} | Update refund order
@@ -328,13 +352,14 @@ Class | Method | HTTP request | Description
328
352
  - [CoboWaas2.AddressBook](docs/AddressBook.md)
329
353
  - [CoboWaas2.AddressEncoding](docs/AddressEncoding.md)
330
354
  - [CoboWaas2.AddressInfo](docs/AddressInfo.md)
355
+ - [CoboWaas2.AddressRiskLevel](docs/AddressRiskLevel.md)
331
356
  - [CoboWaas2.AddressTransferDestination](docs/AddressTransferDestination.md)
332
357
  - [CoboWaas2.AddressTransferDestinationAccountOutput](docs/AddressTransferDestinationAccountOutput.md)
333
358
  - [CoboWaas2.AddressTransferDestinationUtxoOutputsInner](docs/AddressTransferDestinationUtxoOutputsInner.md)
334
359
  - [CoboWaas2.AddressesEventData](docs/AddressesEventData.md)
335
360
  - [CoboWaas2.AddressesEventDataAllOfAddresses](docs/AddressesEventDataAllOfAddresses.md)
336
- - [CoboWaas2.AllocationRecord](docs/AllocationRecord.md)
337
- - [CoboWaas2.AllocationRequest](docs/AllocationRequest.md)
361
+ - [CoboWaas2.AllocationItem](docs/AllocationItem.md)
362
+ - [CoboWaas2.AllocationParam](docs/AllocationParam.md)
338
363
  - [CoboWaas2.AmountDetailsInner](docs/AmountDetailsInner.md)
339
364
  - [CoboWaas2.AmountStatus](docs/AmountStatus.md)
340
365
  - [CoboWaas2.ApiLogDetails](docs/ApiLogDetails.md)
@@ -401,6 +426,7 @@ Class | Method | HTTP request | Description
401
426
  - [CoboWaas2.CoboSafeDelegateType](docs/CoboSafeDelegateType.md)
402
427
  - [CoboWaas2.CommissionFee](docs/CommissionFee.md)
403
428
  - [CoboWaas2.ComplianceDispositionUpdateEventData](docs/ComplianceDispositionUpdateEventData.md)
429
+ - [CoboWaas2.ComplianceKyaScreeningsUpdateEventData](docs/ComplianceKyaScreeningsUpdateEventData.md)
404
430
  - [CoboWaas2.ComplianceKytScreeningsUpdateEventData](docs/ComplianceKytScreeningsUpdateEventData.md)
405
431
  - [CoboWaas2.ContractCallDestination](docs/ContractCallDestination.md)
406
432
  - [CoboWaas2.ContractCallDestinationType](docs/ContractCallDestinationType.md)
@@ -428,19 +454,26 @@ Class | Method | HTTP request | Description
428
454
  - [CoboWaas2.CreateBabylonStakingRegistration201Response](docs/CreateBabylonStakingRegistration201Response.md)
429
455
  - [CoboWaas2.CreateBabylonStakingRegistrationRequest](docs/CreateBabylonStakingRegistrationRequest.md)
430
456
  - [CoboWaas2.CreateBatchAllocationRequest](docs/CreateBatchAllocationRequest.md)
457
+ - [CoboWaas2.CreateBulkSendRequest](docs/CreateBulkSendRequest.md)
458
+ - [CoboWaas2.CreateBulkSendRequestPayoutParamsInner](docs/CreateBulkSendRequestPayoutParamsInner.md)
431
459
  - [CoboWaas2.CreateClaimActivity](docs/CreateClaimActivity.md)
432
460
  - [CoboWaas2.CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
461
+ - [CoboWaas2.CreateCounterpartyEntry201Response](docs/CreateCounterpartyEntry201Response.md)
462
+ - [CoboWaas2.CreateCounterpartyEntryRequest](docs/CreateCounterpartyEntryRequest.md)
433
463
  - [CoboWaas2.CreateCounterpartyRequest](docs/CreateCounterpartyRequest.md)
434
464
  - [CoboWaas2.CreateCounterpartyWalletAddressRequest](docs/CreateCounterpartyWalletAddressRequest.md)
435
465
  - [CoboWaas2.CreateCryptoAddressRequest](docs/CreateCryptoAddressRequest.md)
436
466
  - [CoboWaas2.CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
437
467
  - [CoboWaas2.CreateDestinationBankAccount](docs/CreateDestinationBankAccount.md)
438
468
  - [CoboWaas2.CreateDestinationBankAccountRequest](docs/CreateDestinationBankAccountRequest.md)
469
+ - [CoboWaas2.CreateDestinationEntry201Response](docs/CreateDestinationEntry201Response.md)
470
+ - [CoboWaas2.CreateDestinationEntryRequest](docs/CreateDestinationEntryRequest.md)
439
471
  - [CoboWaas2.CreateDestinationRequest](docs/CreateDestinationRequest.md)
440
472
  - [CoboWaas2.CreateDestinationWalletAddressRequest](docs/CreateDestinationWalletAddressRequest.md)
441
473
  - [CoboWaas2.CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
442
474
  - [CoboWaas2.CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
443
475
  - [CoboWaas2.CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
476
+ - [CoboWaas2.CreateKyaScreeningsBody](docs/CreateKyaScreeningsBody.md)
444
477
  - [CoboWaas2.CreateMerchantRequest](docs/CreateMerchantRequest.md)
445
478
  - [CoboWaas2.CreateMpcProjectRequest](docs/CreateMpcProjectRequest.md)
446
479
  - [CoboWaas2.CreateMpcVaultRequest](docs/CreateMpcVaultRequest.md)
@@ -452,6 +485,7 @@ Class | Method | HTTP request | Description
452
485
  - [CoboWaas2.CreatePrimeBrokerAddressRequest](docs/CreatePrimeBrokerAddressRequest.md)
453
486
  - [CoboWaas2.CreateRefundLinkRequest](docs/CreateRefundLinkRequest.md)
454
487
  - [CoboWaas2.CreateRefundRequest](docs/CreateRefundRequest.md)
488
+ - [CoboWaas2.CreateReportRequest](docs/CreateReportRequest.md)
455
489
  - [CoboWaas2.CreateSafeWalletParams](docs/CreateSafeWalletParams.md)
456
490
  - [CoboWaas2.CreateSettlement](docs/CreateSettlement.md)
457
491
  - [CoboWaas2.CreateSettlementRequestRequest](docs/CreateSettlementRequestRequest.md)
@@ -464,6 +498,8 @@ Class | Method | HTTP request | Description
464
498
  - [CoboWaas2.CreateSweepToAddress](docs/CreateSweepToAddress.md)
465
499
  - [CoboWaas2.CreateTokenListingRequest201Response](docs/CreateTokenListingRequest201Response.md)
466
500
  - [CoboWaas2.CreateTokenListingRequestRequest](docs/CreateTokenListingRequestRequest.md)
501
+ - [CoboWaas2.CreateTopUpAddresses](docs/CreateTopUpAddresses.md)
502
+ - [CoboWaas2.CreateTopUpAddresses201Response](docs/CreateTopUpAddresses201Response.md)
467
503
  - [CoboWaas2.CreateTransferTransaction201Response](docs/CreateTransferTransaction201Response.md)
468
504
  - [CoboWaas2.CreateTssRequestRequest](docs/CreateTssRequestRequest.md)
469
505
  - [CoboWaas2.CreateUnstakeActivity](docs/CreateUnstakeActivity.md)
@@ -485,10 +521,14 @@ Class | Method | HTTP request | Description
485
521
  - [CoboWaas2.CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
486
522
  - [CoboWaas2.DeleteAddressBookById201Response](docs/DeleteAddressBookById201Response.md)
487
523
  - [CoboWaas2.DeleteCounterparty200Response](docs/DeleteCounterparty200Response.md)
524
+ - [CoboWaas2.DeleteCounterpartyById200Response](docs/DeleteCounterpartyById200Response.md)
525
+ - [CoboWaas2.DeleteCounterpartyEntry200Response](docs/DeleteCounterpartyEntry200Response.md)
488
526
  - [CoboWaas2.DeleteCounterpartyWalletAddress200Response](docs/DeleteCounterpartyWalletAddress200Response.md)
489
527
  - [CoboWaas2.DeleteCryptoAddress201Response](docs/DeleteCryptoAddress201Response.md)
490
528
  - [CoboWaas2.DeleteDestination200Response](docs/DeleteDestination200Response.md)
491
529
  - [CoboWaas2.DeleteDestinationBankAccount200Response](docs/DeleteDestinationBankAccount200Response.md)
530
+ - [CoboWaas2.DeleteDestinationById200Response](docs/DeleteDestinationById200Response.md)
531
+ - [CoboWaas2.DeleteDestinationEntry200Response](docs/DeleteDestinationEntry200Response.md)
492
532
  - [CoboWaas2.DeleteDestinationWalletAddress200Response](docs/DeleteDestinationWalletAddress200Response.md)
493
533
  - [CoboWaas2.DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
494
534
  - [CoboWaas2.DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
@@ -509,6 +549,7 @@ Class | Method | HTTP request | Description
509
549
  - [CoboWaas2.EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
510
550
  - [CoboWaas2.EigenlayerValidator](docs/EigenlayerValidator.md)
511
551
  - [CoboWaas2.EnableDestinationWhitelistRequest](docs/EnableDestinationWhitelistRequest.md)
552
+ - [CoboWaas2.EntryType](docs/EntryType.md)
512
553
  - [CoboWaas2.ErrorResponse](docs/ErrorResponse.md)
513
554
  - [CoboWaas2.EstimateClaimFee](docs/EstimateClaimFee.md)
514
555
  - [CoboWaas2.EstimateContractCallFeeParams](docs/EstimateContractCallFeeParams.md)
@@ -571,9 +612,12 @@ Class | Method | HTTP request | Description
571
612
  - [CoboWaas2.ForcedSweepStatus](docs/ForcedSweepStatus.md)
572
613
  - [CoboWaas2.FundsStatusType](docs/FundsStatusType.md)
573
614
  - [CoboWaas2.GetApiKeyInfo200Response](docs/GetApiKeyInfo200Response.md)
615
+ - [CoboWaas2.GetCounterpartyEntry200Response](docs/GetCounterpartyEntry200Response.md)
616
+ - [CoboWaas2.GetDestinationEntry200Response](docs/GetDestinationEntry200Response.md)
574
617
  - [CoboWaas2.GetExchangeRate200Response](docs/GetExchangeRate200Response.md)
575
618
  - [CoboWaas2.GetMaxTransferableValueWithFeeModelRequest](docs/GetMaxTransferableValueWithFeeModelRequest.md)
576
619
  - [CoboWaas2.GetRefunds200Response](docs/GetRefunds200Response.md)
620
+ - [CoboWaas2.GetReports200Response](docs/GetReports200Response.md)
577
621
  - [CoboWaas2.GetSettlementInfoByIds200Response](docs/GetSettlementInfoByIds200Response.md)
578
622
  - [CoboWaas2.GetStakingEstimationFee201Response](docs/GetStakingEstimationFee201Response.md)
579
623
  - [CoboWaas2.GetStakingEstimationFeeRequest](docs/GetStakingEstimationFeeRequest.md)
@@ -594,6 +638,14 @@ Class | Method | HTTP request | Description
594
638
  - [CoboWaas2.KeyShareHolderGroupType](docs/KeyShareHolderGroupType.md)
595
639
  - [CoboWaas2.KeyShareHolderStatus](docs/KeyShareHolderStatus.md)
596
640
  - [CoboWaas2.KeyShareHolderType](docs/KeyShareHolderType.md)
641
+ - [CoboWaas2.KyaRiskAssessment](docs/KyaRiskAssessment.md)
642
+ - [CoboWaas2.KyaRiskDetail](docs/KyaRiskDetail.md)
643
+ - [CoboWaas2.KyaRiskLevel](docs/KyaRiskLevel.md)
644
+ - [CoboWaas2.KyaScreeningRequest](docs/KyaScreeningRequest.md)
645
+ - [CoboWaas2.KyaScreeningResult](docs/KyaScreeningResult.md)
646
+ - [CoboWaas2.KyaScreeningResultRiskAssessment](docs/KyaScreeningResultRiskAssessment.md)
647
+ - [CoboWaas2.KyaScreeningStatus](docs/KyaScreeningStatus.md)
648
+ - [CoboWaas2.KyaScreeningsEventData](docs/KyaScreeningsEventData.md)
597
649
  - [CoboWaas2.KytScreeningsDecisionsType](docs/KytScreeningsDecisionsType.md)
598
650
  - [CoboWaas2.KytScreeningsEventData](docs/KytScreeningsEventData.md)
599
651
  - [CoboWaas2.KytScreeningsReviewType](docs/KytScreeningsReviewType.md)
@@ -604,7 +656,7 @@ Class | Method | HTTP request | Description
604
656
  - [CoboWaas2.ListAddressBalancesByToken200Response](docs/ListAddressBalancesByToken200Response.md)
605
657
  - [CoboWaas2.ListAddressBooks200Response](docs/ListAddressBooks200Response.md)
606
658
  - [CoboWaas2.ListAddresses200Response](docs/ListAddresses200Response.md)
607
- - [CoboWaas2.ListAllocations200Response](docs/ListAllocations200Response.md)
659
+ - [CoboWaas2.ListAllocationItems200Response](docs/ListAllocationItems200Response.md)
608
660
  - [CoboWaas2.ListApprovalRequests200Response](docs/ListApprovalRequests200Response.md)
609
661
  - [CoboWaas2.ListAssetBalancesForExchangeWallet200Response](docs/ListAssetBalancesForExchangeWallet200Response.md)
610
662
  - [CoboWaas2.ListAutoSweepTask200Response](docs/ListAutoSweepTask200Response.md)
@@ -614,23 +666,26 @@ Class | Method | HTTP request | Description
614
666
  - [CoboWaas2.ListBabylonEligibleStakings200ResponseDataInner](docs/ListBabylonEligibleStakings200ResponseDataInner.md)
615
667
  - [CoboWaas2.ListBabylonStakingRegistrations200Response](docs/ListBabylonStakingRegistrations200Response.md)
616
668
  - [CoboWaas2.ListBatchAllocations200Response](docs/ListBatchAllocations200Response.md)
669
+ - [CoboWaas2.ListBulkSendItems200Response](docs/ListBulkSendItems200Response.md)
617
670
  - [CoboWaas2.ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
618
671
  - [CoboWaas2.ListCounterparties200Response](docs/ListCounterparties200Response.md)
672
+ - [CoboWaas2.ListCounterpartyEntries200Response](docs/ListCounterpartyEntries200Response.md)
619
673
  - [CoboWaas2.ListCounterpartyWalletAddress200Response](docs/ListCounterpartyWalletAddress200Response.md)
620
674
  - [CoboWaas2.ListDestinationBankAccounts200Response](docs/ListDestinationBankAccounts200Response.md)
675
+ - [CoboWaas2.ListDestinationEntries200Response](docs/ListDestinationEntries200Response.md)
621
676
  - [CoboWaas2.ListDestinationWalletAddresses200Response](docs/ListDestinationWalletAddresses200Response.md)
622
677
  - [CoboWaas2.ListDestinations200Response](docs/ListDestinations200Response.md)
623
678
  - [CoboWaas2.ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
624
679
  - [CoboWaas2.ListForcedSweepRequests200Response](docs/ListForcedSweepRequests200Response.md)
625
680
  - [CoboWaas2.ListKeyShareHolderGroups200Response](docs/ListKeyShareHolderGroups200Response.md)
626
681
  - [CoboWaas2.ListKeyShareHolders200Response](docs/ListKeyShareHolders200Response.md)
682
+ - [CoboWaas2.ListKyaScreenings200Response](docs/ListKyaScreenings200Response.md)
627
683
  - [CoboWaas2.ListMerchantBalances200Response](docs/ListMerchantBalances200Response.md)
628
684
  - [CoboWaas2.ListMerchants200Response](docs/ListMerchants200Response.md)
629
685
  - [CoboWaas2.ListMpcProjects200Response](docs/ListMpcProjects200Response.md)
630
686
  - [CoboWaas2.ListMpcVaults200Response](docs/ListMpcVaults200Response.md)
631
687
  - [CoboWaas2.ListPaymentOrders200Response](docs/ListPaymentOrders200Response.md)
632
688
  - [CoboWaas2.ListPaymentWalletBalances200Response](docs/ListPaymentWalletBalances200Response.md)
633
- - [CoboWaas2.ListPayoutItems200Response](docs/ListPayoutItems200Response.md)
634
689
  - [CoboWaas2.ListPayouts200Response](docs/ListPayouts200Response.md)
635
690
  - [CoboWaas2.ListSettlementDetails200Response](docs/ListSettlementDetails200Response.md)
636
691
  - [CoboWaas2.ListSettlementRequests200Response](docs/ListSettlementRequests200Response.md)
@@ -695,6 +750,13 @@ Class | Method | HTTP request | Description
695
750
  - [CoboWaas2.PayerAccount](docs/PayerAccount.md)
696
751
  - [CoboWaas2.PaymentAddressUpdateEventData](docs/PaymentAddressUpdateEventData.md)
697
752
  - [CoboWaas2.PaymentAllocationAmount](docs/PaymentAllocationAmount.md)
753
+ - [CoboWaas2.PaymentBulkSend](docs/PaymentBulkSend.md)
754
+ - [CoboWaas2.PaymentBulkSendEvent](docs/PaymentBulkSendEvent.md)
755
+ - [CoboWaas2.PaymentBulkSendExecutionMode](docs/PaymentBulkSendExecutionMode.md)
756
+ - [CoboWaas2.PaymentBulkSendItem](docs/PaymentBulkSendItem.md)
757
+ - [CoboWaas2.PaymentBulkSendItemStatus](docs/PaymentBulkSendItemStatus.md)
758
+ - [CoboWaas2.PaymentBulkSendItemValidationStatus](docs/PaymentBulkSendItemValidationStatus.md)
759
+ - [CoboWaas2.PaymentBulkSendStatus](docs/PaymentBulkSendStatus.md)
698
760
  - [CoboWaas2.PaymentEstimateFee](docs/PaymentEstimateFee.md)
699
761
  - [CoboWaas2.PaymentEstimateFee201Response](docs/PaymentEstimateFee201Response.md)
700
762
  - [CoboWaas2.PaymentEstimateFeeRequest](docs/PaymentEstimateFeeRequest.md)
@@ -705,9 +767,8 @@ Class | Method | HTTP request | Description
705
767
  - [CoboWaas2.PaymentPayoutDetail](docs/PaymentPayoutDetail.md)
706
768
  - [CoboWaas2.PaymentPayoutEvent](docs/PaymentPayoutEvent.md)
707
769
  - [CoboWaas2.PaymentPayoutItem](docs/PaymentPayoutItem.md)
708
- - [CoboWaas2.PaymentPayoutItemDetail](docs/PaymentPayoutItemDetail.md)
709
- - [CoboWaas2.PaymentPayoutItemStatus](docs/PaymentPayoutItemStatus.md)
710
770
  - [CoboWaas2.PaymentPayoutParam](docs/PaymentPayoutParam.md)
771
+ - [CoboWaas2.PaymentPayoutRecipientInfo](docs/PaymentPayoutRecipientInfo.md)
711
772
  - [CoboWaas2.PaymentPayoutStatus](docs/PaymentPayoutStatus.md)
712
773
  - [CoboWaas2.PaymentRefundEventData](docs/PaymentRefundEventData.md)
713
774
  - [CoboWaas2.PaymentSettlementEvent](docs/PaymentSettlementEvent.md)
@@ -741,6 +802,10 @@ Class | Method | HTTP request | Description
741
802
  - [CoboWaas2.RefundStatus](docs/RefundStatus.md)
742
803
  - [CoboWaas2.RefundType](docs/RefundType.md)
743
804
  - [CoboWaas2.ReplaceType](docs/ReplaceType.md)
805
+ - [CoboWaas2.Report](docs/Report.md)
806
+ - [CoboWaas2.ReportExportFormat](docs/ReportExportFormat.md)
807
+ - [CoboWaas2.ReportStatus](docs/ReportStatus.md)
808
+ - [CoboWaas2.ReportType](docs/ReportType.md)
744
809
  - [CoboWaas2.RequestApproval](docs/RequestApproval.md)
745
810
  - [CoboWaas2.RetryCallbackMessage201Response](docs/RetryCallbackMessage201Response.md)
746
811
  - [CoboWaas2.RetryWebhookEventById201Response](docs/RetryWebhookEventById201Response.md)
@@ -1032,6 +1097,7 @@ Class | Method | HTTP request | Description
1032
1097
  - [CoboWaas2.TransactionUtxo](docs/TransactionUtxo.md)
1033
1098
  - [CoboWaas2.TransactionUtxoChange](docs/TransactionUtxoChange.md)
1034
1099
  - [CoboWaas2.TransactionUtxoFee](docs/TransactionUtxoFee.md)
1100
+ - [CoboWaas2.TransactionWalletConnectInfo](docs/TransactionWalletConnectInfo.md)
1035
1101
  - [CoboWaas2.TransactionWebhookEventData](docs/TransactionWebhookEventData.md)
1036
1102
  - [CoboWaas2.TransferDestination](docs/TransferDestination.md)
1037
1103
  - [CoboWaas2.TransferDestinationType](docs/TransferDestinationType.md)
@@ -1057,9 +1123,13 @@ Class | Method | HTTP request | Description
1057
1123
  - [CoboWaas2.UpdateAddressBookParam](docs/UpdateAddressBookParam.md)
1058
1124
  - [CoboWaas2.UpdateBankAccountByIdRequest](docs/UpdateBankAccountByIdRequest.md)
1059
1125
  - [CoboWaas2.UpdateCounterpartyByIdRequest](docs/UpdateCounterpartyByIdRequest.md)
1126
+ - [CoboWaas2.UpdateCounterpartyRequest](docs/UpdateCounterpartyRequest.md)
1060
1127
  - [CoboWaas2.UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
1061
1128
  - [CoboWaas2.UpdateDestinationBankAccount](docs/UpdateDestinationBankAccount.md)
1062
1129
  - [CoboWaas2.UpdateDestinationByIdRequest](docs/UpdateDestinationByIdRequest.md)
1130
+ - [CoboWaas2.UpdateDestinationEntry200Response](docs/UpdateDestinationEntry200Response.md)
1131
+ - [CoboWaas2.UpdateDestinationEntryRequest](docs/UpdateDestinationEntryRequest.md)
1132
+ - [CoboWaas2.UpdateDestinationRequest](docs/UpdateDestinationRequest.md)
1063
1133
  - [CoboWaas2.UpdateExchangeWalletParams](docs/UpdateExchangeWalletParams.md)
1064
1134
  - [CoboWaas2.UpdateGroupAction](docs/UpdateGroupAction.md)
1065
1135
  - [CoboWaas2.UpdateKeyShareHolderGroupByIdRequest](docs/UpdateKeyShareHolderGroupByIdRequest.md)
@@ -1178,4 +1248,6 @@ Authentication schemes defined for the API:
1178
1248
  - compliance_kyt_review.update: Update KYT review status
1179
1249
  - compliance_kyt_decisions.update: Update KYT decision status
1180
1250
  - compliance_kyt_status.read: Read KYT screening status
1251
+ - compliance_kya_screenings.create: Create KYA address screening requests
1252
+ - compliance_kya_screenings.read: Read KYA address screening results
1181
1253
 
package/dist/ApiClient.js CHANGED
@@ -102,7 +102,7 @@ var ApiClient = /*#__PURE__*/function () {
102
102
  * @default {}
103
103
  */
104
104
  this.defaultHeaders = {
105
- 'User-Agent': 'cobo-waas2-js-sdk/1.28.0'
105
+ 'User-Agent': 'cobo-waas2-js-sdk/1.30.0'
106
106
  };
107
107
 
108
108
  /**
@@ -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. <Note>Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.</Note>
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. <Note>Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.</Note>
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
- * Get disposition status
53
- * 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>
54
- * @param {String} transaction_id The unique identifier (UUID) of the transaction to retrieve KYT screening status information for.
55
- * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/DispositionQueryResponse} and HTTP response
55
+ * Create KYA address screening requests
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
+ * @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 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
+ * @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 information for evaluating Fee Station usage.
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 information for evaluating Fee Station usage.
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
  }, {