From f0ffad0003adda21ce2daff229b9c40a5468b9e0 Mon Sep 17 00:00:00 2001 From: SCFireblocks Date: Wed, 8 Nov 2023 17:23:31 +0000 Subject: [PATCH] Generated SDK for version master --- api/audit-logs-api.ts | 2 +- api/blockchains-assets-api.ts | 2 +- api/contracts-api.ts | 14 ++--- api/exchange-accounts-api.ts | 10 ++-- api/external-wallets-api.ts | 16 +++--- api/fiat-accounts-api.ts | 8 +-- api/gas-stations-api.ts | 8 +-- api/internal-wallets-api.ts | 16 +++--- api/network-connections-api.ts | 26 ++++----- api/nfts-api.ts | 14 ++--- api/off-exchanges-api.ts | 10 ++-- api/otabeta-api.ts | 4 +- api/payments-cross-border-settlement-api.ts | 16 +++--- api/payments-payout-api.ts | 6 +-- api/policy-editor-beta-api.ts | 10 ++-- api/transactions-api.ts | 26 ++++----- api/travel-rule-beta-api.ts | 10 ++-- api/users-api.ts | 2 +- api/users-groups-beta-api.ts | 10 ++-- api/vaults-api.ts | 50 ++++++++--------- api/web3-connections-api.ts | 8 +-- api/webhooks-api.ts | 4 +- package-lock.json | 60 ++++++++++----------- 23 files changed, 166 insertions(+), 166 deletions(-) diff --git a/api/audit-logs-api.ts b/api/audit-logs-api.ts index 1da3d0d..e92d66e 100644 --- a/api/audit-logs-api.ts +++ b/api/audit-logs-api.ts @@ -92,7 +92,7 @@ export const AuditLogsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getAudits(timePeriod: 'DAY' | 'WEEK', requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getAudits(timePeriod: 'DAY' | 'WEEK', requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getAudits(timePeriod, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/blockchains-assets-api.ts b/api/blockchains-assets-api.ts index 23403a9..3680fad 100644 --- a/api/blockchains-assets-api.ts +++ b/api/blockchains-assets-api.ts @@ -86,7 +86,7 @@ export const BlockchainsAssetsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getSupportedAssets( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getSupportedAssets( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getSupportedAssets(requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/contracts-api.ts b/api/contracts-api.ts index 779516a..742b476 100644 --- a/api/contracts-api.ts +++ b/api/contracts-api.ts @@ -327,7 +327,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async addAssetToContract(contractId: string, assetId: string, addAssetToContractRequest?: AddAssetToContractRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async addAssetToContract(contractId: string, assetId: string, addAssetToContractRequest?: AddAssetToContractRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.addAssetToContract(contractId, assetId, addAssetToContractRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -338,7 +338,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createContract(createContractRequest?: CreateContractRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createContract(createContractRequest?: CreateContractRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createContract(createContractRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -349,7 +349,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteContract(contractId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteContract(contractId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteContract(contractId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -361,7 +361,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getAssetInContract(contractId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getAssetInContract(contractId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetInContract(contractId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -372,7 +372,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getContractById(contractId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getContractById(contractId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getContractById(contractId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -382,7 +382,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getContracts( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getContracts( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getContracts(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -394,7 +394,7 @@ export const ContractsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async removeAssetFromContract(contractId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async removeAssetFromContract(contractId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.removeAssetFromContract(contractId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/exchange-accounts-api.ts b/api/exchange-accounts-api.ts index 0e1d982..2c40c8e 100644 --- a/api/exchange-accounts-api.ts +++ b/api/exchange-accounts-api.ts @@ -250,7 +250,7 @@ export const ExchangeAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async convertAssets(exchangeAccountId: string, convertAssetsRequest?: ConvertAssetsRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async convertAssets(exchangeAccountId: string, convertAssetsRequest?: ConvertAssetsRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.convertAssets(exchangeAccountId, convertAssetsRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -262,7 +262,7 @@ export const ExchangeAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getExchangeAccountAsset(exchangeAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getExchangeAccountAsset(exchangeAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getExchangeAccountAsset(exchangeAccountId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -273,7 +273,7 @@ export const ExchangeAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getExchangeAccountById(exchangeAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getExchangeAccountById(exchangeAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getExchangeAccountById(exchangeAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -283,7 +283,7 @@ export const ExchangeAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getExchangeAccounts( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getExchangeAccounts( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getExchangeAccounts(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -295,7 +295,7 @@ export const ExchangeAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async internalTransfer(exchangeAccountId: string, createInternalTransferRequest?: CreateInternalTransferRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async internalTransfer(exchangeAccountId: string, createInternalTransferRequest?: CreateInternalTransferRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.internalTransfer(exchangeAccountId, createInternalTransferRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/external-wallets-api.ts b/api/external-wallets-api.ts index a29b94b..27b2c4a 100644 --- a/api/external-wallets-api.ts +++ b/api/external-wallets-api.ts @@ -371,7 +371,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async addAssetToExternalWallet(walletId: string, assetId: string, addAssetToExternalWalletRequest?: AddAssetToExternalWalletRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async addAssetToExternalWallet(walletId: string, assetId: string, addAssetToExternalWalletRequest?: AddAssetToExternalWalletRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.addAssetToExternalWallet(walletId, assetId, addAssetToExternalWalletRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -382,7 +382,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createExternalWallet(createInternalWalletRequest?: CreateInternalWalletRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createExternalWallet(createInternalWalletRequest?: CreateInternalWalletRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createExternalWallet(createInternalWalletRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -393,7 +393,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteExternalWallet(walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteExternalWallet(walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExternalWallet(walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -405,7 +405,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getAssetInExternalWallet(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getAssetInExternalWallet(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetInExternalWallet(walletId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -416,7 +416,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getExternalWalletById(walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getExternalWalletById(walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getExternalWalletById(walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -426,7 +426,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getExternalWallets( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getExternalWallets( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getExternalWallets(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -438,7 +438,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async removeAssetFromExternalWallet(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async removeAssetFromExternalWallet(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.removeAssetFromExternalWallet(walletId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -450,7 +450,7 @@ export const ExternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setCustomerRefIdForExternalWallet(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setCustomerRefIdForExternalWallet(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setCustomerRefIdForExternalWallet(setCustomerRefIdForVaultAccountRequest, walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/fiat-accounts-api.ts b/api/fiat-accounts-api.ts index 4372c54..1d79fbb 100644 --- a/api/fiat-accounts-api.ts +++ b/api/fiat-accounts-api.ts @@ -206,7 +206,7 @@ export const FiatAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async depositFundsFromLinkedDDA(accountId: string, redeemFundsToLinkedDDARequest?: RedeemFundsToLinkedDDARequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async depositFundsFromLinkedDDA(accountId: string, redeemFundsToLinkedDDARequest?: RedeemFundsToLinkedDDARequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.depositFundsFromLinkedDDA(accountId, redeemFundsToLinkedDDARequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -217,7 +217,7 @@ export const FiatAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getFiatAccountById(accountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getFiatAccountById(accountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getFiatAccountById(accountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -227,7 +227,7 @@ export const FiatAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getFiatAccounts( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getFiatAccounts( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getFiatAccounts(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -239,7 +239,7 @@ export const FiatAccountsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async redeemFundsToLinkedDDA(accountId: string, redeemFundsToLinkedDDARequest?: RedeemFundsToLinkedDDARequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async redeemFundsToLinkedDDA(accountId: string, redeemFundsToLinkedDDARequest?: RedeemFundsToLinkedDDARequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.redeemFundsToLinkedDDA(accountId, redeemFundsToLinkedDDARequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/gas-stations-api.ts b/api/gas-stations-api.ts index 0345ccd..ae687a1 100644 --- a/api/gas-stations-api.ts +++ b/api/gas-stations-api.ts @@ -204,7 +204,7 @@ export const GasStationsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getGasStation( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getGasStation( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getGasStation(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -215,7 +215,7 @@ export const GasStationsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getGasStationByAssetId(assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getGasStationByAssetId(assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getGasStationByAssetId(assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -226,7 +226,7 @@ export const GasStationsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateGasStationConfiguration(gasStationConfiguration: GasStationConfiguration, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateGasStationConfiguration(gasStationConfiguration: GasStationConfiguration, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateGasStationConfiguration(gasStationConfiguration, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -238,7 +238,7 @@ export const GasStationsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateGasStationConfigurationByAssetId(gasStationConfiguration: GasStationConfiguration, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateGasStationConfigurationByAssetId(gasStationConfiguration: GasStationConfiguration, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateGasStationConfigurationByAssetId(gasStationConfiguration, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/internal-wallets-api.ts b/api/internal-wallets-api.ts index 7d4600c..76e6ce0 100644 --- a/api/internal-wallets-api.ts +++ b/api/internal-wallets-api.ts @@ -369,7 +369,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createInternalWallet(createInternalWalletRequest?: CreateInternalWalletRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createInternalWallet(createInternalWalletRequest?: CreateInternalWalletRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createInternalWallet(createInternalWalletRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -382,7 +382,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createInternalWalletAsset(walletId: string, assetId: string, createInternalWalletAssetRequest?: CreateInternalWalletAssetRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createInternalWalletAsset(walletId: string, assetId: string, createInternalWalletAssetRequest?: CreateInternalWalletAssetRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createInternalWalletAsset(walletId, assetId, createInternalWalletAssetRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -393,7 +393,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteInternalWallet(walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteInternalWallet(walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteInternalWallet(walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -405,7 +405,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteInternalWalletAsset(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteInternalWalletAsset(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteInternalWalletAsset(walletId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -417,7 +417,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getInternalWalletAsset(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getInternalWalletAsset(walletId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getInternalWalletAsset(walletId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -428,7 +428,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getInternalWalletById(walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getInternalWalletById(walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getInternalWalletById(walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -438,7 +438,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getInternalWallets( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getInternalWallets( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getInternalWallets(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -450,7 +450,7 @@ export const InternalWalletsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setCustomerRefIdForInternalWallet(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, walletId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setCustomerRefIdForInternalWallet(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, walletId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setCustomerRefIdForInternalWallet(setCustomerRefIdForVaultAccountRequest, walletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/network-connections-api.ts b/api/network-connections-api.ts index b6ee0de..a4a5e17 100644 --- a/api/network-connections-api.ts +++ b/api/network-connections-api.ts @@ -560,7 +560,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async checkThirdPartyRoutingForNetworkConnection(connectionId: string, assetType: 'CRYPTO' | 'SIGNET' | 'SEN' | 'SIGNET_TEST' | 'SEN_TEST', requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async checkThirdPartyRoutingForNetworkConnection(connectionId: string, assetType: 'CRYPTO' | 'SIGNET' | 'SEN' | 'SIGNET_TEST' | 'SEN_TEST', requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.checkThirdPartyRoutingForNetworkConnection(connectionId, assetType, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -571,7 +571,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createNetworkConnection(networkConnection?: NetworkConnection, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createNetworkConnection(networkConnection?: NetworkConnection, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createNetworkConnection(networkConnection, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -582,7 +582,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createNetworkId(createNetworkIdRequest?: CreateNetworkIdRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createNetworkId(createNetworkIdRequest?: CreateNetworkIdRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createNetworkId(createNetworkIdRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -593,7 +593,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteNetworkConnection(connectionId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteNetworkConnection(connectionId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNetworkConnection(connectionId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -604,7 +604,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteNetworkId(networkId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteNetworkId(networkId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNetworkId(networkId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -615,7 +615,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNetworkConnectionById(connectionId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getNetworkConnectionById(connectionId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkConnectionById(connectionId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -625,7 +625,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNetworkConnections( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getNetworkConnections( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkConnections(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -636,7 +636,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNetworkIdById(networkId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getNetworkIdById(networkId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkIdById(networkId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -646,7 +646,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNetworkIds( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getNetworkIds( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkIds(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -658,7 +658,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setDiscoverabilityForNetworkId(setDiscoverabilityForNetworkIdRequest: SetDiscoverabilityForNetworkIdRequest, networkId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setDiscoverabilityForNetworkId(setDiscoverabilityForNetworkIdRequest: SetDiscoverabilityForNetworkIdRequest, networkId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setDiscoverabilityForNetworkId(setDiscoverabilityForNetworkIdRequest, networkId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -670,7 +670,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setNetworkIdName(setNetworkIdNameRequest: SetNetworkIdNameRequest, networkId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setNetworkIdName(setNetworkIdNameRequest: SetNetworkIdNameRequest, networkId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setNetworkIdName(setNetworkIdNameRequest, networkId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -682,7 +682,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setRoutingPolicyForNetworkConnection(connectionId: string, setRoutingPolicyForNetworkConnectionRequest?: SetRoutingPolicyForNetworkConnectionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setRoutingPolicyForNetworkConnection(connectionId: string, setRoutingPolicyForNetworkConnectionRequest?: SetRoutingPolicyForNetworkConnectionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setRoutingPolicyForNetworkConnection(connectionId, setRoutingPolicyForNetworkConnectionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -694,7 +694,7 @@ export const NetworkConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setRoutingPolicyForNetworkId(networkId: string, setRoutingPolicyForNetworkIdRequest?: SetRoutingPolicyForNetworkIdRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setRoutingPolicyForNetworkId(networkId: string, setRoutingPolicyForNetworkIdRequest?: SetRoutingPolicyForNetworkIdRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setRoutingPolicyForNetworkId(networkId, setRoutingPolicyForNetworkIdRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/nfts-api.ts b/api/nfts-api.ts index 7175dcf..215714b 100644 --- a/api/nfts-api.ts +++ b/api/nfts-api.ts @@ -421,7 +421,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNFT(id: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getNFT(id: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getNFT(id, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -436,7 +436,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getNFTs(ids: string, pageCursor?: string, pageSize?: number, sort?: Array<'collection.name' | 'name' | 'blockchainDescriptor'>, order?: 'DESC' | 'ASC', requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getNFTs(ids: string, pageCursor?: string, pageSize?: number, sort?: Array<'collection.name' | 'name' | 'blockchainDescriptor'>, order?: 'DESC' | 'ASC', requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getNFTs(ids, pageCursor, pageSize, sort, order, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -456,7 +456,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getOwnershipTokens(blockchainDescriptor?: 'ETH' | 'ETH_TEST3' | 'POLYGON' | 'POLYGON_TEST_MUMBAI', vaultAccountIds?: string, ids?: string, collectionIds?: string, pageCursor?: string, pageSize?: number, sort?: Array<'ownershipLastUpdateTime' | 'name' | 'collection.name' | 'blockchainDescriptor'>, order?: 'DESC' | 'ASC', status?: 'LISTED' | 'ARCHIVED', search?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getOwnershipTokens(blockchainDescriptor?: 'ETH' | 'ETH_TEST3' | 'POLYGON' | 'POLYGON_TEST_MUMBAI', vaultAccountIds?: string, ids?: string, collectionIds?: string, pageCursor?: string, pageSize?: number, sort?: Array<'ownershipLastUpdateTime' | 'name' | 'collection.name' | 'blockchainDescriptor'>, order?: 'DESC' | 'ASC', status?: 'LISTED' | 'ARCHIVED', search?: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getOwnershipTokens(blockchainDescriptor, vaultAccountIds, ids, collectionIds, pageCursor, pageSize, sort, order, status, search, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -471,7 +471,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async listOwnedCollections(search?: string, pageCursor?: string, pageSize?: number, sort?: Array<'name'>, order?: 'DESC' | 'ASC', requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async listOwnedCollections(search?: string, pageCursor?: string, pageSize?: number, sort?: Array<'name'>, order?: 'DESC' | 'ASC', requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.listOwnedCollections(search, pageCursor, pageSize, sort, order, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -482,7 +482,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async refreshNFTMetadata(id: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async refreshNFTMetadata(id: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.refreshNFTMetadata(id, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -494,7 +494,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateOwnershipTokens(blockchainDescriptor: 'ETH' | 'ETH_TEST3' | 'POLYGON' | 'POLYGON_TEST_MUMBAI', vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateOwnershipTokens(blockchainDescriptor: 'ETH' | 'ETH_TEST3' | 'POLYGON' | 'POLYGON_TEST_MUMBAI', vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateOwnershipTokens(blockchainDescriptor, vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -506,7 +506,7 @@ export const NFTsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateTokenOwnershipStatus(updateTokenOwnershipStatusDto: UpdateTokenOwnershipStatusDto, id: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateTokenOwnershipStatus(updateTokenOwnershipStatusDto: UpdateTokenOwnershipStatusDto, id: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateTokenOwnershipStatus(updateTokenOwnershipStatusDto, id, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/off-exchanges-api.ts b/api/off-exchanges-api.ts index c7f6791..60e7a81 100644 --- a/api/off-exchanges-api.ts +++ b/api/off-exchanges-api.ts @@ -248,7 +248,7 @@ export const OffExchangesApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async addOffExchange(addCollateralRequestBody?: AddCollateralRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async addOffExchange(addCollateralRequestBody?: AddCollateralRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.addOffExchange(addCollateralRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -259,7 +259,7 @@ export const OffExchangesApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getOffExchangeCollateralAccounts(mainExchangeAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getOffExchangeCollateralAccounts(mainExchangeAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getOffExchangeCollateralAccounts(mainExchangeAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -270,7 +270,7 @@ export const OffExchangesApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getOffExchangeSettlementTransactions(mainExchangeAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getOffExchangeSettlementTransactions(mainExchangeAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getOffExchangeSettlementTransactions(mainExchangeAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -281,7 +281,7 @@ export const OffExchangesApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async removeOffExchange(removeCollateralRequestBody?: RemoveCollateralRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async removeOffExchange(removeCollateralRequestBody?: RemoveCollateralRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.removeOffExchange(removeCollateralRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -292,7 +292,7 @@ export const OffExchangesApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async settleOffExchangeTrades(settlementRequestBody?: SettlementRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async settleOffExchangeTrades(settlementRequestBody?: SettlementRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.settleOffExchangeTrades(settlementRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/otabeta-api.ts b/api/otabeta-api.ts index 8614a6c..562a649 100644 --- a/api/otabeta-api.ts +++ b/api/otabeta-api.ts @@ -126,7 +126,7 @@ export const OTABetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getOtaStatus( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getOtaStatus( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getOtaStatus(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -137,7 +137,7 @@ export const OTABetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setOtaStatus(setOtaStatusRequest: SetOtaStatusRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setOtaStatus(setOtaStatusRequest: SetOtaStatusRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setOtaStatus(setOtaStatusRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/payments-cross-border-settlement-api.ts b/api/payments-cross-border-settlement-api.ts index 505e145..0f7021a 100644 --- a/api/payments-cross-border-settlement-api.ts +++ b/api/payments-cross-border-settlement-api.ts @@ -365,7 +365,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createXBSettlementConfig(xBSettlementConfigCreationRequestBody?: XBSettlementConfigCreationRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createXBSettlementConfig(xBSettlementConfigCreationRequestBody?: XBSettlementConfigCreationRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createXBSettlementConfig(xBSettlementConfigCreationRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -376,7 +376,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createXBSettlementFlow(xBSettlementCreateFlowRequestBody?: XBSettlementCreateFlowRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createXBSettlementFlow(xBSettlementCreateFlowRequestBody?: XBSettlementCreateFlowRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createXBSettlementFlow(xBSettlementCreateFlowRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -387,7 +387,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteXBSettlementConfig(configId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteXBSettlementConfig(configId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteXBSettlementConfig(configId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -399,7 +399,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async executeXBSettlementFlowAction(flowId: string, xBSettlementFlowExecutionRequestBody?: XBSettlementFlowExecutionRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async executeXBSettlementFlowAction(flowId: string, xBSettlementFlowExecutionRequestBody?: XBSettlementFlowExecutionRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.executeXBSettlementFlowAction(flowId, xBSettlementFlowExecutionRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -410,7 +410,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getXBSettlementConfigById(configId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getXBSettlementConfigById(configId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getXBSettlementConfigById(configId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -420,7 +420,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getXBSettlementConfigs( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getXBSettlementConfigs( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getXBSettlementConfigs(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -431,7 +431,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getXBSettlementFlowById(flowId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getXBSettlementFlowById(flowId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getXBSettlementFlowById(flowId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -443,7 +443,7 @@ export const PaymentsCrossBorderSettlementApiFp = function(httpClient: HttpClien * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateXBSettlementConfig(configId: string, xBSettlementConfigEditRequestBody?: XBSettlementConfigEditRequestBody, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateXBSettlementConfig(configId: string, xBSettlementConfigEditRequestBody?: XBSettlementConfigEditRequestBody, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateXBSettlementConfig(configId, xBSettlementConfigEditRequestBody, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/payments-payout-api.ts b/api/payments-payout-api.ts index 9d892a4..13310d5 100644 --- a/api/payments-payout-api.ts +++ b/api/payments-payout-api.ts @@ -169,7 +169,7 @@ export const PaymentsPayoutApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createPayout(createPayoutRequest?: CreatePayoutRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createPayout(createPayoutRequest?: CreatePayoutRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createPayout(createPayoutRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -180,7 +180,7 @@ export const PaymentsPayoutApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async executePayoutAction(payoutId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async executePayoutAction(payoutId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.executePayoutAction(payoutId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -191,7 +191,7 @@ export const PaymentsPayoutApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getPayoutById(payoutId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getPayoutById(payoutId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getPayoutById(payoutId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/policy-editor-beta-api.ts b/api/policy-editor-beta-api.ts index 66f8f1d..5233906 100644 --- a/api/policy-editor-beta-api.ts +++ b/api/policy-editor-beta-api.ts @@ -242,7 +242,7 @@ export const PolicyEditorBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getActivePolicy( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getActivePolicy( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getActivePolicy(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -252,7 +252,7 @@ export const PolicyEditorBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getDraft( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getDraft( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getDraft(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -263,7 +263,7 @@ export const PolicyEditorBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async publishDraft(publishDraftRequest: PublishDraftRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async publishDraft(publishDraftRequest: PublishDraftRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.publishDraft(publishDraftRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -274,7 +274,7 @@ export const PolicyEditorBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async publishPolicyRules(publishPolicyRulesRequest: PublishPolicyRulesRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async publishPolicyRules(publishPolicyRulesRequest: PublishPolicyRulesRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.publishPolicyRules(publishPolicyRulesRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -285,7 +285,7 @@ export const PolicyEditorBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateDraft(updateDraftRequest: UpdateDraftRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateDraft(updateDraftRequest: UpdateDraftRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraft(updateDraftRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/transactions-api.ts b/api/transactions-api.ts index dc094f3..ef906c6 100644 --- a/api/transactions-api.ts +++ b/api/transactions-api.ts @@ -636,7 +636,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async cancelTransaction(txId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async cancelTransaction(txId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.cancelTransaction(txId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -647,7 +647,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createTransaction(transactionRequest?: TransactionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createTransaction(transactionRequest?: TransactionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createTransaction(transactionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -659,7 +659,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async dropTransaction(txId: string, dropTransactionRequest?: DropTransactionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async dropTransaction(txId: string, dropTransactionRequest?: DropTransactionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.dropTransaction(txId, dropTransactionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -670,7 +670,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async estimateNetworkFee(assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async estimateNetworkFee(assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.estimateNetworkFee(assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -681,7 +681,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async estimateTransactionFee(transactionRequest?: TransactionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async estimateTransactionFee(transactionRequest?: TransactionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.estimateTransactionFee(transactionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -692,7 +692,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async freezeTransaction(txId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async freezeTransaction(txId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.freezeTransaction(txId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -703,7 +703,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getTransactionByExternalId(externalTxId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getTransactionByExternalId(externalTxId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getTransactionByExternalId(externalTxId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -714,7 +714,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getTransactionById(txId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getTransactionById(txId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getTransactionById(txId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -738,7 +738,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getTransactions(before?: string, after?: string, status?: string, orderBy?: 'createdAt' | 'lastUpdated', sort?: 'ASC' | 'DESC', limit?: number, sourceType?: 'VAULT_ACCOUNT' | 'EXCHANGE_ACCOUNT' | 'INTERNAL_WALLET' | 'EXTERNAL_WALLET' | 'FIAT_ACCOUNT' | 'NETWORK_CONNECTION' | 'COMPOUND' | 'UNKNOWN' | 'GAS_STATION' | 'END_USER_WALLET', sourceId?: string, destType?: 'VAULT_ACCOUNT' | 'EXCHANGE_ACCOUNT' | 'INTERNAL_WALLET' | 'EXTERNAL_WALLET' | 'FIAT_ACCOUNT' | 'NETWORK_CONNECTION' | 'COMPOUND' | 'ONE_TIME_ADDRESS' | 'END_USER_WALLET', destId?: string, assets?: string, txHash?: string, sourceWalletId?: string, destWalletId?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getTransactions(before?: string, after?: string, status?: string, orderBy?: 'createdAt' | 'lastUpdated', sort?: 'ASC' | 'DESC', limit?: number, sourceType?: 'VAULT_ACCOUNT' | 'EXCHANGE_ACCOUNT' | 'INTERNAL_WALLET' | 'EXTERNAL_WALLET' | 'FIAT_ACCOUNT' | 'NETWORK_CONNECTION' | 'COMPOUND' | 'UNKNOWN' | 'GAS_STATION' | 'END_USER_WALLET', sourceId?: string, destType?: 'VAULT_ACCOUNT' | 'EXCHANGE_ACCOUNT' | 'INTERNAL_WALLET' | 'EXTERNAL_WALLET' | 'FIAT_ACCOUNT' | 'NETWORK_CONNECTION' | 'COMPOUND' | 'ONE_TIME_ADDRESS' | 'END_USER_WALLET', destId?: string, assets?: string, txHash?: string, sourceWalletId?: string, destWalletId?: string, requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getTransactions(before, after, status, orderBy, sort, limit, sourceType, sourceId, destType, destId, assets, txHash, sourceWalletId, destWalletId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -750,7 +750,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setConfirmationThresholdForTransaction(txId: string, setConfirmationsThresholdRequest?: SetConfirmationsThresholdRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setConfirmationThresholdForTransaction(txId: string, setConfirmationsThresholdRequest?: SetConfirmationsThresholdRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setConfirmationThresholdForTransaction(txId, setConfirmationsThresholdRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -762,7 +762,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setConfirmationThresholdForTransactionByHash(txHash: string, setConfirmationsThresholdRequest?: SetConfirmationsThresholdRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setConfirmationThresholdForTransactionByHash(txHash: string, setConfirmationsThresholdRequest?: SetConfirmationsThresholdRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setConfirmationThresholdForTransactionByHash(txHash, setConfirmationsThresholdRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -773,7 +773,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async unfreezeTransaction(txId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async unfreezeTransaction(txId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.unfreezeTransaction(txId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -785,7 +785,7 @@ export const TransactionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async validateAddress(assetId: string, address: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async validateAddress(assetId: string, address: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.validateAddress(assetId, address, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/travel-rule-beta-api.ts b/api/travel-rule-beta-api.ts index 012402b..b4b140e 100644 --- a/api/travel-rule-beta-api.ts +++ b/api/travel-rule-beta-api.ts @@ -273,7 +273,7 @@ export const TravelRuleBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVASPByDID(did: string, fields?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getVASPByDID(did: string, fields?: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getVASPByDID(did, fields, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -287,7 +287,7 @@ export const TravelRuleBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVASPs(order?: string, perPage?: number, page?: number, fields?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getVASPs(order?: string, perPage?: number, page?: number, fields?: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getVASPs(order, perPage, page, fields, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -298,7 +298,7 @@ export const TravelRuleBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async travelRuleApiControllerUpdateVasp(travelRuleUpdateVASPDetails: TravelRuleUpdateVASPDetails, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async travelRuleApiControllerUpdateVasp(travelRuleUpdateVASPDetails: TravelRuleUpdateVASPDetails, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.travelRuleApiControllerUpdateVasp(travelRuleUpdateVASPDetails, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -309,7 +309,7 @@ export const TravelRuleBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async validateFullTravelRuleTransaction(travelRuleValidateFullTransactionRequest: TravelRuleValidateFullTransactionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async validateFullTravelRuleTransaction(travelRuleValidateFullTransactionRequest: TravelRuleValidateFullTransactionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.validateFullTravelRuleTransaction(travelRuleValidateFullTransactionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -320,7 +320,7 @@ export const TravelRuleBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async validateTravelRuleTransaction(travelRuleValidateTransactionRequest: TravelRuleValidateTransactionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async validateTravelRuleTransaction(travelRuleValidateTransactionRequest: TravelRuleValidateTransactionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.validateTravelRuleTransaction(travelRuleValidateTransactionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/users-api.ts b/api/users-api.ts index c6600c1..adbb351 100644 --- a/api/users-api.ts +++ b/api/users-api.ts @@ -86,7 +86,7 @@ export const UsersApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getUsers( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getUsers( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getUsers(requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/users-groups-beta-api.ts b/api/users-groups-beta-api.ts index 5ec64df..53e205a 100644 --- a/api/users-groups-beta-api.ts +++ b/api/users-groups-beta-api.ts @@ -247,7 +247,7 @@ export const UsersGroupsBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createUserGroup(userGroupCreateRequest: UserGroupCreateRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createUserGroup(userGroupCreateRequest: UserGroupCreateRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createUserGroup(userGroupCreateRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -258,7 +258,7 @@ export const UsersGroupsBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async deleteUserGroup(groupId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async deleteUserGroup(groupId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteUserGroup(groupId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -269,7 +269,7 @@ export const UsersGroupsBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getUserGroup(groupId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getUserGroup(groupId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getUserGroup(groupId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -279,7 +279,7 @@ export const UsersGroupsBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getUserGroups( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getUserGroups( requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getUserGroups(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -291,7 +291,7 @@ export const UsersGroupsBetaApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateUserGroup(userGroupUpdateRequest: UserGroupUpdateRequest, groupId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateUserGroup(userGroupUpdateRequest: UserGroupUpdateRequest, groupId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateUserGroup(userGroupUpdateRequest, groupId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/vaults-api.ts b/api/vaults-api.ts index efc5e65..756cdd7 100644 --- a/api/vaults-api.ts +++ b/api/vaults-api.ts @@ -1200,7 +1200,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async activateAssetForVaultAccount(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async activateAssetForVaultAccount(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.activateAssetForVaultAccount(vaultAccountId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1213,7 +1213,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createLegacyAddressForVaultAccountAsset(vaultAccountId: string, assetId: string, addressId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createLegacyAddressForVaultAccountAsset(vaultAccountId: string, assetId: string, addressId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createLegacyAddressForVaultAccountAsset(vaultAccountId, assetId, addressId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1224,7 +1224,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createVaultAccount(createVaultAccountRequest: CreateVaultAccountRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createVaultAccount(createVaultAccountRequest: CreateVaultAccountRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createVaultAccount(createVaultAccountRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1237,7 +1237,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createVaultAccountAsset(vaultAccountId: string, assetId: string, createVaultAccountAssetRequest?: CreateVaultAccountAssetRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createVaultAccountAsset(vaultAccountId: string, assetId: string, createVaultAccountAssetRequest?: CreateVaultAccountAssetRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createVaultAccountAsset(vaultAccountId, assetId, createVaultAccountAssetRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1250,7 +1250,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createVaultAccountAssetAddress(vaultAccountId: string, assetId: string, createVaultAccountAssetAddressRequest?: CreateVaultAccountAssetAddressRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async createVaultAccountAssetAddress(vaultAccountId: string, assetId: string, createVaultAccountAssetAddressRequest?: CreateVaultAccountAssetAddressRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.createVaultAccountAssetAddress(vaultAccountId, assetId, createVaultAccountAssetAddressRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1265,7 +1265,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getAssetWallets(totalAmountLargerThan?: number, assetId?: string, before?: string, after?: string, limit?: number, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getAssetWallets(totalAmountLargerThan?: number, assetId?: string, before?: string, after?: string, limit?: number, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getAssetWallets(totalAmountLargerThan, assetId, before, after, limit, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1278,7 +1278,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getMaxSpendableAmount(vaultAccountId: string, assetId: string, manualSignging?: boolean, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getMaxSpendableAmount(vaultAccountId: string, assetId: string, manualSignging?: boolean, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getMaxSpendableAmount(vaultAccountId, assetId, manualSignging, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1296,7 +1296,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getPagedVaultAccounts(namePrefix?: string, nameSuffix?: string, minAmountThreshold?: number, assetId?: string, orderBy?: 'ASC' | 'DESC', before?: string, after?: string, limit?: number, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getPagedVaultAccounts(namePrefix?: string, nameSuffix?: string, minAmountThreshold?: number, assetId?: string, orderBy?: 'ASC' | 'DESC', before?: string, after?: string, limit?: number, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getPagedVaultAccounts(namePrefix, nameSuffix, minAmountThreshold, assetId, orderBy, before, after, limit, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1309,7 +1309,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getPublicKeyInfo(derivationPath: string, algorithm: string, compressed?: boolean, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getPublicKeyInfo(derivationPath: string, algorithm: string, compressed?: boolean, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getPublicKeyInfo(derivationPath, algorithm, compressed, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1324,7 +1324,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getPublicKeyInfoForAddress(vaultAccountId: string, assetId: string, change: number, addressIndex: number, compressed?: boolean, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getPublicKeyInfoForAddress(vaultAccountId: string, assetId: string, change: number, addressIndex: number, compressed?: boolean, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getPublicKeyInfoForAddress(vaultAccountId, assetId, change, addressIndex, compressed, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1336,7 +1336,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAccountAsset(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getVaultAccountAsset(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAccountAsset(vaultAccountId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1348,7 +1348,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAccountAssetAddresses(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getVaultAccountAssetAddresses(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAccountAssetAddresses(vaultAccountId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1360,7 +1360,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAccountAssetUnspentInputs(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getVaultAccountAssetUnspentInputs(vaultAccountId: string, assetId: string, requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAccountAssetUnspentInputs(vaultAccountId, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1371,7 +1371,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAccountById(vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getVaultAccountById(vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAccountById(vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1385,7 +1385,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAccounts(namePrefix?: string, nameSuffix?: string, minAmountThreshold?: number, assetId?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getVaultAccounts(namePrefix?: string, nameSuffix?: string, minAmountThreshold?: number, assetId?: string, requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAccounts(namePrefix, nameSuffix, minAmountThreshold, assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1396,7 +1396,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAssetById(assetId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async getVaultAssetById(assetId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAssetById(assetId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1408,7 +1408,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async getVaultAssets(accountNamePrefix?: string, accountNameSuffix?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + async getVaultAssets(accountNamePrefix?: string, accountNameSuffix?: string, requestOptions?: RequestOptions): Promise> { const localVarAxiosArgs = await localVarAxiosParamCreator.getVaultAssets(accountNamePrefix, accountNameSuffix, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1419,7 +1419,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async hideVaultAccount(vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async hideVaultAccount(vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.hideVaultAccount(vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1431,7 +1431,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setAutoFuelForVaultAccount(setAutoFuelForVaultAccountRequest: SetAutoFuelForVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setAutoFuelForVaultAccount(setAutoFuelForVaultAccountRequest: SetAutoFuelForVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setAutoFuelForVaultAccount(setAutoFuelForVaultAccountRequest, vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1443,7 +1443,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setCustomerRefIdForVaultAccount(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setCustomerRefIdForVaultAccount(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setCustomerRefIdForVaultAccount(setCustomerRefIdForVaultAccountRequest, vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1457,7 +1457,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async setCustomerRefIdForVaultAccountAssetAddress(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, vaultAccountId: string, assetId: string, addressId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async setCustomerRefIdForVaultAccountAssetAddress(setCustomerRefIdForVaultAccountRequest: SetCustomerRefIdForVaultAccountRequest, vaultAccountId: string, assetId: string, addressId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.setCustomerRefIdForVaultAccountAssetAddress(setCustomerRefIdForVaultAccountRequest, vaultAccountId, assetId, addressId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1468,7 +1468,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async unhideVaultAccount(vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async unhideVaultAccount(vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.unhideVaultAccount(vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1480,7 +1480,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateVaultAccount(updateVaultAccountRequest: UpdateVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateVaultAccount(updateVaultAccountRequest: UpdateVaultAccountRequest, vaultAccountId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateVaultAccount(updateVaultAccountRequest, vaultAccountId, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1494,7 +1494,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateVaultAccountAssetAddress(vaultAccountId: string, assetId: string, addressId: string, updateVaultAccountAssetAddressRequest?: UpdateVaultAccountAssetAddressRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateVaultAccountAssetAddress(vaultAccountId: string, assetId: string, addressId: string, updateVaultAccountAssetAddressRequest?: UpdateVaultAccountAssetAddressRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateVaultAccountAssetAddress(vaultAccountId, assetId, addressId, updateVaultAccountAssetAddressRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -1507,7 +1507,7 @@ export const VaultsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async updateVaultAccountAssetBalance(vaultAccountId: string, assetId: string, body?: object, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async updateVaultAccountAssetBalance(vaultAccountId: string, assetId: string, body?: object, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.updateVaultAccountAssetBalance(vaultAccountId, assetId, body, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/web3-connections-api.ts b/api/web3-connections-api.ts index 1d63eaa..b0cea94 100644 --- a/api/web3-connections-api.ts +++ b/api/web3-connections-api.ts @@ -236,7 +236,7 @@ export const Web3ConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async create(createConnectionRequest: CreateConnectionRequest, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async create(createConnectionRequest: CreateConnectionRequest, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.create(createConnectionRequest, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -251,7 +251,7 @@ export const Web3ConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async get(order?: 'ASC' | 'DESC', filter?: GetFilterParameter, sort?: 'id' | 'userId' | 'vaultAccountId' | 'createdAt' | 'feeLevel' | 'appUrl' | 'appName', pageSize?: number, next?: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async get(order?: 'ASC' | 'DESC', filter?: GetFilterParameter, sort?: 'id' | 'userId' | 'vaultAccountId' | 'createdAt' | 'feeLevel' | 'appUrl' | 'appName', pageSize?: number, next?: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.get(order, filter, sort, pageSize, next, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -262,7 +262,7 @@ export const Web3ConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async remove(id: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async remove(id: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.remove(id, requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -274,7 +274,7 @@ export const Web3ConnectionsApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async submit(respondToConnectionRequest: RespondToConnectionRequest, id: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async submit(respondToConnectionRequest: RespondToConnectionRequest, id: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.submit(respondToConnectionRequest, id, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/api/webhooks-api.ts b/api/webhooks-api.ts index fb7daca..2fe66b9 100644 --- a/api/webhooks-api.ts +++ b/api/webhooks-api.ts @@ -130,7 +130,7 @@ export const WebhooksApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async resendWebhooks( requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async resendWebhooks( requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.resendWebhooks(requestOptions); return httpClient.request(localVarAxiosArgs); }, @@ -142,7 +142,7 @@ export const WebhooksApiFp = function(httpClient: HttpClient) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async resendWebhooksForTransaction(resendWebhooksForTransactionRequest: ResendWebhooksForTransactionRequest, txId: string, requestOptions?: RequestOptions): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + async resendWebhooksForTransaction(resendWebhooksForTransactionRequest: ResendWebhooksForTransactionRequest, txId: string, requestOptions?: RequestOptions): Promise { const localVarAxiosArgs = await localVarAxiosParamCreator.resendWebhooksForTransaction(resendWebhooksForTransactionRequest, txId, requestOptions); return httpClient.request(localVarAxiosArgs); }, diff --git a/package-lock.json b/package-lock.json index 5f84819..a8fe0db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -393,21 +393,21 @@ } }, "node_modules/@types/bluebird": { - "version": "3.5.41", - "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.41.tgz", - "integrity": "sha512-/OT2UoYPu2fqGNS85UYUx0Ke8Zd/vM0/Au0JqLInTprkRO0NexYe7qAUkDsjhsO3BKHI14wX/UhN5SUaoFVDUQ==", + "version": "3.5.42", + "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.42.tgz", + "integrity": "sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==", "dev": true }, "node_modules/@types/caseless": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.4.tgz", - "integrity": "sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==", + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.5.tgz", + "integrity": "sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==", "dev": true }, "node_modules/@types/jsonwebtoken": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.4.tgz", - "integrity": "sha512-8UYapdmR0QlxgvJmyE8lP7guxD0UGVMfknsdtCFZh4ovShdBl3iOI4zdvqBHrB/IS+xUj3PSx73Qkey1fhWz+g==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.5.tgz", + "integrity": "sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==", "dev": true, "dependencies": { "@types/node": "*" @@ -420,9 +420,9 @@ "dev": true }, "node_modules/@types/request": { - "version": "2.48.11", - "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.11.tgz", - "integrity": "sha512-HuihY1+Vss5RS9ZHzRyTGIzwPTdrJBkCm/mAeLRYrOQu/MGqyezKXWOK1VhCnR+SDbp9G2mRUP+OVEqCrzpcfA==", + "version": "2.48.12", + "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.12.tgz", + "integrity": "sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw==", "dev": true, "dependencies": { "@types/caseless": "*", @@ -432,9 +432,9 @@ } }, "node_modules/@types/tough-cookie": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.4.tgz", - "integrity": "sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", "dev": true }, "node_modules/@types/uuid": { @@ -2594,21 +2594,21 @@ } }, "@types/bluebird": { - "version": "3.5.41", - "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.41.tgz", - "integrity": "sha512-/OT2UoYPu2fqGNS85UYUx0Ke8Zd/vM0/Au0JqLInTprkRO0NexYe7qAUkDsjhsO3BKHI14wX/UhN5SUaoFVDUQ==", + "version": "3.5.42", + "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.42.tgz", + "integrity": "sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==", "dev": true }, "@types/caseless": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.4.tgz", - "integrity": "sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==", + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.5.tgz", + "integrity": "sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==", "dev": true }, "@types/jsonwebtoken": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.4.tgz", - "integrity": "sha512-8UYapdmR0QlxgvJmyE8lP7guxD0UGVMfknsdtCFZh4ovShdBl3iOI4zdvqBHrB/IS+xUj3PSx73Qkey1fhWz+g==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.5.tgz", + "integrity": "sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==", "dev": true, "requires": { "@types/node": "*" @@ -2621,9 +2621,9 @@ "dev": true }, "@types/request": { - "version": "2.48.11", - "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.11.tgz", - "integrity": "sha512-HuihY1+Vss5RS9ZHzRyTGIzwPTdrJBkCm/mAeLRYrOQu/MGqyezKXWOK1VhCnR+SDbp9G2mRUP+OVEqCrzpcfA==", + "version": "2.48.12", + "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.12.tgz", + "integrity": "sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw==", "dev": true, "requires": { "@types/caseless": "*", @@ -2633,9 +2633,9 @@ } }, "@types/tough-cookie": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.4.tgz", - "integrity": "sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", "dev": true }, "@types/uuid": {