@openweb3-io/wallet 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -0
- package/dist/index.d.ts +158 -0
- package/dist/index.js +339 -0
- package/dist/index.js.map +1 -0
- package/dist/openapi/apis/AddressesApi.d.ts +15 -0
- package/dist/openapi/apis/AddressesApi.js +224 -0
- package/dist/openapi/apis/AddressesApi.js.map +1 -0
- package/dist/openapi/apis/CurrenciesApi.d.ts +13 -0
- package/dist/openapi/apis/CurrenciesApi.js +138 -0
- package/dist/openapi/apis/CurrenciesApi.js.map +1 -0
- package/dist/openapi/apis/ExchangesApi.d.ts +25 -0
- package/dist/openapi/apis/ExchangesApi.js +338 -0
- package/dist/openapi/apis/ExchangesApi.js.map +1 -0
- package/dist/openapi/apis/NetworksApi.d.ts +10 -0
- package/dist/openapi/apis/NetworksApi.js +82 -0
- package/dist/openapi/apis/NetworksApi.js.map +1 -0
- package/dist/openapi/apis/RatesApi.d.ts +14 -0
- package/dist/openapi/apis/RatesApi.js +149 -0
- package/dist/openapi/apis/RatesApi.js.map +1 -0
- package/dist/openapi/apis/SweepFundsApi.d.ts +11 -0
- package/dist/openapi/apis/SweepFundsApi.js +86 -0
- package/dist/openapi/apis/SweepFundsApi.js.map +1 -0
- package/dist/openapi/apis/TransactionsApi.d.ts +25 -0
- package/dist/openapi/apis/TransactionsApi.js +322 -0
- package/dist/openapi/apis/TransactionsApi.js.map +1 -0
- package/dist/openapi/apis/WalletsApi.d.ts +22 -0
- package/dist/openapi/apis/WalletsApi.js +317 -0
- package/dist/openapi/apis/WalletsApi.js.map +1 -0
- package/dist/openapi/apis/WebhookEndpointsApi.d.ts +22 -0
- package/dist/openapi/apis/WebhookEndpointsApi.js +264 -0
- package/dist/openapi/apis/WebhookEndpointsApi.js.map +1 -0
- package/dist/openapi/apis/WebhookEventTypesApi.d.ts +10 -0
- package/dist/openapi/apis/WebhookEventTypesApi.js +65 -0
- package/dist/openapi/apis/WebhookEventTypesApi.js.map +1 -0
- package/dist/openapi/apis/WebhookEventsApi.d.ts +14 -0
- package/dist/openapi/apis/WebhookEventsApi.js +127 -0
- package/dist/openapi/apis/WebhookEventsApi.js.map +1 -0
- package/dist/openapi/apis/baseapi.d.ts +16 -0
- package/dist/openapi/apis/baseapi.js +25 -0
- package/dist/openapi/apis/baseapi.js.map +1 -0
- package/dist/openapi/apis/exception.d.ts +5 -0
- package/dist/openapi/apis/exception.js +12 -0
- package/dist/openapi/apis/exception.js.map +1 -0
- package/dist/openapi/auth/auth.d.ts +40 -0
- package/dist/openapi/auth/auth.js +42 -0
- package/dist/openapi/auth/auth.js.map +1 -0
- package/dist/openapi/configuration.d.ts +18 -0
- package/dist/openapi/configuration.js +21 -0
- package/dist/openapi/configuration.js.map +1 -0
- package/dist/openapi/http/http.d.ts +69 -0
- package/dist/openapi/http/http.js +162 -0
- package/dist/openapi/http/http.js.map +1 -0
- package/dist/openapi/http/isomorphic-fetch.d.ts +6 -0
- package/dist/openapi/http/isomorphic-fetch.js +31 -0
- package/dist/openapi/http/isomorphic-fetch.js.map +1 -0
- package/dist/openapi/index.d.ts +9 -0
- package/dist/openapi/index.js +32 -0
- package/dist/openapi/index.js.map +1 -0
- package/dist/openapi/middleware.d.ts +16 -0
- package/dist/openapi/middleware.js +17 -0
- package/dist/openapi/middleware.js.map +1 -0
- package/dist/openapi/models/Account.d.ts +22 -0
- package/dist/openapi/models/Account.js +51 -0
- package/dist/openapi/models/Account.js.map +1 -0
- package/dist/openapi/models/Address.d.ts +19 -0
- package/dist/openapi/models/Address.js +33 -0
- package/dist/openapi/models/Address.js.map +1 -0
- package/dist/openapi/models/ChainNetwork.d.ts +24 -0
- package/dist/openapi/models/ChainNetwork.js +63 -0
- package/dist/openapi/models/ChainNetwork.js.map +1 -0
- package/dist/openapi/models/CreateEndpoint.d.ts +27 -0
- package/dist/openapi/models/CreateEndpoint.js +57 -0
- package/dist/openapi/models/CreateEndpoint.js.map +1 -0
- package/dist/openapi/models/CreateExchange.d.ts +21 -0
- package/dist/openapi/models/CreateExchange.js +45 -0
- package/dist/openapi/models/CreateExchange.js.map +1 -0
- package/dist/openapi/models/CreateTransferRequest.d.ts +20 -0
- package/dist/openapi/models/CreateTransferRequest.js +39 -0
- package/dist/openapi/models/CreateTransferRequest.js.map +1 -0
- package/dist/openapi/models/CreateTransferResponse.d.ts +17 -0
- package/dist/openapi/models/CreateTransferResponse.js +21 -0
- package/dist/openapi/models/CreateTransferResponse.js.map +1 -0
- package/dist/openapi/models/CreateWalletRequest.d.ts +18 -0
- package/dist/openapi/models/CreateWalletRequest.js +27 -0
- package/dist/openapi/models/CreateWalletRequest.js.map +1 -0
- package/dist/openapi/models/CreateWithdrawReply.d.ts +17 -0
- package/dist/openapi/models/CreateWithdrawReply.js +21 -0
- package/dist/openapi/models/CreateWithdrawReply.js.map +1 -0
- package/dist/openapi/models/CreateWithdrawRequest.d.ts +23 -0
- package/dist/openapi/models/CreateWithdrawRequest.js +57 -0
- package/dist/openapi/models/CreateWithdrawRequest.js.map +1 -0
- package/dist/openapi/models/Currency.d.ts +37 -0
- package/dist/openapi/models/Currency.js +135 -0
- package/dist/openapi/models/Currency.js.map +1 -0
- package/dist/openapi/models/CurrencyNetwork.d.ts +36 -0
- package/dist/openapi/models/CurrencyNetwork.js +135 -0
- package/dist/openapi/models/CurrencyNetwork.js.map +1 -0
- package/dist/openapi/models/CurrencyPair.d.ts +18 -0
- package/dist/openapi/models/CurrencyPair.js +27 -0
- package/dist/openapi/models/CurrencyPair.js.map +1 -0
- package/dist/openapi/models/CursorPageAccount.d.ts +21 -0
- package/dist/openapi/models/CursorPageAccount.js +39 -0
- package/dist/openapi/models/CursorPageAccount.js.map +1 -0
- package/dist/openapi/models/CursorPageAddress.d.ts +21 -0
- package/dist/openapi/models/CursorPageAddress.js +39 -0
- package/dist/openapi/models/CursorPageAddress.js.map +1 -0
- package/dist/openapi/models/CursorPageChainNetwork.d.ts +21 -0
- package/dist/openapi/models/CursorPageChainNetwork.js +39 -0
- package/dist/openapi/models/CursorPageChainNetwork.js.map +1 -0
- package/dist/openapi/models/CursorPageCurrency.d.ts +21 -0
- package/dist/openapi/models/CursorPageCurrency.js +39 -0
- package/dist/openapi/models/CursorPageCurrency.js.map +1 -0
- package/dist/openapi/models/CursorPageEndpoint.d.ts +21 -0
- package/dist/openapi/models/CursorPageEndpoint.js +39 -0
- package/dist/openapi/models/CursorPageEndpoint.js.map +1 -0
- package/dist/openapi/models/CursorPageExchange.d.ts +21 -0
- package/dist/openapi/models/CursorPageExchange.js +39 -0
- package/dist/openapi/models/CursorPageExchange.js.map +1 -0
- package/dist/openapi/models/CursorPageTransaction.d.ts +21 -0
- package/dist/openapi/models/CursorPageTransaction.js +39 -0
- package/dist/openapi/models/CursorPageTransaction.js.map +1 -0
- package/dist/openapi/models/CursorPageWallet.d.ts +21 -0
- package/dist/openapi/models/CursorPageWallet.js +39 -0
- package/dist/openapi/models/CursorPageWallet.js.map +1 -0
- package/dist/openapi/models/CursorPageWebhookEvent.d.ts +21 -0
- package/dist/openapi/models/CursorPageWebhookEvent.js +39 -0
- package/dist/openapi/models/CursorPageWebhookEvent.js.map +1 -0
- package/dist/openapi/models/DeleteWebhookEndpointResponse.d.ts +17 -0
- package/dist/openapi/models/DeleteWebhookEndpointResponse.js +21 -0
- package/dist/openapi/models/DeleteWebhookEndpointResponse.js.map +1 -0
- package/dist/openapi/models/Endpoint.d.ts +29 -0
- package/dist/openapi/models/Endpoint.js +69 -0
- package/dist/openapi/models/Endpoint.js.map +1 -0
- package/dist/openapi/models/EstimateFeeRequest.d.ts +21 -0
- package/dist/openapi/models/EstimateFeeRequest.js +45 -0
- package/dist/openapi/models/EstimateFeeRequest.js.map +1 -0
- package/dist/openapi/models/EstimateFeeResponse.d.ts +18 -0
- package/dist/openapi/models/EstimateFeeResponse.js +27 -0
- package/dist/openapi/models/EstimateFeeResponse.js.map +1 -0
- package/dist/openapi/models/EstimateResponse.d.ts +21 -0
- package/dist/openapi/models/EstimateResponse.js +45 -0
- package/dist/openapi/models/EstimateResponse.js.map +1 -0
- package/dist/openapi/models/EventType.d.ts +18 -0
- package/dist/openapi/models/EventType.js +27 -0
- package/dist/openapi/models/EventType.js.map +1 -0
- package/dist/openapi/models/Exchange.d.ts +30 -0
- package/dist/openapi/models/Exchange.js +99 -0
- package/dist/openapi/models/Exchange.js.map +1 -0
- package/dist/openapi/models/ExchangeCurrencyPairs.d.ts +18 -0
- package/dist/openapi/models/ExchangeCurrencyPairs.js +27 -0
- package/dist/openapi/models/ExchangeCurrencyPairs.js.map +1 -0
- package/dist/openapi/models/ExchangeSubmitResponse.d.ts +17 -0
- package/dist/openapi/models/ExchangeSubmitResponse.js +21 -0
- package/dist/openapi/models/ExchangeSubmitResponse.js.map +1 -0
- package/dist/openapi/models/GetCurrencyPairQuotaResponse.d.ts +22 -0
- package/dist/openapi/models/GetCurrencyPairQuotaResponse.js +51 -0
- package/dist/openapi/models/GetCurrencyPairQuotaResponse.js.map +1 -0
- package/dist/openapi/models/GetRatesRequest.d.ts +18 -0
- package/dist/openapi/models/GetRatesRequest.js +21 -0
- package/dist/openapi/models/GetRatesRequest.js.map +1 -0
- package/dist/openapi/models/GetRatesResponse.d.ts +18 -0
- package/dist/openapi/models/GetRatesResponse.js +21 -0
- package/dist/openapi/models/GetRatesResponse.js.map +1 -0
- package/dist/openapi/models/ListExchangeCurrencyPairsResponse.d.ts +18 -0
- package/dist/openapi/models/ListExchangeCurrencyPairsResponse.js +21 -0
- package/dist/openapi/models/ListExchangeCurrencyPairsResponse.js.map +1 -0
- package/dist/openapi/models/ModelError.d.ts +18 -0
- package/dist/openapi/models/ModelError.js +27 -0
- package/dist/openapi/models/ModelError.js.map +1 -0
- package/dist/openapi/models/ObjectSerializer.d.ts +57 -0
- package/dist/openapi/models/ObjectSerializer.js +336 -0
- package/dist/openapi/models/ObjectSerializer.js.map +1 -0
- package/dist/openapi/models/Rate.d.ts +19 -0
- package/dist/openapi/models/Rate.js +27 -0
- package/dist/openapi/models/Rate.js.map +1 -0
- package/dist/openapi/models/ResendWebhookEventRequest.d.ts +18 -0
- package/dist/openapi/models/ResendWebhookEventRequest.js +27 -0
- package/dist/openapi/models/ResendWebhookEventRequest.js.map +1 -0
- package/dist/openapi/models/ResendWebhookEventResponse.d.ts +17 -0
- package/dist/openapi/models/ResendWebhookEventResponse.js +21 -0
- package/dist/openapi/models/ResendWebhookEventResponse.js.map +1 -0
- package/dist/openapi/models/SweepAddressRequest.d.ts +17 -0
- package/dist/openapi/models/SweepAddressRequest.js +21 -0
- package/dist/openapi/models/SweepAddressRequest.js.map +1 -0
- package/dist/openapi/models/SweepAddressResponse.d.ts +17 -0
- package/dist/openapi/models/SweepAddressResponse.js +21 -0
- package/dist/openapi/models/SweepAddressResponse.js.map +1 -0
- package/dist/openapi/models/Transaction.d.ts +32 -0
- package/dist/openapi/models/Transaction.js +99 -0
- package/dist/openapi/models/Transaction.js.map +1 -0
- package/dist/openapi/models/TransactionDirection.d.ts +1 -0
- package/dist/openapi/models/TransactionDirection.js +3 -0
- package/dist/openapi/models/TransactionDirection.js.map +1 -0
- package/dist/openapi/models/TransactionStatus.d.ts +1 -0
- package/dist/openapi/models/TransactionStatus.js +3 -0
- package/dist/openapi/models/TransactionStatus.js.map +1 -0
- package/dist/openapi/models/UpdateEndpoint.d.ts +27 -0
- package/dist/openapi/models/UpdateEndpoint.js +57 -0
- package/dist/openapi/models/UpdateEndpoint.js.map +1 -0
- package/dist/openapi/models/UpdateWalletRequest.d.ts +18 -0
- package/dist/openapi/models/UpdateWalletRequest.js +27 -0
- package/dist/openapi/models/UpdateWalletRequest.js.map +1 -0
- package/dist/openapi/models/Wallet.d.ts +20 -0
- package/dist/openapi/models/Wallet.js +39 -0
- package/dist/openapi/models/Wallet.js.map +1 -0
- package/dist/openapi/models/WebhookEvent.d.ts +22 -0
- package/dist/openapi/models/WebhookEvent.js +39 -0
- package/dist/openapi/models/WebhookEvent.js.map +1 -0
- package/dist/openapi/models/all.d.ts +48 -0
- package/dist/openapi/models/all.js +61 -0
- package/dist/openapi/models/all.js.map +1 -0
- package/dist/openapi/rxjsStub.d.ts +10 -0
- package/dist/openapi/rxjsStub.js +32 -0
- package/dist/openapi/rxjsStub.js.map +1 -0
- package/dist/openapi/servers.d.ts +17 -0
- package/dist/openapi/servers.js +31 -0
- package/dist/openapi/servers.js.map +1 -0
- package/dist/openapi/types/ObjectParamAPI.d.ts +259 -0
- package/dist/openapi/types/ObjectParamAPI.js +180 -0
- package/dist/openapi/types/ObjectParamAPI.js.map +1 -0
- package/dist/openapi/types/ObservableAPI.d.ts +150 -0
- package/dist/openapi/types/ObservableAPI.js +600 -0
- package/dist/openapi/types/ObservableAPI.js.map +1 -0
- package/dist/openapi/types/PromiseAPI.d.ts +127 -0
- package/dist/openapi/types/PromiseAPI.js +213 -0
- package/dist/openapi/types/PromiseAPI.js.map +1 -0
- package/dist/openapi/util.d.ts +1 -0
- package/dist/openapi/util.js +25 -0
- package/dist/openapi/util.js.map +1 -0
- package/package.json +51 -0
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
import { Configuration } from '../configuration';
|
|
2
|
+
import { Address } from '../models/Address';
|
|
3
|
+
import { CreateEndpoint } from '../models/CreateEndpoint';
|
|
4
|
+
import { CreateExchange } from '../models/CreateExchange';
|
|
5
|
+
import { CreateTransferRequest } from '../models/CreateTransferRequest';
|
|
6
|
+
import { CreateTransferResponse } from '../models/CreateTransferResponse';
|
|
7
|
+
import { CreateWalletRequest } from '../models/CreateWalletRequest';
|
|
8
|
+
import { CreateWithdrawReply } from '../models/CreateWithdrawReply';
|
|
9
|
+
import { CreateWithdrawRequest } from '../models/CreateWithdrawRequest';
|
|
10
|
+
import { Currency } from '../models/Currency';
|
|
11
|
+
import { CursorPageAccount } from '../models/CursorPageAccount';
|
|
12
|
+
import { CursorPageAddress } from '../models/CursorPageAddress';
|
|
13
|
+
import { CursorPageChainNetwork } from '../models/CursorPageChainNetwork';
|
|
14
|
+
import { CursorPageCurrency } from '../models/CursorPageCurrency';
|
|
15
|
+
import { CursorPageEndpoint } from '../models/CursorPageEndpoint';
|
|
16
|
+
import { CursorPageExchange } from '../models/CursorPageExchange';
|
|
17
|
+
import { CursorPageTransaction } from '../models/CursorPageTransaction';
|
|
18
|
+
import { CursorPageWallet } from '../models/CursorPageWallet';
|
|
19
|
+
import { CursorPageWebhookEvent } from '../models/CursorPageWebhookEvent';
|
|
20
|
+
import { DeleteWebhookEndpointResponse } from '../models/DeleteWebhookEndpointResponse';
|
|
21
|
+
import { Endpoint } from '../models/Endpoint';
|
|
22
|
+
import { EstimateFeeRequest } from '../models/EstimateFeeRequest';
|
|
23
|
+
import { EstimateFeeResponse } from '../models/EstimateFeeResponse';
|
|
24
|
+
import { EstimateResponse } from '../models/EstimateResponse';
|
|
25
|
+
import { EventType } from '../models/EventType';
|
|
26
|
+
import { Exchange } from '../models/Exchange';
|
|
27
|
+
import { ExchangeSubmitResponse } from '../models/ExchangeSubmitResponse';
|
|
28
|
+
import { GetCurrencyPairQuotaResponse } from '../models/GetCurrencyPairQuotaResponse';
|
|
29
|
+
import { GetRatesRequest } from '../models/GetRatesRequest';
|
|
30
|
+
import { GetRatesResponse } from '../models/GetRatesResponse';
|
|
31
|
+
import { ListExchangeCurrencyPairsResponse } from '../models/ListExchangeCurrencyPairsResponse';
|
|
32
|
+
import { ResendWebhookEventRequest } from '../models/ResendWebhookEventRequest';
|
|
33
|
+
import { ResendWebhookEventResponse } from '../models/ResendWebhookEventResponse';
|
|
34
|
+
import { SweepAddressRequest } from '../models/SweepAddressRequest';
|
|
35
|
+
import { SweepAddressResponse } from '../models/SweepAddressResponse';
|
|
36
|
+
import { Transaction } from '../models/Transaction';
|
|
37
|
+
import { UpdateEndpoint } from '../models/UpdateEndpoint';
|
|
38
|
+
import { UpdateWalletRequest } from '../models/UpdateWalletRequest';
|
|
39
|
+
import { Wallet } from '../models/Wallet';
|
|
40
|
+
import { AddressesApiRequestFactory, AddressesApiResponseProcessor } from "../apis/AddressesApi";
|
|
41
|
+
export interface AddressesApiV1AddressesListRequest {
|
|
42
|
+
limit: number;
|
|
43
|
+
currency?: string;
|
|
44
|
+
cursor?: string;
|
|
45
|
+
type?: string;
|
|
46
|
+
walletId?: string;
|
|
47
|
+
}
|
|
48
|
+
export interface AddressesApiV1WalletsGetDepositAddressRequest {
|
|
49
|
+
walletId: string;
|
|
50
|
+
currency: string;
|
|
51
|
+
network: string;
|
|
52
|
+
}
|
|
53
|
+
export interface AddressesApiV1WalletsListDepositAddressesRequest {
|
|
54
|
+
walletId: string;
|
|
55
|
+
limit: number;
|
|
56
|
+
currency?: string;
|
|
57
|
+
cursor?: string;
|
|
58
|
+
network?: string;
|
|
59
|
+
}
|
|
60
|
+
export declare class ObjectAddressesApi {
|
|
61
|
+
private api;
|
|
62
|
+
constructor(configuration: Configuration, requestFactory?: AddressesApiRequestFactory, responseProcessor?: AddressesApiResponseProcessor);
|
|
63
|
+
v1AddressesList(param: AddressesApiV1AddressesListRequest, options?: Configuration): Promise<CursorPageAddress>;
|
|
64
|
+
v1WalletsGetDepositAddress(param: AddressesApiV1WalletsGetDepositAddressRequest, options?: Configuration): Promise<Address>;
|
|
65
|
+
v1WalletsListDepositAddresses(param: AddressesApiV1WalletsListDepositAddressesRequest, options?: Configuration): Promise<CursorPageAddress>;
|
|
66
|
+
}
|
|
67
|
+
import { CurrenciesApiRequestFactory, CurrenciesApiResponseProcessor } from "../apis/CurrenciesApi";
|
|
68
|
+
export interface CurrenciesApiV1CurrenciesListRequest {
|
|
69
|
+
limit: number;
|
|
70
|
+
cursor?: string;
|
|
71
|
+
rated?: boolean;
|
|
72
|
+
}
|
|
73
|
+
export interface CurrenciesApiV1CurrenciesRetrieveRequest {
|
|
74
|
+
code: string;
|
|
75
|
+
}
|
|
76
|
+
export declare class ObjectCurrenciesApi {
|
|
77
|
+
private api;
|
|
78
|
+
constructor(configuration: Configuration, requestFactory?: CurrenciesApiRequestFactory, responseProcessor?: CurrenciesApiResponseProcessor);
|
|
79
|
+
v1CurrenciesList(param: CurrenciesApiV1CurrenciesListRequest, options?: Configuration): Promise<CursorPageCurrency>;
|
|
80
|
+
v1CurrenciesRetrieve(param: CurrenciesApiV1CurrenciesRetrieveRequest, options?: Configuration): Promise<Currency>;
|
|
81
|
+
}
|
|
82
|
+
import { ExchangesApiRequestFactory, ExchangesApiResponseProcessor } from "../apis/ExchangesApi";
|
|
83
|
+
export interface ExchangesApiV1ExchangesCreateRequest {
|
|
84
|
+
request: CreateExchange;
|
|
85
|
+
}
|
|
86
|
+
export interface ExchangesApiV1ExchangesCurrencyPairsRequest {
|
|
87
|
+
}
|
|
88
|
+
export interface ExchangesApiV1ExchangesCurrencyQuotaRequest {
|
|
89
|
+
fromCurrency: string;
|
|
90
|
+
toCurrency: string;
|
|
91
|
+
}
|
|
92
|
+
export interface ExchangesApiV1ExchangesListRequest {
|
|
93
|
+
limit: number;
|
|
94
|
+
walletId: string;
|
|
95
|
+
cursor?: string;
|
|
96
|
+
}
|
|
97
|
+
export interface ExchangesApiV1ExchangesRetrieveRequest {
|
|
98
|
+
exchangeId: string;
|
|
99
|
+
}
|
|
100
|
+
export interface ExchangesApiV1ExchangesSubmitRequest {
|
|
101
|
+
exchangeId: string;
|
|
102
|
+
}
|
|
103
|
+
export declare class ObjectExchangesApi {
|
|
104
|
+
private api;
|
|
105
|
+
constructor(configuration: Configuration, requestFactory?: ExchangesApiRequestFactory, responseProcessor?: ExchangesApiResponseProcessor);
|
|
106
|
+
v1ExchangesCreate(param: ExchangesApiV1ExchangesCreateRequest, options?: Configuration): Promise<Exchange>;
|
|
107
|
+
v1ExchangesCurrencyPairs(param: ExchangesApiV1ExchangesCurrencyPairsRequest, options?: Configuration): Promise<ListExchangeCurrencyPairsResponse>;
|
|
108
|
+
v1ExchangesCurrencyQuota(param: ExchangesApiV1ExchangesCurrencyQuotaRequest, options?: Configuration): Promise<GetCurrencyPairQuotaResponse>;
|
|
109
|
+
v1ExchangesList(param: ExchangesApiV1ExchangesListRequest, options?: Configuration): Promise<CursorPageExchange>;
|
|
110
|
+
v1ExchangesRetrieve(param: ExchangesApiV1ExchangesRetrieveRequest, options?: Configuration): Promise<Exchange>;
|
|
111
|
+
v1ExchangesSubmit(param: ExchangesApiV1ExchangesSubmitRequest, options?: Configuration): Promise<ExchangeSubmitResponse>;
|
|
112
|
+
}
|
|
113
|
+
import { NetworksApiRequestFactory, NetworksApiResponseProcessor } from "../apis/NetworksApi";
|
|
114
|
+
export interface NetworksApiV1NetworksListRequest {
|
|
115
|
+
limit: number;
|
|
116
|
+
cursor?: string;
|
|
117
|
+
}
|
|
118
|
+
export declare class ObjectNetworksApi {
|
|
119
|
+
private api;
|
|
120
|
+
constructor(configuration: Configuration, requestFactory?: NetworksApiRequestFactory, responseProcessor?: NetworksApiResponseProcessor);
|
|
121
|
+
v1NetworksList(param: NetworksApiV1NetworksListRequest, options?: Configuration): Promise<CursorPageChainNetwork>;
|
|
122
|
+
}
|
|
123
|
+
import { RatesApiRequestFactory, RatesApiResponseProcessor } from "../apis/RatesApi";
|
|
124
|
+
export interface RatesApiV1RatesEstimateRequest {
|
|
125
|
+
baseAmount: string;
|
|
126
|
+
baseCurrency: string;
|
|
127
|
+
toCurrency: string;
|
|
128
|
+
}
|
|
129
|
+
export interface RatesApiV1RatesListRequest {
|
|
130
|
+
request: GetRatesRequest;
|
|
131
|
+
}
|
|
132
|
+
export declare class ObjectRatesApi {
|
|
133
|
+
private api;
|
|
134
|
+
constructor(configuration: Configuration, requestFactory?: RatesApiRequestFactory, responseProcessor?: RatesApiResponseProcessor);
|
|
135
|
+
v1RatesEstimate(param: RatesApiV1RatesEstimateRequest, options?: Configuration): Promise<EstimateResponse>;
|
|
136
|
+
v1RatesList(param: RatesApiV1RatesListRequest, options?: Configuration): Promise<GetRatesResponse>;
|
|
137
|
+
}
|
|
138
|
+
import { SweepFundsApiRequestFactory, SweepFundsApiResponseProcessor } from "../apis/SweepFundsApi";
|
|
139
|
+
export interface SweepFundsApiV1SweepAddressRequest {
|
|
140
|
+
address: string;
|
|
141
|
+
request: SweepAddressRequest;
|
|
142
|
+
}
|
|
143
|
+
export declare class ObjectSweepFundsApi {
|
|
144
|
+
private api;
|
|
145
|
+
constructor(configuration: Configuration, requestFactory?: SweepFundsApiRequestFactory, responseProcessor?: SweepFundsApiResponseProcessor);
|
|
146
|
+
v1SweepAddress(param: SweepFundsApiV1SweepAddressRequest, options?: Configuration): Promise<SweepAddressResponse>;
|
|
147
|
+
}
|
|
148
|
+
import { TransactionsApiRequestFactory, TransactionsApiResponseProcessor } from "../apis/TransactionsApi";
|
|
149
|
+
export interface TransactionsApiV1TransactionsEstimateFeeRequest {
|
|
150
|
+
request: EstimateFeeRequest;
|
|
151
|
+
}
|
|
152
|
+
export interface TransactionsApiV1TransactionsListRequest {
|
|
153
|
+
limit: number;
|
|
154
|
+
currency?: string;
|
|
155
|
+
cursor?: string;
|
|
156
|
+
direction?: 'OUT' | 'IN';
|
|
157
|
+
gateway?: string;
|
|
158
|
+
network?: string;
|
|
159
|
+
status?: 'PROCESSING' | 'CANCELED' | 'FAILED' | 'SUCCEED';
|
|
160
|
+
txhash?: string;
|
|
161
|
+
walletId?: string;
|
|
162
|
+
}
|
|
163
|
+
export interface TransactionsApiV1TransactionsRetrieveRequest {
|
|
164
|
+
transactionId: string;
|
|
165
|
+
}
|
|
166
|
+
export interface TransactionsApiV1TransactionsTransferRequest {
|
|
167
|
+
request: CreateTransferRequest;
|
|
168
|
+
}
|
|
169
|
+
export interface TransactionsApiV1TransactionsWithdrawRequest {
|
|
170
|
+
request: CreateWithdrawRequest;
|
|
171
|
+
}
|
|
172
|
+
export declare class ObjectTransactionsApi {
|
|
173
|
+
private api;
|
|
174
|
+
constructor(configuration: Configuration, requestFactory?: TransactionsApiRequestFactory, responseProcessor?: TransactionsApiResponseProcessor);
|
|
175
|
+
v1TransactionsEstimateFee(param: TransactionsApiV1TransactionsEstimateFeeRequest, options?: Configuration): Promise<EstimateFeeResponse>;
|
|
176
|
+
v1TransactionsList(param: TransactionsApiV1TransactionsListRequest, options?: Configuration): Promise<CursorPageTransaction>;
|
|
177
|
+
v1TransactionsRetrieve(param: TransactionsApiV1TransactionsRetrieveRequest, options?: Configuration): Promise<Transaction>;
|
|
178
|
+
v1TransactionsTransfer(param: TransactionsApiV1TransactionsTransferRequest, options?: Configuration): Promise<CreateTransferResponse>;
|
|
179
|
+
v1TransactionsWithdraw(param: TransactionsApiV1TransactionsWithdrawRequest, options?: Configuration): Promise<CreateWithdrawReply>;
|
|
180
|
+
}
|
|
181
|
+
import { WalletsApiRequestFactory, WalletsApiResponseProcessor } from "../apis/WalletsApi";
|
|
182
|
+
export interface WalletsApiV1WalletsCreateRequest {
|
|
183
|
+
request: CreateWalletRequest;
|
|
184
|
+
}
|
|
185
|
+
export interface WalletsApiV1WalletsListRequest {
|
|
186
|
+
limit: number;
|
|
187
|
+
cursor?: string;
|
|
188
|
+
}
|
|
189
|
+
export interface WalletsApiV1WalletsListAccountsRequest {
|
|
190
|
+
walletId: string;
|
|
191
|
+
limit: number;
|
|
192
|
+
cursor?: string;
|
|
193
|
+
}
|
|
194
|
+
export interface WalletsApiV1WalletsRetrieveRequest {
|
|
195
|
+
walletId: string;
|
|
196
|
+
}
|
|
197
|
+
export interface WalletsApiV1WalletsUpdateRequest {
|
|
198
|
+
walletId: string;
|
|
199
|
+
request: UpdateWalletRequest;
|
|
200
|
+
}
|
|
201
|
+
export declare class ObjectWalletsApi {
|
|
202
|
+
private api;
|
|
203
|
+
constructor(configuration: Configuration, requestFactory?: WalletsApiRequestFactory, responseProcessor?: WalletsApiResponseProcessor);
|
|
204
|
+
v1WalletsCreate(param: WalletsApiV1WalletsCreateRequest, options?: Configuration): Promise<Wallet>;
|
|
205
|
+
v1WalletsList(param: WalletsApiV1WalletsListRequest, options?: Configuration): Promise<CursorPageWallet>;
|
|
206
|
+
v1WalletsListAccounts(param: WalletsApiV1WalletsListAccountsRequest, options?: Configuration): Promise<CursorPageAccount>;
|
|
207
|
+
v1WalletsRetrieve(param: WalletsApiV1WalletsRetrieveRequest, options?: Configuration): Promise<Wallet>;
|
|
208
|
+
v1WalletsUpdate(param: WalletsApiV1WalletsUpdateRequest, options?: Configuration): Promise<Wallet>;
|
|
209
|
+
}
|
|
210
|
+
import { WebhookEndpointsApiRequestFactory, WebhookEndpointsApiResponseProcessor } from "../apis/WebhookEndpointsApi";
|
|
211
|
+
export interface WebhookEndpointsApiV1WebhooksCreateRequest {
|
|
212
|
+
request: CreateEndpoint;
|
|
213
|
+
}
|
|
214
|
+
export interface WebhookEndpointsApiV1WebhooksDeleteRequest {
|
|
215
|
+
endpointId: string;
|
|
216
|
+
}
|
|
217
|
+
export interface WebhookEndpointsApiV1WebhooksListRequest {
|
|
218
|
+
limit: number;
|
|
219
|
+
cursor?: string;
|
|
220
|
+
}
|
|
221
|
+
export interface WebhookEndpointsApiV1WebhooksRetrieveRequest {
|
|
222
|
+
endpointId: string;
|
|
223
|
+
}
|
|
224
|
+
export interface WebhookEndpointsApiV1WebhooksUpdateRequest {
|
|
225
|
+
endpointId: string;
|
|
226
|
+
request: UpdateEndpoint;
|
|
227
|
+
}
|
|
228
|
+
export declare class ObjectWebhookEndpointsApi {
|
|
229
|
+
private api;
|
|
230
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEndpointsApiRequestFactory, responseProcessor?: WebhookEndpointsApiResponseProcessor);
|
|
231
|
+
v1WebhooksCreate(param: WebhookEndpointsApiV1WebhooksCreateRequest, options?: Configuration): Promise<Endpoint>;
|
|
232
|
+
v1WebhooksDelete(param: WebhookEndpointsApiV1WebhooksDeleteRequest, options?: Configuration): Promise<DeleteWebhookEndpointResponse>;
|
|
233
|
+
v1WebhooksList(param: WebhookEndpointsApiV1WebhooksListRequest, options?: Configuration): Promise<CursorPageEndpoint>;
|
|
234
|
+
v1WebhooksRetrieve(param: WebhookEndpointsApiV1WebhooksRetrieveRequest, options?: Configuration): Promise<Endpoint>;
|
|
235
|
+
v1WebhooksUpdate(param: WebhookEndpointsApiV1WebhooksUpdateRequest, options?: Configuration): Promise<Endpoint>;
|
|
236
|
+
}
|
|
237
|
+
import { WebhookEventTypesApiRequestFactory, WebhookEventTypesApiResponseProcessor } from "../apis/WebhookEventTypesApi";
|
|
238
|
+
export interface WebhookEventTypesApiV1WebhooksEventtypesListRequest {
|
|
239
|
+
}
|
|
240
|
+
export declare class ObjectWebhookEventTypesApi {
|
|
241
|
+
private api;
|
|
242
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEventTypesApiRequestFactory, responseProcessor?: WebhookEventTypesApiResponseProcessor);
|
|
243
|
+
v1WebhooksEventtypesList(param: WebhookEventTypesApiV1WebhooksEventtypesListRequest, options?: Configuration): Promise<Array<EventType>>;
|
|
244
|
+
}
|
|
245
|
+
import { WebhookEventsApiRequestFactory, WebhookEventsApiResponseProcessor } from "../apis/WebhookEventsApi";
|
|
246
|
+
export interface WebhookEventsApiV1WebhooksEventsListRequest {
|
|
247
|
+
limit: number;
|
|
248
|
+
cursor?: string;
|
|
249
|
+
eventTypes?: Array<string>;
|
|
250
|
+
}
|
|
251
|
+
export interface WebhookEventsApiV1WebhooksEventsResendRequest {
|
|
252
|
+
request: ResendWebhookEventRequest;
|
|
253
|
+
}
|
|
254
|
+
export declare class ObjectWebhookEventsApi {
|
|
255
|
+
private api;
|
|
256
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEventsApiRequestFactory, responseProcessor?: WebhookEventsApiResponseProcessor);
|
|
257
|
+
v1WebhooksEventsList(param: WebhookEventsApiV1WebhooksEventsListRequest, options?: Configuration): Promise<CursorPageWebhookEvent>;
|
|
258
|
+
v1WebhooksEventsResend(param: WebhookEventsApiV1WebhooksEventsResendRequest, options?: Configuration): Promise<ResendWebhookEventResponse>;
|
|
259
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ObjectWebhookEventsApi = exports.ObjectWebhookEventTypesApi = exports.ObjectWebhookEndpointsApi = exports.ObjectWalletsApi = exports.ObjectTransactionsApi = exports.ObjectSweepFundsApi = exports.ObjectRatesApi = exports.ObjectNetworksApi = exports.ObjectExchangesApi = exports.ObjectCurrenciesApi = exports.ObjectAddressesApi = void 0;
|
|
4
|
+
const ObservableAPI_1 = require("./ObservableAPI");
|
|
5
|
+
class ObjectAddressesApi {
|
|
6
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
7
|
+
this.api = new ObservableAPI_1.ObservableAddressesApi(configuration, requestFactory, responseProcessor);
|
|
8
|
+
}
|
|
9
|
+
v1AddressesList(param, options) {
|
|
10
|
+
return this.api.v1AddressesList(param.limit, param.currency, param.cursor, param.type, param.walletId, options).toPromise();
|
|
11
|
+
}
|
|
12
|
+
v1WalletsGetDepositAddress(param, options) {
|
|
13
|
+
return this.api.v1WalletsGetDepositAddress(param.walletId, param.currency, param.network, options).toPromise();
|
|
14
|
+
}
|
|
15
|
+
v1WalletsListDepositAddresses(param, options) {
|
|
16
|
+
return this.api.v1WalletsListDepositAddresses(param.walletId, param.limit, param.currency, param.cursor, param.network, options).toPromise();
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.ObjectAddressesApi = ObjectAddressesApi;
|
|
20
|
+
const ObservableAPI_2 = require("./ObservableAPI");
|
|
21
|
+
class ObjectCurrenciesApi {
|
|
22
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
23
|
+
this.api = new ObservableAPI_2.ObservableCurrenciesApi(configuration, requestFactory, responseProcessor);
|
|
24
|
+
}
|
|
25
|
+
v1CurrenciesList(param, options) {
|
|
26
|
+
return this.api.v1CurrenciesList(param.limit, param.cursor, param.rated, options).toPromise();
|
|
27
|
+
}
|
|
28
|
+
v1CurrenciesRetrieve(param, options) {
|
|
29
|
+
return this.api.v1CurrenciesRetrieve(param.code, options).toPromise();
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
exports.ObjectCurrenciesApi = ObjectCurrenciesApi;
|
|
33
|
+
const ObservableAPI_3 = require("./ObservableAPI");
|
|
34
|
+
class ObjectExchangesApi {
|
|
35
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
36
|
+
this.api = new ObservableAPI_3.ObservableExchangesApi(configuration, requestFactory, responseProcessor);
|
|
37
|
+
}
|
|
38
|
+
v1ExchangesCreate(param, options) {
|
|
39
|
+
return this.api.v1ExchangesCreate(param.request, options).toPromise();
|
|
40
|
+
}
|
|
41
|
+
v1ExchangesCurrencyPairs(param, options) {
|
|
42
|
+
return this.api.v1ExchangesCurrencyPairs(options).toPromise();
|
|
43
|
+
}
|
|
44
|
+
v1ExchangesCurrencyQuota(param, options) {
|
|
45
|
+
return this.api.v1ExchangesCurrencyQuota(param.fromCurrency, param.toCurrency, options).toPromise();
|
|
46
|
+
}
|
|
47
|
+
v1ExchangesList(param, options) {
|
|
48
|
+
return this.api.v1ExchangesList(param.limit, param.walletId, param.cursor, options).toPromise();
|
|
49
|
+
}
|
|
50
|
+
v1ExchangesRetrieve(param, options) {
|
|
51
|
+
return this.api.v1ExchangesRetrieve(param.exchangeId, options).toPromise();
|
|
52
|
+
}
|
|
53
|
+
v1ExchangesSubmit(param, options) {
|
|
54
|
+
return this.api.v1ExchangesSubmit(param.exchangeId, options).toPromise();
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.ObjectExchangesApi = ObjectExchangesApi;
|
|
58
|
+
const ObservableAPI_4 = require("./ObservableAPI");
|
|
59
|
+
class ObjectNetworksApi {
|
|
60
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
61
|
+
this.api = new ObservableAPI_4.ObservableNetworksApi(configuration, requestFactory, responseProcessor);
|
|
62
|
+
}
|
|
63
|
+
v1NetworksList(param, options) {
|
|
64
|
+
return this.api.v1NetworksList(param.limit, param.cursor, options).toPromise();
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.ObjectNetworksApi = ObjectNetworksApi;
|
|
68
|
+
const ObservableAPI_5 = require("./ObservableAPI");
|
|
69
|
+
class ObjectRatesApi {
|
|
70
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
71
|
+
this.api = new ObservableAPI_5.ObservableRatesApi(configuration, requestFactory, responseProcessor);
|
|
72
|
+
}
|
|
73
|
+
v1RatesEstimate(param, options) {
|
|
74
|
+
return this.api.v1RatesEstimate(param.baseAmount, param.baseCurrency, param.toCurrency, options).toPromise();
|
|
75
|
+
}
|
|
76
|
+
v1RatesList(param, options) {
|
|
77
|
+
return this.api.v1RatesList(param.request, options).toPromise();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
exports.ObjectRatesApi = ObjectRatesApi;
|
|
81
|
+
const ObservableAPI_6 = require("./ObservableAPI");
|
|
82
|
+
class ObjectSweepFundsApi {
|
|
83
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
84
|
+
this.api = new ObservableAPI_6.ObservableSweepFundsApi(configuration, requestFactory, responseProcessor);
|
|
85
|
+
}
|
|
86
|
+
v1SweepAddress(param, options) {
|
|
87
|
+
return this.api.v1SweepAddress(param.address, param.request, options).toPromise();
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
exports.ObjectSweepFundsApi = ObjectSweepFundsApi;
|
|
91
|
+
const ObservableAPI_7 = require("./ObservableAPI");
|
|
92
|
+
class ObjectTransactionsApi {
|
|
93
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
94
|
+
this.api = new ObservableAPI_7.ObservableTransactionsApi(configuration, requestFactory, responseProcessor);
|
|
95
|
+
}
|
|
96
|
+
v1TransactionsEstimateFee(param, options) {
|
|
97
|
+
return this.api.v1TransactionsEstimateFee(param.request, options).toPromise();
|
|
98
|
+
}
|
|
99
|
+
v1TransactionsList(param, options) {
|
|
100
|
+
return this.api.v1TransactionsList(param.limit, param.currency, param.cursor, param.direction, param.gateway, param.network, param.status, param.txhash, param.walletId, options).toPromise();
|
|
101
|
+
}
|
|
102
|
+
v1TransactionsRetrieve(param, options) {
|
|
103
|
+
return this.api.v1TransactionsRetrieve(param.transactionId, options).toPromise();
|
|
104
|
+
}
|
|
105
|
+
v1TransactionsTransfer(param, options) {
|
|
106
|
+
return this.api.v1TransactionsTransfer(param.request, options).toPromise();
|
|
107
|
+
}
|
|
108
|
+
v1TransactionsWithdraw(param, options) {
|
|
109
|
+
return this.api.v1TransactionsWithdraw(param.request, options).toPromise();
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
exports.ObjectTransactionsApi = ObjectTransactionsApi;
|
|
113
|
+
const ObservableAPI_8 = require("./ObservableAPI");
|
|
114
|
+
class ObjectWalletsApi {
|
|
115
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
116
|
+
this.api = new ObservableAPI_8.ObservableWalletsApi(configuration, requestFactory, responseProcessor);
|
|
117
|
+
}
|
|
118
|
+
v1WalletsCreate(param, options) {
|
|
119
|
+
return this.api.v1WalletsCreate(param.request, options).toPromise();
|
|
120
|
+
}
|
|
121
|
+
v1WalletsList(param, options) {
|
|
122
|
+
return this.api.v1WalletsList(param.limit, param.cursor, options).toPromise();
|
|
123
|
+
}
|
|
124
|
+
v1WalletsListAccounts(param, options) {
|
|
125
|
+
return this.api.v1WalletsListAccounts(param.walletId, param.limit, param.cursor, options).toPromise();
|
|
126
|
+
}
|
|
127
|
+
v1WalletsRetrieve(param, options) {
|
|
128
|
+
return this.api.v1WalletsRetrieve(param.walletId, options).toPromise();
|
|
129
|
+
}
|
|
130
|
+
v1WalletsUpdate(param, options) {
|
|
131
|
+
return this.api.v1WalletsUpdate(param.walletId, param.request, options).toPromise();
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
exports.ObjectWalletsApi = ObjectWalletsApi;
|
|
135
|
+
const ObservableAPI_9 = require("./ObservableAPI");
|
|
136
|
+
class ObjectWebhookEndpointsApi {
|
|
137
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
138
|
+
this.api = new ObservableAPI_9.ObservableWebhookEndpointsApi(configuration, requestFactory, responseProcessor);
|
|
139
|
+
}
|
|
140
|
+
v1WebhooksCreate(param, options) {
|
|
141
|
+
return this.api.v1WebhooksCreate(param.request, options).toPromise();
|
|
142
|
+
}
|
|
143
|
+
v1WebhooksDelete(param, options) {
|
|
144
|
+
return this.api.v1WebhooksDelete(param.endpointId, options).toPromise();
|
|
145
|
+
}
|
|
146
|
+
v1WebhooksList(param, options) {
|
|
147
|
+
return this.api.v1WebhooksList(param.limit, param.cursor, options).toPromise();
|
|
148
|
+
}
|
|
149
|
+
v1WebhooksRetrieve(param, options) {
|
|
150
|
+
return this.api.v1WebhooksRetrieve(param.endpointId, options).toPromise();
|
|
151
|
+
}
|
|
152
|
+
v1WebhooksUpdate(param, options) {
|
|
153
|
+
return this.api.v1WebhooksUpdate(param.endpointId, param.request, options).toPromise();
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
exports.ObjectWebhookEndpointsApi = ObjectWebhookEndpointsApi;
|
|
157
|
+
const ObservableAPI_10 = require("./ObservableAPI");
|
|
158
|
+
class ObjectWebhookEventTypesApi {
|
|
159
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
160
|
+
this.api = new ObservableAPI_10.ObservableWebhookEventTypesApi(configuration, requestFactory, responseProcessor);
|
|
161
|
+
}
|
|
162
|
+
v1WebhooksEventtypesList(param, options) {
|
|
163
|
+
return this.api.v1WebhooksEventtypesList(options).toPromise();
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
exports.ObjectWebhookEventTypesApi = ObjectWebhookEventTypesApi;
|
|
167
|
+
const ObservableAPI_11 = require("./ObservableAPI");
|
|
168
|
+
class ObjectWebhookEventsApi {
|
|
169
|
+
constructor(configuration, requestFactory, responseProcessor) {
|
|
170
|
+
this.api = new ObservableAPI_11.ObservableWebhookEventsApi(configuration, requestFactory, responseProcessor);
|
|
171
|
+
}
|
|
172
|
+
v1WebhooksEventsList(param, options) {
|
|
173
|
+
return this.api.v1WebhooksEventsList(param.limit, param.cursor, param.eventTypes, options).toPromise();
|
|
174
|
+
}
|
|
175
|
+
v1WebhooksEventsResend(param, options) {
|
|
176
|
+
return this.api.v1WebhooksEventsResend(param.request, options).toPromise();
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
exports.ObjectWebhookEventsApi = ObjectWebhookEventsApi;
|
|
180
|
+
//# sourceMappingURL=ObjectParamAPI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ObjectParamAPI.js","sourceRoot":"","sources":["../../../src/openapi/types/ObjectParamAPI.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { Configuration } from '../configuration';
|
|
2
|
+
import { Observable } from '../rxjsStub';
|
|
3
|
+
import { Address } from '../models/Address';
|
|
4
|
+
import { CreateEndpoint } from '../models/CreateEndpoint';
|
|
5
|
+
import { CreateExchange } from '../models/CreateExchange';
|
|
6
|
+
import { CreateTransferRequest } from '../models/CreateTransferRequest';
|
|
7
|
+
import { CreateTransferResponse } from '../models/CreateTransferResponse';
|
|
8
|
+
import { CreateWalletRequest } from '../models/CreateWalletRequest';
|
|
9
|
+
import { CreateWithdrawReply } from '../models/CreateWithdrawReply';
|
|
10
|
+
import { CreateWithdrawRequest } from '../models/CreateWithdrawRequest';
|
|
11
|
+
import { Currency } from '../models/Currency';
|
|
12
|
+
import { CursorPageAccount } from '../models/CursorPageAccount';
|
|
13
|
+
import { CursorPageAddress } from '../models/CursorPageAddress';
|
|
14
|
+
import { CursorPageChainNetwork } from '../models/CursorPageChainNetwork';
|
|
15
|
+
import { CursorPageCurrency } from '../models/CursorPageCurrency';
|
|
16
|
+
import { CursorPageEndpoint } from '../models/CursorPageEndpoint';
|
|
17
|
+
import { CursorPageExchange } from '../models/CursorPageExchange';
|
|
18
|
+
import { CursorPageTransaction } from '../models/CursorPageTransaction';
|
|
19
|
+
import { CursorPageWallet } from '../models/CursorPageWallet';
|
|
20
|
+
import { CursorPageWebhookEvent } from '../models/CursorPageWebhookEvent';
|
|
21
|
+
import { DeleteWebhookEndpointResponse } from '../models/DeleteWebhookEndpointResponse';
|
|
22
|
+
import { Endpoint } from '../models/Endpoint';
|
|
23
|
+
import { EstimateFeeRequest } from '../models/EstimateFeeRequest';
|
|
24
|
+
import { EstimateFeeResponse } from '../models/EstimateFeeResponse';
|
|
25
|
+
import { EstimateResponse } from '../models/EstimateResponse';
|
|
26
|
+
import { EventType } from '../models/EventType';
|
|
27
|
+
import { Exchange } from '../models/Exchange';
|
|
28
|
+
import { ExchangeSubmitResponse } from '../models/ExchangeSubmitResponse';
|
|
29
|
+
import { GetCurrencyPairQuotaResponse } from '../models/GetCurrencyPairQuotaResponse';
|
|
30
|
+
import { GetRatesRequest } from '../models/GetRatesRequest';
|
|
31
|
+
import { GetRatesResponse } from '../models/GetRatesResponse';
|
|
32
|
+
import { ListExchangeCurrencyPairsResponse } from '../models/ListExchangeCurrencyPairsResponse';
|
|
33
|
+
import { ResendWebhookEventRequest } from '../models/ResendWebhookEventRequest';
|
|
34
|
+
import { ResendWebhookEventResponse } from '../models/ResendWebhookEventResponse';
|
|
35
|
+
import { SweepAddressRequest } from '../models/SweepAddressRequest';
|
|
36
|
+
import { SweepAddressResponse } from '../models/SweepAddressResponse';
|
|
37
|
+
import { Transaction } from '../models/Transaction';
|
|
38
|
+
import { UpdateEndpoint } from '../models/UpdateEndpoint';
|
|
39
|
+
import { UpdateWalletRequest } from '../models/UpdateWalletRequest';
|
|
40
|
+
import { Wallet } from '../models/Wallet';
|
|
41
|
+
import { AddressesApiRequestFactory, AddressesApiResponseProcessor } from "../apis/AddressesApi";
|
|
42
|
+
export declare class ObservableAddressesApi {
|
|
43
|
+
private requestFactory;
|
|
44
|
+
private responseProcessor;
|
|
45
|
+
private configuration;
|
|
46
|
+
constructor(configuration: Configuration, requestFactory?: AddressesApiRequestFactory, responseProcessor?: AddressesApiResponseProcessor);
|
|
47
|
+
v1AddressesList(limit: number, currency?: string, cursor?: string, type?: string, walletId?: string, _options?: Configuration): Observable<CursorPageAddress>;
|
|
48
|
+
v1WalletsGetDepositAddress(walletId: string, currency: string, network: string, _options?: Configuration): Observable<Address>;
|
|
49
|
+
v1WalletsListDepositAddresses(walletId: string, limit: number, currency?: string, cursor?: string, network?: string, _options?: Configuration): Observable<CursorPageAddress>;
|
|
50
|
+
}
|
|
51
|
+
import { CurrenciesApiRequestFactory, CurrenciesApiResponseProcessor } from "../apis/CurrenciesApi";
|
|
52
|
+
export declare class ObservableCurrenciesApi {
|
|
53
|
+
private requestFactory;
|
|
54
|
+
private responseProcessor;
|
|
55
|
+
private configuration;
|
|
56
|
+
constructor(configuration: Configuration, requestFactory?: CurrenciesApiRequestFactory, responseProcessor?: CurrenciesApiResponseProcessor);
|
|
57
|
+
v1CurrenciesList(limit: number, cursor?: string, rated?: boolean, _options?: Configuration): Observable<CursorPageCurrency>;
|
|
58
|
+
v1CurrenciesRetrieve(code: string, _options?: Configuration): Observable<Currency>;
|
|
59
|
+
}
|
|
60
|
+
import { ExchangesApiRequestFactory, ExchangesApiResponseProcessor } from "../apis/ExchangesApi";
|
|
61
|
+
export declare class ObservableExchangesApi {
|
|
62
|
+
private requestFactory;
|
|
63
|
+
private responseProcessor;
|
|
64
|
+
private configuration;
|
|
65
|
+
constructor(configuration: Configuration, requestFactory?: ExchangesApiRequestFactory, responseProcessor?: ExchangesApiResponseProcessor);
|
|
66
|
+
v1ExchangesCreate(request: CreateExchange, _options?: Configuration): Observable<Exchange>;
|
|
67
|
+
v1ExchangesCurrencyPairs(_options?: Configuration): Observable<ListExchangeCurrencyPairsResponse>;
|
|
68
|
+
v1ExchangesCurrencyQuota(fromCurrency: string, toCurrency: string, _options?: Configuration): Observable<GetCurrencyPairQuotaResponse>;
|
|
69
|
+
v1ExchangesList(limit: number, walletId: string, cursor?: string, _options?: Configuration): Observable<CursorPageExchange>;
|
|
70
|
+
v1ExchangesRetrieve(exchangeId: string, _options?: Configuration): Observable<Exchange>;
|
|
71
|
+
v1ExchangesSubmit(exchangeId: string, _options?: Configuration): Observable<ExchangeSubmitResponse>;
|
|
72
|
+
}
|
|
73
|
+
import { NetworksApiRequestFactory, NetworksApiResponseProcessor } from "../apis/NetworksApi";
|
|
74
|
+
export declare class ObservableNetworksApi {
|
|
75
|
+
private requestFactory;
|
|
76
|
+
private responseProcessor;
|
|
77
|
+
private configuration;
|
|
78
|
+
constructor(configuration: Configuration, requestFactory?: NetworksApiRequestFactory, responseProcessor?: NetworksApiResponseProcessor);
|
|
79
|
+
v1NetworksList(limit: number, cursor?: string, _options?: Configuration): Observable<CursorPageChainNetwork>;
|
|
80
|
+
}
|
|
81
|
+
import { RatesApiRequestFactory, RatesApiResponseProcessor } from "../apis/RatesApi";
|
|
82
|
+
export declare class ObservableRatesApi {
|
|
83
|
+
private requestFactory;
|
|
84
|
+
private responseProcessor;
|
|
85
|
+
private configuration;
|
|
86
|
+
constructor(configuration: Configuration, requestFactory?: RatesApiRequestFactory, responseProcessor?: RatesApiResponseProcessor);
|
|
87
|
+
v1RatesEstimate(baseAmount: string, baseCurrency: string, toCurrency: string, _options?: Configuration): Observable<EstimateResponse>;
|
|
88
|
+
v1RatesList(request: GetRatesRequest, _options?: Configuration): Observable<GetRatesResponse>;
|
|
89
|
+
}
|
|
90
|
+
import { SweepFundsApiRequestFactory, SweepFundsApiResponseProcessor } from "../apis/SweepFundsApi";
|
|
91
|
+
export declare class ObservableSweepFundsApi {
|
|
92
|
+
private requestFactory;
|
|
93
|
+
private responseProcessor;
|
|
94
|
+
private configuration;
|
|
95
|
+
constructor(configuration: Configuration, requestFactory?: SweepFundsApiRequestFactory, responseProcessor?: SweepFundsApiResponseProcessor);
|
|
96
|
+
v1SweepAddress(address: string, request: SweepAddressRequest, _options?: Configuration): Observable<SweepAddressResponse>;
|
|
97
|
+
}
|
|
98
|
+
import { TransactionsApiRequestFactory, TransactionsApiResponseProcessor } from "../apis/TransactionsApi";
|
|
99
|
+
export declare class ObservableTransactionsApi {
|
|
100
|
+
private requestFactory;
|
|
101
|
+
private responseProcessor;
|
|
102
|
+
private configuration;
|
|
103
|
+
constructor(configuration: Configuration, requestFactory?: TransactionsApiRequestFactory, responseProcessor?: TransactionsApiResponseProcessor);
|
|
104
|
+
v1TransactionsEstimateFee(request: EstimateFeeRequest, _options?: Configuration): Observable<EstimateFeeResponse>;
|
|
105
|
+
v1TransactionsList(limit: number, currency?: string, cursor?: string, direction?: 'OUT' | 'IN', gateway?: string, network?: string, status?: 'PROCESSING' | 'CANCELED' | 'FAILED' | 'SUCCEED', txhash?: string, walletId?: string, _options?: Configuration): Observable<CursorPageTransaction>;
|
|
106
|
+
v1TransactionsRetrieve(transactionId: string, _options?: Configuration): Observable<Transaction>;
|
|
107
|
+
v1TransactionsTransfer(request: CreateTransferRequest, _options?: Configuration): Observable<CreateTransferResponse>;
|
|
108
|
+
v1TransactionsWithdraw(request: CreateWithdrawRequest, _options?: Configuration): Observable<CreateWithdrawReply>;
|
|
109
|
+
}
|
|
110
|
+
import { WalletsApiRequestFactory, WalletsApiResponseProcessor } from "../apis/WalletsApi";
|
|
111
|
+
export declare class ObservableWalletsApi {
|
|
112
|
+
private requestFactory;
|
|
113
|
+
private responseProcessor;
|
|
114
|
+
private configuration;
|
|
115
|
+
constructor(configuration: Configuration, requestFactory?: WalletsApiRequestFactory, responseProcessor?: WalletsApiResponseProcessor);
|
|
116
|
+
v1WalletsCreate(request: CreateWalletRequest, _options?: Configuration): Observable<Wallet>;
|
|
117
|
+
v1WalletsList(limit: number, cursor?: string, _options?: Configuration): Observable<CursorPageWallet>;
|
|
118
|
+
v1WalletsListAccounts(walletId: string, limit: number, cursor?: string, _options?: Configuration): Observable<CursorPageAccount>;
|
|
119
|
+
v1WalletsRetrieve(walletId: string, _options?: Configuration): Observable<Wallet>;
|
|
120
|
+
v1WalletsUpdate(walletId: string, request: UpdateWalletRequest, _options?: Configuration): Observable<Wallet>;
|
|
121
|
+
}
|
|
122
|
+
import { WebhookEndpointsApiRequestFactory, WebhookEndpointsApiResponseProcessor } from "../apis/WebhookEndpointsApi";
|
|
123
|
+
export declare class ObservableWebhookEndpointsApi {
|
|
124
|
+
private requestFactory;
|
|
125
|
+
private responseProcessor;
|
|
126
|
+
private configuration;
|
|
127
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEndpointsApiRequestFactory, responseProcessor?: WebhookEndpointsApiResponseProcessor);
|
|
128
|
+
v1WebhooksCreate(request: CreateEndpoint, _options?: Configuration): Observable<Endpoint>;
|
|
129
|
+
v1WebhooksDelete(endpointId: string, _options?: Configuration): Observable<DeleteWebhookEndpointResponse>;
|
|
130
|
+
v1WebhooksList(limit: number, cursor?: string, _options?: Configuration): Observable<CursorPageEndpoint>;
|
|
131
|
+
v1WebhooksRetrieve(endpointId: string, _options?: Configuration): Observable<Endpoint>;
|
|
132
|
+
v1WebhooksUpdate(endpointId: string, request: UpdateEndpoint, _options?: Configuration): Observable<Endpoint>;
|
|
133
|
+
}
|
|
134
|
+
import { WebhookEventTypesApiRequestFactory, WebhookEventTypesApiResponseProcessor } from "../apis/WebhookEventTypesApi";
|
|
135
|
+
export declare class ObservableWebhookEventTypesApi {
|
|
136
|
+
private requestFactory;
|
|
137
|
+
private responseProcessor;
|
|
138
|
+
private configuration;
|
|
139
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEventTypesApiRequestFactory, responseProcessor?: WebhookEventTypesApiResponseProcessor);
|
|
140
|
+
v1WebhooksEventtypesList(_options?: Configuration): Observable<Array<EventType>>;
|
|
141
|
+
}
|
|
142
|
+
import { WebhookEventsApiRequestFactory, WebhookEventsApiResponseProcessor } from "../apis/WebhookEventsApi";
|
|
143
|
+
export declare class ObservableWebhookEventsApi {
|
|
144
|
+
private requestFactory;
|
|
145
|
+
private responseProcessor;
|
|
146
|
+
private configuration;
|
|
147
|
+
constructor(configuration: Configuration, requestFactory?: WebhookEventsApiRequestFactory, responseProcessor?: WebhookEventsApiResponseProcessor);
|
|
148
|
+
v1WebhooksEventsList(limit: number, cursor?: string, eventTypes?: Array<string>, _options?: Configuration): Observable<CursorPageWebhookEvent>;
|
|
149
|
+
v1WebhooksEventsResend(request: ResendWebhookEventRequest, _options?: Configuration): Observable<ResendWebhookEventResponse>;
|
|
150
|
+
}
|