rez_core 2.1.109 → 2.1.110
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/dist/app.module.js +2 -0
- package/dist/app.module.js.map +1 -1
- package/dist/constant/global.constant.d.ts +8 -0
- package/dist/constant/global.constant.js +9 -1
- package/dist/constant/global.constant.js.map +1 -1
- package/dist/module/listmaster/controller/list-master.controller.d.ts +3 -0
- package/dist/module/listmaster/controller/list-master.controller.js +16 -0
- package/dist/module/listmaster/controller/list-master.controller.js.map +1 -1
- package/dist/module/listmaster/repository/list-master-items.repository.d.ts +1 -0
- package/dist/module/listmaster/repository/list-master-items.repository.js +3 -0
- package/dist/module/listmaster/repository/list-master-items.repository.js.map +1 -1
- package/dist/module/listmaster/service/list-master-item.service.d.ts +5 -2
- package/dist/module/listmaster/service/list-master-item.service.js +48 -3
- package/dist/module/listmaster/service/list-master-item.service.js.map +1 -1
- package/dist/module/master/controller/master.controller.js +0 -2
- package/dist/module/master/controller/master.controller.js.map +1 -1
- package/dist/module/master/service/master.service.js +4 -1
- package/dist/module/master/service/master.service.js.map +1 -1
- package/dist/module/meta/entity/attribute-master.entity.d.ts +1 -0
- package/dist/module/meta/entity/attribute-master.entity.js +4 -0
- package/dist/module/meta/entity/attribute-master.entity.js.map +1 -1
- package/dist/module/meta/repository/attribute-master.repository.d.ts +2 -1
- package/dist/module/meta/repository/attribute-master.repository.js +5 -3
- package/dist/module/meta/repository/attribute-master.repository.js.map +1 -1
- package/dist/module/meta/service/attribute-master.service.d.ts +2 -1
- package/dist/module/meta/service/attribute-master.service.js +2 -2
- package/dist/module/meta/service/attribute-master.service.js.map +1 -1
- package/dist/module/user/service/role.service.js +2 -2
- package/dist/module/user/service/role.service.js.map +1 -1
- package/dist/module/workflow/entity/action-category.entity.d.ts +4 -0
- package/dist/module/workflow/entity/action-category.entity.js +27 -0
- package/dist/module/workflow/entity/action-category.entity.js.map +1 -0
- package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +6 -0
- package/dist/module/workflow/entity/action-template-mapping.entity.js +35 -0
- package/dist/module/workflow/entity/action-template-mapping.entity.js.map +1 -0
- package/dist/module/workflow/entity/action.entity.d.ts +7 -0
- package/dist/module/workflow/entity/action.entity.js +39 -0
- package/dist/module/workflow/entity/action.entity.js.map +1 -0
- package/dist/module/workflow/entity/comm-template.entity.d.ts +4 -0
- package/dist/module/workflow/entity/comm-template.entity.js +27 -0
- package/dist/module/workflow/entity/comm-template.entity.js.map +1 -0
- package/dist/module/workflow/entity/stage-action-mapping.entity.d.ts +6 -0
- package/dist/module/workflow/entity/stage-action-mapping.entity.js +35 -0
- package/dist/module/workflow/entity/stage-action-mapping.entity.js.map +1 -0
- package/dist/module/workflow/entity/stage-group.entity.d.ts +6 -0
- package/dist/module/workflow/entity/stage-group.entity.js +35 -0
- package/dist/module/workflow/entity/stage-group.entity.js.map +1 -0
- package/dist/module/workflow/entity/stage.entity.d.ts +6 -0
- package/dist/module/workflow/entity/stage.entity.js +35 -0
- package/dist/module/workflow/entity/stage.entity.js.map +1 -0
- package/dist/module/workflow/entity/workflow.entity.d.ts +5 -0
- package/dist/module/workflow/entity/workflow.entity.js +31 -0
- package/dist/module/workflow/entity/workflow.entity.js.map +1 -0
- package/dist/module/workflow/repository/workflow.repository.d.ts +2 -0
- package/dist/module/workflow/repository/workflow.repository.js +17 -0
- package/dist/module/workflow/repository/workflow.repository.js.map +1 -0
- package/dist/module/workflow/service/action-category.service.d.ts +3 -0
- package/dist/module/workflow/service/action-category.service.js +18 -0
- package/dist/module/workflow/service/action-category.service.js.map +1 -0
- package/dist/module/workflow/service/action-template-mapping.service.d.ts +3 -0
- package/dist/module/workflow/service/action-template-mapping.service.js +18 -0
- package/dist/module/workflow/service/action-template-mapping.service.js.map +1 -0
- package/dist/module/workflow/service/action.service.d.ts +8 -0
- package/dist/module/workflow/service/action.service.js +47 -0
- package/dist/module/workflow/service/action.service.js.map +1 -0
- package/dist/module/workflow/service/comm-template.service.d.ts +3 -0
- package/dist/module/workflow/service/comm-template.service.js +18 -0
- package/dist/module/workflow/service/comm-template.service.js.map +1 -0
- package/dist/module/workflow/service/stage-action-mapping.service.d.ts +3 -0
- package/dist/module/workflow/service/stage-action-mapping.service.js +18 -0
- package/dist/module/workflow/service/stage-action-mapping.service.js.map +1 -0
- package/dist/module/workflow/service/stage-group.service.d.ts +3 -0
- package/dist/module/workflow/service/stage-group.service.js +18 -0
- package/dist/module/workflow/service/stage-group.service.js.map +1 -0
- package/dist/module/workflow/service/stage.service.d.ts +3 -0
- package/dist/module/workflow/service/stage.service.js +18 -0
- package/dist/module/workflow/service/stage.service.js.map +1 -0
- package/dist/module/workflow/service/workflow.service.d.ts +4 -0
- package/dist/module/workflow/service/workflow.service.js +25 -0
- package/dist/module/workflow/service/workflow.service.js.map +1 -0
- package/dist/module/workflow/workflow.module.d.ts +2 -0
- package/dist/module/workflow/workflow.module.js +76 -0
- package/dist/module/workflow/workflow.module.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/app.module.ts +2 -0
- package/src/constant/global.constant.ts +10 -0
- package/src/module/listmaster/controller/list-master.controller.ts +18 -0
- package/src/module/listmaster/repository/list-master-items.repository.ts +4 -0
- package/src/module/listmaster/service/list-master-item.service.ts +99 -2
- package/src/module/master/controller/master.controller.ts +1 -1
- package/src/module/master/service/master.service.ts +5 -1
- package/src/module/meta/entity/attribute-master.entity.ts +3 -0
- package/src/module/meta/repository/attribute-master.repository.ts +6 -3
- package/src/module/meta/service/attribute-master.service.ts +6 -4
- package/src/module/user/service/role.service.ts +2 -2
- package/src/module/workflow/entity/action-category.entity.ts +11 -0
- package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -0
- package/src/module/workflow/entity/action.entity.ts +20 -0
- package/src/module/workflow/entity/comm-template.entity.ts +11 -0
- package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -0
- package/src/module/workflow/entity/stage-group.entity.ts +17 -0
- package/src/module/workflow/entity/stage.entity.ts +17 -0
- package/src/module/workflow/entity/workflow.entity.ts +14 -0
- package/src/module/workflow/repository/workflow.repository.ts +4 -0
- package/src/module/workflow/service/action-category.service.ts +5 -0
- package/src/module/workflow/service/action-template-mapping.service.ts +5 -0
- package/src/module/workflow/service/action.service.ts +51 -0
- package/src/module/workflow/service/comm-template.service.ts +5 -0
- package/src/module/workflow/service/stage-action-mapping.service.ts +5 -0
- package/src/module/workflow/service/stage-group.service.ts +5 -0
- package/src/module/workflow/service/stage.service.ts +5 -0
- package/src/module/workflow/service/workflow.service.ts +9 -0
- package/src/module/workflow/workflow.module.ts +63 -0
- package/src/resources/dev.properties.yaml +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AAGjF,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,+CAAiB;IAClD;QACI,KAAK,EAAE,CAAC;IACZ,CAAC;CACJ,CAAA;AAJY,0CAAe;0BAAf,eAAe;IAD3B,IAAA,mBAAU,GAAE;;GACA,eAAe,CAI3B"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.WorkflowModule = void 0;
|
|
10
|
+
const common_1 = require("@nestjs/common");
|
|
11
|
+
const workflow_entity_1 = require("./entity/workflow.entity");
|
|
12
|
+
const workflow_service_1 = require("./service/workflow.service");
|
|
13
|
+
const stage_group_entity_1 = require("./entity/stage-group.entity");
|
|
14
|
+
const stage_entity_1 = require("./entity/stage.entity");
|
|
15
|
+
const action_category_entity_1 = require("./entity/action-category.entity");
|
|
16
|
+
const comm_template_entity_1 = require("./entity/comm-template.entity");
|
|
17
|
+
const action_template_mapping_entity_1 = require("./entity/action-template-mapping.entity");
|
|
18
|
+
const stage_action_mapping_entity_1 = require("./entity/stage-action-mapping.entity");
|
|
19
|
+
const action_category_service_1 = require("./service/action-category.service");
|
|
20
|
+
const comm_template_service_1 = require("./service/comm-template.service");
|
|
21
|
+
const stage_action_mapping_service_1 = require("./service/stage-action-mapping.service");
|
|
22
|
+
const action_template_mapping_service_1 = require("./service/action-template-mapping.service");
|
|
23
|
+
const action_service_1 = require("./service/action.service");
|
|
24
|
+
const stage_service_1 = require("./service/stage.service");
|
|
25
|
+
const stage_group_service_1 = require("./service/stage-group.service");
|
|
26
|
+
const typeorm_1 = require("@nestjs/typeorm");
|
|
27
|
+
const entity_module_1 = require("../meta/entity.module");
|
|
28
|
+
const action_entity_1 = require("./entity/action.entity");
|
|
29
|
+
let WorkflowModule = class WorkflowModule {
|
|
30
|
+
};
|
|
31
|
+
exports.WorkflowModule = WorkflowModule;
|
|
32
|
+
exports.WorkflowModule = WorkflowModule = __decorate([
|
|
33
|
+
(0, common_1.Module)({
|
|
34
|
+
imports: [
|
|
35
|
+
typeorm_1.TypeOrmModule.forFeature([
|
|
36
|
+
workflow_entity_1.Workflow,
|
|
37
|
+
action_entity_1.Action,
|
|
38
|
+
action_category_entity_1.ActionCategory,
|
|
39
|
+
stage_entity_1.Stage,
|
|
40
|
+
stage_group_entity_1.StageGroup,
|
|
41
|
+
comm_template_entity_1.CommTemplate,
|
|
42
|
+
action_template_mapping_entity_1.ActionTemplateMapping,
|
|
43
|
+
stage_action_mapping_entity_1.StageActionMapping,
|
|
44
|
+
]),
|
|
45
|
+
entity_module_1.EntityModule,
|
|
46
|
+
],
|
|
47
|
+
providers: [
|
|
48
|
+
{ provide: 'WorkflowService', useClass: workflow_service_1.WorkflowService },
|
|
49
|
+
{ provide: 'ActionCategoryService', useClass: action_category_service_1.ActionCategoryService },
|
|
50
|
+
{ provide: 'CommTemplateService', useClass: comm_template_service_1.CommTemplateService },
|
|
51
|
+
{
|
|
52
|
+
provide: 'ActionTemplateMappingService',
|
|
53
|
+
useClass: action_template_mapping_service_1.ActionTemplateMappingService,
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
provide: 'StageActionMappingService',
|
|
57
|
+
useClass: stage_action_mapping_service_1.StageActionMappingService,
|
|
58
|
+
},
|
|
59
|
+
{ provide: 'ActionService', useClass: action_service_1.ActionService },
|
|
60
|
+
{ provide: 'StageService', useClass: stage_service_1.StageService },
|
|
61
|
+
{ provide: 'StageGroupService', useClass: stage_group_service_1.StageGroupService },
|
|
62
|
+
],
|
|
63
|
+
exports: [
|
|
64
|
+
'WorkflowService',
|
|
65
|
+
'ActionCategoryService',
|
|
66
|
+
'CommTemplateService',
|
|
67
|
+
'ActionTemplateMappingService',
|
|
68
|
+
'StageActionMappingService',
|
|
69
|
+
'ActionService',
|
|
70
|
+
'StageService',
|
|
71
|
+
'StageGroupService',
|
|
72
|
+
],
|
|
73
|
+
controllers: [],
|
|
74
|
+
})
|
|
75
|
+
], WorkflowModule);
|
|
76
|
+
//# sourceMappingURL=workflow.module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow.module.js","sourceRoot":"","sources":["../../../src/module/workflow/workflow.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,8DAAoD;AACpD,iEAA6D;AAC7D,oEAAyD;AACzD,wDAA8C;AAC9C,4EAAiE;AACjE,wEAA6D;AAC7D,4FAAgF;AAChF,sFAA0E;AAC1E,+EAA0E;AAC1E,2EAAsE;AACtE,yFAAmF;AACnF,+FAAyF;AACzF,6DAAyD;AACzD,2DAAuD;AACvD,uEAAkE;AAClE,6CAAgD;AAChD,yDAAqD;AACrD,0DAAgD;AA4CzC,IAAM,cAAc,GAApB,MAAM,cAAc;CAAG,CAAA;AAAjB,wCAAc;yBAAd,cAAc;IA1C1B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,uBAAa,CAAC,UAAU,CAAC;gBACvB,0BAAQ;gBACR,sBAAM;gBACN,uCAAc;gBACd,oBAAK;gBACL,+BAAU;gBACV,mCAAY;gBACZ,sDAAqB;gBACrB,gDAAkB;aACnB,CAAC;YACF,4BAAY;SACb;QACD,SAAS,EAAE;YACT,EAAE,OAAO,EAAE,iBAAiB,EAAE,QAAQ,EAAE,kCAAe,EAAE;YACzD,EAAE,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,+CAAqB,EAAE;YACrE,EAAE,OAAO,EAAE,qBAAqB,EAAE,QAAQ,EAAE,2CAAmB,EAAE;YACjE;gBACE,OAAO,EAAE,8BAA8B;gBACvC,QAAQ,EAAE,8DAA4B;aACvC;YACD;gBACE,OAAO,EAAE,2BAA2B;gBACpC,QAAQ,EAAE,wDAAyB;aACpC;YACD,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,8BAAa,EAAE;YACrD,EAAE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,4BAAY,EAAE;YACnD,EAAE,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,uCAAiB,EAAE;SAC9D;QACD,OAAO,EAAE;YACP,iBAAiB;YACjB,uBAAuB;YACvB,qBAAqB;YACrB,8BAA8B;YAC9B,2BAA2B;YAC3B,eAAe;YACf,cAAc;YACd,mBAAmB;SACpB;QACD,WAAW,EAAE,EAAE;KAChB,CAAC;GACW,cAAc,CAAG"}
|