@gello/auth 0.2.2 → 0.2.4

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 (2) hide show
  1. package/index.d.ts +18 -7
  2. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -5,10 +5,21 @@
5
5
  *
6
6
  * This package re-exports all auth packages for convenient access.
7
7
  */
8
- export * from '../../../auth/core/src/index.ts';
9
- export * from '../../../auth/session/src/index.ts';
10
- export * from '../../../auth/authorization/src/index.ts';
11
- export * from '../../../auth/social/src/index.ts';
12
- export * from '../../../auth/templates/src/index.ts';
13
- export * from '../../../auth/testing/src/index.ts';
14
- //# sourceMappingURL=index.d.ts.map
8
+
9
+ // Core - Types, errors, services
10
+ export * from "@gello/auth-core";
11
+
12
+ // Session - Session management, JWT, CSRF
13
+ export * from "@gello/auth-session";
14
+
15
+ // Authorization - CASL-style abilities
16
+ export * from "@gello/auth-authorization";
17
+
18
+ // Social - OAuth providers
19
+ export * from "@gello/auth-social";
20
+
21
+ // Templates - Pre-built email templates
22
+ export * from "@gello/auth-templates";
23
+
24
+ // Testing - Mock implementations and test utilities
25
+ export * from "@gello/auth-testing";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gello/auth",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Complete authentication and authorization system for Gello",
5
5
  "keywords": [
6
6
  "gello",
@@ -35,9 +35,9 @@
35
35
  "node": ">=20.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@gello/auth-core": "^0.1.0",
39
- "@gello/auth-session": "^0.1.0",
40
- "@gello/auth-authorization": "^0.1.0",
38
+ "@gello/auth-core": "^0.1.1",
39
+ "@gello/auth-session": "^0.1.1",
40
+ "@gello/auth-authorization": "^0.1.1",
41
41
  "@gello/auth-social": "^0.1.0",
42
42
  "@gello/auth-templates": "^0.1.0",
43
43
  "@gello/auth-testing": "^0.1.0"