@clivly/auth-workos 0.3.0-next.7 → 0.4.0

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/README.md +4 -0
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  [WorkOS](https://workos.com) implementation of Clivly's `ClivlyAuthAdapter`. Unseals the host app's AuthKit session cookie to resolve a CRM end-user's identity.
4
4
 
5
+ > **Preview-quality surface.** Install with `npm install @clivly/auth-workos`.
6
+ > The user mapper, cookie reader, and session resolution are unit-tested;
7
+ > broader host-app compatibility coverage is still growing.
8
+
5
9
  `@workos-inc/node` is a peer dependency.
6
10
 
7
11
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clivly/auth-workos",
3
- "version": "0.3.0-next.7",
3
+ "version": "0.4.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "WorkOS implementation of Clivly's ClivlyAuthAdapter.",
@@ -25,7 +25,7 @@
25
25
  "access": "public"
26
26
  },
27
27
  "dependencies": {
28
- "@clivly/core": "0.3.0-next.7"
28
+ "@clivly/core": "0.4.0"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@workos-inc/node": ">=7"
@@ -33,11 +33,13 @@
33
33
  "devDependencies": {
34
34
  "@workos-inc/node": "^7.75.0",
35
35
  "tsdown": "^0.21.9",
36
- "typescript": "^6"
36
+ "typescript": "^6",
37
+ "vitest": "3.2.7"
37
38
  },
38
39
  "scripts": {
39
40
  "build": "tsdown",
40
- "check-types": "tsc --noEmit"
41
+ "check-types": "tsc --noEmit",
42
+ "test": "vitest run"
41
43
  },
42
44
  "main": "./dist/index.cjs",
43
45
  "types": "./dist/index.d.cts",