@clivly/auth-clerk 0.3.0-next.7 → 0.3.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.
- package/README.md +4 -0
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[Clerk](https://clerk.com) implementation of Clivly's `ClivlyAuthAdapter`. Resolves a CRM end-user's identity from the host app's Clerk session.
|
|
4
4
|
|
|
5
|
+
> **Preview-quality surface.** Install with `npm install @clivly/auth-clerk`.
|
|
6
|
+
> The email mapper and session resolution are unit-tested; broader host-app
|
|
7
|
+
> compatibility coverage is still growing.
|
|
8
|
+
|
|
5
9
|
`@clerk/backend` is a peer dependency.
|
|
6
10
|
|
|
7
11
|
```ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clivly/auth-clerk",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Clerk implementation of Clivly's ClivlyAuthAdapter.",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@clivly/core": "0.3.0
|
|
28
|
+
"@clivly/core": "0.3.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@clerk/backend": ">=1"
|
|
@@ -33,11 +33,13 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@clerk/backend": "^1.34.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",
|