UNPKG

card-management-sdk

Version:

The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S

25 lines 1.14 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { compositeAuthenticationProvider, requestAuthenticationProvider, } from './authentication.js'; export function createAuthProviderFromConfig(config, bearerToken) { const authConfig = { bearerToken: config.clientCredentialsAuthCredentials && requestAuthenticationProvider(config.clientCredentialsAuthCredentials.oAuthToken, bearerTokenTokenProvider(bearerToken, config.clientCredentialsAuthCredentials.oAuthTokenProvider), config.clientCredentialsAuthCredentials.oAuthOnTokenUpdate, { clockSkew: config.clientCredentialsAuthCredentials.oAuthClockSkew, }), }; return compositeAuthenticationProvider(authConfig); } function bearerTokenTokenProvider(bearerToken, defaultProvider) { return (token) => { const manager = bearerToken(); if (defaultProvider === undefined) { return manager.updateToken(token); } return defaultProvider(token, manager); }; } //# sourceMappingURL=authProvider.js.map