@jmlq/auth 0.0.1-alpha.3 → 0.0.1-alpha.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.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from "./application/factories";
2
2
  export * from "./domain/ports";
3
+ export * from "./domain/entities";
3
4
  export * from "./domain/props";
4
5
  export * from "./domain/errors";
5
6
  export * from "./application/dtos";
package/dist/index.js CHANGED
@@ -19,6 +19,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
19
19
  __exportStar(require("./application/factories"), exports);
20
20
  // Contratos (ports) + config
21
21
  __exportStar(require("./domain/ports"), exports);
22
+ // Entities
23
+ __exportStar(require("./domain/entities"), exports);
22
24
  // Contratos (ports) + config
23
25
  __exportStar(require("./domain/props"), exports);
24
26
  // Errores públicos
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jmlq/auth",
3
3
  "description": "JWT authentication package with clean architecture",
4
- "version": "0.0.1-alpha.3",
4
+ "version": "0.0.1-alpha.4",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {