@cobo/cobo-waas2 1.28.0 → 1.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. package/README.md +66 -9
  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/PaymentApi.js +960 -85
  7. package/dist/api/StakingsApi.js +2 -2
  8. package/dist/api/TransactionsApi.js +6 -6
  9. package/dist/index.js +245 -0
  10. package/dist/model/AddressRiskLevel.js +71 -0
  11. package/dist/model/AddressesEventData.js +8 -3
  12. package/dist/model/AllocationRecord.js +8 -5
  13. package/dist/model/AllocationRequest.js +10 -7
  14. package/dist/model/BalanceUpdateInfoEventData.js +8 -3
  15. package/dist/model/BatchAllocation.js +1 -1
  16. package/dist/model/ChainsEventData.js +8 -3
  17. package/dist/model/CommissionFee.js +2 -2
  18. package/dist/model/ComplianceDispositionUpdateEventData.js +8 -3
  19. package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +341 -0
  20. package/dist/model/ComplianceKytScreeningsUpdateEventData.js +8 -3
  21. package/dist/model/ContractCallParams.js +2 -2
  22. package/dist/model/CounterpartyWalletAddressDetail.js +2 -2
  23. package/dist/model/CreateBatchAllocationRequest.js +2 -2
  24. package/dist/model/CreateCounterpartyEntry201Response.js +143 -0
  25. package/dist/model/CreateCounterpartyEntryRequest.js +141 -0
  26. package/dist/model/CreateDestinationEntry201Response.js +172 -0
  27. package/dist/model/CreateDestinationEntryRequest.js +172 -0
  28. package/dist/model/CreateKyaScreeningsBody.js +129 -0
  29. package/dist/model/CreateMerchantRequest.js +1 -1
  30. package/dist/model/CreatePaymentOrderRequest.js +11 -11
  31. package/dist/model/CreatePayoutRequest.js +5 -5
  32. package/dist/model/CreateRefundRequest.js +2 -2
  33. package/dist/model/CreateReportRequest.js +156 -0
  34. package/dist/model/CreateWalletAddress.js +2 -2
  35. package/dist/model/DeleteCounterpartyById200Response.js +110 -0
  36. package/dist/model/DeleteCounterpartyEntry200Response.js +110 -0
  37. package/dist/model/DeleteDestinationById200Response.js +110 -0
  38. package/dist/model/DeleteDestinationEntry200Response.js +110 -0
  39. package/dist/model/EntryType.js +61 -0
  40. package/dist/model/GetCounterpartyEntry200Response.js +90 -0
  41. package/dist/model/GetDestinationEntry200Response.js +106 -0
  42. package/dist/model/GetReports200Response.js +123 -0
  43. package/dist/model/KyaRiskAssessment.js +151 -0
  44. package/dist/model/KyaRiskDetail.js +126 -0
  45. package/dist/model/KyaRiskLevel.js +66 -0
  46. package/dist/model/KyaScreeningRequest.js +154 -0
  47. package/dist/model/KyaScreeningResult.js +222 -0
  48. package/dist/model/KyaScreeningResultRiskAssessment.js +171 -0
  49. package/dist/model/KyaScreeningStatus.js +71 -0
  50. package/dist/model/KyaScreeningsEventData.js +174 -0
  51. package/dist/model/LinkDisplayInfo.js +1 -1
  52. package/dist/model/ListCounterpartyEntries200Response.js +123 -0
  53. package/dist/model/ListDestinationEntries200Response.js +153 -0
  54. package/dist/model/ListKyaScreenings200Response.js +145 -0
  55. package/dist/model/MPCVaultEventData.js +8 -3
  56. package/dist/model/MerchantBalance.js +4 -4
  57. package/dist/model/Order.js +10 -10
  58. package/dist/model/OrderLinkBusinessInfo.js +12 -12
  59. package/dist/model/OrderLinkBusinessInfoCustomExchangeRatesInner.js +2 -4
  60. package/dist/model/OrderLinkBusinessInfoPayableAmountsInner.js +4 -4
  61. package/dist/model/PaymentAddressUpdateEventData.js +8 -3
  62. package/dist/model/PaymentAllocationAmount.js +2 -2
  63. package/dist/model/PaymentOrderEventData.js +26 -21
  64. package/dist/model/PaymentPayout.js +3 -3
  65. package/dist/model/PaymentPayoutDetail.js +3 -3
  66. package/dist/model/PaymentPayoutEvent.js +14 -9
  67. package/dist/model/PaymentPayoutItem.js +8 -7
  68. package/dist/model/PaymentPayoutItemDetail.js +8 -7
  69. package/dist/model/PaymentPayoutParam.js +8 -7
  70. package/dist/model/PaymentRefundEventData.js +8 -3
  71. package/dist/model/PaymentSettlementEvent.js +8 -3
  72. package/dist/model/PaymentTransactionEventData.js +8 -3
  73. package/dist/model/PspBalance.js +4 -4
  74. package/dist/model/RefundLinkBusinessInfo.js +1 -1
  75. package/dist/model/Report.js +209 -0
  76. package/dist/model/ReportExportFormat.js +66 -0
  77. package/dist/model/ReportStatus.js +61 -0
  78. package/dist/model/ReportType.js +121 -0
  79. package/dist/model/SuspendedTokenEventData.js +8 -3
  80. package/dist/model/TSSRequestWebhookEventData.js +8 -3
  81. package/dist/model/TokenListingEventData.js +8 -3
  82. package/dist/model/TokensEventData.js +8 -3
  83. package/dist/model/TransactionWebhookEventData.js +8 -3
  84. package/dist/model/TransferParams.js +2 -2
  85. package/dist/model/UpdateCounterpartyRequest.js +160 -0
  86. package/dist/model/UpdateDestinationEntry200Response.js +90 -0
  87. package/dist/model/UpdateDestinationEntryRequest.js +135 -0
  88. package/dist/model/UpdateDestinationRequest.js +173 -0
  89. package/dist/model/UpdateMerchantByIdRequest.js +1 -1
  90. package/dist/model/WalletAddress.js +20 -2
  91. package/dist/model/WalletInfoEventData.js +8 -3
  92. package/dist/model/WebhookEventData.js +58 -24
  93. package/dist/model/WebhookEventDataType.js +7 -2
  94. package/dist/model/WebhookEventType.js +5 -0
  95. package/docs/AddressRiskLevel.md +16 -0
  96. package/docs/AddressesEventData.md +3 -1
  97. package/docs/AllocationRecord.md +5 -5
  98. package/docs/AllocationRequest.md +5 -5
  99. package/docs/AutoSweepApi.md +1 -1
  100. package/docs/BalanceUpdateInfoEventData.md +3 -1
  101. package/docs/BatchAllocation.md +1 -1
  102. package/docs/ChainsEventData.md +3 -1
  103. package/docs/CommissionFee.md +1 -1
  104. package/docs/ComplianceApi.md +163 -0
  105. package/docs/ComplianceDispositionUpdateEventData.md +3 -1
  106. package/docs/ComplianceKyaScreeningsUpdateEventData.md +62 -0
  107. package/docs/ComplianceKytScreeningsUpdateEventData.md +3 -1
  108. package/docs/ContractCallParams.md +1 -1
  109. package/docs/CounterpartyWalletAddressDetail.md +1 -1
  110. package/docs/CreateBatchAllocationRequest.md +1 -1
  111. package/docs/CreateCounterpartyEntry201Response.md +10 -0
  112. package/docs/CreateCounterpartyEntryRequest.md +10 -0
  113. package/docs/CreateDestinationEntry201Response.md +11 -0
  114. package/docs/CreateDestinationEntryRequest.md +11 -0
  115. package/docs/CreateKyaScreeningsBody.md +9 -0
  116. package/docs/CreateMerchantRequest.md +1 -1
  117. package/docs/CreatePaymentOrderRequest.md +10 -10
  118. package/docs/CreatePayoutRequest.md +4 -4
  119. package/docs/CreateRefundRequest.md +2 -2
  120. package/docs/CreateReportRequest.md +13 -0
  121. package/docs/CreateWalletAddress.md +1 -1
  122. package/docs/DeleteCounterpartyById200Response.md +9 -0
  123. package/docs/DeleteCounterpartyEntry200Response.md +9 -0
  124. package/docs/DeleteDestinationById200Response.md +9 -0
  125. package/docs/DeleteDestinationEntry200Response.md +9 -0
  126. package/docs/EntryType.md +12 -0
  127. package/docs/FeeStationApi.md +1 -1
  128. package/docs/GetCounterpartyEntry200Response.md +9 -0
  129. package/docs/GetDestinationEntry200Response.md +10 -0
  130. package/docs/GetReports200Response.md +10 -0
  131. package/docs/KyaRiskAssessment.md +11 -0
  132. package/docs/KyaRiskDetail.md +10 -0
  133. package/docs/KyaRiskLevel.md +14 -0
  134. package/docs/KyaScreeningRequest.md +12 -0
  135. package/docs/KyaScreeningResult.md +17 -0
  136. package/docs/KyaScreeningResultRiskAssessment.md +11 -0
  137. package/docs/KyaScreeningStatus.md +16 -0
  138. package/docs/KyaScreeningsEventData.md +14 -0
  139. package/docs/LinkDisplayInfo.md +1 -1
  140. package/docs/ListCounterpartyEntries200Response.md +10 -0
  141. package/docs/ListDestinationEntries200Response.md +11 -0
  142. package/docs/ListKyaScreenings200Response.md +10 -0
  143. package/docs/MPCVaultEventData.md +3 -1
  144. package/docs/MerchantBalance.md +4 -4
  145. package/docs/Order.md +8 -8
  146. package/docs/OrderLinkBusinessInfo.md +11 -11
  147. package/docs/OrderLinkBusinessInfoCustomExchangeRatesInner.md +2 -2
  148. package/docs/OrderLinkBusinessInfoPayableAmountsInner.md +2 -2
  149. package/docs/PaymentAddressUpdateEventData.md +3 -1
  150. package/docs/PaymentAllocationAmount.md +1 -1
  151. package/docs/PaymentApi.md +1104 -161
  152. package/docs/PaymentOrderEventData.md +11 -9
  153. package/docs/PaymentPayout.md +3 -3
  154. package/docs/PaymentPayoutDetail.md +3 -3
  155. package/docs/PaymentPayoutEvent.md +6 -4
  156. package/docs/PaymentPayoutItem.md +6 -6
  157. package/docs/PaymentPayoutItemDetail.md +6 -6
  158. package/docs/PaymentPayoutParam.md +5 -5
  159. package/docs/PaymentRefundEventData.md +3 -1
  160. package/docs/PaymentSettlementEvent.md +3 -1
  161. package/docs/PaymentTransactionEventData.md +3 -1
  162. package/docs/PspBalance.md +4 -4
  163. package/docs/RefundLinkBusinessInfo.md +1 -1
  164. package/docs/Report.md +17 -0
  165. package/docs/ReportExportFormat.md +14 -0
  166. package/docs/ReportStatus.md +12 -0
  167. package/docs/ReportType.md +36 -0
  168. package/docs/StakingsApi.md +1 -1
  169. package/docs/SuspendedTokenEventData.md +3 -1
  170. package/docs/TSSRequestWebhookEventData.md +3 -1
  171. package/docs/TokenListingEventData.md +3 -1
  172. package/docs/TokensEventData.md +3 -1
  173. package/docs/TransactionWebhookEventData.md +3 -1
  174. package/docs/TransactionsApi.md +3 -3
  175. package/docs/TransferParams.md +1 -1
  176. package/docs/UpdateCounterpartyRequest.md +13 -0
  177. package/docs/UpdateDestinationEntry200Response.md +9 -0
  178. package/docs/UpdateDestinationEntryRequest.md +11 -0
  179. package/docs/UpdateDestinationRequest.md +14 -0
  180. package/docs/UpdateMerchantByIdRequest.md +1 -1
  181. package/docs/WalletAddress.md +3 -1
  182. package/docs/WalletInfoEventData.md +3 -1
  183. package/docs/WebhookEventData.md +18 -15
  184. package/docs/WebhookEventDataType.md +3 -1
  185. package/docs/WebhookEventType.md +2 -0
  186. package/package.json +1 -1
@@ -0,0 +1,151 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _KyaRiskDetail = _interopRequireDefault(require("./KyaRiskDetail"));
9
+ var _KyaRiskLevel = _interopRequireDefault(require("./KyaRiskLevel"));
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
11
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
12
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
13
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
14
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
15
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
16
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
17
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
18
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
19
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
20
+ * Cobo Wallet as a Service 2.0
21
+ *
22
+ * Contact: help@cobo.com
23
+ *
24
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
25
+ * https://openapi-generator.tech
26
+ * Do not edit the class manually.
27
+ *
28
+ */
29
+ /**
30
+ * The KyaRiskAssessment model module.
31
+ * @module model/KyaRiskAssessment
32
+ */
33
+ var KyaRiskAssessment = /*#__PURE__*/function () {
34
+ /**
35
+ * Constructs a new <code>KyaRiskAssessment</code>.
36
+ * The risk assessment information for the screened address. Only returned when status is &#39;Screened&#39;.
37
+ * @alias module:model/KyaRiskAssessment
38
+ * @param level {module:model/KyaRiskLevel}
39
+ */
40
+ function KyaRiskAssessment(level) {
41
+ _classCallCheck(this, KyaRiskAssessment);
42
+ KyaRiskAssessment.initialize(this, level);
43
+ }
44
+
45
+ /**
46
+ * Initializes the fields of this object.
47
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
48
+ * Only for internal use.
49
+ */
50
+ return _createClass(KyaRiskAssessment, null, [{
51
+ key: "initialize",
52
+ value: function initialize(obj, level) {
53
+ obj['level'] = level;
54
+ }
55
+
56
+ /**
57
+ * Constructs a <code>KyaRiskAssessment</code> from a plain JavaScript object, optionally creating a new instance.
58
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
59
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
60
+ * @param {module:model/KyaRiskAssessment} obj Optional instance to populate.
61
+ * @return {module:model/KyaRiskAssessment} The populated <code>KyaRiskAssessment</code> instance.
62
+ */
63
+ }, {
64
+ key: "constructFromObject",
65
+ value: function constructFromObject(data, obj) {
66
+ if (data) {
67
+ obj = obj || new KyaRiskAssessment();
68
+ if (data.hasOwnProperty('level')) {
69
+ obj['level'] = _KyaRiskLevel["default"].constructFromObject(data['level']);
70
+ }
71
+ if (data.hasOwnProperty('summary')) {
72
+ obj['summary'] = _ApiClient["default"].convertToType(data['summary'], 'String');
73
+ }
74
+ if (data.hasOwnProperty('details')) {
75
+ obj['details'] = _ApiClient["default"].convertToType(data['details'], [_KyaRiskDetail["default"]]);
76
+ }
77
+ }
78
+ return obj;
79
+ }
80
+
81
+ /**
82
+ * Validates the JSON data with respect to <code>KyaRiskAssessment</code>.
83
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
84
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>KyaRiskAssessment</code>.
85
+ */
86
+ }, {
87
+ key: "validateJSON",
88
+ value: function validateJSON(data) {
89
+ // check to make sure all required properties are present in the JSON string
90
+ var _iterator = _createForOfIteratorHelper(KyaRiskAssessment.RequiredProperties),
91
+ _step;
92
+ try {
93
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
94
+ var property = _step.value;
95
+ if (!data.hasOwnProperty(property)) {
96
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
97
+ }
98
+ }
99
+ // ensure the json data is a string
100
+ } catch (err) {
101
+ _iterator.e(err);
102
+ } finally {
103
+ _iterator.f();
104
+ }
105
+ if (data['summary'] && !(typeof data['summary'] === 'string' || data['summary'] instanceof String)) {
106
+ throw new Error("Expected the field `summary` to be a primitive type in the JSON string but got " + data['summary']);
107
+ }
108
+ if (data['details']) {
109
+ // data not null
110
+ // ensure the json data is an array
111
+ if (!Array.isArray(data['details'])) {
112
+ throw new Error("Expected the field `details` to be an array in the JSON data but got " + data['details']);
113
+ }
114
+ // validate the optional field `details` (array)
115
+ var _iterator2 = _createForOfIteratorHelper(data['details']),
116
+ _step2;
117
+ try {
118
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
119
+ var item = _step2.value;
120
+ _KyaRiskDetail["default"].validateJSON(item);
121
+ }
122
+ } catch (err) {
123
+ _iterator2.e(err);
124
+ } finally {
125
+ _iterator2.f();
126
+ }
127
+ ;
128
+ }
129
+ return true;
130
+ }
131
+ }]);
132
+ }();
133
+ KyaRiskAssessment.RequiredProperties = ["level"];
134
+
135
+ /**
136
+ * @member {module:model/KyaRiskLevel} level
137
+ */
138
+ KyaRiskAssessment.prototype['level'] = undefined;
139
+
140
+ /**
141
+ * A brief summary of the risk assessment.
142
+ * @member {String} summary
143
+ */
144
+ KyaRiskAssessment.prototype['summary'] = undefined;
145
+
146
+ /**
147
+ * Detailed risk category assessments.
148
+ * @member {Array.<module:model/KyaRiskDetail>} details
149
+ */
150
+ KyaRiskAssessment.prototype['details'] = undefined;
151
+ var _default = exports["default"] = KyaRiskAssessment;
@@ -0,0 +1,126 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
18
+ * Cobo Wallet as a Service 2.0
19
+ *
20
+ * Contact: help@cobo.com
21
+ *
22
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
23
+ * https://openapi-generator.tech
24
+ * Do not edit the class manually.
25
+ *
26
+ */
27
+ /**
28
+ * The KyaRiskDetail model module.
29
+ * @module model/KyaRiskDetail
30
+ */
31
+ var KyaRiskDetail = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>KyaRiskDetail</code>.
34
+ * Individual risk category assessment detail.
35
+ * @alias module:model/KyaRiskDetail
36
+ * @param category {String} The risk category (e.g., sanctions, fraud, theft, etc.).
37
+ * @param exposure {String} The exposure level for this risk category (e.g., high, medium, low, none, indirect).
38
+ */
39
+ function KyaRiskDetail(category, exposure) {
40
+ _classCallCheck(this, KyaRiskDetail);
41
+ KyaRiskDetail.initialize(this, category, exposure);
42
+ }
43
+
44
+ /**
45
+ * Initializes the fields of this object.
46
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
47
+ * Only for internal use.
48
+ */
49
+ return _createClass(KyaRiskDetail, null, [{
50
+ key: "initialize",
51
+ value: function initialize(obj, category, exposure) {
52
+ obj['category'] = category;
53
+ obj['exposure'] = exposure;
54
+ }
55
+
56
+ /**
57
+ * Constructs a <code>KyaRiskDetail</code> from a plain JavaScript object, optionally creating a new instance.
58
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
59
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
60
+ * @param {module:model/KyaRiskDetail} obj Optional instance to populate.
61
+ * @return {module:model/KyaRiskDetail} The populated <code>KyaRiskDetail</code> instance.
62
+ */
63
+ }, {
64
+ key: "constructFromObject",
65
+ value: function constructFromObject(data, obj) {
66
+ if (data) {
67
+ obj = obj || new KyaRiskDetail();
68
+ if (data.hasOwnProperty('category')) {
69
+ obj['category'] = _ApiClient["default"].convertToType(data['category'], 'String');
70
+ }
71
+ if (data.hasOwnProperty('exposure')) {
72
+ obj['exposure'] = _ApiClient["default"].convertToType(data['exposure'], 'String');
73
+ }
74
+ }
75
+ return obj;
76
+ }
77
+
78
+ /**
79
+ * Validates the JSON data with respect to <code>KyaRiskDetail</code>.
80
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
81
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>KyaRiskDetail</code>.
82
+ */
83
+ }, {
84
+ key: "validateJSON",
85
+ value: function validateJSON(data) {
86
+ // check to make sure all required properties are present in the JSON string
87
+ var _iterator = _createForOfIteratorHelper(KyaRiskDetail.RequiredProperties),
88
+ _step;
89
+ try {
90
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
91
+ var property = _step.value;
92
+ if (!data.hasOwnProperty(property)) {
93
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
94
+ }
95
+ }
96
+ // ensure the json data is a string
97
+ } catch (err) {
98
+ _iterator.e(err);
99
+ } finally {
100
+ _iterator.f();
101
+ }
102
+ if (data['category'] && !(typeof data['category'] === 'string' || data['category'] instanceof String)) {
103
+ throw new Error("Expected the field `category` to be a primitive type in the JSON string but got " + data['category']);
104
+ }
105
+ // ensure the json data is a string
106
+ if (data['exposure'] && !(typeof data['exposure'] === 'string' || data['exposure'] instanceof String)) {
107
+ throw new Error("Expected the field `exposure` to be a primitive type in the JSON string but got " + data['exposure']);
108
+ }
109
+ return true;
110
+ }
111
+ }]);
112
+ }();
113
+ KyaRiskDetail.RequiredProperties = ["category", "exposure"];
114
+
115
+ /**
116
+ * The risk category (e.g., sanctions, fraud, theft, etc.).
117
+ * @member {String} category
118
+ */
119
+ KyaRiskDetail.prototype['category'] = undefined;
120
+
121
+ /**
122
+ * The exposure level for this risk category (e.g., high, medium, low, none, indirect).
123
+ * @member {String} exposure
124
+ */
125
+ KyaRiskDetail.prototype['exposure'] = undefined;
126
+ var _default = exports["default"] = KyaRiskDetail;
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
11
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
12
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
13
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
14
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
15
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
16
+ * Cobo Wallet as a Service 2.0
17
+ *
18
+ * Contact: help@cobo.com
19
+ *
20
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
21
+ * https://openapi-generator.tech
22
+ * Do not edit the class manually.
23
+ *
24
+ */
25
+ /**
26
+ * Enum class KyaRiskLevel.
27
+ * @enum {}
28
+ * @readonly
29
+ */
30
+ var KyaRiskLevel = exports["default"] = /*#__PURE__*/function () {
31
+ function KyaRiskLevel() {
32
+ _classCallCheck(this, KyaRiskLevel);
33
+ /**
34
+ * value: "High"
35
+ * @const
36
+ */
37
+ _defineProperty(this, "High", "High");
38
+ /**
39
+ * value: "Medium"
40
+ * @const
41
+ */
42
+ _defineProperty(this, "Medium", "Medium");
43
+ /**
44
+ * value: "Low"
45
+ * @const
46
+ */
47
+ _defineProperty(this, "Low", "Low");
48
+ /**
49
+ * value: "unknown_default_open_api"
50
+ * @const
51
+ */
52
+ _defineProperty(this, "unknown_default_open_api", "unknown_default_open_api");
53
+ }
54
+ return _createClass(KyaRiskLevel, null, [{
55
+ key: "constructFromObject",
56
+ value:
57
+ /**
58
+ * Returns a <code>KyaRiskLevel</code> enum value from a Javascript object name.
59
+ * @param {Object} data The plain JavaScript object containing the name of the enum value.
60
+ * @return {module:model/KyaRiskLevel} The enum <code>KyaRiskLevel</code> value.
61
+ */
62
+ function constructFromObject(object) {
63
+ return object;
64
+ }
65
+ }]);
66
+ }();
@@ -0,0 +1,154 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
18
+ * Cobo Wallet as a Service 2.0
19
+ *
20
+ * Contact: help@cobo.com
21
+ *
22
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
23
+ * https://openapi-generator.tech
24
+ * Do not edit the class manually.
25
+ *
26
+ */
27
+ /**
28
+ * The KyaScreeningRequest model module.
29
+ * @module model/KyaScreeningRequest
30
+ */
31
+ var KyaScreeningRequest = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>KyaScreeningRequest</code>.
34
+ * Individual address screening request.
35
+ * @alias module:model/KyaScreeningRequest
36
+ * @param request_id {String} The request ID that is used to track a request. The request ID is provided by you and must be unique within your organization. This ID is used for idempotency to prevent duplicate submissions and for troubleshooting purposes.
37
+ * @param address {String} The blockchain address to be screened. For chains requiring memo (XRP, EOS, XLM, IOST, BNB_BNB, ATOM, LUNA, TON), append the memo to the address using \"|\" separator (e.g., \"address|memo\").
38
+ * @param chain_id {String} The chain identifier (e.g., ETH, BTC, TRON).
39
+ */
40
+ function KyaScreeningRequest(request_id, address, chain_id) {
41
+ _classCallCheck(this, KyaScreeningRequest);
42
+ KyaScreeningRequest.initialize(this, request_id, address, chain_id);
43
+ }
44
+
45
+ /**
46
+ * Initializes the fields of this object.
47
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
48
+ * Only for internal use.
49
+ */
50
+ return _createClass(KyaScreeningRequest, null, [{
51
+ key: "initialize",
52
+ value: function initialize(obj, request_id, address, chain_id) {
53
+ obj['request_id'] = request_id;
54
+ obj['address'] = address;
55
+ obj['chain_id'] = chain_id;
56
+ }
57
+
58
+ /**
59
+ * Constructs a <code>KyaScreeningRequest</code> from a plain JavaScript object, optionally creating a new instance.
60
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
61
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
62
+ * @param {module:model/KyaScreeningRequest} obj Optional instance to populate.
63
+ * @return {module:model/KyaScreeningRequest} The populated <code>KyaScreeningRequest</code> instance.
64
+ */
65
+ }, {
66
+ key: "constructFromObject",
67
+ value: function constructFromObject(data, obj) {
68
+ if (data) {
69
+ obj = obj || new KyaScreeningRequest();
70
+ if (data.hasOwnProperty('request_id')) {
71
+ obj['request_id'] = _ApiClient["default"].convertToType(data['request_id'], 'String');
72
+ }
73
+ if (data.hasOwnProperty('address')) {
74
+ obj['address'] = _ApiClient["default"].convertToType(data['address'], 'String');
75
+ }
76
+ if (data.hasOwnProperty('chain_id')) {
77
+ obj['chain_id'] = _ApiClient["default"].convertToType(data['chain_id'], 'String');
78
+ }
79
+ if (data.hasOwnProperty('note')) {
80
+ obj['note'] = _ApiClient["default"].convertToType(data['note'], 'String');
81
+ }
82
+ }
83
+ return obj;
84
+ }
85
+
86
+ /**
87
+ * Validates the JSON data with respect to <code>KyaScreeningRequest</code>.
88
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
89
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>KyaScreeningRequest</code>.
90
+ */
91
+ }, {
92
+ key: "validateJSON",
93
+ value: function validateJSON(data) {
94
+ // check to make sure all required properties are present in the JSON string
95
+ var _iterator = _createForOfIteratorHelper(KyaScreeningRequest.RequiredProperties),
96
+ _step;
97
+ try {
98
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
99
+ var property = _step.value;
100
+ if (!data.hasOwnProperty(property)) {
101
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
102
+ }
103
+ }
104
+ // ensure the json data is a string
105
+ } catch (err) {
106
+ _iterator.e(err);
107
+ } finally {
108
+ _iterator.f();
109
+ }
110
+ if (data['request_id'] && !(typeof data['request_id'] === 'string' || data['request_id'] instanceof String)) {
111
+ throw new Error("Expected the field `request_id` to be a primitive type in the JSON string but got " + data['request_id']);
112
+ }
113
+ // ensure the json data is a string
114
+ if (data['address'] && !(typeof data['address'] === 'string' || data['address'] instanceof String)) {
115
+ throw new Error("Expected the field `address` to be a primitive type in the JSON string but got " + data['address']);
116
+ }
117
+ // ensure the json data is a string
118
+ if (data['chain_id'] && !(typeof data['chain_id'] === 'string' || data['chain_id'] instanceof String)) {
119
+ throw new Error("Expected the field `chain_id` to be a primitive type in the JSON string but got " + data['chain_id']);
120
+ }
121
+ // ensure the json data is a string
122
+ if (data['note'] && !(typeof data['note'] === 'string' || data['note'] instanceof String)) {
123
+ throw new Error("Expected the field `note` to be a primitive type in the JSON string but got " + data['note']);
124
+ }
125
+ return true;
126
+ }
127
+ }]);
128
+ }();
129
+ KyaScreeningRequest.RequiredProperties = ["request_id", "address", "chain_id"];
130
+
131
+ /**
132
+ * The request ID that is used to track a request. The request ID is provided by you and must be unique within your organization. This ID is used for idempotency to prevent duplicate submissions and for troubleshooting purposes.
133
+ * @member {String} request_id
134
+ */
135
+ KyaScreeningRequest.prototype['request_id'] = undefined;
136
+
137
+ /**
138
+ * The blockchain address to be screened. For chains requiring memo (XRP, EOS, XLM, IOST, BNB_BNB, ATOM, LUNA, TON), append the memo to the address using \"|\" separator (e.g., \"address|memo\").
139
+ * @member {String} address
140
+ */
141
+ KyaScreeningRequest.prototype['address'] = undefined;
142
+
143
+ /**
144
+ * The chain identifier (e.g., ETH, BTC, TRON).
145
+ * @member {String} chain_id
146
+ */
147
+ KyaScreeningRequest.prototype['chain_id'] = undefined;
148
+
149
+ /**
150
+ * Optional note for this address screening.
151
+ * @member {String} note
152
+ */
153
+ KyaScreeningRequest.prototype['note'] = undefined;
154
+ var _default = exports["default"] = KyaScreeningRequest;