@workos-inc/node 7.11.0 → 7.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/workos.js +1 -1
  2. package/package.json +3 -2
package/lib/workos.js CHANGED
@@ -26,7 +26,7 @@ const bad_request_exception_1 = require("./common/exceptions/bad-request.excepti
26
26
  const http_client_1 = require("./common/net/http-client");
27
27
  const subtle_crypto_provider_1 = require("./common/crypto/subtle-crypto-provider");
28
28
  const fetch_client_1 = require("./common/net/fetch-client");
29
- const VERSION = '7.11.0';
29
+ const VERSION = '7.11.2';
30
30
  const DEFAULT_HOSTNAME = 'api.workos.com';
31
31
  class WorkOS {
32
32
  constructor(key, options = {}) {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "7.11.0",
2
+ "version": "7.11.2",
3
3
  "name": "@workos-inc/node",
4
4
  "author": "WorkOS",
5
5
  "description": "A Node wrapper for the WorkOS API",
@@ -15,6 +15,7 @@
15
15
  "engines": {
16
16
  "node": ">=16"
17
17
  },
18
+ "typings": "lib/index.d.ts",
18
19
  "files": [
19
20
  "lib/"
20
21
  ],
@@ -52,7 +53,7 @@
52
53
  "typescript": "5.1.6"
53
54
  },
54
55
  "exports": {
55
- "types": "./types/index.d.ts",
56
+ "types": "./lib/index.d.ts",
56
57
  "worker": {
57
58
  "import": "./lib/index.worker.js"
58
59
  },