@workos-inc/node 7.11.2 → 7.11.3
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.
- package/lib/workos.js +1 -1
- package/package.json +5 -3
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.
|
|
29
|
+
const VERSION = '7.11.3';
|
|
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.
|
|
2
|
+
"version": "7.11.3",
|
|
3
3
|
"name": "@workos-inc/node",
|
|
4
4
|
"author": "WorkOS",
|
|
5
5
|
"description": "A Node wrapper for the WorkOS API",
|
|
@@ -55,10 +55,12 @@
|
|
|
55
55
|
"exports": {
|
|
56
56
|
"types": "./lib/index.d.ts",
|
|
57
57
|
"worker": {
|
|
58
|
-
"import": "./lib/index.worker.js"
|
|
58
|
+
"import": "./lib/index.worker.js",
|
|
59
|
+
"default": "./lib/index.worker.js"
|
|
59
60
|
},
|
|
60
61
|
"default": {
|
|
61
|
-
"import": "./lib/index.js"
|
|
62
|
+
"import": "./lib/index.js",
|
|
63
|
+
"default": "./lib/index.js"
|
|
62
64
|
}
|
|
63
65
|
}
|
|
64
66
|
}
|