diff --git a/__tests__/openIDClientFactory.spec.ts b/__tests__/openIDClientFactory.spec.ts index 9bef248..f018f46 100644 --- a/__tests__/openIDClientFactory.spec.ts +++ b/__tests__/openIDClientFactory.spec.ts @@ -48,7 +48,7 @@ describe('Test OpenIDClientFactory class', () => { test('should not throw an error and set proxy properly', async () => { const proxyUrl = 'http://proxy.example.com:8080'; - const userAgent = `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`; + const userAgent = `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`; jest.mocked(Issuer.discover).mockResolvedValue({ metadata: { diff --git a/package.json b/package.json index 9230c57..0f1b11b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@factset/sdk-utils", "description": "Utilities for interacting with FactSet APIs.", - "version": "2.1.3", + "version": "2.1.4", "homepage": "https://developer.factset.com", "repository": "FactSet/enterprise-sdk-utils-typescript.git", "main": "lib/index.js", diff --git a/src/openIDClientFactory.ts b/src/openIDClientFactory.ts index 6a4fbff..26af80f 100644 --- a/src/openIDClientFactory.ts +++ b/src/openIDClientFactory.ts @@ -16,7 +16,7 @@ export class OpenIDClientFactory { custom.setHttpOptionsDefaults({ agent: proxyAgent, headers: { - 'user-agent': `fds-sdk/javascript/utils/2.1.3 (${process.platform}; node ${process.version})`, + 'user-agent': `fds-sdk/javascript/utils/2.1.4 (${process.platform}; node ${process.version})`, }, }); }