fiberx-backend-toolkit 0.0.58 → 0.0.59

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,2 @@
1
+ import EmailEnqueueGenerator from "./generators/email_enqueue_generator";
2
+ export { EmailEnqueueGenerator };
@@ -1 +1,8 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.EmailEnqueueGenerator = void 0;
7
+ const email_enqueue_generator_1 = __importDefault(require("./generators/email_enqueue_generator"));
8
+ exports.EmailEnqueueGenerator = email_enqueue_generator_1.default;
@@ -6,3 +6,4 @@ export * from "./database_type";
6
6
  export * from "./module_type";
7
7
  export * from "./express_decelaration";
8
8
  export * from "./rbac_type";
9
+ export * from "./mailer_type";
@@ -22,3 +22,4 @@ __exportStar(require("./database_type"), exports);
22
22
  __exportStar(require("./module_type"), exports);
23
23
  __exportStar(require("./express_decelaration"), exports);
24
24
  __exportStar(require("./rbac_type"), exports);
25
+ __exportStar(require("./mailer_type"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiberx-backend-toolkit",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",