import { AxiosRequestConfig } from 'axios'; import { RestClientType } from '../types/shared.js'; import { RestClientOptions } from './requestUtils.js'; export default abstract class BaseRestClient { private options; private baseUrl; private globalRequestOptions; private apiKey; private apiSecret; private apiPass; /** Defines the client type (affecting how requests & signatures behave) */ abstract getClientType(): RestClientType; /** * Create an instance of the REST client. Pass API credentials in the object in the first parameter. * @param {RestClientOptions} [restClientOptions={}] options to configure REST API connectivity * @param {AxiosRequestConfig} [networkOptions={}] HTTP networking options for axios */ constructor(restOptions?: RestClientOptions, networkOptions?: AxiosRequestConfig); get(endpoint: string, params?: any): Promise; getPrivate(endpoint: string, params?: any): Promise; post(endpoint: string, params?: any): Promise; postPrivate(endpoint: string, params?: any): Promise; deletePrivate(endpoint: string, params?: any): Promise; /** * @private Make a HTTP request to a specific endpoint. Private endpoint API calls are automatically signed. */ private _call; /** * @private generic handler to parse request exceptions */ parseException(e: any): unknown; private signMessage; /** * @private sign request and set recv window */ private signRequest; private prepareSignParams; /** Returns an axios request object. Handles signing process automatically if this is a private API call */ private buildRequest; }