@better-auth/scim 1.4.15 → 1.4.17
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @better-auth/scim@1.4.
|
|
2
|
+
> @better-auth/scim@1.4.17 build /home/runner/work/better-auth/better-auth/packages/scim
|
|
3
3
|
> tsdown
|
|
4
4
|
|
|
5
5
|
[34mℹ[39m tsdown [2mv0.17.2[22m powered by rolldown [2mv1.0.0-beta.53[22m
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[34mℹ[39m [2mdist/[22m[1mindex.mjs[22m [2m 39.48 kB[22m [2m│ gzip: 8.06 kB[22m
|
|
11
11
|
[34mℹ[39m [2mdist/[22m[1mclient.mjs[22m [2m 0.15 kB[22m [2m│ gzip: 0.14 kB[22m
|
|
12
12
|
[34mℹ[39m [2mdist/[22m[32m[1mclient.d.mts[22m[39m [2m 0.22 kB[22m [2m│ gzip: 0.18 kB[22m
|
|
13
|
-
[34mℹ[39m [2mdist/[22m[32m[1mindex.d.mts[22m[39m [2m 0.
|
|
14
|
-
[34mℹ[39m [2mdist/[22m[32mindex-
|
|
15
|
-
[34mℹ[39m 5 files, total: 148.
|
|
16
|
-
[32m✔[39m Build complete in [
|
|
13
|
+
[34mℹ[39m [2mdist/[22m[32m[1mindex.d.mts[22m[39m [2m 0.18 kB[22m [2m│ gzip: 0.13 kB[22m
|
|
14
|
+
[34mℹ[39m [2mdist/[22m[32mindex-DPfcI61l.d.mts[39m [2m108.60 kB[22m [2m│ gzip: 4.37 kB[22m
|
|
15
|
+
[34mℹ[39m 5 files, total: 148.62 kB
|
|
16
|
+
[32m✔[39m Build complete in [32m8641ms[39m
|
package/dist/client.d.mts
CHANGED
|
@@ -11,6 +11,15 @@ interface SCIMProvider {
|
|
|
11
11
|
scimToken: string;
|
|
12
12
|
organizationId?: string;
|
|
13
13
|
}
|
|
14
|
+
type SCIMName = {
|
|
15
|
+
formatted?: string;
|
|
16
|
+
givenName?: string;
|
|
17
|
+
familyName?: string;
|
|
18
|
+
};
|
|
19
|
+
type SCIMEmail = {
|
|
20
|
+
value?: string;
|
|
21
|
+
primary?: boolean;
|
|
22
|
+
};
|
|
14
23
|
type SCIMOptions = {
|
|
15
24
|
/**
|
|
16
25
|
* Default list of SCIM providers for testing
|
|
@@ -3203,4 +3212,4 @@ declare const scim: (options?: SCIMOptions) => {
|
|
|
3203
3212
|
options: SCIMOptions | undefined;
|
|
3204
3213
|
};
|
|
3205
3214
|
//#endregion
|
|
3206
|
-
export { scim as t };
|
|
3215
|
+
export { SCIMProvider as a, SCIMOptions as i, SCIMEmail as n, SCIMName as r, scim as t };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as scim } from "./index-
|
|
2
|
-
export { scim };
|
|
1
|
+
import { a as SCIMProvider, i as SCIMOptions, n as SCIMEmail, r as SCIMName, t as scim } from "./index-DPfcI61l.mjs";
|
|
2
|
+
export { SCIMEmail, SCIMName, SCIMOptions, SCIMProvider, scim };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/scim",
|
|
3
3
|
"author": "Jonathan Samines",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.17",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.mts",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"better-call": "1.1.8",
|
|
47
46
|
"@better-auth/utils": "0.3.0",
|
|
48
|
-
"
|
|
47
|
+
"better-call": "1.1.8",
|
|
48
|
+
"zod": "^4.3.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"tsdown": "^0.17.2",
|
|
52
|
-
"@better-auth/sso": "1.4.
|
|
52
|
+
"@better-auth/sso": "1.4.17"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"better-auth": "1.4.
|
|
55
|
+
"better-auth": "1.4.17"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"test": "vitest",
|