Skip to content

Commit

Permalink
v4.0.2 (#946)
Browse files Browse the repository at this point in the history
## Description

## Documentation

Does this require changes to the WorkOS Docs? E.g. the [API
Reference](https://workos.com/docs/reference) or code snippets need
updates.

```
[ ] Yes
```

If yes, link a related docs PR and add a docs maintainer as a reviewer.
Their approval is required.

---------

Co-authored-by: Luke Morales <[email protected]>
  • Loading branch information
amygdalama and lukemorales authored Jan 17, 2024
1 parent 7f9024e commit 408f2b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.0.0",
"version": "4.0.2",
"name": "@workos-inc/node",
"author": "WorkOS",
"description": "A Node wrapper for the WorkOS API",
Expand Down Expand Up @@ -34,7 +34,7 @@
"prepublishOnly": "yarn run build"
},
"dependencies": {
"axios": "1.6.0",
"axios": "~1.6.5",
"pluralize": "8.0.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/sso/__snapshots__/sso.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ exports[`SSO SSO getProfileAndToken with all information provided sends a reques
"Accept": "application/json, text/plain, */*",
"Authorization": "Bearer sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU",
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
"User-Agent": "workos-node/4.0.0",
"User-Agent": "workos-node/4.0.2",
}
`;

Expand Down Expand Up @@ -72,7 +72,7 @@ exports[`SSO SSO getProfileAndToken without a groups attribute sends a request t
"Accept": "application/json, text/plain, */*",
"Authorization": "Bearer sk_test_Sz3IQjepeSWaI4cMS4ms4sMuU",
"Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
"User-Agent": "workos-node/4.0.0",
"User-Agent": "workos-node/4.0.2",
}
`;

Expand Down
2 changes: 1 addition & 1 deletion src/workos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { AuditLogs } from './audit-logs/audit-logs';
import { UserManagement } from './user-management/user-management';
import { BadRequestException } from './common/exceptions/bad-request.exception';

const VERSION = '4.0.0';
const VERSION = '4.0.2';

const DEFAULT_HOSTNAME = 'api.workos.com';

Expand Down

0 comments on commit 408f2b5

Please sign in to comment.