@cobo/cobo-waas2 1.22.0 → 1.24.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 (285) hide show
  1. package/README.md +81 -17
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AddressBooksApi.js +200 -21
  4. package/dist/api/AutoSweepApi.js +26 -26
  5. package/dist/api/ComplianceApi.js +214 -0
  6. package/dist/api/FeeStationApi.js +47 -4
  7. package/dist/api/PaymentApi.js +204 -57
  8. package/dist/api/SwapsApi.js +374 -0
  9. package/dist/api/TokenizationApi.js +2 -2
  10. package/dist/api/TransactionsApi.js +18 -18
  11. package/dist/api/WalletsApi.js +4 -4
  12. package/dist/api/WalletsMPCWalletsApi.js +2 -2
  13. package/dist/index.js +329 -21
  14. package/dist/model/AddressBook.js +12 -12
  15. package/dist/model/AddressInfo.js +13 -0
  16. package/dist/model/AddressesEventData.js +8 -3
  17. package/dist/model/AddressesEventDataAllOfAddresses.js +18 -0
  18. package/dist/model/ApprovalDetail.js +4 -4
  19. package/dist/model/ApprovalResult.js +6 -11
  20. package/dist/model/ApprovalTemplate.js +4 -4
  21. package/dist/model/ApprovalTransactionResult.js +8 -8
  22. package/dist/model/ApprovalUserDetail.js +95 -24
  23. package/dist/model/AutoSweepTask.js +9 -9
  24. package/dist/model/BalanceUpdateInfoEventData.js +8 -3
  25. package/dist/model/BridgingFee.js +136 -0
  26. package/dist/model/ChainInfo.js +14 -1
  27. package/dist/model/ChainsEventData.js +8 -3
  28. package/dist/model/CommissionFee.js +110 -0
  29. package/dist/model/ComplianceDispositionUpdateEventData.js +321 -0
  30. package/dist/model/ContractCallDestination.js +48 -8
  31. package/dist/model/ContractCallDestinationType.js +5 -0
  32. package/dist/model/CreateAddressBookParam.js +165 -0
  33. package/dist/model/CreateAddressBooks201Response.js +107 -0
  34. package/dist/model/CreateAddressBooksParam.js +128 -0
  35. package/dist/model/CreateAutoSweepTask.js +5 -5
  36. package/dist/model/CreateCustodialWalletParams.js +1 -1
  37. package/dist/model/CreateExchangeWalletParams.js +2 -2
  38. package/dist/model/CreateMerchantRequest.js +14 -7
  39. package/dist/model/CreateMpcWalletParams.js +2 -2
  40. package/dist/model/CreatePaymentOrderRequest.js +17 -4
  41. package/dist/model/CreateRefundRequest.js +2 -2
  42. package/dist/model/CreateSafeWalletParams.js +1 -1
  43. package/dist/model/CreateSettlement.js +3 -3
  44. package/dist/model/CreateSettlementRequestRequest.js +39 -0
  45. package/dist/model/CreateSmartContractWalletParams.js +1 -1
  46. package/dist/model/CreateSwapActivityRequest.js +193 -0
  47. package/dist/model/CreateSweepToAddress.js +1 -1
  48. package/dist/model/CreateWalletParams.js +1 -1
  49. package/dist/model/CustodialTransferDestination.js +1 -1
  50. package/dist/model/DeleteAddressBookById201Response.js +106 -0
  51. package/dist/model/DispositionEventData.js +170 -0
  52. package/dist/model/DispositionQueryResponse.js +146 -0
  53. package/dist/model/DispositionResponse.js +122 -0
  54. package/dist/model/DispositionStatus.js +116 -0
  55. package/dist/model/DispositionType.js +66 -0
  56. package/dist/model/EstimateContractCallFeeParams.js +1 -1
  57. package/dist/model/EstimateFeeParams.js +1 -1
  58. package/dist/model/EstimateTransferFeeParams.js +1 -1
  59. package/dist/model/EstimatedEvmEip1559Fee.js +1 -1
  60. package/dist/model/EstimatedEvmLegacyFee.js +1 -1
  61. package/dist/model/EstimatedFILFee.js +1 -1
  62. package/dist/model/EstimatedFixedFee.js +1 -1
  63. package/dist/model/EstimatedSOLFee.js +1 -1
  64. package/dist/model/EstimatedUtxoFee.js +1 -1
  65. package/dist/model/FeeStationCheckFeeStationUsage.js +186 -0
  66. package/dist/model/FeeStationCheckFeeStationUsageResponse.js +200 -0
  67. package/dist/model/FeeStationGasStationType.js +61 -0
  68. package/dist/model/IsolateDisposition.js +167 -0
  69. package/dist/model/ListSwapActivities200Response.js +123 -0
  70. package/dist/model/ListSwapEnabledTokens200Response.js +123 -0
  71. package/dist/model/ListTopUpPayerAccounts200Response.js +123 -0
  72. package/dist/model/MPCVaultEventData.js +8 -3
  73. package/dist/model/Merchant.js +10 -1
  74. package/dist/model/MerchantBalance.js +7 -7
  75. package/dist/model/MessageSignDestination.js +8 -70
  76. package/dist/model/OrgInfo.js +9 -0
  77. package/dist/model/OtcFee.js +123 -0
  78. package/dist/model/PaymentAddressUpdateEventData.js +8 -3
  79. package/dist/model/PaymentEstimateFee.js +125 -0
  80. package/dist/model/PaymentEstimateFee201Response.js +107 -0
  81. package/dist/model/{RawMessageSignDestination.js → PaymentEstimateFeeRequest.js} +51 -37
  82. package/dist/model/PaymentEstimatedFee.js +173 -0
  83. package/dist/model/PaymentFeeType.js +71 -0
  84. package/dist/model/PaymentOrderEventData.js +8 -3
  85. package/dist/model/PaymentRefundEventData.js +30 -5
  86. package/dist/model/PaymentSettlementEvent.js +70 -9
  87. package/dist/model/PaymentTransactionEventData.js +8 -3
  88. package/dist/model/PaymentWalletBalance.js +6 -6
  89. package/dist/model/PspBalance.js +7 -7
  90. package/dist/model/ReceivedAmountPerAddress.js +5 -5
  91. package/dist/model/Refund.js +17 -1
  92. package/dist/model/RefundDisposition.js +167 -0
  93. package/dist/model/RoleDetail.js +41 -6
  94. package/dist/model/SettleRequestStatus.js +5 -0
  95. package/dist/model/Settlement.js +45 -3
  96. package/dist/model/SettlementDetail.js +33 -1
  97. package/dist/model/SettlementInfo.js +7 -7
  98. package/dist/model/SolContractCallAddressLookupTableAccount.js +126 -0
  99. package/dist/model/SolContractCallDestination.js +30 -0
  100. package/dist/model/StellarContractCallContractParam.js +164 -0
  101. package/dist/model/StellarContractCallContractType.js +56 -0
  102. package/dist/model/StellarContractCallDestination.js +125 -0
  103. package/dist/model/StellarContractCallTrustLineOperationType.js +56 -0
  104. package/dist/model/StellarContractCallTrustLineParam.js +133 -0
  105. package/dist/model/SupportedToken.js +9 -0
  106. package/dist/model/SuspendedTokenEventData.js +8 -3
  107. package/dist/model/SwapActivity.js +9 -9
  108. package/dist/model/SwapActivityApprovers.js +1 -1
  109. package/dist/model/SwapActivityDetail.js +34 -18
  110. package/dist/model/SwapActivitySigners.js +2 -2
  111. package/dist/model/SwapActivityTimeline.js +5 -5
  112. package/dist/model/SwapEstimateFee.js +147 -0
  113. package/dist/model/SwapQuote.js +18 -31
  114. package/dist/model/SwapReceivingTransaction.js +133 -0
  115. package/dist/model/SwapToken.js +9 -9
  116. package/dist/model/SweepToAddress.js +1 -1
  117. package/dist/model/TSSRequestWebhookEventData.js +8 -3
  118. package/dist/model/TokenListingEventData.js +8 -3
  119. package/dist/model/TokensEventData.js +8 -3
  120. package/dist/model/TransactionCoboCategory.js +5 -0
  121. package/dist/model/TransactionDestination.js +48 -8
  122. package/dist/model/TransactionDestinationType.js +5 -0
  123. package/dist/model/TransactionEvmEip1559Fee.js +1 -1
  124. package/dist/model/TransactionEvmLegacyFee.js +1 -1
  125. package/dist/model/TransactionFILFee.js +1 -1
  126. package/dist/model/TransactionFixedFee.js +1 -1
  127. package/dist/model/TransactionFuelingInfo.js +13 -0
  128. package/dist/model/TransactionRequestEvmEip1559Fee.js +1 -1
  129. package/dist/model/TransactionRequestEvmLegacyFee.js +1 -1
  130. package/dist/model/TransactionRequestFILFee.js +1 -1
  131. package/dist/model/TransactionRequestSOLFee.js +1 -1
  132. package/dist/model/TransactionRequestUtxoFee.js +1 -1
  133. package/dist/model/TransactionSOLFee.js +1 -1
  134. package/dist/model/TransactionSolContractAddressLookupTableAccount.js +126 -0
  135. package/dist/model/TransactionSolContractDestination.js +30 -0
  136. package/dist/model/TransactionStellarContractParam.js +164 -0
  137. package/dist/model/TransactionStellarContractType.js +56 -0
  138. package/dist/model/{BTCEIP191MessageSignDestination.js → TransactionStellarDestination.js} +38 -35
  139. package/dist/model/TransactionStellarTrustLineOperationType.js +56 -0
  140. package/dist/model/TransactionStellarTrustLineParam.js +133 -0
  141. package/dist/model/TransactionUtxoFee.js +1 -1
  142. package/dist/model/TransactionWebhookEventData.js +8 -3
  143. package/dist/model/UnfreezeDisposition.js +111 -0
  144. package/dist/model/UpdateAddressBookParam.js +150 -0
  145. package/dist/model/UpdateBankAccountByIdRequest.js +108 -0
  146. package/dist/model/UpdateMerchantByIdRequest.js +1 -1
  147. package/dist/model/UpdateTopUpAddress.js +4 -6
  148. package/dist/model/WalletInfoEventData.js +8 -3
  149. package/dist/model/WalletSetup.js +66 -0
  150. package/dist/model/WebhookEventData.js +81 -11
  151. package/dist/model/WebhookEventDataType.js +7 -2
  152. package/dist/model/WebhookEventType.js +5 -0
  153. package/docs/AddressBook.md +7 -7
  154. package/docs/AddressBooksApi.md +218 -8
  155. package/docs/AddressInfo.md +1 -0
  156. package/docs/AddressesEventData.md +3 -1
  157. package/docs/AddressesEventDataAllOfAddresses.md +1 -0
  158. package/docs/ApprovalDetail.md +3 -3
  159. package/docs/ApprovalResult.md +3 -5
  160. package/docs/ApprovalTemplate.md +3 -3
  161. package/docs/ApprovalTransactionResult.md +4 -4
  162. package/docs/ApprovalUserDetail.md +15 -9
  163. package/docs/AutoSweepApi.md +18 -18
  164. package/docs/AutoSweepTask.md +5 -5
  165. package/docs/BalanceUpdateInfoEventData.md +3 -1
  166. package/docs/BridgingFee.md +11 -0
  167. package/docs/ChainInfo.md +2 -1
  168. package/docs/ChainsEventData.md +3 -1
  169. package/docs/CommissionFee.md +9 -0
  170. package/docs/ComplianceApi.md +218 -0
  171. package/docs/ComplianceDispositionUpdateEventData.md +56 -0
  172. package/docs/ContractCallDestination.md +2 -0
  173. package/docs/ContractCallDestinationType.md +2 -0
  174. package/docs/CreateAddressBookParam.md +13 -0
  175. package/docs/CreateAddressBooks201Response.md +9 -0
  176. package/docs/CreateAddressBooksParam.md +9 -0
  177. package/docs/CreateAutoSweepTask.md +2 -2
  178. package/docs/CreateCustodialWalletParams.md +1 -1
  179. package/docs/CreateExchangeWalletParams.md +1 -1
  180. package/docs/CreateMerchantRequest.md +3 -2
  181. package/docs/CreateMpcWalletParams.md +1 -1
  182. package/docs/CreatePaymentOrderRequest.md +4 -3
  183. package/docs/CreateRefundRequest.md +1 -1
  184. package/docs/CreateSafeWalletParams.md +1 -1
  185. package/docs/CreateSettlement.md +3 -3
  186. package/docs/CreateSettlementRequestRequest.md +3 -0
  187. package/docs/CreateSmartContractWalletParams.md +1 -1
  188. package/docs/CreateSwapActivityRequest.md +15 -0
  189. package/docs/CreateWalletParams.md +1 -1
  190. package/docs/DeleteAddressBookById201Response.md +9 -0
  191. package/docs/DispositionEventData.md +14 -0
  192. package/docs/DispositionQueryResponse.md +12 -0
  193. package/docs/DispositionResponse.md +10 -0
  194. package/docs/DispositionStatus.md +34 -0
  195. package/docs/DispositionType.md +14 -0
  196. package/docs/EstimateContractCallFeeParams.md +1 -1
  197. package/docs/EstimateFeeParams.md +1 -1
  198. package/docs/EstimateTransferFeeParams.md +1 -1
  199. package/docs/FeeStationApi.md +53 -0
  200. package/docs/FeeStationCheckFeeStationUsage.md +14 -0
  201. package/docs/FeeStationCheckFeeStationUsageResponse.md +16 -0
  202. package/docs/FeeStationGasStationType.md +12 -0
  203. package/docs/IsolateDisposition.md +13 -0
  204. package/docs/ListSwapActivities200Response.md +10 -0
  205. package/docs/ListSwapEnabledTokens200Response.md +10 -0
  206. package/docs/ListTopUpPayerAccounts200Response.md +10 -0
  207. package/docs/MPCVaultEventData.md +3 -1
  208. package/docs/Merchant.md +2 -1
  209. package/docs/MerchantBalance.md +6 -6
  210. package/docs/MessageSignDestination.md +0 -1
  211. package/docs/OrgInfo.md +1 -0
  212. package/docs/OtcFee.md +10 -0
  213. package/docs/PaymentAddressUpdateEventData.md +3 -1
  214. package/docs/PaymentApi.md +203 -28
  215. package/docs/PaymentEstimateFee.md +10 -0
  216. package/docs/PaymentEstimateFee201Response.md +9 -0
  217. package/docs/PaymentEstimateFeeRequest.md +10 -0
  218. package/docs/PaymentEstimatedFee.md +13 -0
  219. package/docs/PaymentFeeType.md +16 -0
  220. package/docs/PaymentOrderEventData.md +3 -1
  221. package/docs/PaymentRefundEventData.md +5 -2
  222. package/docs/PaymentSettlementEvent.md +9 -4
  223. package/docs/PaymentTransactionEventData.md +3 -1
  224. package/docs/PaymentWalletBalance.md +5 -5
  225. package/docs/PspBalance.md +6 -6
  226. package/docs/ReceivedAmountPerAddress.md +2 -2
  227. package/docs/Refund.md +2 -1
  228. package/docs/RefundDisposition.md +13 -0
  229. package/docs/RoleDetail.md +4 -1
  230. package/docs/SettleRequestStatus.md +2 -0
  231. package/docs/Settlement.md +6 -3
  232. package/docs/SettlementDetail.md +3 -1
  233. package/docs/SettlementInfo.md +6 -6
  234. package/docs/SolContractCallAddressLookupTableAccount.md +10 -0
  235. package/docs/SolContractCallDestination.md +1 -0
  236. package/docs/StellarContractCallContractParam.md +11 -0
  237. package/docs/StellarContractCallContractType.md +10 -0
  238. package/docs/StellarContractCallDestination.md +10 -0
  239. package/docs/StellarContractCallTrustLineOperationType.md +10 -0
  240. package/docs/StellarContractCallTrustLineParam.md +11 -0
  241. package/docs/SupportedToken.md +1 -0
  242. package/docs/SuspendedTokenEventData.md +3 -1
  243. package/docs/SwapActivity.md +9 -9
  244. package/docs/SwapActivityDetail.md +10 -9
  245. package/docs/SwapActivitySigners.md +1 -1
  246. package/docs/SwapActivityTimeline.md +3 -3
  247. package/docs/SwapEstimateFee.md +12 -0
  248. package/docs/SwapQuote.md +10 -11
  249. package/docs/SwapReceivingTransaction.md +11 -0
  250. package/docs/SwapToken.md +6 -6
  251. package/docs/SwapsApi.md +356 -0
  252. package/docs/TSSRequestWebhookEventData.md +3 -1
  253. package/docs/TokenListingEventData.md +3 -1
  254. package/docs/TokenizationApi.md +2 -2
  255. package/docs/TokensEventData.md +3 -1
  256. package/docs/TransactionCoboCategory.md +2 -0
  257. package/docs/TransactionDestination.md +2 -0
  258. package/docs/TransactionDestinationType.md +2 -0
  259. package/docs/TransactionFuelingInfo.md +1 -0
  260. package/docs/TransactionSolContractAddressLookupTableAccount.md +10 -0
  261. package/docs/TransactionSolContractDestination.md +1 -0
  262. package/docs/TransactionStellarContractParam.md +11 -0
  263. package/docs/TransactionStellarContractType.md +10 -0
  264. package/docs/TransactionStellarDestination.md +10 -0
  265. package/docs/TransactionStellarTrustLineOperationType.md +10 -0
  266. package/docs/TransactionStellarTrustLineParam.md +11 -0
  267. package/docs/TransactionWebhookEventData.md +3 -1
  268. package/docs/TransactionsApi.md +11 -11
  269. package/docs/UnfreezeDisposition.md +9 -0
  270. package/docs/UpdateAddressBookParam.md +12 -0
  271. package/docs/UpdateBankAccountByIdRequest.md +9 -0
  272. package/docs/UpdateMerchantByIdRequest.md +1 -1
  273. package/docs/UpdateTopUpAddress.md +1 -1
  274. package/docs/WalletInfoEventData.md +3 -1
  275. package/docs/WalletSetup.md +14 -0
  276. package/docs/WalletsApi.md +2 -2
  277. package/docs/WalletsMPCWalletsApi.md +1 -1
  278. package/docs/WebhookEventData.md +12 -3
  279. package/docs/WebhookEventDataType.md +3 -1
  280. package/docs/WebhookEventType.md +2 -0
  281. package/package.json +1 -1
  282. package/dist/model/ApprovalShowInfo.js +0 -140
  283. package/docs/ApprovalShowInfo.md +0 -13
  284. package/docs/BTCEIP191MessageSignDestination.md +0 -10
  285. package/docs/RawMessageSignDestination.md +0 -10
@@ -0,0 +1,164 @@
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 _TransactionStellarContractType = _interopRequireDefault(require("./TransactionStellarContractType"));
9
+ var _TransactionStellarTrustLineOperationType = _interopRequireDefault(require("./TransactionStellarTrustLineOperationType"));
10
+ var _TransactionStellarTrustLineParam = _interopRequireDefault(require("./TransactionStellarTrustLineParam"));
11
+ var _TransactionStellarContractParam;
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
13
+ 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); }
14
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
15
+ 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); } }
16
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
17
+ 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; }
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 TransactionStellarContractParam model module.
31
+ * @module model/TransactionStellarContractParam
32
+ */
33
+ var TransactionStellarContractParam = /*#__PURE__*/function () {
34
+ /**
35
+ * Constructs a new <code>TransactionStellarContractParam</code>.
36
+ * @alias module:model/TransactionStellarContractParam
37
+ * @param {(module:model/TransactionStellarTrustLineParam)} instance The actual instance to initialize TransactionStellarContractParam.
38
+ */
39
+ function TransactionStellarContractParam() {
40
+ var instance = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
41
+ _classCallCheck(this, TransactionStellarContractParam);
42
+ /**
43
+ * Returns the JSON representation of the actual instance.
44
+ * @return {string}
45
+ */
46
+ _defineProperty(this, "toJSON", function () {
47
+ return this.getActualInstance();
48
+ });
49
+ if (instance === null) {
50
+ this.actualInstance = null;
51
+ return;
52
+ }
53
+ var match = 0;
54
+ var errorMessages = [];
55
+ var discriminatorValue = instance["contract_type"];
56
+ if (discriminatorValue) {
57
+ switch (discriminatorValue) {
58
+ case "TrustLine":
59
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
60
+ match++;
61
+ break;
62
+ default:
63
+ errorMessages.push("Unrecognized discriminator value: " + discriminatorValue);
64
+ break;
65
+ }
66
+ return;
67
+ }
68
+ try {
69
+ if (instance instanceof _TransactionStellarTrustLineParam["default"]) {
70
+ this.actualInstance = instance;
71
+ } else if (!!_TransactionStellarTrustLineParam["default"].validateJSON && _TransactionStellarTrustLineParam["default"].validateJSON(instance)) {
72
+ // plain JS object
73
+ // create TransactionStellarTrustLineParam from JS object
74
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
75
+ } else {
76
+ if (_TransactionStellarTrustLineParam["default"].constructFromObject(instance)) {
77
+ if (!!_TransactionStellarTrustLineParam["default"].constructFromObject(instance).toJSON) {
78
+ if (_TransactionStellarTrustLineParam["default"].constructFromObject(instance).toJSON()) {
79
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
80
+ }
81
+ } else {
82
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
83
+ }
84
+ }
85
+ }
86
+ match++;
87
+ } catch (err) {
88
+ // json data failed to deserialize into TransactionStellarTrustLineParam
89
+ errorMessages.push("Failed to construct TransactionStellarTrustLineParam: " + err);
90
+ }
91
+
92
+ // if (match > 1) {
93
+ // throw new Error("Multiple matches found constructing `TransactionStellarContractParam` with oneOf schemas TransactionStellarTrustLineParam. Input: " + JSON.stringify(instance));
94
+ // } else
95
+ if (match === 0) {
96
+ // this.actualInstance = null; // clear the actual instance in case there are multiple matches
97
+ // throw new Error("No match found constructing `TransactionStellarContractParam` with oneOf schemas TransactionStellarTrustLineParam. Details: " +
98
+ // errorMessages.join(", "));
99
+ return;
100
+ } else {// only 1 match
101
+ // the input is valid
102
+ }
103
+ }
104
+
105
+ /**
106
+ * Constructs a <code>TransactionStellarContractParam</code> from a plain JavaScript object, optionally creating a new instance.
107
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
108
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
109
+ * @param {module:model/TransactionStellarContractParam} obj Optional instance to populate.
110
+ * @return {module:model/TransactionStellarContractParam} The populated <code>TransactionStellarContractParam</code> instance.
111
+ */
112
+ return _createClass(TransactionStellarContractParam, [{
113
+ key: "getActualInstance",
114
+ value:
115
+ /**
116
+ * Gets the actual instance, which can be <code>TransactionStellarTrustLineParam</code>.
117
+ * @return {(module:model/TransactionStellarTrustLineParam)} The actual instance.
118
+ */
119
+ function getActualInstance() {
120
+ return this.actualInstance;
121
+ }
122
+
123
+ /**
124
+ * Sets the actual instance, which can be <code>TransactionStellarTrustLineParam</code>.
125
+ * @param {(module:model/TransactionStellarTrustLineParam)} obj The actual instance.
126
+ */
127
+ }, {
128
+ key: "setActualInstance",
129
+ value: function setActualInstance(obj) {
130
+ this.actualInstance = TransactionStellarContractParam.constructFromObject(obj).getActualInstance();
131
+ }
132
+ }], [{
133
+ key: "constructFromObject",
134
+ value: function constructFromObject(data, obj) {
135
+ return new TransactionStellarContractParam(data);
136
+ }
137
+ }]);
138
+ }();
139
+ /**
140
+ * @member {module:model/TransactionStellarContractType} contract_type
141
+ */
142
+ _TransactionStellarContractParam = TransactionStellarContractParam;
143
+ /**
144
+ * Create an instance of TransactionStellarContractParam from a JSON string.
145
+ * @param {string} json_string JSON string.
146
+ * @return {module:model/TransactionStellarContractParam} An instance of TransactionStellarContractParam.
147
+ */
148
+ _defineProperty(TransactionStellarContractParam, "fromJSON", function (json_string) {
149
+ return _TransactionStellarContractParam.constructFromObject(JSON.parse(json_string));
150
+ });
151
+ TransactionStellarContractParam.prototype['contract_type'] = undefined;
152
+
153
+ /**
154
+ * The token ID, which is the unique identifier of a token.
155
+ * @member {String} token_id
156
+ */
157
+ TransactionStellarContractParam.prototype['token_id'] = undefined;
158
+
159
+ /**
160
+ * @member {module:model/TransactionStellarTrustLineOperationType} operation_type
161
+ */
162
+ TransactionStellarContractParam.prototype['operation_type'] = undefined;
163
+ TransactionStellarContractParam.OneOf = ["TransactionStellarTrustLineParam"];
164
+ var _default = exports["default"] = TransactionStellarContractParam;
@@ -0,0 +1,56 @@
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 TransactionStellarContractType.
27
+ * @enum {}
28
+ * @readonly
29
+ */
30
+ var TransactionStellarContractType = exports["default"] = /*#__PURE__*/function () {
31
+ function TransactionStellarContractType() {
32
+ _classCallCheck(this, TransactionStellarContractType);
33
+ /**
34
+ * value: "TrustLine"
35
+ * @const
36
+ */
37
+ _defineProperty(this, "TrustLine", "TrustLine");
38
+ /**
39
+ * value: "unknown_default_open_api"
40
+ * @const
41
+ */
42
+ _defineProperty(this, "unknown_default_open_api", "unknown_default_open_api");
43
+ }
44
+ return _createClass(TransactionStellarContractType, null, [{
45
+ key: "constructFromObject",
46
+ value:
47
+ /**
48
+ * Returns a <code>TransactionStellarContractType</code> enum value from a Javascript object name.
49
+ * @param {Object} data The plain JavaScript object containing the name of the enum value.
50
+ * @return {module:model/TransactionStellarContractType} The enum <code>TransactionStellarContractType</code> value.
51
+ */
52
+ function constructFromObject(object) {
53
+ return object;
54
+ }
55
+ }]);
56
+ }();
@@ -5,7 +5,8 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports["default"] = void 0;
7
7
  var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
- var _MessageSignDestinationType = _interopRequireDefault(require("./MessageSignDestinationType"));
8
+ var _TransactionDestinationType = _interopRequireDefault(require("./TransactionDestinationType"));
9
+ var _TransactionStellarContractParam = _interopRequireDefault(require("./TransactionStellarContractParam"));
9
10
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
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); }
11
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; } } }; }
@@ -26,20 +27,20 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
27
  *
27
28
  */
28
29
  /**
29
- * The BTCEIP191MessageSignDestination model module.
30
- * @module model/BTCEIP191MessageSignDestination
30
+ * The TransactionStellarDestination model module.
31
+ * @module model/TransactionStellarDestination
31
32
  */
32
- var BTCEIP191MessageSignDestination = /*#__PURE__*/function () {
33
+ var TransactionStellarDestination = /*#__PURE__*/function () {
33
34
  /**
34
- * Constructs a new <code>BTCEIP191MessageSignDestination</code>.
35
- * The information about the destination &#x60;BTC_EIP_191_Signature&#x60;. Refer to [Transaction sources and destinations](https://www.cobo.com/developers/v2/guides/transactions/sources-and-destinations) for a detailed introduction about the supported sources and destinations for each transaction type.
36
- * @alias module:model/BTCEIP191MessageSignDestination
37
- * @param destination_type {module:model/MessageSignDestinationType}
38
- * @param message {String} The raw data of the message to be signed, encoded in Base64 format.
35
+ * Constructs a new <code>TransactionStellarDestination</code>.
36
+ * The information about the transaction destination type &#x60;STELLAR_Contract&#x60;. Refer to [Transaction sources and destinations](https://www.cobo.com/developers/v2/guides/transactions/sources-and-destinations) for a detailed introduction about the supported sources and destinations for each transaction type.
37
+ * @alias module:model/TransactionStellarDestination
38
+ * @param destination_type {module:model/TransactionDestinationType}
39
+ * @param contract_param {module:model/TransactionStellarContractParam}
39
40
  */
40
- function BTCEIP191MessageSignDestination(destination_type, message) {
41
- _classCallCheck(this, BTCEIP191MessageSignDestination);
42
- BTCEIP191MessageSignDestination.initialize(this, destination_type, message);
41
+ function TransactionStellarDestination(destination_type, contract_param) {
42
+ _classCallCheck(this, TransactionStellarDestination);
43
+ TransactionStellarDestination.initialize(this, destination_type, contract_param);
43
44
  }
44
45
 
45
46
  /**
@@ -47,45 +48,45 @@ var BTCEIP191MessageSignDestination = /*#__PURE__*/function () {
47
48
  * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
48
49
  * Only for internal use.
49
50
  */
50
- return _createClass(BTCEIP191MessageSignDestination, null, [{
51
+ return _createClass(TransactionStellarDestination, null, [{
51
52
  key: "initialize",
52
- value: function initialize(obj, destination_type, message) {
53
+ value: function initialize(obj, destination_type, contract_param) {
53
54
  obj['destination_type'] = destination_type;
54
- obj['message'] = message;
55
+ obj['contract_param'] = contract_param;
55
56
  }
56
57
 
57
58
  /**
58
- * Constructs a <code>BTCEIP191MessageSignDestination</code> from a plain JavaScript object, optionally creating a new instance.
59
+ * Constructs a <code>TransactionStellarDestination</code> from a plain JavaScript object, optionally creating a new instance.
59
60
  * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
60
61
  * @param {Object} data The plain JavaScript object bearing properties of interest.
61
- * @param {module:model/BTCEIP191MessageSignDestination} obj Optional instance to populate.
62
- * @return {module:model/BTCEIP191MessageSignDestination} The populated <code>BTCEIP191MessageSignDestination</code> instance.
62
+ * @param {module:model/TransactionStellarDestination} obj Optional instance to populate.
63
+ * @return {module:model/TransactionStellarDestination} The populated <code>TransactionStellarDestination</code> instance.
63
64
  */
64
65
  }, {
65
66
  key: "constructFromObject",
66
67
  value: function constructFromObject(data, obj) {
67
68
  if (data) {
68
- obj = obj || new BTCEIP191MessageSignDestination();
69
+ obj = obj || new TransactionStellarDestination();
69
70
  if (data.hasOwnProperty('destination_type')) {
70
- obj['destination_type'] = _MessageSignDestinationType["default"].constructFromObject(data['destination_type']);
71
+ obj['destination_type'] = _TransactionDestinationType["default"].constructFromObject(data['destination_type']);
71
72
  }
72
- if (data.hasOwnProperty('message')) {
73
- obj['message'] = _ApiClient["default"].convertToType(data['message'], 'String');
73
+ if (data.hasOwnProperty('contract_param')) {
74
+ obj['contract_param'] = _TransactionStellarContractParam["default"].constructFromObject(data['contract_param']);
74
75
  }
75
76
  }
76
77
  return obj;
77
78
  }
78
79
 
79
80
  /**
80
- * Validates the JSON data with respect to <code>BTCEIP191MessageSignDestination</code>.
81
+ * Validates the JSON data with respect to <code>TransactionStellarDestination</code>.
81
82
  * @param {Object} data The plain JavaScript object bearing properties of interest.
82
- * @return {boolean} to indicate whether the JSON data is valid with respect to <code>BTCEIP191MessageSignDestination</code>.
83
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>TransactionStellarDestination</code>.
83
84
  */
84
85
  }, {
85
86
  key: "validateJSON",
86
87
  value: function validateJSON(data) {
87
88
  // check to make sure all required properties are present in the JSON string
88
- var _iterator = _createForOfIteratorHelper(BTCEIP191MessageSignDestination.RequiredProperties),
89
+ var _iterator = _createForOfIteratorHelper(TransactionStellarDestination.RequiredProperties),
89
90
  _step;
90
91
  try {
91
92
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -94,29 +95,31 @@ var BTCEIP191MessageSignDestination = /*#__PURE__*/function () {
94
95
  throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
95
96
  }
96
97
  }
97
- // ensure the json data is a string
98
+ // validate the optional field `contract_param`
98
99
  } catch (err) {
99
100
  _iterator.e(err);
100
101
  } finally {
101
102
  _iterator.f();
102
103
  }
103
- if (data['message'] && !(typeof data['message'] === 'string' || data['message'] instanceof String)) {
104
- throw new Error("Expected the field `message` to be a primitive type in the JSON string but got " + data['message']);
104
+ if (data['contract_param']) {
105
+ // data not null
106
+ if (!!_TransactionStellarContractParam["default"].validateJSON) {
107
+ _TransactionStellarContractParam["default"].validateJSON(data['contract_param']);
108
+ }
105
109
  }
106
110
  return true;
107
111
  }
108
112
  }]);
109
113
  }();
110
- BTCEIP191MessageSignDestination.RequiredProperties = ["destination_type", "message"];
114
+ TransactionStellarDestination.RequiredProperties = ["destination_type", "contract_param"];
111
115
 
112
116
  /**
113
- * @member {module:model/MessageSignDestinationType} destination_type
117
+ * @member {module:model/TransactionDestinationType} destination_type
114
118
  */
115
- BTCEIP191MessageSignDestination.prototype['destination_type'] = undefined;
119
+ TransactionStellarDestination.prototype['destination_type'] = undefined;
116
120
 
117
121
  /**
118
- * The raw data of the message to be signed, encoded in Base64 format.
119
- * @member {String} message
122
+ * @member {module:model/TransactionStellarContractParam} contract_param
120
123
  */
121
- BTCEIP191MessageSignDestination.prototype['message'] = undefined;
122
- var _default = exports["default"] = BTCEIP191MessageSignDestination;
124
+ TransactionStellarDestination.prototype['contract_param'] = undefined;
125
+ var _default = exports["default"] = TransactionStellarDestination;
@@ -0,0 +1,56 @@
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 TransactionStellarTrustLineOperationType.
27
+ * @enum {}
28
+ * @readonly
29
+ */
30
+ var TransactionStellarTrustLineOperationType = exports["default"] = /*#__PURE__*/function () {
31
+ function TransactionStellarTrustLineOperationType() {
32
+ _classCallCheck(this, TransactionStellarTrustLineOperationType);
33
+ /**
34
+ * value: "ChangeTrust"
35
+ * @const
36
+ */
37
+ _defineProperty(this, "ChangeTrust", "ChangeTrust");
38
+ /**
39
+ * value: "unknown_default_open_api"
40
+ * @const
41
+ */
42
+ _defineProperty(this, "unknown_default_open_api", "unknown_default_open_api");
43
+ }
44
+ return _createClass(TransactionStellarTrustLineOperationType, null, [{
45
+ key: "constructFromObject",
46
+ value:
47
+ /**
48
+ * Returns a <code>TransactionStellarTrustLineOperationType</code> enum value from a Javascript object name.
49
+ * @param {Object} data The plain JavaScript object containing the name of the enum value.
50
+ * @return {module:model/TransactionStellarTrustLineOperationType} The enum <code>TransactionStellarTrustLineOperationType</code> value.
51
+ */
52
+ function constructFromObject(object) {
53
+ return object;
54
+ }
55
+ }]);
56
+ }();
@@ -0,0 +1,133 @@
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 _TransactionStellarContractType = _interopRequireDefault(require("./TransactionStellarContractType"));
9
+ var _TransactionStellarTrustLineOperationType = _interopRequireDefault(require("./TransactionStellarTrustLineOperationType"));
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 TransactionStellarTrustLineParam model module.
31
+ * @module model/TransactionStellarTrustLineParam
32
+ */
33
+ var TransactionStellarTrustLineParam = /*#__PURE__*/function () {
34
+ /**
35
+ * Constructs a new <code>TransactionStellarTrustLineParam</code>.
36
+ * Parameters related to Stellar trustline operations.
37
+ * @alias module:model/TransactionStellarTrustLineParam
38
+ * @param contract_type {module:model/TransactionStellarContractType}
39
+ * @param token_id {String} The token ID, which is the unique identifier of a token.
40
+ * @param operation_type {module:model/TransactionStellarTrustLineOperationType}
41
+ */
42
+ function TransactionStellarTrustLineParam(contract_type, token_id, operation_type) {
43
+ _classCallCheck(this, TransactionStellarTrustLineParam);
44
+ TransactionStellarTrustLineParam.initialize(this, contract_type, token_id, operation_type);
45
+ }
46
+
47
+ /**
48
+ * Initializes the fields of this object.
49
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
50
+ * Only for internal use.
51
+ */
52
+ return _createClass(TransactionStellarTrustLineParam, null, [{
53
+ key: "initialize",
54
+ value: function initialize(obj, contract_type, token_id, operation_type) {
55
+ obj['contract_type'] = contract_type;
56
+ obj['token_id'] = token_id;
57
+ obj['operation_type'] = operation_type;
58
+ }
59
+
60
+ /**
61
+ * Constructs a <code>TransactionStellarTrustLineParam</code> from a plain JavaScript object, optionally creating a new instance.
62
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
63
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
64
+ * @param {module:model/TransactionStellarTrustLineParam} obj Optional instance to populate.
65
+ * @return {module:model/TransactionStellarTrustLineParam} The populated <code>TransactionStellarTrustLineParam</code> instance.
66
+ */
67
+ }, {
68
+ key: "constructFromObject",
69
+ value: function constructFromObject(data, obj) {
70
+ if (data) {
71
+ obj = obj || new TransactionStellarTrustLineParam();
72
+ if (data.hasOwnProperty('contract_type')) {
73
+ obj['contract_type'] = _TransactionStellarContractType["default"].constructFromObject(data['contract_type']);
74
+ }
75
+ if (data.hasOwnProperty('token_id')) {
76
+ obj['token_id'] = _ApiClient["default"].convertToType(data['token_id'], 'String');
77
+ }
78
+ if (data.hasOwnProperty('operation_type')) {
79
+ obj['operation_type'] = _TransactionStellarTrustLineOperationType["default"].constructFromObject(data['operation_type']);
80
+ }
81
+ }
82
+ return obj;
83
+ }
84
+
85
+ /**
86
+ * Validates the JSON data with respect to <code>TransactionStellarTrustLineParam</code>.
87
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
88
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>TransactionStellarTrustLineParam</code>.
89
+ */
90
+ }, {
91
+ key: "validateJSON",
92
+ value: function validateJSON(data) {
93
+ // check to make sure all required properties are present in the JSON string
94
+ var _iterator = _createForOfIteratorHelper(TransactionStellarTrustLineParam.RequiredProperties),
95
+ _step;
96
+ try {
97
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
98
+ var property = _step.value;
99
+ if (!data.hasOwnProperty(property)) {
100
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
101
+ }
102
+ }
103
+ // ensure the json data is a string
104
+ } catch (err) {
105
+ _iterator.e(err);
106
+ } finally {
107
+ _iterator.f();
108
+ }
109
+ if (data['token_id'] && !(typeof data['token_id'] === 'string' || data['token_id'] instanceof String)) {
110
+ throw new Error("Expected the field `token_id` to be a primitive type in the JSON string but got " + data['token_id']);
111
+ }
112
+ return true;
113
+ }
114
+ }]);
115
+ }();
116
+ TransactionStellarTrustLineParam.RequiredProperties = ["contract_type", "token_id", "operation_type"];
117
+
118
+ /**
119
+ * @member {module:model/TransactionStellarContractType} contract_type
120
+ */
121
+ TransactionStellarTrustLineParam.prototype['contract_type'] = undefined;
122
+
123
+ /**
124
+ * The token ID, which is the unique identifier of a token.
125
+ * @member {String} token_id
126
+ */
127
+ TransactionStellarTrustLineParam.prototype['token_id'] = undefined;
128
+
129
+ /**
130
+ * @member {module:model/TransactionStellarTrustLineOperationType} operation_type
131
+ */
132
+ TransactionStellarTrustLineParam.prototype['operation_type'] = undefined;
133
+ var _default = exports["default"] = TransactionStellarTrustLineParam;
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionUtxoFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionUtxoFee</code>.
36
- * The transaction fee actually charged by the chain that uses the UTXO fee model, such as Bitcoin. The transaction fee is calculated by multiplying the fee rate by the transaction size. This can be expressed as: Transaction fee &#x3D; fee rate * transaction size. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The transaction fee actually charged by the chain that uses the UTXO fee model, such as Bitcoin. For more information about the UTXO fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionUtxoFee
38
38
  * @implements module:model/UtxoFeeBasePrice
39
39
  * @param fee_type {module:model/FeeType}
@@ -48,7 +48,7 @@ var TransactionWebhookEventData = /*#__PURE__*/function () {
48
48
  * @alias module:model/TransactionWebhookEventData
49
49
  * @implements module:model/WebhookEventDataType
50
50
  * @implements module:model/Transaction
51
- * @param data_type {module:model/TransactionWebhookEventData.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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data.
51
+ * @param data_type {module:model/TransactionWebhookEventData.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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data.
52
52
  * @param transaction_id {String} The transaction ID.
53
53
  * @param wallet_id {String} For deposit transactions, this property represents the wallet ID of the transaction destination. For transactions of other types, this property represents the wallet ID of the transaction source.
54
54
  * @param status {module:model/TransactionStatus}
@@ -344,7 +344,7 @@ var TransactionWebhookEventData = /*#__PURE__*/function () {
344
344
  TransactionWebhookEventData.RequiredProperties = ["data_type", "transaction_id", "wallet_id", "status", "source", "destination", "initiator_type", "created_timestamp", "updated_timestamp"];
345
345
 
346
346
  /**
347
- * 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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data.
347
+ * 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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data.
348
348
  * @member {module:model/TransactionWebhookEventData.DataTypeEnum} data_type
349
349
  */
350
350
  TransactionWebhookEventData.prototype['data_type'] = undefined;
@@ -525,7 +525,7 @@ TransactionWebhookEventData.prototype['updated_timestamp'] = undefined;
525
525
 
526
526
  // Implement WebhookEventDataType interface:
527
527
  /**
528
- * 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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data.
528
+ * 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. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data.
529
529
  * @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
530
530
  */
531
531
  _WebhookEventDataType["default"].prototype['data_type'] = undefined;
@@ -755,6 +755,11 @@ TransactionWebhookEventData['DataTypeEnum'] = {
755
755
  * @const
756
756
  */
757
757
  "SuspendedToken": "SuspendedToken",
758
+ /**
759
+ * value: "ComplianceDisposition"
760
+ * @const
761
+ */
762
+ "ComplianceDisposition": "ComplianceDisposition",
758
763
  /**
759
764
  * value: "unknown_default_open_api"
760
765
  * @const