cc-core-cli 1.0.39 → 1.0.41

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.39",
3
+ "version": "1.0.41",
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": {
@@ -50,7 +50,7 @@ import {
50
50
  SmsService,
51
51
  ReasonDataService,
52
52
  ReasonMasterService,
53
- ReasonOptionService,
53
+ ReasonOptionService,
54
54
  WidgetService,
55
55
  VersionDataService,
56
56
  ScheduleActionService,
@@ -76,7 +76,9 @@ import {
76
76
  CsrfGuard,
77
77
  CacheInterceptor,
78
78
  FilterInterceptor,
79
- AuditLogService
79
+ AuditLogService,
80
+ PipelineService,
81
+ PipelineJobService
80
82
  } from '@shopstack/cc-core-lib/core'
81
83
 
82
84
  import { CUSTOM_MODULES } from "src/modules/modules";
@@ -197,10 +199,14 @@ async function initial(app: NestFastifyApplication) {
197
199
  await initialService(app, ImportExportService);
198
200
  await initialService(app, ImportExportLogService);
199
201
 
202
+ await initialService(app, PipelineService);
203
+ await initialService(app, PipelineJobService);
204
+
200
205
  await initialService(app, EntitiesService);
201
206
  await refreshService(app, EntitiesService);
202
207
  await refreshService(app, ScheduleActionService);
203
208
  await refreshService(app, SettingService);
209
+
204
210
  }
205
211
 
206
212
  async function bootstrap() {