@workos-inc/node 7.22.0 → 7.22.1
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/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/workos.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './common/utils/pagination';
|
|
|
10
10
|
export * from './directory-sync/interfaces';
|
|
11
11
|
export * from './directory-sync/utils/get-primary-email';
|
|
12
12
|
export * from './events/interfaces';
|
|
13
|
+
export * from './fga/interfaces';
|
|
13
14
|
export * from './organizations/interfaces';
|
|
14
15
|
export * from './passwordless/interfaces';
|
|
15
16
|
export * from './portal/interfaces';
|
package/lib/index.js
CHANGED
|
@@ -29,6 +29,7 @@ __exportStar(require("./common/utils/pagination"), exports);
|
|
|
29
29
|
__exportStar(require("./directory-sync/interfaces"), exports);
|
|
30
30
|
__exportStar(require("./directory-sync/utils/get-primary-email"), exports);
|
|
31
31
|
__exportStar(require("./events/interfaces"), exports);
|
|
32
|
+
__exportStar(require("./fga/interfaces"), exports);
|
|
32
33
|
__exportStar(require("./organizations/interfaces"), exports);
|
|
33
34
|
__exportStar(require("./passwordless/interfaces"), exports);
|
|
34
35
|
__exportStar(require("./portal/interfaces"), exports);
|
package/lib/workos.js
CHANGED
|
@@ -27,7 +27,7 @@ const bad_request_exception_1 = require("./common/exceptions/bad-request.excepti
|
|
|
27
27
|
const http_client_1 = require("./common/net/http-client");
|
|
28
28
|
const subtle_crypto_provider_1 = require("./common/crypto/subtle-crypto-provider");
|
|
29
29
|
const fetch_client_1 = require("./common/net/fetch-client");
|
|
30
|
-
const VERSION = '7.22.
|
|
30
|
+
const VERSION = '7.22.1';
|
|
31
31
|
const DEFAULT_HOSTNAME = 'api.workos.com';
|
|
32
32
|
const HEADER_AUTHORIZATION = 'Authorization';
|
|
33
33
|
const HEADER_IDEMPOTENCY_KEY = 'Idempotency-Key';
|
package/package.json
CHANGED