@gello/auth 0.2.5 → 0.2.7

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.
Files changed (3) hide show
  1. package/index.d.ts +4 -3
  2. package/index.js +0 -1
  3. package/package.json +4 -13
package/index.d.ts CHANGED
@@ -4,6 +4,10 @@
4
4
  * Complete authentication and authorization system for Gello.
5
5
  *
6
6
  * This package re-exports all auth packages for convenient access.
7
+ *
8
+ * Note: @gello/auth-templates is NOT re-exported here because it requires
9
+ * React as a peer dependency. Import it directly if needed:
10
+ * import { ... } from '@gello/auth-templates';
7
11
  */
8
12
 
9
13
  // Core - Types, errors, services
@@ -18,8 +22,5 @@ export * from "@gello/auth-authorization";
18
22
  // Social - OAuth providers
19
23
  export * from "@gello/auth-social";
20
24
 
21
- // Templates - Pre-built email templates
22
- export * from "@gello/auth-templates";
23
-
24
25
  // Testing - Mock implementations and test utilities
25
26
  export * from "@gello/auth-testing";
package/index.js CHANGED
@@ -2,5 +2,4 @@ export * from "@gello/auth-core";
2
2
  export * from "@gello/auth-session";
3
3
  export * from "@gello/auth-authorization";
4
4
  export * from "@gello/auth-social";
5
- export * from "@gello/auth-templates";
6
5
  export * from "@gello/auth-testing";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gello/auth",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "description": "Complete authentication and authorization system for Gello",
5
5
  "keywords": [
6
6
  "gello",
@@ -35,23 +35,14 @@
35
35
  "node": ">=20.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@gello/auth-core": "^0.1.2",
39
- "@gello/auth-session": "^0.1.2",
40
- "@gello/auth-authorization": "^0.1.2",
38
+ "@gello/auth-core": "^0.1.3",
39
+ "@gello/auth-session": "^0.1.3",
40
+ "@gello/auth-authorization": "^0.1.3",
41
41
  "@gello/auth-social": "^0.1.0",
42
- "@gello/auth-templates": "^0.1.0",
43
42
  "@gello/auth-testing": "^0.1.0"
44
43
  },
45
44
  "peerDependencies": {
46
45
  "effect": "^3.19.0",
47
46
  "@effect/platform": "^0.94.0"
48
- },
49
- "peerDependenciesMeta": {
50
- "@react-email/components": {
51
- "optional": true
52
- },
53
- "react": {
54
- "optional": true
55
- }
56
47
  }
57
48
  }