@gustavo-valsechi/node 1.0.33 → 1.0.34

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.mts CHANGED
@@ -3,8 +3,8 @@ export { apiRouter, mainRouter } from './src/router/index.mjs';
3
3
  export { app, serverInit } from './src/server/index.mjs';
4
4
  export { OPERATORS, converter, existsOperator, moduler, paginate, refactorWhere, responseWrapper } from './src/tools/index.mjs';
5
5
  export { IMiddlewareContract, TenantService } from './src/services/index.mjs';
6
+ export { OptionsSchema } from './src/schemas/index.mjs';
6
7
  import 'typeorm';
7
8
  import 'fastify';
8
9
  import 'http';
9
- import './src/schemas/index.mjs';
10
10
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -3,8 +3,8 @@ export { apiRouter, mainRouter } from './src/router/index.js';
3
3
  export { app, serverInit } from './src/server/index.js';
4
4
  export { OPERATORS, converter, existsOperator, moduler, paginate, refactorWhere, responseWrapper } from './src/tools/index.js';
5
5
  export { IMiddlewareContract, TenantService } from './src/services/index.js';
6
+ export { OptionsSchema } from './src/schemas/index.js';
6
7
  import 'typeorm';
7
8
  import 'fastify';
8
9
  import 'http';
9
- import './src/schemas/index.js';
10
10
  import 'zod';
package/dist/index.js CHANGED
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
33
  OPERATORS: () => OPERATORS,
34
+ OptionsSchema: () => OptionsSchema,
34
35
  TenantService: () => TenantService,
35
36
  apiRouter: () => apiRouter,
36
37
  app: () => app,
@@ -353,6 +354,7 @@ var TenantService = class {
353
354
  // Annotate the CommonJS export names for ESM import in node:
354
355
  0 && (module.exports = {
355
356
  OPERATORS,
357
+ OptionsSchema,
356
358
  TenantService,
357
359
  apiRouter,
358
360
  app,
package/dist/index.mjs CHANGED
@@ -322,6 +322,7 @@ var TenantService = class {
322
322
  };
323
323
  export {
324
324
  OPERATORS,
325
+ OptionsSchema,
325
326
  TenantService,
326
327
  apiRouter,
327
328
  app,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gustavo-valsechi/node",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",