better-auth-university 0.1.0 → 0.2.1

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.
@@ -0,0 +1,5 @@
1
+ import { universityResolver } from './index.js';
2
+ export declare const universityResolverClient: () => {
3
+ id: "university-resolver";
4
+ $InferServerPlugin: ReturnType<typeof universityResolver>;
5
+ };
package/dist/client.js ADDED
@@ -0,0 +1,6 @@
1
+ export const universityResolverClient = () => {
2
+ return {
3
+ id: "university-resolver",
4
+ $InferServerPlugin: {},
5
+ };
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-auth-university",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "A university plugin for Better Auth that allows restriction of email domains.",
5
5
  "author": "Jaren Goldberg <fyrlex@gmail.com>",
6
6
  "main": "dist/index.js",
@@ -15,6 +15,11 @@
15
15
  "import": "./dist/index.js",
16
16
  "types": "./dist/index.d.ts",
17
17
  "require": "./dist/index.js"
18
+ },
19
+ "./client": {
20
+ "import": "./dist/client.js",
21
+ "types": "./dist/client.d.ts",
22
+ "require": "./dist/client.js"
18
23
  }
19
24
  },
20
25
  "scripts": {