@cobo/cobo-waas2 1.36.0 → 1.37.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 +8 -1
- package/dist/ApiClient.js +1 -1
- package/dist/api/PaymentApi.js +77 -0
- package/dist/index.js +42 -0
- package/dist/model/AddressesEventData.js +13 -3
- package/dist/model/BalanceUpdateInfoEventData.js +13 -3
- package/dist/model/ChainsEventData.js +13 -3
- package/dist/model/ComplianceDispositionUpdateEventData.js +13 -3
- package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +13 -3
- package/dist/model/ComplianceKytScreeningsUpdateEventData.js +13 -3
- package/dist/model/FiatTransactionEventData.js +431 -0
- package/dist/model/MPCVaultEventData.js +13 -3
- package/dist/model/OrganizationEventData.js +270 -0
- package/dist/model/PaymentAddressUpdateEventData.js +13 -3
- package/dist/model/PaymentBalanceChange.js +248 -0
- package/dist/model/PaymentBalanceChangeResponse.js +125 -0
- package/dist/model/PaymentBalanceChangeSourceType.js +106 -0
- package/dist/model/PaymentBalanceFlowDirection.js +61 -0
- package/dist/model/PaymentBulkSend.js +17 -0
- package/dist/model/PaymentBulkSendEvent.js +35 -3
- package/dist/model/PaymentBulkSendItem.js +13 -0
- package/dist/model/PaymentOrderEventData.js +13 -3
- package/dist/model/PaymentPayout.js +1 -1
- package/dist/model/PaymentPayoutDetail.js +2 -2
- package/dist/model/PaymentPayoutEvent.js +15 -5
- package/dist/model/PaymentRefundEventData.js +16 -4
- package/dist/model/PaymentSettlementEvent.js +13 -3
- package/dist/model/PaymentTransactionEventData.js +13 -3
- package/dist/model/Refund.js +2 -1
- package/dist/model/SuspendedTokenEventData.js +13 -3
- package/dist/model/TSSRequestWebhookEventData.js +13 -3
- package/dist/model/TokenListingEventData.js +13 -3
- package/dist/model/TokensEventData.js +13 -3
- package/dist/model/TransactionWebhookEventData.js +13 -3
- package/dist/model/WalletInfoEventData.js +13 -3
- package/dist/model/WebhookEventData.js +99 -18
- package/dist/model/WebhookEventDataType.js +12 -2
- package/dist/model/WebhookEventType.js +20 -0
- package/docs/AddressesEventData.md +5 -1
- package/docs/BalanceUpdateInfoEventData.md +5 -1
- package/docs/ChainsEventData.md +5 -1
- package/docs/ComplianceDispositionUpdateEventData.md +5 -1
- package/docs/ComplianceKyaScreeningsUpdateEventData.md +5 -1
- package/docs/ComplianceKytScreeningsUpdateEventData.md +5 -1
- package/docs/FiatTransactionEventData.md +84 -0
- package/docs/MPCVaultEventData.md +5 -1
- package/docs/OrganizationEventData.md +64 -0
- package/docs/PaymentAddressUpdateEventData.md +5 -1
- package/docs/PaymentApi.md +71 -0
- package/docs/PaymentBalanceChange.md +19 -0
- package/docs/PaymentBalanceChangeResponse.md +10 -0
- package/docs/PaymentBalanceChangeSourceType.md +30 -0
- package/docs/PaymentBalanceFlowDirection.md +12 -0
- package/docs/PaymentBulkSend.md +1 -0
- package/docs/PaymentBulkSendEvent.md +6 -1
- package/docs/PaymentBulkSendItem.md +1 -0
- package/docs/PaymentOrderEventData.md +5 -1
- package/docs/PaymentPayout.md +1 -1
- package/docs/PaymentPayoutDetail.md +1 -1
- package/docs/PaymentPayoutEvent.md +6 -2
- package/docs/PaymentRefundEventData.md +6 -2
- package/docs/PaymentSettlementEvent.md +5 -1
- package/docs/PaymentTransactionEventData.md +5 -1
- package/docs/Refund.md +1 -1
- package/docs/SuspendedTokenEventData.md +5 -1
- package/docs/TSSRequestWebhookEventData.md +5 -1
- package/docs/TokenListingEventData.md +5 -1
- package/docs/TokensEventData.md +5 -1
- package/docs/TransactionWebhookEventData.md +5 -1
- package/docs/WalletInfoEventData.md +5 -1
- package/docs/WebhookEventData.md +30 -9
- package/docs/WebhookEventDataType.md +5 -1
- package/docs/WebhookEventType.md +8 -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.37.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)
|
|
@@ -162,6 +162,7 @@ Class | Method | HTTP request | Description
|
|
|
162
162
|
*CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
|
|
163
163
|
*CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Create/Get top-up address
|
|
164
164
|
*CoboWaas2.PaymentApi* | [**listAllocationItems**](docs/PaymentApi.md#listAllocationItems) | **GET** /payments/allocation_items | List all allocation items
|
|
165
|
+
*CoboWaas2.PaymentApi* | [**listBalanceChanges**](docs/PaymentApi.md#listBalanceChanges) | **GET** /payments/balance_changes | List balance changes
|
|
165
166
|
*CoboWaas2.PaymentApi* | [**listBatchAllocations**](docs/PaymentApi.md#listBatchAllocations) | **GET** /payments/batch_allocations | List all batch allocations
|
|
166
167
|
*CoboWaas2.PaymentApi* | [**listBulkSendItems**](docs/PaymentApi.md#listBulkSendItems) | **GET** /payments/bulk_sends/{bulk_send_id}/items | List bulk send items
|
|
167
168
|
*CoboWaas2.PaymentApi* | [**listBulkSends**](docs/PaymentApi.md#listBulkSends) | **GET** /payments/bulk_sends | List bulk sends
|
|
@@ -599,6 +600,7 @@ Class | Method | HTTP request | Description
|
|
|
599
600
|
- [CoboWaas2.FeeStationTransactionType](docs/FeeStationTransactionType.md)
|
|
600
601
|
- [CoboWaas2.FeeStationTransfer](docs/FeeStationTransfer.md)
|
|
601
602
|
- [CoboWaas2.FeeType](docs/FeeType.md)
|
|
603
|
+
- [CoboWaas2.FiatTransactionEventData](docs/FiatTransactionEventData.md)
|
|
602
604
|
- [CoboWaas2.FixedFeeRate](docs/FixedFeeRate.md)
|
|
603
605
|
- [CoboWaas2.ForcedSweep](docs/ForcedSweep.md)
|
|
604
606
|
- [CoboWaas2.ForcedSweepRequest](docs/ForcedSweepRequest.md)
|
|
@@ -739,12 +741,17 @@ Class | Method | HTTP request | Description
|
|
|
739
741
|
- [CoboWaas2.OrderLinkBusinessInfoPayableAmountsInner](docs/OrderLinkBusinessInfoPayableAmountsInner.md)
|
|
740
742
|
- [CoboWaas2.OrderStatus](docs/OrderStatus.md)
|
|
741
743
|
- [CoboWaas2.OrgInfo](docs/OrgInfo.md)
|
|
744
|
+
- [CoboWaas2.OrganizationEventData](docs/OrganizationEventData.md)
|
|
742
745
|
- [CoboWaas2.OriginalMainGroupHandling](docs/OriginalMainGroupHandling.md)
|
|
743
746
|
- [CoboWaas2.OtcFee](docs/OtcFee.md)
|
|
744
747
|
- [CoboWaas2.Pagination](docs/Pagination.md)
|
|
745
748
|
- [CoboWaas2.PayerAccount](docs/PayerAccount.md)
|
|
746
749
|
- [CoboWaas2.PaymentAddressUpdateEventData](docs/PaymentAddressUpdateEventData.md)
|
|
747
750
|
- [CoboWaas2.PaymentAllocationAmount](docs/PaymentAllocationAmount.md)
|
|
751
|
+
- [CoboWaas2.PaymentBalanceChange](docs/PaymentBalanceChange.md)
|
|
752
|
+
- [CoboWaas2.PaymentBalanceChangeResponse](docs/PaymentBalanceChangeResponse.md)
|
|
753
|
+
- [CoboWaas2.PaymentBalanceChangeSourceType](docs/PaymentBalanceChangeSourceType.md)
|
|
754
|
+
- [CoboWaas2.PaymentBalanceFlowDirection](docs/PaymentBalanceFlowDirection.md)
|
|
748
755
|
- [CoboWaas2.PaymentBridgeStatus](docs/PaymentBridgeStatus.md)
|
|
749
756
|
- [CoboWaas2.PaymentBulkSend](docs/PaymentBulkSend.md)
|
|
750
757
|
- [CoboWaas2.PaymentBulkSendEvent](docs/PaymentBulkSendEvent.md)
|
package/dist/ApiClient.js
CHANGED
package/dist/api/PaymentApi.js
CHANGED
|
@@ -74,6 +74,9 @@ var _ListTopUpPayers200Response = _interopRequireDefault(require("../model/ListT
|
|
|
74
74
|
var _Merchant = _interopRequireDefault(require("../model/Merchant"));
|
|
75
75
|
var _Order = _interopRequireDefault(require("../model/Order"));
|
|
76
76
|
var _PaymentAllocationAmount = _interopRequireDefault(require("../model/PaymentAllocationAmount"));
|
|
77
|
+
var _PaymentBalanceChangeResponse = _interopRequireDefault(require("../model/PaymentBalanceChangeResponse"));
|
|
78
|
+
var _PaymentBalanceChangeSourceType = _interopRequireDefault(require("../model/PaymentBalanceChangeSourceType"));
|
|
79
|
+
var _PaymentBalanceFlowDirection = _interopRequireDefault(require("../model/PaymentBalanceFlowDirection"));
|
|
77
80
|
var _PaymentBulkSend = _interopRequireDefault(require("../model/PaymentBulkSend"));
|
|
78
81
|
var _PaymentEstimateFee201Response = _interopRequireDefault(require("../model/PaymentEstimateFee201Response"));
|
|
79
82
|
var _PaymentEstimateFeeRequest = _interopRequireDefault(require("../model/PaymentEstimateFeeRequest"));
|
|
@@ -2096,6 +2099,80 @@ var PaymentApi = exports["default"] = /*#__PURE__*/function () {
|
|
|
2096
2099
|
});
|
|
2097
2100
|
}
|
|
2098
2101
|
|
|
2102
|
+
/**
|
|
2103
|
+
* List balance changes
|
|
2104
|
+
* This operation retrieves balance changes for the specified source account. Each balance change includes the source information, token ID, changed amount, account balances before and after the change, flow direction, and creation time. You need to specify `source_account`. Currently, use `developer` as the source account. You can use pagination parameters to control the response size, and filter balance changes by `token_id`, `flow_direction`, `min_created_timestamp`, `max_created_timestamp`, `source_type`, or `source_id`. <Note>When specifying `source_id`, you must also specify `source_type`.</Note> For more information, see [Cobo Payments Guide](https://www.cobo.com/payments/en/guides/overview).
|
|
2105
|
+
* @param {String} source_account The source account for which to retrieve balance changes. Currently, use `developer`.
|
|
2106
|
+
* @param {Object} opts Optional parameters
|
|
2107
|
+
* @param {Number} [limit = 10)] The maximum number of objects to return. For most operations, the value range is [1, 50].
|
|
2108
|
+
* @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.
|
|
2109
|
+
* @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.
|
|
2110
|
+
* @param {String} [token_id] The token ID used to filter balance changes. For a complete list of supported tokens, see [Cobo Payments Guide](https://www.cobo.com/payments/en/guides/overview).
|
|
2111
|
+
* @param {module:model/PaymentBalanceFlowDirection} [flow_direction] The direction of the balance change relative to the source account. Possible values include: - `in`: Funds flow into the source account. - `out`: Funds flow out of the source account.
|
|
2112
|
+
* @param {Number} [min_created_timestamp] The minimum creation time of balance changes, represented as a UNIX timestamp in seconds. Balance changes created on or after this time are returned.
|
|
2113
|
+
* @param {Number} [max_created_timestamp] The maximum creation time of balance changes, represented as a UNIX timestamp in seconds. Balance changes created on or before this time are returned.
|
|
2114
|
+
* @param {module:model/PaymentBalanceChangeSourceType} [source_type] The source type used to filter balance changes. Possible values include: - `Init`: Balance change caused by initialization. - `OrderIn`: Balance change from an order-in payment. - `LatePayment`: Balance change from a late payment. - `TopUp`: Balance change from a top-up. - `UnexceptedIn`: Balance change from an unexpected incoming payment. - `RefundOut`: Balance change from a refund payout. - `Payout`: Balance change from a payout. - `UnexceptedOut`: Balance change from an unexpected outgoing payment. - `Allocation`: Balance change from an allocation. - `SettlementNetwork`: Balance change from the settlement network. - `BulkSend`: Balance change from a bulk send. <Note>When specifying `source_id`, you must also specify `source_type`.</Note>
|
|
2115
|
+
* @param {String} [source_id] The source ID used to filter balance changes. <Note>When specifying `source_id`, you must also specify `source_type`.</Note>
|
|
2116
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PaymentBalanceChangeResponse} and HTTP response
|
|
2117
|
+
*/
|
|
2118
|
+
}, {
|
|
2119
|
+
key: "listBalanceChangesWithHttpInfo",
|
|
2120
|
+
value: function listBalanceChangesWithHttpInfo(source_account, opts) {
|
|
2121
|
+
opts = opts || {};
|
|
2122
|
+
var postBody = null;
|
|
2123
|
+
if (postBody && postBody.toJSON) {
|
|
2124
|
+
postBody = postBody.toJSON();
|
|
2125
|
+
}
|
|
2126
|
+
// verify the required parameter 'source_account' is set
|
|
2127
|
+
if (source_account === undefined || source_account === null) {
|
|
2128
|
+
throw new Error("Missing the required parameter 'source_account' when calling listBalanceChanges");
|
|
2129
|
+
}
|
|
2130
|
+
var pathParams = {};
|
|
2131
|
+
var queryParams = {
|
|
2132
|
+
'limit': opts['limit'],
|
|
2133
|
+
'before': opts['before'],
|
|
2134
|
+
'after': opts['after'],
|
|
2135
|
+
'source_account': source_account,
|
|
2136
|
+
'token_id': opts['token_id'],
|
|
2137
|
+
'flow_direction': opts['flow_direction'],
|
|
2138
|
+
'min_created_timestamp': opts['min_created_timestamp'],
|
|
2139
|
+
'max_created_timestamp': opts['max_created_timestamp'],
|
|
2140
|
+
'source_type': opts['source_type'],
|
|
2141
|
+
'source_id': opts['source_id']
|
|
2142
|
+
};
|
|
2143
|
+
var headerParams = {};
|
|
2144
|
+
var formParams = {};
|
|
2145
|
+
var authNames = ['OAuth2', 'CoboAuth'];
|
|
2146
|
+
var contentTypes = [];
|
|
2147
|
+
var accepts = ['application/json'];
|
|
2148
|
+
var returnType = _PaymentBalanceChangeResponse["default"];
|
|
2149
|
+
return this.apiClient.callApi('/payments/balance_changes', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
/**
|
|
2153
|
+
* List balance changes
|
|
2154
|
+
* This operation retrieves balance changes for the specified source account. Each balance change includes the source information, token ID, changed amount, account balances before and after the change, flow direction, and creation time. You need to specify `source_account`. Currently, use `developer` as the source account. You can use pagination parameters to control the response size, and filter balance changes by `token_id`, `flow_direction`, `min_created_timestamp`, `max_created_timestamp`, `source_type`, or `source_id`. <Note>When specifying `source_id`, you must also specify `source_type`.</Note> For more information, see [Cobo Payments Guide](https://www.cobo.com/payments/en/guides/overview).
|
|
2155
|
+
* @param {String} source_account The source account for which to retrieve balance changes. Currently, use `developer`.
|
|
2156
|
+
* @param {Object} opts Optional parameters
|
|
2157
|
+
* @param {Number} opts.limit The maximum number of objects to return. For most operations, the value range is [1, 50]. (default to 10)
|
|
2158
|
+
* @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.
|
|
2159
|
+
* @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.
|
|
2160
|
+
* @param {String} opts.token_id The token ID used to filter balance changes. For a complete list of supported tokens, see [Cobo Payments Guide](https://www.cobo.com/payments/en/guides/overview).
|
|
2161
|
+
* @param {module:model/PaymentBalanceFlowDirection} opts.flow_direction The direction of the balance change relative to the source account. Possible values include: - `in`: Funds flow into the source account. - `out`: Funds flow out of the source account.
|
|
2162
|
+
* @param {Number} opts.min_created_timestamp The minimum creation time of balance changes, represented as a UNIX timestamp in seconds. Balance changes created on or after this time are returned.
|
|
2163
|
+
* @param {Number} opts.max_created_timestamp The maximum creation time of balance changes, represented as a UNIX timestamp in seconds. Balance changes created on or before this time are returned.
|
|
2164
|
+
* @param {module:model/PaymentBalanceChangeSourceType} opts.source_type The source type used to filter balance changes. Possible values include: - `Init`: Balance change caused by initialization. - `OrderIn`: Balance change from an order-in payment. - `LatePayment`: Balance change from a late payment. - `TopUp`: Balance change from a top-up. - `UnexceptedIn`: Balance change from an unexpected incoming payment. - `RefundOut`: Balance change from a refund payout. - `Payout`: Balance change from a payout. - `UnexceptedOut`: Balance change from an unexpected outgoing payment. - `Allocation`: Balance change from an allocation. - `SettlementNetwork`: Balance change from the settlement network. - `BulkSend`: Balance change from a bulk send. <Note>When specifying `source_id`, you must also specify `source_type`.</Note>
|
|
2165
|
+
* @param {String} opts.source_id The source ID used to filter balance changes. <Note>When specifying `source_id`, you must also specify `source_type`.</Note>
|
|
2166
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PaymentBalanceChangeResponse}
|
|
2167
|
+
*/
|
|
2168
|
+
}, {
|
|
2169
|
+
key: "listBalanceChanges",
|
|
2170
|
+
value: function listBalanceChanges(source_account, opts) {
|
|
2171
|
+
return this.listBalanceChangesWithHttpInfo(source_account, opts).then(function (response_and_data) {
|
|
2172
|
+
return response_and_data.data;
|
|
2173
|
+
});
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2099
2176
|
/**
|
|
2100
2177
|
* List all batch allocations
|
|
2101
2178
|
* This operation retrieves the information of all batch allocations.
|
package/dist/index.js
CHANGED
|
@@ -1671,6 +1671,12 @@ Object.defineProperty(exports, "FeeType", {
|
|
|
1671
1671
|
return _FeeType["default"];
|
|
1672
1672
|
}
|
|
1673
1673
|
});
|
|
1674
|
+
Object.defineProperty(exports, "FiatTransactionEventData", {
|
|
1675
|
+
enumerable: true,
|
|
1676
|
+
get: function get() {
|
|
1677
|
+
return _FiatTransactionEventData["default"];
|
|
1678
|
+
}
|
|
1679
|
+
});
|
|
1674
1680
|
Object.defineProperty(exports, "FixedFeeRate", {
|
|
1675
1681
|
enumerable: true,
|
|
1676
1682
|
get: function get() {
|
|
@@ -2523,6 +2529,12 @@ Object.defineProperty(exports, "OrgInfo", {
|
|
|
2523
2529
|
return _OrgInfo["default"];
|
|
2524
2530
|
}
|
|
2525
2531
|
});
|
|
2532
|
+
Object.defineProperty(exports, "OrganizationEventData", {
|
|
2533
|
+
enumerable: true,
|
|
2534
|
+
get: function get() {
|
|
2535
|
+
return _OrganizationEventData["default"];
|
|
2536
|
+
}
|
|
2537
|
+
});
|
|
2526
2538
|
Object.defineProperty(exports, "OrganizationsApi", {
|
|
2527
2539
|
enumerable: true,
|
|
2528
2540
|
get: function get() {
|
|
@@ -2571,6 +2583,30 @@ Object.defineProperty(exports, "PaymentApi", {
|
|
|
2571
2583
|
return _PaymentApi["default"];
|
|
2572
2584
|
}
|
|
2573
2585
|
});
|
|
2586
|
+
Object.defineProperty(exports, "PaymentBalanceChange", {
|
|
2587
|
+
enumerable: true,
|
|
2588
|
+
get: function get() {
|
|
2589
|
+
return _PaymentBalanceChange["default"];
|
|
2590
|
+
}
|
|
2591
|
+
});
|
|
2592
|
+
Object.defineProperty(exports, "PaymentBalanceChangeResponse", {
|
|
2593
|
+
enumerable: true,
|
|
2594
|
+
get: function get() {
|
|
2595
|
+
return _PaymentBalanceChangeResponse["default"];
|
|
2596
|
+
}
|
|
2597
|
+
});
|
|
2598
|
+
Object.defineProperty(exports, "PaymentBalanceChangeSourceType", {
|
|
2599
|
+
enumerable: true,
|
|
2600
|
+
get: function get() {
|
|
2601
|
+
return _PaymentBalanceChangeSourceType["default"];
|
|
2602
|
+
}
|
|
2603
|
+
});
|
|
2604
|
+
Object.defineProperty(exports, "PaymentBalanceFlowDirection", {
|
|
2605
|
+
enumerable: true,
|
|
2606
|
+
get: function get() {
|
|
2607
|
+
return _PaymentBalanceFlowDirection["default"];
|
|
2608
|
+
}
|
|
2609
|
+
});
|
|
2574
2610
|
Object.defineProperty(exports, "PaymentBridgeStatus", {
|
|
2575
2611
|
enumerable: true,
|
|
2576
2612
|
get: function get() {
|
|
@@ -5417,6 +5453,7 @@ var _FeeStationSponsorTransactionDescription = _interopRequireDefault(require(".
|
|
|
5417
5453
|
var _FeeStationTransactionType = _interopRequireDefault(require("./model/FeeStationTransactionType"));
|
|
5418
5454
|
var _FeeStationTransfer = _interopRequireDefault(require("./model/FeeStationTransfer"));
|
|
5419
5455
|
var _FeeType = _interopRequireDefault(require("./model/FeeType"));
|
|
5456
|
+
var _FiatTransactionEventData = _interopRequireDefault(require("./model/FiatTransactionEventData"));
|
|
5420
5457
|
var _FixedFeeRate = _interopRequireDefault(require("./model/FixedFeeRate"));
|
|
5421
5458
|
var _ForcedSweep = _interopRequireDefault(require("./model/ForcedSweep"));
|
|
5422
5459
|
var _ForcedSweepRequest = _interopRequireDefault(require("./model/ForcedSweepRequest"));
|
|
@@ -5557,12 +5594,17 @@ var _OrderLinkBusinessInfoCustomExchangeRatesInner = _interopRequireDefault(requ
|
|
|
5557
5594
|
var _OrderLinkBusinessInfoPayableAmountsInner = _interopRequireDefault(require("./model/OrderLinkBusinessInfoPayableAmountsInner"));
|
|
5558
5595
|
var _OrderStatus = _interopRequireDefault(require("./model/OrderStatus"));
|
|
5559
5596
|
var _OrgInfo = _interopRequireDefault(require("./model/OrgInfo"));
|
|
5597
|
+
var _OrganizationEventData = _interopRequireDefault(require("./model/OrganizationEventData"));
|
|
5560
5598
|
var _OriginalMainGroupHandling = _interopRequireDefault(require("./model/OriginalMainGroupHandling"));
|
|
5561
5599
|
var _OtcFee = _interopRequireDefault(require("./model/OtcFee"));
|
|
5562
5600
|
var _Pagination = _interopRequireDefault(require("./model/Pagination"));
|
|
5563
5601
|
var _PayerAccount = _interopRequireDefault(require("./model/PayerAccount"));
|
|
5564
5602
|
var _PaymentAddressUpdateEventData = _interopRequireDefault(require("./model/PaymentAddressUpdateEventData"));
|
|
5565
5603
|
var _PaymentAllocationAmount = _interopRequireDefault(require("./model/PaymentAllocationAmount"));
|
|
5604
|
+
var _PaymentBalanceChange = _interopRequireDefault(require("./model/PaymentBalanceChange"));
|
|
5605
|
+
var _PaymentBalanceChangeResponse = _interopRequireDefault(require("./model/PaymentBalanceChangeResponse"));
|
|
5606
|
+
var _PaymentBalanceChangeSourceType = _interopRequireDefault(require("./model/PaymentBalanceChangeSourceType"));
|
|
5607
|
+
var _PaymentBalanceFlowDirection = _interopRequireDefault(require("./model/PaymentBalanceFlowDirection"));
|
|
5566
5608
|
var _PaymentBridgeStatus = _interopRequireDefault(require("./model/PaymentBridgeStatus"));
|
|
5567
5609
|
var _PaymentBulkSend = _interopRequireDefault(require("./model/PaymentBulkSend"));
|
|
5568
5610
|
var _PaymentBulkSendEvent = _interopRequireDefault(require("./model/PaymentBulkSendEvent"));
|
|
@@ -35,7 +35,7 @@ var AddressesEventData = /*#__PURE__*/function () {
|
|
|
35
35
|
* Constructs a new <code>AddressesEventData</code>.
|
|
36
36
|
* @alias module:model/AddressesEventData
|
|
37
37
|
* @implements module:model/WebhookEventDataType
|
|
38
|
-
* @param data_type {module:model/AddressesEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
38
|
+
* @param data_type {module:model/AddressesEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
39
39
|
*/
|
|
40
40
|
function AddressesEventData(data_type) {
|
|
41
41
|
_classCallCheck(this, AddressesEventData);
|
|
@@ -132,7 +132,7 @@ var AddressesEventData = /*#__PURE__*/function () {
|
|
|
132
132
|
AddressesEventData.RequiredProperties = ["data_type"];
|
|
133
133
|
|
|
134
134
|
/**
|
|
135
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
135
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
136
136
|
* @member {module:model/AddressesEventData.DataTypeEnum} data_type
|
|
137
137
|
*/
|
|
138
138
|
AddressesEventData.prototype['data_type'] = undefined;
|
|
@@ -145,7 +145,7 @@ AddressesEventData.prototype['addresses'] = undefined;
|
|
|
145
145
|
|
|
146
146
|
// Implement WebhookEventDataType interface:
|
|
147
147
|
/**
|
|
148
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
148
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
149
149
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
150
150
|
*/
|
|
151
151
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -256,6 +256,16 @@ AddressesEventData['DataTypeEnum'] = {
|
|
|
256
256
|
* @const
|
|
257
257
|
*/
|
|
258
258
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
259
|
+
/**
|
|
260
|
+
* value: "Organization"
|
|
261
|
+
* @const
|
|
262
|
+
*/
|
|
263
|
+
"Organization": "Organization",
|
|
264
|
+
/**
|
|
265
|
+
* value: "FiatTransaction"
|
|
266
|
+
* @const
|
|
267
|
+
*/
|
|
268
|
+
"FiatTransaction": "FiatTransaction",
|
|
259
269
|
/**
|
|
260
270
|
* value: "unknown_default_open_api"
|
|
261
271
|
* @const
|
|
@@ -37,7 +37,7 @@ var BalanceUpdateInfoEventData = /*#__PURE__*/function () {
|
|
|
37
37
|
* @alias module:model/BalanceUpdateInfoEventData
|
|
38
38
|
* @implements module:model/WebhookEventDataType
|
|
39
39
|
* @implements module:model/BalanceUpdateInfo
|
|
40
|
-
* @param data_type {module:model/BalanceUpdateInfoEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
40
|
+
* @param data_type {module:model/BalanceUpdateInfoEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
41
41
|
* @param token_id {String} The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
|
|
42
42
|
* @param address {String} The wallet address.
|
|
43
43
|
* @param wallet_uuid {String} The wallet ID.
|
|
@@ -156,7 +156,7 @@ var BalanceUpdateInfoEventData = /*#__PURE__*/function () {
|
|
|
156
156
|
BalanceUpdateInfoEventData.RequiredProperties = ["data_type", "token_id", "address", "wallet_uuid", "updated_timestamp", "balance"];
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
159
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
160
160
|
* @member {module:model/BalanceUpdateInfoEventData.DataTypeEnum} data_type
|
|
161
161
|
*/
|
|
162
162
|
BalanceUpdateInfoEventData.prototype['data_type'] = undefined;
|
|
@@ -192,7 +192,7 @@ BalanceUpdateInfoEventData.prototype['balance'] = undefined;
|
|
|
192
192
|
|
|
193
193
|
// Implement WebhookEventDataType interface:
|
|
194
194
|
/**
|
|
195
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
195
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
196
196
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
197
197
|
*/
|
|
198
198
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -328,6 +328,16 @@ BalanceUpdateInfoEventData['DataTypeEnum'] = {
|
|
|
328
328
|
* @const
|
|
329
329
|
*/
|
|
330
330
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
331
|
+
/**
|
|
332
|
+
* value: "Organization"
|
|
333
|
+
* @const
|
|
334
|
+
*/
|
|
335
|
+
"Organization": "Organization",
|
|
336
|
+
/**
|
|
337
|
+
* value: "FiatTransaction"
|
|
338
|
+
* @const
|
|
339
|
+
*/
|
|
340
|
+
"FiatTransaction": "FiatTransaction",
|
|
331
341
|
/**
|
|
332
342
|
* value: "unknown_default_open_api"
|
|
333
343
|
* @const
|
|
@@ -37,7 +37,7 @@ var ChainsEventData = /*#__PURE__*/function () {
|
|
|
37
37
|
* Constructs a new <code>ChainsEventData</code>.
|
|
38
38
|
* @alias module:model/ChainsEventData
|
|
39
39
|
* @implements module:model/WebhookEventDataType
|
|
40
|
-
* @param data_type {module:model/ChainsEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
40
|
+
* @param data_type {module:model/ChainsEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
41
41
|
* @param chains {Array.<module:model/ChainInfo>} The enabled chains.
|
|
42
42
|
*/
|
|
43
43
|
function ChainsEventData(data_type, chains) {
|
|
@@ -146,7 +146,7 @@ var ChainsEventData = /*#__PURE__*/function () {
|
|
|
146
146
|
ChainsEventData.RequiredProperties = ["data_type", "chains"];
|
|
147
147
|
|
|
148
148
|
/**
|
|
149
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
149
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
150
150
|
* @member {module:model/ChainsEventData.DataTypeEnum} data_type
|
|
151
151
|
*/
|
|
152
152
|
ChainsEventData.prototype['data_type'] = undefined;
|
|
@@ -169,7 +169,7 @@ ChainsEventData.prototype['wallet_subtypes'] = undefined;
|
|
|
169
169
|
|
|
170
170
|
// Implement WebhookEventDataType interface:
|
|
171
171
|
/**
|
|
172
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
172
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
173
173
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
174
174
|
*/
|
|
175
175
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -280,6 +280,16 @@ ChainsEventData['DataTypeEnum'] = {
|
|
|
280
280
|
* @const
|
|
281
281
|
*/
|
|
282
282
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
283
|
+
/**
|
|
284
|
+
* value: "Organization"
|
|
285
|
+
* @const
|
|
286
|
+
*/
|
|
287
|
+
"Organization": "Organization",
|
|
288
|
+
/**
|
|
289
|
+
* value: "FiatTransaction"
|
|
290
|
+
* @const
|
|
291
|
+
*/
|
|
292
|
+
"FiatTransaction": "FiatTransaction",
|
|
283
293
|
/**
|
|
284
294
|
* value: "unknown_default_open_api"
|
|
285
295
|
* @const
|
|
@@ -38,7 +38,7 @@ var ComplianceDispositionUpdateEventData = /*#__PURE__*/function () {
|
|
|
38
38
|
* @alias module:model/ComplianceDispositionUpdateEventData
|
|
39
39
|
* @implements module:model/WebhookEventDataType
|
|
40
40
|
* @implements module:model/DispositionEventData
|
|
41
|
-
* @param data_type {module:model/ComplianceDispositionUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
41
|
+
* @param data_type {module:model/ComplianceDispositionUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
42
42
|
* @param transaction_id {String} The transaction ID.
|
|
43
43
|
* @param disposition_type {module:model/DispositionType}
|
|
44
44
|
* @param disposition_status {module:model/DispositionStatus}
|
|
@@ -151,7 +151,7 @@ var ComplianceDispositionUpdateEventData = /*#__PURE__*/function () {
|
|
|
151
151
|
ComplianceDispositionUpdateEventData.RequiredProperties = ["data_type", "transaction_id", "disposition_type", "disposition_status", "updated_timestamp"];
|
|
152
152
|
|
|
153
153
|
/**
|
|
154
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
154
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
155
155
|
* @member {module:model/ComplianceDispositionUpdateEventData.DataTypeEnum} data_type
|
|
156
156
|
*/
|
|
157
157
|
ComplianceDispositionUpdateEventData.prototype['data_type'] = undefined;
|
|
@@ -192,7 +192,7 @@ ComplianceDispositionUpdateEventData.prototype['updated_timestamp'] = undefined;
|
|
|
192
192
|
|
|
193
193
|
// Implement WebhookEventDataType interface:
|
|
194
194
|
/**
|
|
195
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
195
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
196
196
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
197
197
|
*/
|
|
198
198
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -332,6 +332,16 @@ ComplianceDispositionUpdateEventData['DataTypeEnum'] = {
|
|
|
332
332
|
* @const
|
|
333
333
|
*/
|
|
334
334
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
335
|
+
/**
|
|
336
|
+
* value: "Organization"
|
|
337
|
+
* @const
|
|
338
|
+
*/
|
|
339
|
+
"Organization": "Organization",
|
|
340
|
+
/**
|
|
341
|
+
* value: "FiatTransaction"
|
|
342
|
+
* @const
|
|
343
|
+
*/
|
|
344
|
+
"FiatTransaction": "FiatTransaction",
|
|
335
345
|
/**
|
|
336
346
|
* value: "unknown_default_open_api"
|
|
337
347
|
* @const
|
|
@@ -37,7 +37,7 @@ var ComplianceKyaScreeningsUpdateEventData = /*#__PURE__*/function () {
|
|
|
37
37
|
* @alias module:model/ComplianceKyaScreeningsUpdateEventData
|
|
38
38
|
* @implements module:model/WebhookEventDataType
|
|
39
39
|
* @implements module:model/KyaScreeningsEventData
|
|
40
|
-
* @param data_type {module:model/ComplianceKyaScreeningsUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
40
|
+
* @param data_type {module:model/ComplianceKyaScreeningsUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
41
41
|
* @param screening_id {String} The unique system-generated identifier for this screening request (UUID format, fixed 36 characters).
|
|
42
42
|
* @param address {String} The screened blockchain address.
|
|
43
43
|
* @param chain_id {String} The chain identifier.
|
|
@@ -154,7 +154,7 @@ var ComplianceKyaScreeningsUpdateEventData = /*#__PURE__*/function () {
|
|
|
154
154
|
ComplianceKyaScreeningsUpdateEventData.RequiredProperties = ["data_type", "screening_id", "address", "chain_id", "status", "created_timestamp", "updated_timestamp"];
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
157
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
158
158
|
* @member {module:model/ComplianceKyaScreeningsUpdateEventData.DataTypeEnum} data_type
|
|
159
159
|
*/
|
|
160
160
|
ComplianceKyaScreeningsUpdateEventData.prototype['data_type'] = undefined;
|
|
@@ -196,7 +196,7 @@ ComplianceKyaScreeningsUpdateEventData.prototype['updated_timestamp'] = undefine
|
|
|
196
196
|
|
|
197
197
|
// Implement WebhookEventDataType interface:
|
|
198
198
|
/**
|
|
199
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
199
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
200
200
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
201
201
|
*/
|
|
202
202
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -337,6 +337,16 @@ ComplianceKyaScreeningsUpdateEventData['DataTypeEnum'] = {
|
|
|
337
337
|
* @const
|
|
338
338
|
*/
|
|
339
339
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
340
|
+
/**
|
|
341
|
+
* value: "Organization"
|
|
342
|
+
* @const
|
|
343
|
+
*/
|
|
344
|
+
"Organization": "Organization",
|
|
345
|
+
/**
|
|
346
|
+
* value: "FiatTransaction"
|
|
347
|
+
* @const
|
|
348
|
+
*/
|
|
349
|
+
"FiatTransaction": "FiatTransaction",
|
|
340
350
|
/**
|
|
341
351
|
* value: "unknown_default_open_api"
|
|
342
352
|
* @const
|
|
@@ -39,7 +39,7 @@ var ComplianceKytScreeningsUpdateEventData = /*#__PURE__*/function () {
|
|
|
39
39
|
* @alias module:model/ComplianceKytScreeningsUpdateEventData
|
|
40
40
|
* @implements module:model/WebhookEventDataType
|
|
41
41
|
* @implements module:model/KytScreeningsEventData
|
|
42
|
-
* @param data_type {module:model/ComplianceKytScreeningsUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
42
|
+
* @param data_type {module:model/ComplianceKytScreeningsUpdateEventData.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
43
43
|
* @param transaction_id {String} The transaction ID.
|
|
44
44
|
* @param transaction_type {module:model/KytScreeningsTransactionType}
|
|
45
45
|
* @param review_status {module:model/ReviewStatusType}
|
|
@@ -143,7 +143,7 @@ var ComplianceKytScreeningsUpdateEventData = /*#__PURE__*/function () {
|
|
|
143
143
|
ComplianceKytScreeningsUpdateEventData.RequiredProperties = ["data_type", "transaction_id", "transaction_type", "review_status", "funds_status", "updated_timestamp"];
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
146
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
147
147
|
* @member {module:model/ComplianceKytScreeningsUpdateEventData.DataTypeEnum} data_type
|
|
148
148
|
*/
|
|
149
149
|
ComplianceKytScreeningsUpdateEventData.prototype['data_type'] = undefined;
|
|
@@ -177,7 +177,7 @@ ComplianceKytScreeningsUpdateEventData.prototype['updated_timestamp'] = undefine
|
|
|
177
177
|
|
|
178
178
|
// Implement WebhookEventDataType interface:
|
|
179
179
|
/**
|
|
180
|
-
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
|
|
180
|
+
* The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data. - `Organization`: The organization event data. - `FiatTransaction`: The fiat transaction event data.
|
|
181
181
|
* @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
|
|
182
182
|
*/
|
|
183
183
|
_WebhookEventDataType["default"].prototype['data_type'] = undefined;
|
|
@@ -311,6 +311,16 @@ ComplianceKytScreeningsUpdateEventData['DataTypeEnum'] = {
|
|
|
311
311
|
* @const
|
|
312
312
|
*/
|
|
313
313
|
"ComplianceKyaScreenings": "ComplianceKyaScreenings",
|
|
314
|
+
/**
|
|
315
|
+
* value: "Organization"
|
|
316
|
+
* @const
|
|
317
|
+
*/
|
|
318
|
+
"Organization": "Organization",
|
|
319
|
+
/**
|
|
320
|
+
* value: "FiatTransaction"
|
|
321
|
+
* @const
|
|
322
|
+
*/
|
|
323
|
+
"FiatTransaction": "FiatTransaction",
|
|
314
324
|
/**
|
|
315
325
|
* value: "unknown_default_open_api"
|
|
316
326
|
* @const
|