Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __tests__/openIDClientFactory.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/openIDClientFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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})`,
},
});
}
Expand Down
Loading