@servicelabsco/slabs-access-manager 1.0.32 → 1.0.34

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.
Files changed (106) hide show
  1. package/dist/access/controllers/event.trigger.controller.d.ts +20 -0
  2. package/dist/access/controllers/event.trigger.controller.js +136 -0
  3. package/dist/access/controllers/event.trigger.controller.js.map +1 -0
  4. package/dist/access/controllers/event.trigger.log.controller.d.ts +15 -0
  5. package/dist/access/controllers/event.trigger.log.controller.js +87 -0
  6. package/dist/access/controllers/event.trigger.log.controller.js.map +1 -0
  7. package/dist/access/controllers/index.d.ts +2 -0
  8. package/dist/access/controllers/index.js +2 -0
  9. package/dist/access/controllers/index.js.map +1 -1
  10. package/dist/access/dtos/add.event.trigger.dto.d.ts +12 -0
  11. package/dist/access/dtos/add.event.trigger.dto.js +60 -0
  12. package/dist/access/dtos/add.event.trigger.dto.js.map +1 -0
  13. package/dist/access/dtos/event.trigger.attributes.dto.d.ts +3 -0
  14. package/dist/access/dtos/event.trigger.attributes.dto.js +8 -0
  15. package/dist/access/dtos/event.trigger.attributes.dto.js.map +1 -0
  16. package/dist/access/dtos/event.trigger.list.filter.dto.d.ts +3 -0
  17. package/dist/access/dtos/event.trigger.list.filter.dto.js +8 -0
  18. package/dist/access/dtos/event.trigger.list.filter.dto.js.map +1 -0
  19. package/dist/access/dtos/event.trigger.log.attributes.dto.d.ts +3 -0
  20. package/dist/access/dtos/event.trigger.log.attributes.dto.js +8 -0
  21. package/dist/access/dtos/event.trigger.log.attributes.dto.js.map +1 -0
  22. package/dist/access/dtos/event.trigger.log.list.filter.dto.d.ts +4 -0
  23. package/dist/access/dtos/event.trigger.log.list.filter.dto.js +25 -0
  24. package/dist/access/dtos/event.trigger.log.list.filter.dto.js.map +1 -0
  25. package/dist/access/dtos/index.d.ts +5 -0
  26. package/dist/access/dtos/index.js +5 -0
  27. package/dist/access/dtos/index.js.map +1 -1
  28. package/dist/access/entities/event.trigger.entity.d.ts +21 -0
  29. package/dist/access/entities/event.trigger.entity.js +83 -0
  30. package/dist/access/entities/event.trigger.entity.js.map +1 -0
  31. package/dist/access/entities/event.trigger.log.entity.d.ts +24 -0
  32. package/dist/access/entities/event.trigger.log.entity.js +98 -0
  33. package/dist/access/entities/event.trigger.log.entity.js.map +1 -0
  34. package/dist/access/entities/index.d.ts +2 -0
  35. package/dist/access/entities/index.js +2 -0
  36. package/dist/access/entities/index.js.map +1 -1
  37. package/dist/access/es6.classes.d.ts +17 -5
  38. package/dist/access/es6.classes.js +36 -0
  39. package/dist/access/es6.classes.js.map +1 -1
  40. package/dist/access/jobs/capture.event.trigger.job.d.ts +16 -0
  41. package/dist/access/jobs/capture.event.trigger.job.js +153 -0
  42. package/dist/access/jobs/capture.event.trigger.job.js.map +1 -0
  43. package/dist/access/jobs/event.trigger.job.d.ts +7 -0
  44. package/dist/access/jobs/event.trigger.job.js +29 -0
  45. package/dist/access/jobs/event.trigger.job.js.map +1 -0
  46. package/dist/access/jobs/event.trigger.log.job.d.ts +7 -0
  47. package/dist/access/jobs/event.trigger.log.job.js +29 -0
  48. package/dist/access/jobs/event.trigger.log.job.js.map +1 -0
  49. package/dist/access/jobs/index.d.ts +3 -0
  50. package/dist/access/jobs/index.js +3 -0
  51. package/dist/access/jobs/index.js.map +1 -1
  52. package/dist/access/libraries/index.d.ts +3 -0
  53. package/dist/access/libraries/index.js +3 -0
  54. package/dist/access/libraries/index.js.map +1 -1
  55. package/dist/access/libraries/process.event.trigger.data.d.ts +17 -0
  56. package/dist/access/libraries/process.event.trigger.data.js +74 -0
  57. package/dist/access/libraries/process.event.trigger.data.js.map +1 -0
  58. package/dist/access/libraries/process.event.trigger.list.d.ts +20 -0
  59. package/dist/access/libraries/process.event.trigger.list.js +47 -0
  60. package/dist/access/libraries/process.event.trigger.list.js.map +1 -0
  61. package/dist/access/libraries/process.event.trigger.log.list.d.ts +21 -0
  62. package/dist/access/libraries/process.event.trigger.log.list.js +58 -0
  63. package/dist/access/libraries/process.event.trigger.log.list.js.map +1 -0
  64. package/dist/access/services/business.property.service.js +1 -1
  65. package/dist/access/services/business.property.service.js.map +1 -1
  66. package/dist/access/services/es6.jobs.service.d.ts +7 -1
  67. package/dist/access/services/es6.jobs.service.js +13 -1
  68. package/dist/access/services/es6.jobs.service.js.map +1 -1
  69. package/dist/access/subscribers/capture.event.trigger.subscriber.d.ts +9 -0
  70. package/dist/access/subscribers/capture.event.trigger.subscriber.js +31 -0
  71. package/dist/access/subscribers/capture.event.trigger.subscriber.js.map +1 -0
  72. package/dist/access/subscribers/event.trigger.log.subscriber.d.ts +10 -0
  73. package/dist/access/subscribers/event.trigger.log.subscriber.js +34 -0
  74. package/dist/access/subscribers/event.trigger.log.subscriber.js.map +1 -0
  75. package/dist/access/subscribers/event.trigger.subscriber.d.ts +10 -0
  76. package/dist/access/subscribers/event.trigger.subscriber.js +34 -0
  77. package/dist/access/subscribers/event.trigger.subscriber.js.map +1 -0
  78. package/dist/access/subscribers/index.d.ts +3 -0
  79. package/dist/access/subscribers/index.js +3 -0
  80. package/dist/access/subscribers/index.js.map +1 -1
  81. package/dist/accessUtility/controllers/business.policy.controller.d.ts +1 -0
  82. package/dist/accessUtility/controllers/business.policy.controller.js +13 -0
  83. package/dist/accessUtility/controllers/business.policy.controller.js.map +1 -1
  84. package/dist/accessUtility/es6.classes.js +2 -2
  85. package/dist/accessUtility/es6.classes.js.map +1 -1
  86. package/dist/accessUtility/jobs/bulk.upload.column.match.job.js +1 -1
  87. package/dist/accessUtility/services/es6.jobs.service.js +1 -1
  88. package/dist/app.controller.d.ts +1 -1
  89. package/dist/app.controller.js +4 -1
  90. package/dist/app.controller.js.map +1 -1
  91. package/dist/config/entity.constants.d.ts +4 -0
  92. package/dist/config/entity.constants.js +4 -0
  93. package/dist/config/entity.constants.js.map +1 -1
  94. package/dist/config/source.hash.d.ts +1 -0
  95. package/dist/config/source.hash.js +1 -0
  96. package/dist/config/source.hash.js.map +1 -1
  97. package/dist/migrations/1788000000000-CreateBzEventTriggersTable.d.ts +5 -0
  98. package/dist/migrations/1788000000000-CreateBzEventTriggersTable.js +27 -0
  99. package/dist/migrations/1788000000000-CreateBzEventTriggersTable.js.map +1 -0
  100. package/dist/migrations/1789000000000-RenameSourceHashToTableNameBzEventTriggersTable.d.ts +5 -0
  101. package/dist/migrations/1789000000000-RenameSourceHashToTableNameBzEventTriggersTable.js +27 -0
  102. package/dist/migrations/1789000000000-RenameSourceHashToTableNameBzEventTriggersTable.js.map +1 -0
  103. package/dist/migrations/1790000000000-CreateBzEventTriggerLogsTable.d.ts +5 -0
  104. package/dist/migrations/1790000000000-CreateBzEventTriggerLogsTable.js +34 -0
  105. package/dist/migrations/1790000000000-CreateBzEventTriggerLogsTable.js.map +1 -0
  106. package/package.json +1 -1
@@ -0,0 +1,83 @@
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
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.EventTriggerEntity = void 0;
13
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
14
+ const typeorm_1 = require("typeorm");
15
+ const event_trigger_attributes_dto_1 = require("../dtos/event.trigger.attributes.dto");
16
+ const access_business_entity_1 = require("./access.business.entity");
17
+ let EventTriggerEntity = class EventTriggerEntity extends nestjs_utility_services_1.CommonEntity {
18
+ };
19
+ exports.EventTriggerEntity = EventTriggerEntity;
20
+ __decorate([
21
+ (0, typeorm_1.Column)(),
22
+ __metadata("design:type", Number)
23
+ ], EventTriggerEntity.prototype, "business_id", void 0);
24
+ __decorate([
25
+ (0, typeorm_1.Column)(),
26
+ __metadata("design:type", String)
27
+ ], EventTriggerEntity.prototype, "name", void 0);
28
+ __decorate([
29
+ (0, typeorm_1.Column)(),
30
+ __metadata("design:type", String)
31
+ ], EventTriggerEntity.prototype, "table_name", void 0);
32
+ __decorate([
33
+ (0, typeorm_1.Column)(),
34
+ __metadata("design:type", Number)
35
+ ], EventTriggerEntity.prototype, "model_id", void 0);
36
+ __decorate([
37
+ (0, typeorm_1.Column)(),
38
+ __metadata("design:type", Number)
39
+ ], EventTriggerEntity.prototype, "filter_condition_id", void 0);
40
+ __decorate([
41
+ (0, typeorm_1.Column)(),
42
+ __metadata("design:type", Number)
43
+ ], EventTriggerEntity.prototype, "script_id", void 0);
44
+ __decorate([
45
+ (0, typeorm_1.Column)(),
46
+ __metadata("design:type", Number)
47
+ ], EventTriggerEntity.prototype, "priority", void 0);
48
+ __decorate([
49
+ (0, typeorm_1.Column)(),
50
+ __metadata("design:type", String)
51
+ ], EventTriggerEntity.prototype, "description", void 0);
52
+ __decorate([
53
+ (0, typeorm_1.Column)(),
54
+ __metadata("design:type", Boolean)
55
+ ], EventTriggerEntity.prototype, "active", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)('json'),
58
+ __metadata("design:type", event_trigger_attributes_dto_1.EventTriggerAttributesDto)
59
+ ], EventTriggerEntity.prototype, "attributes", void 0);
60
+ __decorate([
61
+ (0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
62
+ (0, typeorm_1.JoinColumn)({ name: 'business_id' }),
63
+ __metadata("design:type", access_business_entity_1.AccessBusinessEntity)
64
+ ], EventTriggerEntity.prototype, "business", void 0);
65
+ __decorate([
66
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.ModelEntity),
67
+ (0, typeorm_1.JoinColumn)({ name: 'model_id' }),
68
+ __metadata("design:type", nestjs_utility_services_1.ModelEntity)
69
+ ], EventTriggerEntity.prototype, "model", void 0);
70
+ __decorate([
71
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.SystemScriptEntity),
72
+ (0, typeorm_1.JoinColumn)({ name: 'filter_condition_id' }),
73
+ __metadata("design:type", nestjs_utility_services_1.SystemScriptEntity)
74
+ ], EventTriggerEntity.prototype, "filter_condition", void 0);
75
+ __decorate([
76
+ (0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.SystemScriptEntity),
77
+ (0, typeorm_1.JoinColumn)({ name: 'script_id' }),
78
+ __metadata("design:type", nestjs_utility_services_1.SystemScriptEntity)
79
+ ], EventTriggerEntity.prototype, "script", void 0);
80
+ exports.EventTriggerEntity = EventTriggerEntity = __decorate([
81
+ (0, typeorm_1.Entity)('bz_event_triggers')
82
+ ], EventTriggerEntity);
83
+ //# sourceMappingURL=event.trigger.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event.trigger.entity.js","sourceRoot":"","sources":["../../../src/access/entities/event.trigger.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAuG;AACvG,qCAAgE;AAChE,uFAAiF;AACjF,qEAAgE;AAUzD,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,sCAAY;CAsCnD,CAAA;AAtCY,gDAAkB;AAE3B;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;gDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;sDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;oDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;+DACmB;AAG5B;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;oDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;uDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;kDACO;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,wDAAyB;sDAAC;AAGsC;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;oDAAC;AAC3C;IAA/D,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAW,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAAQ,qCAAW;iDAAC;AACD;IAAjF,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4CAAkB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;8BAAmB,4CAAkB;4DAAC;AAC/C;IAAvE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,4CAAkB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAAS,4CAAkB;kDAAC;6BAnC1F,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,kBAAkB,CAsC9B"}
@@ -0,0 +1,24 @@
1
+ import { CommonEntity } from '@servicelabsco/nestjs-utility-services';
2
+ import { EventTriggerLogAttributesDto } from '../dtos/event.trigger.log.attributes.dto';
3
+ import { AccessBusinessEntity } from './access.business.entity';
4
+ import { EventTriggerEntity } from './event.trigger.entity';
5
+ export declare class EventTriggerLogEntity extends CommonEntity {
6
+ business_id: number;
7
+ event_trigger_id: number;
8
+ table_name: string;
9
+ source_id: number;
10
+ event_type: string;
11
+ start_time: Date;
12
+ end_time: Date;
13
+ duration: number;
14
+ filter_duration: number;
15
+ script_duration: number;
16
+ filter_passed: boolean;
17
+ is_success: boolean;
18
+ is_error: boolean;
19
+ error_message: string;
20
+ payload: any;
21
+ attributes: EventTriggerLogAttributesDto;
22
+ business: AccessBusinessEntity;
23
+ event_trigger: EventTriggerEntity;
24
+ }
@@ -0,0 +1,98 @@
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
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.EventTriggerLogEntity = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
15
+ const event_trigger_log_attributes_dto_1 = require("../dtos/event.trigger.log.attributes.dto");
16
+ const access_business_entity_1 = require("./access.business.entity");
17
+ const event_trigger_entity_1 = require("./event.trigger.entity");
18
+ let EventTriggerLogEntity = class EventTriggerLogEntity extends nestjs_utility_services_1.CommonEntity {
19
+ };
20
+ exports.EventTriggerLogEntity = EventTriggerLogEntity;
21
+ __decorate([
22
+ (0, typeorm_1.Column)(),
23
+ __metadata("design:type", Number)
24
+ ], EventTriggerLogEntity.prototype, "business_id", void 0);
25
+ __decorate([
26
+ (0, typeorm_1.Column)(),
27
+ __metadata("design:type", Number)
28
+ ], EventTriggerLogEntity.prototype, "event_trigger_id", void 0);
29
+ __decorate([
30
+ (0, typeorm_1.Column)(),
31
+ __metadata("design:type", String)
32
+ ], EventTriggerLogEntity.prototype, "table_name", void 0);
33
+ __decorate([
34
+ (0, typeorm_1.Column)(),
35
+ __metadata("design:type", Number)
36
+ ], EventTriggerLogEntity.prototype, "source_id", void 0);
37
+ __decorate([
38
+ (0, typeorm_1.Column)(),
39
+ __metadata("design:type", String)
40
+ ], EventTriggerLogEntity.prototype, "event_type", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.Column)(),
43
+ __metadata("design:type", Date)
44
+ ], EventTriggerLogEntity.prototype, "start_time", void 0);
45
+ __decorate([
46
+ (0, typeorm_1.Column)(),
47
+ __metadata("design:type", Date)
48
+ ], EventTriggerLogEntity.prototype, "end_time", void 0);
49
+ __decorate([
50
+ (0, typeorm_1.Column)(),
51
+ __metadata("design:type", Number)
52
+ ], EventTriggerLogEntity.prototype, "duration", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.Column)(),
55
+ __metadata("design:type", Number)
56
+ ], EventTriggerLogEntity.prototype, "filter_duration", void 0);
57
+ __decorate([
58
+ (0, typeorm_1.Column)(),
59
+ __metadata("design:type", Number)
60
+ ], EventTriggerLogEntity.prototype, "script_duration", void 0);
61
+ __decorate([
62
+ (0, typeorm_1.Column)(),
63
+ __metadata("design:type", Boolean)
64
+ ], EventTriggerLogEntity.prototype, "filter_passed", void 0);
65
+ __decorate([
66
+ (0, typeorm_1.Column)(),
67
+ __metadata("design:type", Boolean)
68
+ ], EventTriggerLogEntity.prototype, "is_success", void 0);
69
+ __decorate([
70
+ (0, typeorm_1.Column)(),
71
+ __metadata("design:type", Boolean)
72
+ ], EventTriggerLogEntity.prototype, "is_error", void 0);
73
+ __decorate([
74
+ (0, typeorm_1.Column)(),
75
+ __metadata("design:type", String)
76
+ ], EventTriggerLogEntity.prototype, "error_message", void 0);
77
+ __decorate([
78
+ (0, typeorm_1.Column)('json'),
79
+ __metadata("design:type", Object)
80
+ ], EventTriggerLogEntity.prototype, "payload", void 0);
81
+ __decorate([
82
+ (0, typeorm_1.Column)('json'),
83
+ __metadata("design:type", event_trigger_log_attributes_dto_1.EventTriggerLogAttributesDto)
84
+ ], EventTriggerLogEntity.prototype, "attributes", void 0);
85
+ __decorate([
86
+ (0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
87
+ (0, typeorm_1.JoinColumn)({ name: 'business_id' }),
88
+ __metadata("design:type", access_business_entity_1.AccessBusinessEntity)
89
+ ], EventTriggerLogEntity.prototype, "business", void 0);
90
+ __decorate([
91
+ (0, typeorm_1.ManyToOne)(() => event_trigger_entity_1.EventTriggerEntity),
92
+ (0, typeorm_1.JoinColumn)({ name: 'event_trigger_id' }),
93
+ __metadata("design:type", event_trigger_entity_1.EventTriggerEntity)
94
+ ], EventTriggerLogEntity.prototype, "event_trigger", void 0);
95
+ exports.EventTriggerLogEntity = EventTriggerLogEntity = __decorate([
96
+ (0, typeorm_1.Entity)('bz_event_trigger_logs')
97
+ ], EventTriggerLogEntity);
98
+ //# sourceMappingURL=event.trigger.log.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event.trigger.log.entity.js","sourceRoot":"","sources":["../../../src/access/entities/event.trigger.log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,oFAAsE;AACtE,+FAAwF;AACxF,qEAAgE;AAChE,iEAA4D;AASrD,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,sCAAY;CAoDtD,CAAA;AApDY,sDAAqB;AAE9B;IADC,IAAA,gBAAM,GAAE;;0DACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;+DACgB;AAGzB;IADC,IAAA,gBAAM,GAAE;;yDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;wDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;yDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;8BACG,IAAI;yDAAC;AAGjB;IADC,IAAA,gBAAM,GAAE;8BACC,IAAI;uDAAC;AAGf;IADC,IAAA,gBAAM,GAAE;;uDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;8DACe;AAGxB;IADC,IAAA,gBAAM,GAAE;;8DACe;AAGxB;IADC,IAAA,gBAAM,GAAE;;4DACc;AAGvB;IADC,IAAA,gBAAM,GAAE;;yDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;uDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;4DACa;AAGtB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;sDACF;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,+DAA4B;yDAAC;AAGmC;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;uDAAC;AAC5B;IAA9E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,yCAAkB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;8BAAgB,yCAAkB;4DAAC;gCAnDxG,qBAAqB;IADjC,IAAA,gBAAM,EAAC,uBAAuB,CAAC;GACnB,qBAAqB,CAoDjC"}
@@ -38,6 +38,8 @@ export * from './email.rule.entity';
38
38
  export * from './email.style.entity';
39
39
  export * from './email.template.log.entity';
40
40
  export * from './email.template.recipient.entity';
41
+ export * from './event.trigger.entity';
42
+ export * from './event.trigger.log.entity';
41
43
  export * from './execution.log.entity';
42
44
  export * from './fcm.message.entity';
43
45
  export * from './fcm.token.entity';
@@ -54,6 +54,8 @@ __exportStar(require("./email.rule.entity"), exports);
54
54
  __exportStar(require("./email.style.entity"), exports);
55
55
  __exportStar(require("./email.template.log.entity"), exports);
56
56
  __exportStar(require("./email.template.recipient.entity"), exports);
57
+ __exportStar(require("./event.trigger.entity"), exports);
58
+ __exportStar(require("./event.trigger.log.entity"), exports);
57
59
  __exportStar(require("./execution.log.entity"), exports);
58
60
  __exportStar(require("./fcm.message.entity"), exports);
59
61
  __exportStar(require("./fcm.token.entity"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,+EAA6D;AAAA,oEAAkD;AAAA,6EAA2D;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iFAA+D;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,8EAA4D;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,uEAAoD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,+EAA6D;AAAA,oEAAkD;AAAA,6EAA2D;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iFAA+D;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,8EAA4D;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,yDAAuC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,uEAAoD"}
@@ -26,6 +26,8 @@ import { DashboardReportController } from './controllers/dashboard.report.contro
26
26
  import { DeveloperModeController } from './controllers/developer.mode.controller';
27
27
  import { DownloadLogController } from './controllers/download.log.controller';
28
28
  import { EmailRuleController } from './controllers/email.rule.controller';
29
+ import { EventTriggerController } from './controllers/event.trigger.controller';
30
+ import { EventTriggerLogController } from './controllers/event.trigger.log.controller';
29
31
  import { FcmTokenController } from './controllers/fcm.token.controller';
30
32
  import { GroupMemberController } from './controllers/group.member.controller';
31
33
  import { GroupRoleController } from './controllers/group.role.controller';
@@ -120,6 +122,7 @@ import { EmailRecipientEntity } from './entities/email.recipient.entity';
120
122
  import { EmailStyleEntity } from './entities/email.style.entity';
121
123
  import { EmailTemplateLogEntity } from './entities/email.template.log.entity';
122
124
  import { EmailTemplateRecipientEntity } from './entities/email.template.recipient.entity';
125
+ import { EventTriggerLogEntity } from './entities/event.trigger.log.entity';
123
126
  import { ExecutionLogEntity } from './entities/execution.log.entity';
124
127
  import { FcmMessageEntity } from './entities/fcm.message.entity';
125
128
  import { FcmTokenEntity } from './entities/fcm.token.entity';
@@ -185,6 +188,7 @@ import { BusinessUserNotificationPreferenceJob } from './jobs/business.user.noti
185
188
  import { BusinessUserRoleJob } from './jobs/business.user.role.job';
186
189
  import { BusinessWebhookJob } from './jobs/business.webhook.job';
187
190
  import { BzNotificationChannelPreferenceJob } from './jobs/bz.notification.channel.preference.job';
191
+ import { CaptureEventTriggerJob } from './jobs/capture.event.trigger.job';
188
192
  import { ChildMenuJob } from './jobs/child.menu.job';
189
193
  import { ChoiceListJob } from './jobs/choice.list.job';
190
194
  import { ChoiceTypeJob } from './jobs/choice.type.job';
@@ -203,6 +207,8 @@ import { EmailStyleJob } from './jobs/email.style.job';
203
207
  import { EmailTemplateLogJob } from './jobs/email.template.log.job';
204
208
  import { EmailTemplateRecipientJob } from './jobs/email.template.recipient.job';
205
209
  import { EvaluateEmailRuleJob } from './jobs/evaluate.email.rule.job';
210
+ import { EventTriggerJob } from './jobs/event.trigger.job';
211
+ import { EventTriggerLogJob } from './jobs/event.trigger.log.job';
206
212
  import { ExecuteBusinessScriptJob } from './jobs/execute.business.script.job';
207
213
  import { ExecutionLogJob } from './jobs/execution.log.job';
208
214
  import { FcmMessageJob } from './jobs/fcm.message.job';
@@ -322,6 +328,9 @@ import { ProcessDownloadLogList } from './libraries/process.download.log.list';
322
328
  import { ProcessEmailNotification } from './libraries/process.email.notification';
323
329
  import { ProcessEmailRuleData } from './libraries/process.email.rule.data';
324
330
  import { ProcessEmailRuleList } from './libraries/process.email.rule.list';
331
+ import { ProcessEventTriggerData } from './libraries/process.event.trigger.data';
332
+ import { ProcessEventTriggerList } from './libraries/process.event.trigger.list';
333
+ import { ProcessEventTriggerLogList } from './libraries/process.event.trigger.log.list';
325
334
  import { ProcessFeatureMenuAddition } from './libraries/process.feature.menu.addition';
326
335
  import { ProcessFeatureMenuDeletion } from './libraries/process.feature.menu.deletion';
327
336
  import { ProcessGenerateReport } from './libraries/process.generate.report';
@@ -425,6 +434,7 @@ import { BusinessUserRoleSubscriber } from './subscribers/business.user.role.sub
425
434
  import { BusinessUserSubscriber } from './subscribers/business.user.subscriber';
426
435
  import { BusinessWebhookSubscriber } from './subscribers/business.webhook.subscriber';
427
436
  import { BzNotificationChannelPreferenceSubscriber } from './subscribers/bz.notification.channel.preference.subscriber';
437
+ import { CaptureEventTriggerSubscriber } from './subscribers/capture.event.trigger.subscriber';
428
438
  import { ChildMenuSubscriber } from './subscribers/child.menu.subscriber';
429
439
  import { ChoiceListSubscriber } from './subscribers/choice.list.subscriber';
430
440
  import { ChoiceTypeSubscriber } from './subscribers/choice.type.subscriber';
@@ -442,6 +452,8 @@ import { EmailRuleSubscriber } from './subscribers/email.rule.subscriber';
442
452
  import { EmailStyleSubscriber } from './subscribers/email.style.subscriber';
443
453
  import { EmailTemplateLogSubscriber } from './subscribers/email.template.log.subscriber';
444
454
  import { EmailTemplateRecipientSubscriber } from './subscribers/email.template.recipient.subscriber';
455
+ import { EventTriggerLogSubscriber } from './subscribers/event.trigger.log.subscriber';
456
+ import { EventTriggerSubscriber } from './subscribers/event.trigger.subscriber';
445
457
  import { ExecutionLogSubscriber } from './subscribers/execution.log.subscriber';
446
458
  import { FcmMessageSubscriber } from './subscribers/fcm.message.subscriber';
447
459
  import { FcmNotificationSubscriber } from './subscribers/fcm.notification.subscriber';
@@ -500,14 +512,14 @@ import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subs
500
512
  import { WhitelistedWhatsappNumberSubscriber } from './subscribers/whitelisted.whatsapp.number.subscriber';
501
513
  declare const es6Classes: {
502
514
  commands: (typeof WebhookPollCommand)[];
503
- controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessCurrencyController | typeof BusinessEmailController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessPropertyController | typeof BusinessReportController | typeof BusinessScriptController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CurrencyRateController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof EmailRuleController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof GstMappingController | typeof ListingController | typeof ListingPageController | typeof ListingPreferenceController | typeof MenuController | typeof ModuleController | typeof ModuleMenuController | typeof OverridingScriptController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserBusinessSecretController | typeof UserNotificationController | typeof UserPreferenceController)[];
515
+ controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessCurrencyController | typeof BusinessEmailController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessPropertyController | typeof BusinessReportController | typeof BusinessScriptController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CurrencyRateController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof EmailRuleController | typeof EventTriggerController | typeof EventTriggerLogController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof GstMappingController | typeof ListingController | typeof ListingPageController | typeof ListingPreferenceController | typeof MenuController | typeof ModuleController | typeof ModuleMenuController | typeof OverridingScriptController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserBusinessSecretController | typeof UserNotificationController | typeof UserPreferenceController)[];
504
516
  dtos: (typeof EmailRuleAttributesDto | typeof EmailMessageNormalizedDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof EmailRecipientToDto | typeof GchatPostingPayloadDto | typeof BoardCastInternalStatusMessageDto | typeof WhatsappPostingPayloadDto | typeof SendWhatsappMessagePayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof DbFindDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof AddIntegrationPreferenceDto | typeof AddBusinessCurrencyDto | typeof GmailIntegrationOauthDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof AddBusinessPreferenceDto | typeof GenerateBusinessReportDto | typeof GenerateReportDto | typeof AddBusinessUserNotificationPreferenceDto | typeof AddWebhookDto | typeof GetCurrencyRateDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddGstMappingDto | typeof AddModuleMenuDto | typeof AddOverridingScriptDto | typeof AddScheduledReportDto | typeof AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof RequestLogOptionsDto | typeof SlackMessageDataDto)[];
505
- entities: (typeof AccessBusinessEntity | typeof EmailMessageEntity | typeof EmailRecipientEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof EmailTemplateRecipientEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof OnholdDocumentEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessCurrencyEntity | typeof BusinessDownloadableReportEntity | typeof ChildMenuEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof MenuRoleEntity | typeof FeatureMenuEntity | typeof BusinessFeatureEntity | typeof BusinessGroupRoleEntity | typeof BusinessMenuEntity | typeof BusinessReportEntity | typeof ExecutionLogEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof CurrencyRateEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof FinnotoUserEntity | typeof GroupMemberEntity | typeof GstMappingEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof LockScriptEntity | typeof ModuleMenuEntity | typeof ReportLogEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
517
+ entities: (typeof AccessBusinessEntity | typeof EmailMessageEntity | typeof EmailRecipientEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof EmailTemplateRecipientEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof OnholdDocumentEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessCurrencyEntity | typeof BusinessDownloadableReportEntity | typeof ChildMenuEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof MenuRoleEntity | typeof FeatureMenuEntity | typeof BusinessFeatureEntity | typeof BusinessGroupRoleEntity | typeof BusinessMenuEntity | typeof BusinessReportEntity | typeof ExecutionLogEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof CurrencyRateEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EventTriggerLogEntity | typeof FinnotoUserEntity | typeof GroupMemberEntity | typeof GstMappingEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof LockScriptEntity | typeof ModuleMenuEntity | typeof ReportLogEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
506
518
  enums: (typeof NotificationTypeEnum | typeof NotificationChannelTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum | typeof ProductTypeEnum | typeof PlatformTypeEnum)[];
507
- jobs: (typeof EvaluateEmailRuleJob | typeof WhatsappMessagePayloadDto | typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessCurrencyJob | typeof BusinessDownloadableReportJob | typeof BusinessEmailJob | typeof BusinessFeatureJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessPropertyJob | typeof GenerateBusinessReportJob | typeof SendBusinessReportNotificationJob | typeof BusinessReportJob | typeof SetBusinessScriptScheduleJob | typeof BusinessScriptJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CurrencyRateJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof SyncEmailMessageMetricsJob | typeof EmailAttachmentJob | typeof SetEmailUnreadCountJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof EmailRuleJob | typeof EmailStyleJob | typeof EmailTemplateLogJob | typeof EmailTemplateRecipientJob | typeof ExecuteBusinessScriptJob | typeof ExecutionLogJob | typeof FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | typeof FeatureJob | typeof FeatureMenuJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GmailIntegrationFetchMessagesJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof GstMappingJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof LockScriptJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof OnholdDocumentJob | typeof OverridingScriptJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RefreshBusinessPropertyJob | typeof ReportLogJob | typeof RequestLogJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof SyncEmailMessagesJob | typeof SyncMenuJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserBusinessSecretJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob | typeof WhitelistedWhatsappNumberJob)[];
508
- libraries: (typeof DateFn | typeof EvaluateEmailRule | typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendFcmNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof ProcessWhatsappMessage | typeof SendWhatsappMessageNotification | typeof ProcessDbFind | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessListingCsvFile | typeof SendWebhookRequest | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessBulkUploadItemList | typeof ProcessBulkUploadList | typeof ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessCurrencyList | typeof ProcessBusinessEmailList | typeof ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessPropertyData | typeof ProcessBusinessPropertyList | typeof ProcessBusinessReportList | typeof ProcessGenerateReport | typeof ExecuteBusinessScript | typeof ProcessBusinessScriptCreation | typeof ProcessBusinessScriptList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | typeof ProcessChoiceListData | typeof ProcessChoiceTypeData | typeof ProcessChoiceTypeList | typeof ProcessAmazonIntegration | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | typeof ProcessCurrencyRateList | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessEmailRuleData | typeof ProcessEmailRuleList | typeof SetFcmToken | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessGstMappingData | typeof ProcessGstMappingList | typeof ProcessListingPageCreation | typeof ProcessPreferenceData | typeof ProcessMenuCreation | typeof ProcessModuleCreation | typeof ProcessModuleMenuCreation | typeof ProcessOverridingScriptData | typeof ProcessOverridingScriptList | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof CreateUserBusinessSecret | typeof ProcessUserNotificationList | typeof ProcessRevokeSlackIntegration | typeof ProcessRevokeZohoIntegration | typeof ProcessBusinessFeatureAddition | typeof ProcessBusinessFeatureDeletion | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessInternalNotification | typeof ProcessBusinessUserRoleUpdate | typeof ProcessFeatureMenuAddition | typeof ProcessFeatureMenuDeletion | typeof ProcessGmailMessage | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ProcessBusinessScriptData | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
519
+ jobs: (typeof EvaluateEmailRuleJob | typeof WhatsappMessagePayloadDto | typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessCurrencyJob | typeof BusinessDownloadableReportJob | typeof BusinessEmailJob | typeof BusinessFeatureJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessPropertyJob | typeof GenerateBusinessReportJob | typeof SendBusinessReportNotificationJob | typeof BusinessReportJob | typeof SetBusinessScriptScheduleJob | typeof BusinessScriptJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | typeof CaptureEventTriggerJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CurrencyRateJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof SyncEmailMessageMetricsJob | typeof EmailAttachmentJob | typeof SetEmailUnreadCountJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof EmailRuleJob | typeof EmailStyleJob | typeof EmailTemplateLogJob | typeof EmailTemplateRecipientJob | typeof EventTriggerJob | typeof EventTriggerLogJob | typeof ExecuteBusinessScriptJob | typeof ExecutionLogJob | typeof FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | typeof FeatureJob | typeof FeatureMenuJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GmailIntegrationFetchMessagesJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof GstMappingJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof LockScriptJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof OnholdDocumentJob | typeof OverridingScriptJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RefreshBusinessPropertyJob | typeof ReportLogJob | typeof RequestLogJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof SyncEmailMessagesJob | typeof SyncMenuJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserBusinessSecretJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob | typeof WhitelistedWhatsappNumberJob)[];
520
+ libraries: (typeof DateFn | typeof EvaluateEmailRule | typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendFcmNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof ProcessWhatsappMessage | typeof SendWhatsappMessageNotification | typeof ProcessDbFind | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessListingCsvFile | typeof SendWebhookRequest | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessBulkUploadItemList | typeof ProcessBulkUploadList | typeof ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessCurrencyList | typeof ProcessBusinessEmailList | typeof ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessPropertyData | typeof ProcessBusinessPropertyList | typeof ProcessBusinessReportList | typeof ProcessGenerateReport | typeof ExecuteBusinessScript | typeof ProcessBusinessScriptCreation | typeof ProcessBusinessScriptList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | typeof ProcessChoiceListData | typeof ProcessChoiceTypeData | typeof ProcessChoiceTypeList | typeof ProcessAmazonIntegration | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | typeof ProcessCurrencyRateList | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessEmailRuleData | typeof ProcessEmailRuleList | typeof ProcessEventTriggerData | typeof ProcessEventTriggerList | typeof ProcessEventTriggerLogList | typeof SetFcmToken | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessGstMappingData | typeof ProcessGstMappingList | typeof ProcessListingPageCreation | typeof ProcessPreferenceData | typeof ProcessMenuCreation | typeof ProcessModuleCreation | typeof ProcessModuleMenuCreation | typeof ProcessOverridingScriptData | typeof ProcessOverridingScriptList | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof CreateUserBusinessSecret | typeof ProcessUserNotificationList | typeof ProcessRevokeSlackIntegration | typeof ProcessRevokeZohoIntegration | typeof ProcessBusinessFeatureAddition | typeof ProcessBusinessFeatureDeletion | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessInternalNotification | typeof ProcessBusinessUserRoleUpdate | typeof ProcessFeatureMenuAddition | typeof ProcessFeatureMenuDeletion | typeof ProcessGmailMessage | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ProcessBusinessScriptData | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
509
521
  middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware | typeof UserBusinessAccessMiddleware)[];
510
522
  services: (typeof BusinessPropertyService | typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof OverridingScriptService | typeof SlabsService | typeof UtilityService | typeof AccessBusinessService | typeof ListingService | typeof CustomFieldService | typeof WebhookService | typeof BusinessEmailService | typeof GmailIntegrationService | typeof BusinessScriptService | typeof AuditLogService | typeof CurrencyService | typeof AccessReportService | typeof PlatformService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof ApiAccountService | typeof UserBusinessAccessService | typeof AppIntegrationService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof Es6Service | typeof GptService | typeof LoadEntityService | typeof RequestLogService | typeof UserNotificationService | typeof UserPreferenceService)[];
511
- subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessCurrencySubscriber | typeof BusinessDownloadableReportSubscriber | typeof BusinessEmailSubscriber | typeof BusinessFeatureSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessPropertySubscriber | typeof BusinessReportSubscriber | typeof BusinessScriptSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CurrencyRateSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof EmailRuleSubscriber | typeof EmailStyleSubscriber | typeof EmailTemplateLogSubscriber | typeof EmailTemplateRecipientSubscriber | typeof ExecutionLogSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof FeatureMenuSubscriber | typeof FeatureSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof GstMappingSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof LockScriptSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof OnholdDocumentSubscriber | typeof OverridingScriptSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof ReportLogSubscriber | typeof RequestLogSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserBusinessSecretSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber | typeof WhitelistedWhatsappNumberSubscriber)[];
523
+ subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessCurrencySubscriber | typeof BusinessDownloadableReportSubscriber | typeof BusinessEmailSubscriber | typeof BusinessFeatureSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessPropertySubscriber | typeof BusinessReportSubscriber | typeof BusinessScriptSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | typeof CaptureEventTriggerSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CurrencyRateSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof EmailRuleSubscriber | typeof EmailStyleSubscriber | typeof EmailTemplateLogSubscriber | typeof EmailTemplateRecipientSubscriber | typeof EventTriggerLogSubscriber | typeof EventTriggerSubscriber | typeof ExecutionLogSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof FeatureMenuSubscriber | typeof FeatureSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof GstMappingSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof LockScriptSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof OnholdDocumentSubscriber | typeof OverridingScriptSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof ReportLogSubscriber | typeof RequestLogSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserBusinessSecretSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber | typeof WhitelistedWhatsappNumberSubscriber)[];
512
524
  };
513
525
  export default es6Classes;
@@ -28,6 +28,8 @@ const dashboard_report_controller_1 = require("./controllers/dashboard.report.co
28
28
  const developer_mode_controller_1 = require("./controllers/developer.mode.controller");
29
29
  const download_log_controller_1 = require("./controllers/download.log.controller");
30
30
  const email_rule_controller_1 = require("./controllers/email.rule.controller");
31
+ const event_trigger_controller_1 = require("./controllers/event.trigger.controller");
32
+ const event_trigger_log_controller_1 = require("./controllers/event.trigger.log.controller");
31
33
  const fcm_token_controller_1 = require("./controllers/fcm.token.controller");
32
34
  const group_member_controller_1 = require("./controllers/group.member.controller");
33
35
  const group_role_controller_1 = require("./controllers/group.role.controller");
@@ -63,6 +65,7 @@ const add_custom_field_dto_1 = require("./dtos/add.custom.field.dto");
63
65
  const add_dashboard_component_dto_1 = require("./dtos/add.dashboard.component.dto");
64
66
  const add_dashboard_component_properties_dto_1 = require("./dtos/add.dashboard.component.properties.dto");
65
67
  const add_email_rule_dto_1 = require("./dtos/add.email.rule.dto");
68
+ const add_event_trigger_dto_1 = require("./dtos/add.event.trigger.dto");
66
69
  const add_group_member_dto_1 = require("./dtos/add.group.member.dto");
67
70
  const add_gst_mapping_dto_1 = require("./dtos/add.gst.mapping.dto");
68
71
  const add_integration_preference_dto_1 = require("./dtos/add.integration.preference.dto");
@@ -145,6 +148,10 @@ const email_rule_list_filter_dto_1 = require("./dtos/email.rule.list.filter.dto"
145
148
  const email_style_attributes_dto_1 = require("./dtos/email.style.attributes.dto");
146
149
  const email_template_log_attributes_dto_1 = require("./dtos/email.template.log.attributes.dto");
147
150
  const email_template_recipient_attributes_dto_1 = require("./dtos/email.template.recipient.attributes.dto");
151
+ const event_trigger_attributes_dto_1 = require("./dtos/event.trigger.attributes.dto");
152
+ const event_trigger_list_filter_dto_1 = require("./dtos/event.trigger.list.filter.dto");
153
+ const event_trigger_log_attributes_dto_1 = require("./dtos/event.trigger.log.attributes.dto");
154
+ const event_trigger_log_list_filter_dto_1 = require("./dtos/event.trigger.log.list.filter.dto");
148
155
  const execution_log_attributes_dto_1 = require("./dtos/execution.log.attributes.dto");
149
156
  const fcm_message_attributes_dto_1 = require("./dtos/fcm.message.attributes.dto");
150
157
  const fcm_template_attributes_dto_1 = require("./dtos/fcm.template.attributes.dto");
@@ -279,6 +286,8 @@ const email_rule_entity_1 = require("./entities/email.rule.entity");
279
286
  const email_style_entity_1 = require("./entities/email.style.entity");
280
287
  const email_template_log_entity_1 = require("./entities/email.template.log.entity");
281
288
  const email_template_recipient_entity_1 = require("./entities/email.template.recipient.entity");
289
+ const event_trigger_entity_1 = require("./entities/event.trigger.entity");
290
+ const event_trigger_log_entity_1 = require("./entities/event.trigger.log.entity");
282
291
  const execution_log_entity_1 = require("./entities/execution.log.entity");
283
292
  const fcm_message_entity_1 = require("./entities/fcm.message.entity");
284
293
  const fcm_token_entity_1 = require("./entities/fcm.token.entity");
@@ -363,6 +372,7 @@ const business_user_notification_preference_job_1 = require("./jobs/business.use
363
372
  const business_user_role_job_1 = require("./jobs/business.user.role.job");
364
373
  const business_webhook_job_1 = require("./jobs/business.webhook.job");
365
374
  const bz_notification_channel_preference_job_1 = require("./jobs/bz.notification.channel.preference.job");
375
+ const capture_event_trigger_job_1 = require("./jobs/capture.event.trigger.job");
366
376
  const child_menu_job_1 = require("./jobs/child.menu.job");
367
377
  const choice_list_job_1 = require("./jobs/choice.list.job");
368
378
  const choice_type_job_1 = require("./jobs/choice.type.job");
@@ -381,6 +391,8 @@ const email_style_job_1 = require("./jobs/email.style.job");
381
391
  const email_template_log_job_1 = require("./jobs/email.template.log.job");
382
392
  const email_template_recipient_job_1 = require("./jobs/email.template.recipient.job");
383
393
  const evaluate_email_rule_job_1 = require("./jobs/evaluate.email.rule.job");
394
+ const event_trigger_job_1 = require("./jobs/event.trigger.job");
395
+ const event_trigger_log_job_1 = require("./jobs/event.trigger.log.job");
384
396
  const execute_business_script_job_1 = require("./jobs/execute.business.script.job");
385
397
  const execution_log_job_1 = require("./jobs/execution.log.job");
386
398
  const fcm_message_job_1 = require("./jobs/fcm.message.job");
@@ -501,6 +513,9 @@ const process_download_log_list_1 = require("./libraries/process.download.log.li
501
513
  const process_email_notification_1 = require("./libraries/process.email.notification");
502
514
  const process_email_rule_data_1 = require("./libraries/process.email.rule.data");
503
515
  const process_email_rule_list_1 = require("./libraries/process.email.rule.list");
516
+ const process_event_trigger_data_1 = require("./libraries/process.event.trigger.data");
517
+ const process_event_trigger_list_1 = require("./libraries/process.event.trigger.list");
518
+ const process_event_trigger_log_list_1 = require("./libraries/process.event.trigger.log.list");
504
519
  const process_feature_menu_addition_1 = require("./libraries/process.feature.menu.addition");
505
520
  const process_feature_menu_deletion_1 = require("./libraries/process.feature.menu.deletion");
506
521
  const process_generate_report_1 = require("./libraries/process.generate.report");
@@ -604,6 +619,7 @@ const business_user_role_subscriber_1 = require("./subscribers/business.user.rol
604
619
  const business_user_subscriber_1 = require("./subscribers/business.user.subscriber");
605
620
  const business_webhook_subscriber_1 = require("./subscribers/business.webhook.subscriber");
606
621
  const bz_notification_channel_preference_subscriber_1 = require("./subscribers/bz.notification.channel.preference.subscriber");
622
+ const capture_event_trigger_subscriber_1 = require("./subscribers/capture.event.trigger.subscriber");
607
623
  const child_menu_subscriber_1 = require("./subscribers/child.menu.subscriber");
608
624
  const choice_list_subscriber_1 = require("./subscribers/choice.list.subscriber");
609
625
  const choice_type_subscriber_1 = require("./subscribers/choice.type.subscriber");
@@ -621,6 +637,8 @@ const email_rule_subscriber_1 = require("./subscribers/email.rule.subscriber");
621
637
  const email_style_subscriber_1 = require("./subscribers/email.style.subscriber");
622
638
  const email_template_log_subscriber_1 = require("./subscribers/email.template.log.subscriber");
623
639
  const email_template_recipient_subscriber_1 = require("./subscribers/email.template.recipient.subscriber");
640
+ const event_trigger_log_subscriber_1 = require("./subscribers/event.trigger.log.subscriber");
641
+ const event_trigger_subscriber_1 = require("./subscribers/event.trigger.subscriber");
624
642
  const execution_log_subscriber_1 = require("./subscribers/execution.log.subscriber");
625
643
  const fcm_message_subscriber_1 = require("./subscribers/fcm.message.subscriber");
626
644
  const fcm_notification_subscriber_1 = require("./subscribers/fcm.notification.subscriber");
@@ -707,6 +725,8 @@ const es6Classes = {
707
725
  developer_mode_controller_1.DeveloperModeController,
708
726
  download_log_controller_1.DownloadLogController,
709
727
  email_rule_controller_1.EmailRuleController,
728
+ event_trigger_controller_1.EventTriggerController,
729
+ event_trigger_log_controller_1.EventTriggerLogController,
710
730
  fcm_token_controller_1.FcmTokenController,
711
731
  group_member_controller_1.GroupMemberController,
712
732
  group_role_controller_1.GroupRoleController,
@@ -744,6 +764,7 @@ const es6Classes = {
744
764
  add_dashboard_component_dto_1.AddDashboardComponentDto,
745
765
  add_dashboard_component_properties_dto_1.AddDashboardComponentPropertiesDto,
746
766
  add_email_rule_dto_1.AddEmailRuleDto,
767
+ add_event_trigger_dto_1.AddEventTriggerDto,
747
768
  add_group_member_dto_1.AddGroupMemberDto,
748
769
  add_gst_mapping_dto_1.AddGstMappingDto,
749
770
  add_integration_preference_dto_1.AddIntegrationPreferenceDto,
@@ -826,6 +847,10 @@ const es6Classes = {
826
847
  email_style_attributes_dto_1.EmailStyleAttributesDto,
827
848
  email_template_log_attributes_dto_1.EmailTemplateLogAttributesDto,
828
849
  email_template_recipient_attributes_dto_1.EmailTemplateRecipientAttributesDto,
850
+ event_trigger_attributes_dto_1.EventTriggerAttributesDto,
851
+ event_trigger_list_filter_dto_1.EventTriggerListFilterDto,
852
+ event_trigger_log_attributes_dto_1.EventTriggerLogAttributesDto,
853
+ event_trigger_log_list_filter_dto_1.EventTriggerLogListFilterDto,
829
854
  execution_log_attributes_dto_1.ExecutionLogAttributesDto,
830
855
  fcm_message_attributes_dto_1.FcmMessageAttributesDto,
831
856
  fcm_template_attributes_dto_1.FcmTemplateAttributesDto,
@@ -962,6 +987,8 @@ const es6Classes = {
962
987
  email_style_entity_1.EmailStyleEntity,
963
988
  email_template_log_entity_1.EmailTemplateLogEntity,
964
989
  email_template_recipient_entity_1.EmailTemplateRecipientEntity,
990
+ event_trigger_entity_1.EventTriggerEntity,
991
+ event_trigger_log_entity_1.EventTriggerLogEntity,
965
992
  execution_log_entity_1.ExecutionLogEntity,
966
993
  fcm_message_entity_1.FcmMessageEntity,
967
994
  fcm_token_entity_1.FcmTokenEntity,
@@ -1043,6 +1070,7 @@ const es6Classes = {
1043
1070
  business_user_role_job_1.BusinessUserRoleJob,
1044
1071
  business_webhook_job_1.BusinessWebhookJob,
1045
1072
  bz_notification_channel_preference_job_1.BzNotificationChannelPreferenceJob,
1073
+ capture_event_trigger_job_1.CaptureEventTriggerJob,
1046
1074
  child_menu_job_1.ChildMenuJob,
1047
1075
  choice_list_job_1.ChoiceListJob,
1048
1076
  choice_type_job_1.ChoiceTypeJob,
@@ -1061,6 +1089,8 @@ const es6Classes = {
1061
1089
  email_template_log_job_1.EmailTemplateLogJob,
1062
1090
  email_template_recipient_job_1.EmailTemplateRecipientJob,
1063
1091
  evaluate_email_rule_job_1.EvaluateEmailRuleJob,
1092
+ event_trigger_job_1.EventTriggerJob,
1093
+ event_trigger_log_job_1.EventTriggerLogJob,
1064
1094
  execute_business_script_job_1.ExecuteBusinessScriptJob,
1065
1095
  execution_log_job_1.ExecutionLogJob,
1066
1096
  fcm_message_job_1.FcmMessageJob,
@@ -1183,6 +1213,9 @@ const es6Classes = {
1183
1213
  process_email_notification_1.ProcessEmailNotification,
1184
1214
  process_email_rule_data_1.ProcessEmailRuleData,
1185
1215
  process_email_rule_list_1.ProcessEmailRuleList,
1216
+ process_event_trigger_data_1.ProcessEventTriggerData,
1217
+ process_event_trigger_list_1.ProcessEventTriggerList,
1218
+ process_event_trigger_log_list_1.ProcessEventTriggerLogList,
1186
1219
  process_feature_menu_addition_1.ProcessFeatureMenuAddition,
1187
1220
  process_feature_menu_deletion_1.ProcessFeatureMenuDeletion,
1188
1221
  process_generate_report_1.ProcessGenerateReport,
@@ -1288,6 +1321,7 @@ const es6Classes = {
1288
1321
  business_user_subscriber_1.BusinessUserSubscriber,
1289
1322
  business_webhook_subscriber_1.BusinessWebhookSubscriber,
1290
1323
  bz_notification_channel_preference_subscriber_1.BzNotificationChannelPreferenceSubscriber,
1324
+ capture_event_trigger_subscriber_1.CaptureEventTriggerSubscriber,
1291
1325
  child_menu_subscriber_1.ChildMenuSubscriber,
1292
1326
  choice_list_subscriber_1.ChoiceListSubscriber,
1293
1327
  choice_type_subscriber_1.ChoiceTypeSubscriber,
@@ -1305,6 +1339,8 @@ const es6Classes = {
1305
1339
  email_style_subscriber_1.EmailStyleSubscriber,
1306
1340
  email_template_log_subscriber_1.EmailTemplateLogSubscriber,
1307
1341
  email_template_recipient_subscriber_1.EmailTemplateRecipientSubscriber,
1342
+ event_trigger_log_subscriber_1.EventTriggerLogSubscriber,
1343
+ event_trigger_subscriber_1.EventTriggerSubscriber,
1308
1344
  execution_log_subscriber_1.ExecutionLogSubscriber,
1309
1345
  fcm_message_subscriber_1.FcmMessageSubscriber,
1310
1346
  fcm_notification_subscriber_1.FcmNotificationSubscriber,