@innv/nest-initializer 0.4.8 → 0.4.9

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.
@@ -4,3 +4,5 @@ export { MongooseModuleOptions } from './starters/mongoose.starter';
4
4
  export { CachingModuleOptions } from './starters/caching.starter';
5
5
  export { TerminusHealthCheckOptions } from './features/terminus-health-check.module';
6
6
  export { IndexPageOptions } from './features/index-page.factory';
7
+ export { RequestLoggerPlugin } from './plugins/request-logger.plugin';
8
+ export { RateLimiterPlugin } from './plugins/rate-limiter.plugin';
package/dist/cjs/index.js CHANGED
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RateLimiterPlugin = exports.RequestLoggerPlugin = void 0;
3
4
  const tslib_1 = require("tslib");
4
5
  tslib_1.__exportStar(require("./core/app-initializer"), exports);
6
+ var request_logger_plugin_1 = require("./plugins/request-logger.plugin");
7
+ Object.defineProperty(exports, "RequestLoggerPlugin", { enumerable: true, get: function () { return request_logger_plugin_1.RequestLoggerPlugin; } });
8
+ var rate_limiter_plugin_1 = require("./plugins/rate-limiter.plugin");
9
+ Object.defineProperty(exports, "RateLimiterPlugin", { enumerable: true, get: function () { return rate_limiter_plugin_1.RateLimiterPlugin; } });
5
10
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,iEAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,iEAAuC;AAUvC,yEAAsE;AAA7D,4HAAA,mBAAmB,OAAA;AAC5B,qEAAkE;AAAzD,wHAAA,iBAAiB,OAAA"}
@@ -4,3 +4,5 @@ export { MongooseModuleOptions } from './starters/mongoose.starter';
4
4
  export { CachingModuleOptions } from './starters/caching.starter';
5
5
  export { TerminusHealthCheckOptions } from './features/terminus-health-check.module';
6
6
  export { IndexPageOptions } from './features/index-page.factory';
7
+ export { RequestLoggerPlugin } from './plugins/request-logger.plugin';
8
+ export { RateLimiterPlugin } from './plugins/rate-limiter.plugin';
package/dist/esm/index.js CHANGED
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RateLimiterPlugin = exports.RequestLoggerPlugin = void 0;
3
4
  const tslib_1 = require("tslib");
4
5
  tslib_1.__exportStar(require("./core/app-initializer"), exports);
6
+ var request_logger_plugin_1 = require("./plugins/request-logger.plugin");
7
+ Object.defineProperty(exports, "RequestLoggerPlugin", { enumerable: true, get: function () { return request_logger_plugin_1.RequestLoggerPlugin; } });
8
+ var rate_limiter_plugin_1 = require("./plugins/rate-limiter.plugin");
9
+ Object.defineProperty(exports, "RateLimiterPlugin", { enumerable: true, get: function () { return rate_limiter_plugin_1.RateLimiterPlugin; } });
5
10
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,iEAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,iEAAuC;AAUvC,yEAAsE;AAA7D,4HAAA,mBAAmB,OAAA;AAC5B,qEAAkE;AAAzD,wHAAA,iBAAiB,OAAA"}
@@ -4,3 +4,5 @@ export { MongooseModuleOptions } from './starters/mongoose.starter';
4
4
  export { CachingModuleOptions } from './starters/caching.starter';
5
5
  export { TerminusHealthCheckOptions } from './features/terminus-health-check.module';
6
6
  export { IndexPageOptions } from './features/index-page.factory';
7
+ export { RequestLoggerPlugin } from './plugins/request-logger.plugin';
8
+ export { RateLimiterPlugin } from './plugins/rate-limiter.plugin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@innv/nest-initializer",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "Uma plataforma fluente e opinativa para inicializar e configurar aplicações NestJS com as melhores práticas.",
5
5
  "author": "Innovare",
6
6
  "license": "MIT",