@better-auth/scim 1.5.6 → 1.6.0-beta.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/dist/client.d.mts CHANGED
@@ -3,8 +3,8 @@ import { scim } from "./index.mjs";
3
3
  //#region src/client.d.ts
4
4
  declare const scimClient: () => {
5
5
  id: "scim-client";
6
+ version: string;
6
7
  $InferServerPlugin: ReturnType<typeof scim>;
7
8
  };
8
9
  //#endregion
9
- export { scimClient };
10
- //# sourceMappingURL=client.d.mts.map
10
+ export { scimClient };
package/dist/client.mjs CHANGED
@@ -1,11 +1,11 @@
1
+ import { t as PACKAGE_VERSION } from "./version-BqMHXjG-.mjs";
1
2
  //#region src/client.ts
2
3
  const scimClient = () => {
3
4
  return {
4
5
  id: "scim-client",
6
+ version: PACKAGE_VERSION,
5
7
  $InferServerPlugin: {}
6
8
  };
7
9
  };
8
-
9
10
  //#endregion
10
11
  export { scimClient };
11
- //# sourceMappingURL=client.mjs.map