UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

80 lines 3.72 kB
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { createAuthProviderFromConfig } from './authProvider'; import { Environment } from './configuration'; import { DEFAULT_CONFIGURATION, DEFAULT_RETRY_CONFIG, } from './defaultConfiguration'; import { ApiError } from './core'; import { AbortError, createRequestBuilderFactory, } from './core'; import { HttpClient } from './clientAdapter'; const USER_AGENT = 'APIMATIC 3.0'; export class Client { constructor(config) { var _a, _b, _c, _d; this._config = Object.assign(Object.assign({}, DEFAULT_CONFIGURATION), config); this._retryConfig = Object.assign(Object.assign({}, DEFAULT_RETRY_CONFIG), (_a = this._config.httpClientOptions) === null || _a === void 0 ? void 0 : _a.retryConfig); this._timeout = typeof ((_b = this._config.httpClientOptions) === null || _b === void 0 ? void 0 : _b.timeout) != 'undefined' ? this._config.httpClientOptions.timeout : this._config.timeout; const clonedConfig = Object.assign(Object.assign({}, this._config), { bearerAuthCredentials: this._config.bearerAuthCredentials || { accessToken: this._config.accessToken || '', } }); this._requestBuilderFactory = createRequestHandlerFactory((server) => getBaseUri(server, this._config), createAuthProviderFromConfig(clonedConfig), new HttpClient(AbortError, { timeout: this._timeout, clientConfigOverrides: this._config.unstable_httpClientOptions, httpAgent: (_c = this._config.httpClientOptions) === null || _c === void 0 ? void 0 : _c.httpAgent, httpsAgent: (_d = this._config.httpClientOptions) === null || _d === void 0 ? void 0 : _d.httpsAgent, }), [withErrorHandlers, withUserAgent, withAuthenticationByDefault], this._retryConfig); } getRequestBuilderFactory() { return this._requestBuilderFactory; } /** * Clone this client and override given configuration options */ withConfiguration(config) { return new Client(Object.assign(Object.assign({}, this._config), config)); } } function createHttpClientAdapter(client) { return async (request, requestOptions) => { return await client.executeRequest(request, requestOptions); }; } function getBaseUri(server = 'default', config) { if (config.environment === Environment.Production) { if (server === 'default') { return 'https://api-nomatls.apicentre.middleware.co.nz/open-banking-nz/v2.3'; } } if (config.environment === Environment.Environment2) { if (server === 'default') { return 'https://authserver.example'; } } throw new Error('Could not get Base URL. Invalid environment or server.'); } function createRequestHandlerFactory(baseUrlProvider, authProvider, httpClient, addons, retryConfig) { const requestBuilderFactory = createRequestBuilderFactory(createHttpClientAdapter(httpClient), baseUrlProvider, ApiError, authProvider, retryConfig); return tap(requestBuilderFactory, ...addons); } function tap(requestBuilderFactory, ...callback) { return (...args) => { const requestBuilder = requestBuilderFactory(...args); callback.forEach((c) => c(requestBuilder)); return requestBuilder; }; } function withErrorHandlers(rb) { rb.defaultToError(ApiError); } function withUserAgent(rb) { rb.header('user-agent', USER_AGENT); } function withAuthenticationByDefault(rb) { rb.authenticate([{ hTTPBearerAuthentication: true }]); } //# sourceMappingURL=client.js.map