@cobo/cobo-waas2 1.9.0 → 1.11.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 (148) hide show
  1. package/README.md +47 -4
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AddressBooksApi.js +1 -1
  4. package/dist/api/DevelopersApi.js +7 -7
  5. package/dist/api/DevelopersWebhooksApi.js +8 -8
  6. package/dist/api/StakingsApi.js +412 -18
  7. package/dist/api/SwapsApi.js +360 -0
  8. package/dist/api/TransactionsApi.js +18 -18
  9. package/dist/api/TravelRuleApi.js +4 -4
  10. package/dist/api/WalletsApi.js +19 -19
  11. package/dist/api/WalletsExchangeWalletApi.js +1 -1
  12. package/dist/api/WalletsMPCWalletsApi.js +19 -19
  13. package/dist/api/WalletsSmartContractWalletsApi.js +1 -1
  14. package/dist/index.js +213 -3
  15. package/dist/model/AddressesEventData.js +4 -4
  16. package/dist/model/AddressesEventDataAllOfAddresses.js +295 -0
  17. package/dist/model/BTCEIP191MessageSignDestination.js +1 -1
  18. package/dist/model/BabylonAirdropPop.js +186 -0
  19. package/dist/model/BabylonAirdropRegistration.js +172 -0
  20. package/dist/model/BabylonEligibleAirdrop.js +157 -0
  21. package/dist/model/BabylonRegistrationRequestStatus.js +66 -0
  22. package/dist/model/BabylonRegistrationStatus.js +66 -0
  23. package/dist/model/BabylonStakingRegistration.js +185 -0
  24. package/dist/model/ChainInfo.js +2 -2
  25. package/dist/model/ContractCallDestination.js +42 -8
  26. package/dist/model/ContractCallDestinationType.js +5 -0
  27. package/dist/model/ContractCallSource.js +6 -0
  28. package/dist/model/CreateBabylonAirdropRegistration201Response.js +87 -0
  29. package/dist/model/CreateBabylonAirdropRegistrationRequest.js +105 -0
  30. package/dist/model/CreateBabylonStakingRegistration201Response.js +87 -0
  31. package/dist/model/CreateBabylonStakingRegistrationRequest.js +103 -0
  32. package/dist/model/CreateSwapActivityRequest.js +153 -0
  33. package/dist/model/CreateSwapQuote201Response.js +264 -0
  34. package/dist/model/CreateSwapQuoteRequest.js +166 -0
  35. package/dist/model/EstimatedEvmEip1559FeeSlow.js +23 -0
  36. package/dist/model/EstimatedEvmLegacyFeeSlow.js +23 -0
  37. package/dist/model/ExtendedTokenInfo.js +3 -3
  38. package/dist/model/FeeReserved.js +87 -0
  39. package/dist/model/ListBabylonAirdropRegistrations200Response.js +123 -0
  40. package/dist/model/ListBabylonEligibleAirdrops200Response.js +123 -0
  41. package/dist/model/ListBabylonEligibleStakings200Response.js +123 -0
  42. package/dist/model/ListBabylonEligibleStakings200ResponseDataInner.js +141 -0
  43. package/dist/model/ListBabylonStakingRegistrations200Response.js +123 -0
  44. package/dist/model/{SwapSummary.js → ListEnableTokenPairs200Response.js} +51 -49
  45. package/dist/model/ListSwapActivities200Response.js +123 -0
  46. package/dist/model/MaxFeeAmount.js +1 -1
  47. package/dist/model/MessageSignSource.js +6 -0
  48. package/dist/model/MpcContractCallSource.js +16 -0
  49. package/dist/model/MpcMessageSignSource.js +16 -0
  50. package/dist/model/MpcSigningGroup.js +27 -4
  51. package/dist/model/MpcTransferSource.js +16 -0
  52. package/dist/model/QueryGuardPubkey200ResponseAddressesInner.js +2 -2
  53. package/dist/model/SolContractCallAccount.js +133 -0
  54. package/dist/model/SolContractCallDestination.js +139 -0
  55. package/dist/model/SolContractCallInstruction.js +158 -0
  56. package/dist/model/StakingPoolId.js +30 -0
  57. package/dist/model/StakingPoolType.js +15 -0
  58. package/dist/model/SwapQuote.js +203 -0
  59. package/dist/model/TokenInfo.js +2 -2
  60. package/dist/model/TransactionDestination.js +45 -11
  61. package/dist/model/TransactionDestinationType.js +5 -0
  62. package/dist/model/TransactionFee.js +1 -1
  63. package/dist/model/TransactionFixedFee.js +2 -2
  64. package/dist/model/TransactionRawTxInfo.js +16 -0
  65. package/dist/model/TransactionRbfSource.js +6 -0
  66. package/dist/model/TransactionRequestFee.js +1 -1
  67. package/dist/model/TransactionRequestFixedFee.js +2 -2
  68. package/dist/model/TransactionRequestUtxoFee.js +1 -1
  69. package/dist/model/TransactionSolContractAccount.js +106 -0
  70. package/dist/model/TransactionSolContractDestination.js +137 -0
  71. package/dist/model/TransactionSolContractInstruction.js +134 -0
  72. package/dist/model/TransactionTokeApproval.js +3 -3
  73. package/dist/model/TransactionUtxoChange.js +101 -0
  74. package/dist/model/TransferSource.js +6 -0
  75. package/dist/model/WebhookEventData.js +2 -2
  76. package/docs/AddressBooksApi.md +1 -1
  77. package/docs/AddressesEventData.md +1 -1
  78. package/docs/AddressesEventDataAllOfAddresses.md +19 -0
  79. package/docs/BabylonAirdropPop.md +14 -0
  80. package/docs/BabylonAirdropRegistration.md +16 -0
  81. package/docs/BabylonEligibleAirdrop.md +14 -0
  82. package/docs/BabylonRegistrationRequestStatus.md +14 -0
  83. package/docs/BabylonRegistrationStatus.md +14 -0
  84. package/docs/BabylonStakingRegistration.md +17 -0
  85. package/docs/ChainInfo.md +1 -1
  86. package/docs/ContractCallDestination.md +1 -0
  87. package/docs/ContractCallDestinationType.md +2 -0
  88. package/docs/ContractCallSource.md +1 -0
  89. package/docs/CreateBabylonAirdropRegistration201Response.md +9 -0
  90. package/docs/CreateBabylonAirdropRegistrationRequest.md +10 -0
  91. package/docs/CreateBabylonStakingRegistration201Response.md +9 -0
  92. package/docs/CreateBabylonStakingRegistrationRequest.md +10 -0
  93. package/docs/CreateSwapActivityRequest.md +12 -0
  94. package/docs/CreateSwapQuote201Response.md +17 -0
  95. package/docs/CreateSwapQuoteRequest.md +13 -0
  96. package/docs/DevelopersApi.md +5 -5
  97. package/docs/DevelopersWebhooksApi.md +8 -8
  98. package/docs/EstimatedEvmEip1559FeeSlow.md +1 -0
  99. package/docs/EstimatedEvmLegacyFeeSlow.md +1 -0
  100. package/docs/ExtendedTokenInfo.md +1 -1
  101. package/docs/FeeReserved.md +9 -0
  102. package/docs/ListBabylonAirdropRegistrations200Response.md +10 -0
  103. package/docs/ListBabylonEligibleAirdrops200Response.md +10 -0
  104. package/docs/ListBabylonEligibleStakings200Response.md +10 -0
  105. package/docs/ListBabylonEligibleStakings200ResponseDataInner.md +13 -0
  106. package/docs/ListBabylonStakingRegistrations200Response.md +10 -0
  107. package/docs/ListEnableTokenPairs200Response.md +10 -0
  108. package/docs/ListSwapActivities200Response.md +10 -0
  109. package/docs/MaxFeeAmount.md +1 -1
  110. package/docs/MessageSignSource.md +1 -0
  111. package/docs/MpcContractCallSource.md +1 -0
  112. package/docs/MpcMessageSignSource.md +1 -0
  113. package/docs/MpcSigningGroup.md +1 -1
  114. package/docs/MpcTransferSource.md +1 -0
  115. package/docs/QueryGuardPubkey200ResponseAddressesInner.md +1 -1
  116. package/docs/SolContractCallAccount.md +11 -0
  117. package/docs/SolContractCallDestination.md +10 -0
  118. package/docs/SolContractCallInstruction.md +11 -0
  119. package/docs/StakingPoolId.md +12 -0
  120. package/docs/StakingPoolType.md +6 -0
  121. package/docs/StakingsApi.md +461 -13
  122. package/docs/SwapQuote.md +16 -0
  123. package/docs/SwapsApi.md +348 -0
  124. package/docs/TokenInfo.md +1 -1
  125. package/docs/TransactionDestination.md +1 -0
  126. package/docs/TransactionDestinationType.md +2 -0
  127. package/docs/TransactionFee.md +1 -1
  128. package/docs/TransactionFixedFee.md +1 -1
  129. package/docs/TransactionRawTxInfo.md +1 -0
  130. package/docs/TransactionRbfSource.md +1 -0
  131. package/docs/TransactionRequestFee.md +1 -1
  132. package/docs/TransactionRequestFixedFee.md +1 -1
  133. package/docs/TransactionRequestUtxoFee.md +1 -1
  134. package/docs/TransactionSolContractAccount.md +11 -0
  135. package/docs/TransactionSolContractDestination.md +10 -0
  136. package/docs/TransactionSolContractInstruction.md +11 -0
  137. package/docs/TransactionTokeApproval.md +1 -1
  138. package/docs/TransactionUtxoChange.md +10 -0
  139. package/docs/TransactionsApi.md +16 -16
  140. package/docs/TransferSource.md +1 -0
  141. package/docs/TravelRuleApi.md +4 -4
  142. package/docs/WalletsApi.md +16 -16
  143. package/docs/WalletsExchangeWalletApi.md +1 -1
  144. package/docs/WalletsMPCWalletsApi.md +19 -19
  145. package/docs/WalletsSmartContractWalletsApi.md +1 -1
  146. package/docs/WebhookEventData.md +1 -1
  147. package/package.json +2 -2
  148. package/docs/SwapSummary.md +0 -10
@@ -242,7 +242,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
242
242
  var queryParams = {};
243
243
  var headerParams = {};
244
244
  var formParams = {};
245
- var authNames = ['OAuth2'];
245
+ var authNames = ['OAuth2', 'CoboAuth'];
246
246
  var contentTypes = ['application/json'];
247
247
  var accepts = ['application/json'];
248
248
  var returnType = [_AddressInfo["default"]];
@@ -284,7 +284,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
284
284
  var queryParams = {};
285
285
  var headerParams = {};
286
286
  var formParams = {};
287
- var authNames = ['OAuth2'];
287
+ var authNames = ['OAuth2', 'CoboAuth'];
288
288
  var contentTypes = ['application/json'];
289
289
  var accepts = ['application/json'];
290
290
  var returnType = _CreatedWalletInfo["default"];
@@ -329,7 +329,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
329
329
  var queryParams = {};
330
330
  var headerParams = {};
331
331
  var formParams = {};
332
- var authNames = ['OAuth2'];
332
+ var authNames = ['OAuth2', 'CoboAuth'];
333
333
  var contentTypes = [];
334
334
  var accepts = ['application/json'];
335
335
  var returnType = _DeleteWalletById201Response["default"];
@@ -353,7 +353,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
353
353
  /**
354
354
  * Get chain information
355
355
  * This operation retrieves the detailed information about a specified chain.
356
- * @param {String} chain_id The chain ID, which is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
356
+ * @param {String} chain_id The chain ID, which is the unique identifier of a blockchain.
357
357
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ChainInfo} and HTTP response
358
358
  */
359
359
  }, {
@@ -383,7 +383,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
383
383
  /**
384
384
  * Get chain information
385
385
  * This operation retrieves the detailed information about a specified chain.
386
- * @param {String} chain_id The chain ID, which is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
386
+ * @param {String} chain_id The chain ID, which is the unique identifier of a blockchain.
387
387
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ChainInfo}
388
388
  */
389
389
  }, {
@@ -440,7 +440,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
440
440
  };
441
441
  var headerParams = {};
442
442
  var formParams = {};
443
- var authNames = ['OAuth2'];
443
+ var authNames = ['OAuth2', 'CoboAuth'];
444
444
  var contentTypes = [];
445
445
  var accepts = ['application/json'];
446
446
  var returnType = _MaxTransferableValue["default"];
@@ -469,7 +469,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
469
469
  /**
470
470
  * Get token information
471
471
  * This operation retrieves the detailed information about a specified token.
472
- * @param {String} token_id The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
472
+ * @param {String} token_id The token ID, which is the unique identifier of a token.
473
473
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ExtendedTokenInfo} and HTTP response
474
474
  */
475
475
  }, {
@@ -499,7 +499,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
499
499
  /**
500
500
  * Get token information
501
501
  * This operation retrieves the detailed information about a specified token.
502
- * @param {String} token_id The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
502
+ * @param {String} token_id The token ID, which is the unique identifier of a token.
503
503
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ExtendedTokenInfo}
504
504
  */
505
505
  }, {
@@ -533,7 +533,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
533
533
  var queryParams = {};
534
534
  var headerParams = {};
535
535
  var formParams = {};
536
- var authNames = ['OAuth2'];
536
+ var authNames = ['OAuth2', 'CoboAuth'];
537
537
  var contentTypes = [];
538
538
  var accepts = ['application/json'];
539
539
  var returnType = _WalletInfo["default"];
@@ -558,7 +558,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
558
558
  * List address balances by token
559
559
  * This operation retrieves a list of address balances for a specified token within a wallet. <Note>This operation is applicable to MPC Wallets only.</Note>
560
560
  * @param {String} wallet_id The wallet ID.
561
- * @param {String} token_id The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
561
+ * @param {String} token_id The token ID, which is the unique identifier of a token.
562
562
  * @param {Object} opts Optional parameters
563
563
  * @param {String} [addresses] A list of wallet addresses, separated by comma. For addresses requiring a memo, append the memo after the address using the '|' separator (e.g., \"address|memo\").
564
564
  * @param {Number} [limit = 10)] The maximum number of objects to return. For most operations, the value range is [1, 50].
@@ -594,7 +594,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
594
594
  };
595
595
  var headerParams = {};
596
596
  var formParams = {};
597
- var authNames = ['OAuth2'];
597
+ var authNames = ['OAuth2', 'CoboAuth'];
598
598
  var contentTypes = [];
599
599
  var accepts = ['application/json'];
600
600
  var returnType = _ListAddressBalancesByToken200Response["default"];
@@ -605,7 +605,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
605
605
  * List address balances by token
606
606
  * This operation retrieves a list of address balances for a specified token within a wallet. <Note>This operation is applicable to MPC Wallets only.</Note>
607
607
  * @param {String} wallet_id The wallet ID.
608
- * @param {String} token_id The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens).
608
+ * @param {String} token_id The token ID, which is the unique identifier of a token.
609
609
  * @param {Object} opts Optional parameters
610
610
  * @param {String} opts.addresses A list of wallet addresses, separated by comma. For addresses requiring a memo, append the memo after the address using the '|' separator (e.g., \"address|memo\").
611
611
  * @param {Number} opts.limit The maximum number of objects to return. For most operations, the value range is [1, 50]. (default to 10)
@@ -657,7 +657,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
657
657
  };
658
658
  var headerParams = {};
659
659
  var formParams = {};
660
- var authNames = ['OAuth2'];
660
+ var authNames = ['OAuth2', 'CoboAuth'];
661
661
  var contentTypes = [];
662
662
  var accepts = ['application/json'];
663
663
  var returnType = _ListAddresses200Response["default"];
@@ -956,7 +956,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
956
956
  };
957
957
  var headerParams = {};
958
958
  var formParams = {};
959
- var authNames = ['OAuth2'];
959
+ var authNames = ['OAuth2', 'CoboAuth'];
960
960
  var contentTypes = [];
961
961
  var accepts = ['application/json'];
962
962
  var returnType = _ListTokenBalancesForAddress200Response["default"];
@@ -1017,7 +1017,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
1017
1017
  };
1018
1018
  var headerParams = {};
1019
1019
  var formParams = {};
1020
- var authNames = ['OAuth2'];
1020
+ var authNames = ['OAuth2', 'CoboAuth'];
1021
1021
  var contentTypes = [];
1022
1022
  var accepts = ['application/json'];
1023
1023
  var returnType = _ListTokenBalancesForAddress200Response["default"];
@@ -1085,7 +1085,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
1085
1085
  };
1086
1086
  var headerParams = {};
1087
1087
  var formParams = {};
1088
- var authNames = ['OAuth2'];
1088
+ var authNames = ['OAuth2', 'CoboAuth'];
1089
1089
  var contentTypes = [];
1090
1090
  var accepts = ['application/json'];
1091
1091
  var returnType = _ListUtxos200Response["default"];
@@ -1146,7 +1146,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
1146
1146
  };
1147
1147
  var headerParams = {};
1148
1148
  var formParams = {};
1149
- var authNames = ['OAuth2'];
1149
+ var authNames = ['OAuth2', 'CoboAuth'];
1150
1150
  var contentTypes = [];
1151
1151
  var accepts = ['application/json'];
1152
1152
  var returnType = _ListWallets200Response["default"];
@@ -1200,7 +1200,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
1200
1200
  var queryParams = {};
1201
1201
  var headerParams = {};
1202
1202
  var formParams = {};
1203
- var authNames = ['OAuth2'];
1203
+ var authNames = ['OAuth2', 'CoboAuth'];
1204
1204
  var contentTypes = ['application/json'];
1205
1205
  var accepts = ['application/json'];
1206
1206
  var returnType = _LockUtxos201Response["default"];
@@ -1249,7 +1249,7 @@ var WalletsApi = exports["default"] = /*#__PURE__*/function () {
1249
1249
  var queryParams = {};
1250
1250
  var headerParams = {};
1251
1251
  var formParams = {};
1252
- var authNames = ['OAuth2'];
1252
+ var authNames = ['OAuth2', 'CoboAuth'];
1253
1253
  var contentTypes = ['application/json'];
1254
1254
  var accepts = ['application/json'];
1255
1255
  var returnType = _LockUtxos201Response["default"];
@@ -80,7 +80,7 @@ var WalletsExchangeWalletApi = exports["default"] = /*#__PURE__*/function () {
80
80
  };
81
81
  var headerParams = {};
82
82
  var formParams = {};
83
- var authNames = ['OAuth2'];
83
+ var authNames = ['OAuth2', 'CoboAuth'];
84
84
  var contentTypes = [];
85
85
  var accepts = ['application/json'];
86
86
  var returnType = _ListAssetBalancesForExchangeWallet200Response["default"];
@@ -88,7 +88,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
88
88
  var queryParams = {};
89
89
  var headerParams = {};
90
90
  var formParams = {};
91
- var authNames = ['OAuth2'];
91
+ var authNames = ['OAuth2', 'CoboAuth'];
92
92
  var contentTypes = [];
93
93
  var accepts = ['application/json'];
94
94
  var returnType = _TSSRequest["default"];
@@ -136,7 +136,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
136
136
  var queryParams = {};
137
137
  var headerParams = {};
138
138
  var formParams = {};
139
- var authNames = ['OAuth2'];
139
+ var authNames = ['OAuth2', 'CoboAuth'];
140
140
  var contentTypes = ['application/json'];
141
141
  var accepts = ['application/json'];
142
142
  var returnType = _KeyShareHolderGroup["default"];
@@ -178,7 +178,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
178
178
  var queryParams = {};
179
179
  var headerParams = {};
180
180
  var formParams = {};
181
- var authNames = ['OAuth2'];
181
+ var authNames = ['OAuth2', 'CoboAuth'];
182
182
  var contentTypes = ['application/json'];
183
183
  var accepts = ['application/json'];
184
184
  var returnType = _MPCProject["default"];
@@ -219,7 +219,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
219
219
  var queryParams = {};
220
220
  var headerParams = {};
221
221
  var formParams = {};
222
- var authNames = ['OAuth2'];
222
+ var authNames = ['OAuth2', 'CoboAuth'];
223
223
  var contentTypes = ['application/json'];
224
224
  var accepts = ['application/json'];
225
225
  var returnType = _MPCVault["default"];
@@ -267,7 +267,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
267
267
  var queryParams = {};
268
268
  var headerParams = {};
269
269
  var formParams = {};
270
- var authNames = ['OAuth2'];
270
+ var authNames = ['OAuth2', 'CoboAuth'];
271
271
  var contentTypes = ['application/json'];
272
272
  var accepts = ['application/json'];
273
273
  var returnType = _TSSRequest["default"];
@@ -319,7 +319,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
319
319
  var queryParams = {};
320
320
  var headerParams = {};
321
321
  var formParams = {};
322
- var authNames = ['OAuth2'];
322
+ var authNames = ['OAuth2', 'CoboAuth'];
323
323
  var contentTypes = [];
324
324
  var accepts = ['application/json'];
325
325
  var returnType = _DeleteKeyShareHolderGroupById201Response["default"];
@@ -370,7 +370,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
370
370
  var queryParams = {};
371
371
  var headerParams = {};
372
372
  var formParams = {};
373
- var authNames = ['CoboAuth'];
373
+ var authNames = ['OAuth2', 'CoboAuth'];
374
374
  var contentTypes = [];
375
375
  var accepts = ['application/json'];
376
376
  var returnType = _KeyShareHolder["default"];
@@ -421,7 +421,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
421
421
  var queryParams = {};
422
422
  var headerParams = {};
423
423
  var formParams = {};
424
- var authNames = ['OAuth2'];
424
+ var authNames = ['OAuth2', 'CoboAuth'];
425
425
  var contentTypes = [];
426
426
  var accepts = ['application/json'];
427
427
  var returnType = _KeyShareHolderGroup["default"];
@@ -466,7 +466,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
466
466
  var queryParams = {};
467
467
  var headerParams = {};
468
468
  var formParams = {};
469
- var authNames = ['OAuth2'];
469
+ var authNames = ['OAuth2', 'CoboAuth'];
470
470
  var contentTypes = [];
471
471
  var accepts = ['application/json'];
472
472
  var returnType = _MPCProject["default"];
@@ -510,7 +510,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
510
510
  var queryParams = {};
511
511
  var headerParams = {};
512
512
  var formParams = {};
513
- var authNames = ['OAuth2'];
513
+ var authNames = ['OAuth2', 'CoboAuth'];
514
514
  var contentTypes = [];
515
515
  var accepts = ['application/json'];
516
516
  var returnType = _MPCVault["default"];
@@ -560,7 +560,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
560
560
  var queryParams = {};
561
561
  var headerParams = {};
562
562
  var formParams = {};
563
- var authNames = ['OAuth2'];
563
+ var authNames = ['OAuth2', 'CoboAuth'];
564
564
  var contentTypes = [];
565
565
  var accepts = ['application/json'];
566
566
  var returnType = _TSSRequest["default"];
@@ -652,7 +652,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
652
652
  };
653
653
  var headerParams = {};
654
654
  var formParams = {};
655
- var authNames = ['OAuth2'];
655
+ var authNames = ['OAuth2', 'CoboAuth'];
656
656
  var contentTypes = [];
657
657
  var accepts = ['application/json'];
658
658
  var returnType = _ListKeyShareHolderGroups200Response["default"];
@@ -712,7 +712,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
712
712
  };
713
713
  var headerParams = {};
714
714
  var formParams = {};
715
- var authNames = ['CoboAuth'];
715
+ var authNames = ['OAuth2', 'CoboAuth'];
716
716
  var contentTypes = [];
717
717
  var accepts = ['application/json'];
718
718
  var returnType = _ListKeyShareHolders200Response["default"];
@@ -763,7 +763,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
763
763
  };
764
764
  var headerParams = {};
765
765
  var formParams = {};
766
- var authNames = ['OAuth2'];
766
+ var authNames = ['OAuth2', 'CoboAuth'];
767
767
  var contentTypes = [];
768
768
  var accepts = ['application/json'];
769
769
  var returnType = _ListMpcProjects200Response["default"];
@@ -820,7 +820,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
820
820
  };
821
821
  var headerParams = {};
822
822
  var formParams = {};
823
- var authNames = ['OAuth2'];
823
+ var authNames = ['OAuth2', 'CoboAuth'];
824
824
  var contentTypes = [];
825
825
  var accepts = ['application/json'];
826
826
  var returnType = _ListMpcVaults200Response["default"];
@@ -884,7 +884,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
884
884
  };
885
885
  var headerParams = {};
886
886
  var formParams = {};
887
- var authNames = ['OAuth2'];
887
+ var authNames = ['OAuth2', 'CoboAuth'];
888
888
  var contentTypes = [];
889
889
  var accepts = ['application/json'];
890
890
  var returnType = _ListTssRequests200Response["default"];
@@ -942,7 +942,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
942
942
  var queryParams = {};
943
943
  var headerParams = {};
944
944
  var formParams = {};
945
- var authNames = ['OAuth2'];
945
+ var authNames = ['OAuth2', 'CoboAuth'];
946
946
  var contentTypes = ['application/json'];
947
947
  var accepts = ['application/json'];
948
948
  var returnType = _KeyShareHolderGroup["default"];
@@ -992,7 +992,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
992
992
  var queryParams = {};
993
993
  var headerParams = {};
994
994
  var formParams = {};
995
- var authNames = ['OAuth2'];
995
+ var authNames = ['OAuth2', 'CoboAuth'];
996
996
  var contentTypes = ['application/json'];
997
997
  var accepts = ['application/json'];
998
998
  var returnType = _MPCProject["default"];
@@ -1041,7 +1041,7 @@ var WalletsMPCWalletsApi = exports["default"] = /*#__PURE__*/function () {
1041
1041
  var queryParams = {};
1042
1042
  var headerParams = {};
1043
1043
  var formParams = {};
1044
- var authNames = ['OAuth2'];
1044
+ var authNames = ['OAuth2', 'CoboAuth'];
1045
1045
  var contentTypes = ['application/json'];
1046
1046
  var accepts = ['application/json'];
1047
1047
  var returnType = _MPCVault["default"];
@@ -67,7 +67,7 @@ var WalletsSmartContractWalletsApi = exports["default"] = /*#__PURE__*/function
67
67
  var queryParams = {};
68
68
  var headerParams = {};
69
69
  var formParams = {};
70
- var authNames = ['OAuth2'];
70
+ var authNames = ['OAuth2', 'CoboAuth'];
71
71
  var contentTypes = ['application/json'];
72
72
  var accepts = ['application/json'];
73
73
  var returnType = [_CoboSafeDelegate["default"]];