@ngn-net/nestjs-telescope 0.1.1 → 0.1.3

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.
@@ -10,6 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.TelescopeModule = void 0;
11
11
  // src/telescope.module.ts
12
12
  const common_1 = require("@nestjs/common");
13
+ const cache_manager_1 = require("@nestjs/cache-manager");
13
14
  const typeorm_1 = require("@nestjs/typeorm");
14
15
  const bullmq_1 = require("@nestjs/bullmq");
15
16
  const config_1 = require("@nestjs/config");
@@ -36,6 +37,7 @@ let TelescopeModule = TelescopeModule_1 = class TelescopeModule {
36
37
  imports: [
37
38
  config_1.ConfigModule.forRoot({ isGlobal: true }),
38
39
  typeorm_1.TypeOrmModule.forFeature([telescope_entry_entity_1.TelescopeEntry]),
40
+ cache_manager_1.CacheModule.register({}),
39
41
  bullmq_1.BullModule.registerQueue({
40
42
  name: 'telescope-queue',
41
43
  connection: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngn-net/nestjs-telescope",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },