cc-core-cli 1.0.37 → 1.0.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -75,6 +75,7 @@ import {
75
75
  JWTAuthGuard,
76
76
  CsrfGuard,
77
77
  CacheInterceptor,
78
+ FilterInterceptor,
78
79
  AuditLogService
79
80
  } from '@shopstack/cc-core-lib/core'
80
81
 
@@ -253,7 +254,7 @@ async function bootstrap() {
253
254
  exclude: [{ path: "private/*", method: RequestMethod.GET }]
254
255
  });
255
256
  app.use(request);
256
- // app.useGlobalInterceptors(new FilterInterceptor(reflector));
257
+ app.useGlobalInterceptors(new FilterInterceptor(reflector));
257
258
  app.useGlobalInterceptors(new CacheInterceptor(reflector));
258
259
 
259
260
  // app.enableCors();