-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
fix(cfg): migrate to axios
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * as Service from "./service"; | ||
export * as Wallet from "./wallet"; | ||
//# sourceMappingURL=index.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Zarban API | ||
* API for Zarban services. | ||
* | ||
* The version of the OpenAPI document: 2.0.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
export * as AccountsApi from './api/accounts-api'; | ||
export * as AddressesApi from './api/addresses-api'; | ||
export * as BorrowsApi from './api/borrows-api'; | ||
export * as CollectorApi from './api/collector-api'; | ||
export * as DepositsApi from './api/deposits-api'; | ||
export * as IlksApi from './api/ilks-api'; | ||
export * as LendingPoolApi from './api/lending-pool-api'; | ||
export * as LogsApi from './api/logs-api'; | ||
export * as OrdersApi from './api/orders-api'; | ||
export * as PermitApi from './api/permit-api'; | ||
export * as PointsApi from './api/points-api'; | ||
export * as PricesApi from './api/prices-api'; | ||
export * as StableCoinSystemApi from './api/stable-coin-system-api'; | ||
export * as StakingApi from './api/staking-api'; | ||
export * as SwapApi from './api/swap-api'; | ||
export * as VaultsApi from './api/vaults-api'; | ||
export * as WebsocketApi from './api/websocket-api'; | ||
//# sourceMappingURL=api.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/** | ||
* Zarban API | ||
* API for Zarban services. | ||
* | ||
* The version of the OpenAPI document: 2.0.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
import type { Configuration } from '../configuration'; | ||
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; | ||
import { type RequestArgs, BaseAPI } from '../base'; | ||
import type { Account } from '../model'; | ||
/** | ||
* AccountsApi - axios parameter creator | ||
* @export | ||
*/ | ||
export declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
* Get account by address | ||
* @summary Get account by address | ||
* @param {string} address Ethereum address of the account | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getAccountByAddress: (address: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
/** | ||
* AccountsApi - functional programming interface | ||
* @export | ||
*/ | ||
export declare const AccountsApiFp: (configuration?: Configuration) => { | ||
/** | ||
* Get account by address | ||
* @summary Get account by address | ||
* @param {string} address Ethereum address of the account | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getAccountByAddress(address: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Account>>; | ||
}; | ||
/** | ||
* AccountsApi - factory interface | ||
* @export | ||
*/ | ||
export declare const AccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
* Get account by address | ||
* @summary Get account by address | ||
* @param {string} address Ethereum address of the account | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getAccountByAddress(address: string, options?: RawAxiosRequestConfig): AxiosPromise<Account>; | ||
}; | ||
/** | ||
* AccountsApi - interface | ||
* @export | ||
* @interface AccountsApi | ||
*/ | ||
export interface AccountsApiInterface { | ||
/** | ||
* Get account by address | ||
* @summary Get account by address | ||
* @param {string} address Ethereum address of the account | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof AccountsApiInterface | ||
*/ | ||
getAccountByAddress(address: string, options?: RawAxiosRequestConfig): AxiosPromise<Account>; | ||
} | ||
/** | ||
* AccountsApi - object-oriented interface | ||
* @export | ||
* @class AccountsApi | ||
* @extends {BaseAPI} | ||
*/ | ||
export declare class AccountsApi extends BaseAPI implements AccountsApiInterface { | ||
/** | ||
* Get account by address | ||
* @summary Get account by address | ||
* @param {string} address Ethereum address of the account | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof AccountsApi | ||
*/ | ||
getAccountByAddress(address: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>; | ||
} | ||
//# sourceMappingURL=accounts-api.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.