@servicelabsco/nestjs-utility-services 1.1.51 → 1.1.52
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.
@@ -11,15 +11,17 @@ const bull_1 = require("@nestjs/bull");
|
|
11
11
|
const common_1 = require("@nestjs/common");
|
12
12
|
const config = require("config");
|
13
13
|
const es6_classes_1 = require("./es6.classes");
|
14
|
+
const auth_module_1 = require("../auth/auth.module");
|
14
15
|
const cacheConfig = require("../config/cache.config");
|
15
16
|
const name = process.env.QUEUE_NAME || config.get('queue.name');
|
16
17
|
let PlatformUtilityModule = class PlatformUtilityModule {
|
17
18
|
};
|
18
19
|
PlatformUtilityModule = __decorate([
|
19
20
|
(0, common_1.Module)({
|
20
|
-
imports: [bull_1.BullModule.registerQueue({ name }), common_1.CacheModule.register(cacheConfig)],
|
21
|
+
imports: [bull_1.BullModule.registerQueue({ name }), common_1.CacheModule.register(cacheConfig), (0, common_1.forwardRef)(() => auth_module_1.AuthModule)],
|
21
22
|
providers: [...es6_classes_1.default.services, ...es6_classes_1.default.consumers, ...es6_classes_1.default.subscribers, ...es6_classes_1.default.commands, ...es6_classes_1.default.jobs],
|
22
|
-
|
23
|
+
controllers: es6_classes_1.default.controllers,
|
24
|
+
exports: [...es6_classes_1.default.services, ...es6_classes_1.default.jobs],
|
23
25
|
})
|
24
26
|
], PlatformUtilityModule);
|
25
27
|
exports.PlatformUtilityModule = PlatformUtilityModule;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"platform.utility.module.js","sourceRoot":"","sources":["../../src/platformUtility/platform.utility.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,uCAA0C;AAC1C,
|
1
|
+
{"version":3,"file":"platform.utility.module.js","sourceRoot":"","sources":["../../src/platformUtility/platform.utility.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,uCAA0C;AAC1C,2CAAiE;AACjE,iCAAiC;AACjC,+CAAuC;AACvC,qDAAiD;AACjD,sDAAuD;AAEvD,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,IAAI,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;AAQzD,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;CAAG,CAAA;AAAxB,qBAAqB;IANjC,IAAA,eAAM,EAAC;QACJ,OAAO,EAAE,CAAC,iBAAU,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,oBAAW,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,wBAAU,CAAC,CAAC;QAC9G,SAAS,EAAE,CAAC,GAAG,qBAAU,CAAC,QAAQ,EAAE,GAAG,qBAAU,CAAC,SAAS,EAAE,GAAG,qBAAU,CAAC,WAAW,EAAE,GAAG,qBAAU,CAAC,QAAQ,EAAE,GAAG,qBAAU,CAAC,IAAI,CAAC;QACnI,WAAW,EAAE,qBAAU,CAAC,WAAW;QACnC,OAAO,EAAE,CAAC,GAAG,qBAAU,CAAC,QAAQ,EAAE,GAAG,qBAAU,CAAC,IAAI,CAAC;KACxD,CAAC;GACW,qBAAqB,CAAG;AAAxB,sDAAqB"}
|
package/package.json
CHANGED