@better-auth/scim 1.5.0-beta.8 → 1.5.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 +17 -0
- package/dist/client.d.mts +3 -2
- package/dist/client.mjs +2 -1
- package/dist/client.mjs.map +1 -0
- package/dist/index.d.mts +3443 -2
- package/dist/index.mjs +222 -50
- package/dist/index.mjs.map +1 -0
- package/package.json +26 -20
- package/.turbo/turbo-build.log +0 -16
- package/dist/index-C1g0YSP7.d.mts +0 -3213
- package/src/client.ts +0 -9
- package/src/index.ts +0 -74
- package/src/mappings.ts +0 -38
- package/src/middlewares.ts +0 -89
- package/src/patch-operations.ts +0 -148
- package/src/routes.ts +0 -984
- package/src/scim-error.ts +0 -99
- package/src/scim-filters.ts +0 -69
- package/src/scim-metadata.ts +0 -128
- package/src/scim-resources.ts +0 -35
- package/src/scim-tokens.ts +0 -71
- package/src/scim.test.ts +0 -2525
- package/src/types.ts +0 -70
- package/src/user-schemas.ts +0 -213
- package/src/utils.ts +0 -5
- package/tsconfig.json +0 -11
- package/tsdown.config.ts +0 -7
- package/vitest.config.ts +0 -3
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Better Auth SCIM Plugin
|
|
2
|
+
|
|
3
|
+
SCIM (System for Cross-domain Identity Management) plugin for [Better Auth](https://www.better-auth.com) — enable enterprise user provisioning.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @better-auth/scim
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Documentation
|
|
12
|
+
|
|
13
|
+
For full documentation, visit [better-auth.com/docs/plugins/scim](https://www.better-auth.com/docs/plugins/scim).
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
package/dist/client.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { scim } from "./index.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/client.d.ts
|
|
4
4
|
declare const scimClient: () => {
|
|
@@ -6,4 +6,5 @@ declare const scimClient: () => {
|
|
|
6
6
|
$InferServerPlugin: ReturnType<typeof scim>;
|
|
7
7
|
};
|
|
8
8
|
//#endregion
|
|
9
|
-
export { scimClient };
|
|
9
|
+
export { scimClient };
|
|
10
|
+
//# sourceMappingURL=client.d.mts.map
|
package/dist/client.mjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.mjs","names":[],"sources":["../src/client.ts"],"sourcesContent":["import type { BetterAuthClientPlugin } from \"better-auth/client\";\nimport type { scim } from \"./index\";\n\nexport const scimClient = () => {\n\treturn {\n\t\tid: \"scim-client\",\n\t\t$InferServerPlugin: {} as ReturnType<typeof scim>,\n\t} satisfies BetterAuthClientPlugin;\n};\n"],"mappings":";AAGA,MAAa,mBAAmB;AAC/B,QAAO;EACN,IAAI;EACJ,oBAAoB,EAAE;EACtB"}
|