@servicelabsco/nestjs-utility-services 1.2.108 → 1.2.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/config/entity.constants.d.ts +4 -0
- package/dist/config/entity.constants.js +4 -0
- package/dist/config/entity.constants.js.map +1 -1
- package/dist/config/source.hash.d.ts +2 -0
- package/dist/config/source.hash.js +2 -0
- package/dist/config/source.hash.js.map +1 -1
- package/dist/migrations/1734632235444-CreateRecurringQueryTable.d.ts +5 -0
- package/dist/migrations/1734632235444-CreateRecurringQueryTable.js +22 -0
- package/dist/migrations/1734632235444-CreateRecurringQueryTable.js.map +1 -0
- package/dist/migrations/1734941912633-CreateDataLogTable.d.ts +5 -0
- package/dist/migrations/1734941912633-CreateDataLogTable.js +19 -0
- package/dist/migrations/1734941912633-CreateDataLogTable.js.map +1 -0
- package/dist/system/dtos/data.log.attributes.dto.d.ts +3 -0
- package/dist/system/dtos/data.log.attributes.dto.js +8 -0
- package/dist/system/dtos/data.log.attributes.dto.js.map +1 -0
- package/dist/system/dtos/index.d.ts +2 -0
- package/dist/system/dtos/index.js +2 -0
- package/dist/system/dtos/index.js.map +1 -1
- package/dist/system/dtos/recurring.query.attributes.dto.d.ts +3 -0
- package/dist/system/dtos/recurring.query.attributes.dto.js +8 -0
- package/dist/system/dtos/recurring.query.attributes.dto.js.map +1 -0
- package/dist/system/entities/data.log.entity.d.ts +8 -0
- package/dist/system/entities/data.log.entity.js +38 -0
- package/dist/system/entities/data.log.entity.js.map +1 -0
- package/dist/system/entities/index.d.ts +2 -0
- package/dist/system/entities/index.js +2 -0
- package/dist/system/entities/index.js.map +1 -1
- package/dist/system/entities/recurring.query.entity.d.ts +10 -0
- package/dist/system/entities/recurring.query.entity.js +46 -0
- package/dist/system/entities/recurring.query.entity.js.map +1 -0
- package/dist/system/es6.classes.d.ts +11 -4
- package/dist/system/es6.classes.js +20 -2
- package/dist/system/es6.classes.js.map +1 -1
- package/dist/system/jobs/data.log.job.d.ts +9 -0
- package/dist/system/jobs/data.log.job.js +30 -0
- package/dist/system/jobs/data.log.job.js.map +1 -0
- package/dist/system/jobs/execute.recurring.query.job.d.ts +10 -0
- package/dist/system/jobs/{clean.scheduled.event.job.js → execute.recurring.query.job.js} +19 -16
- package/dist/system/jobs/execute.recurring.query.job.js.map +1 -0
- package/dist/system/jobs/index.d.ts +4 -1
- package/dist/system/jobs/index.js +4 -1
- package/dist/system/jobs/index.js.map +1 -1
- package/dist/system/jobs/recurring.query.job.d.ts +15 -0
- package/dist/system/jobs/recurring.query.job.js +52 -0
- package/dist/system/jobs/recurring.query.job.js.map +1 -0
- package/dist/system/jobs/scheduled.event.job.d.ts +3 -3
- package/dist/system/jobs/scheduled.event.job.js +14 -12
- package/dist/system/jobs/scheduled.event.job.js.map +1 -1
- package/dist/system/jobs/{clean.scheduled.event.job.d.ts → set.recurring.query.event.job.d.ts} +8 -5
- package/dist/system/jobs/set.recurring.query.event.job.js +81 -0
- package/dist/system/jobs/set.recurring.query.event.job.js.map +1 -0
- package/dist/system/jobs/set.scheduled.event.job.d.ts +3 -0
- package/dist/system/jobs/set.scheduled.event.job.js +42 -2
- package/dist/system/jobs/set.scheduled.event.job.js.map +1 -1
- package/dist/system/libraries/code.evaluator.d.ts +2 -2
- package/dist/system/libraries/code.evaluator.js.map +1 -1
- package/dist/system/services/es6.jobs.service.d.ts +9 -3
- package/dist/system/services/es6.jobs.service.js +18 -6
- package/dist/system/services/es6.jobs.service.js.map +1 -1
- package/dist/system/services/scheduled.event.service.d.ts +4 -6
- package/dist/system/services/scheduled.event.service.js +21 -58
- package/dist/system/services/scheduled.event.service.js.map +1 -1
- package/dist/system/subscribers/data.log.subscriber.d.ts +10 -0
- package/dist/system/subscribers/data.log.subscriber.js +34 -0
- package/dist/system/subscribers/data.log.subscriber.js.map +1 -0
- package/dist/system/subscribers/index.d.ts +2 -0
- package/dist/system/subscribers/index.js +2 -0
- package/dist/system/subscribers/index.js.map +1 -1
- package/dist/system/subscribers/recurring.query.subscriber.d.ts +12 -0
- package/dist/system/subscribers/recurring.query.subscriber.js +47 -0
- package/dist/system/subscribers/recurring.query.subscriber.js.map +1 -0
- package/dist/system/subscribers/scheduled.event.subscriber.d.ts +2 -1
- package/dist/system/subscribers/scheduled.event.subscriber.js +7 -0
- package/dist/system/subscribers/scheduled.event.subscriber.js.map +1 -1
- package/package.json +1 -1
- package/dist/system/jobs/clean.scheduled.event.job.js.map +0 -1
@@ -23,6 +23,7 @@ import { ColumnDefinitionEntity } from '../system/entities/column.definition.ent
|
|
23
23
|
import { ColumnEntity } from '../system/entities/column.entity';
|
24
24
|
import { CommentEntity } from '../system/entities/comment.entity';
|
25
25
|
import { CredentialIpEntity } from '../system/entities/credential.ip.entity';
|
26
|
+
import { DataLogEntity } from '../system/entities/data.log.entity';
|
26
27
|
import { DocumentEntity } from '../system/entities/document.entity';
|
27
28
|
import { DynamoTableEntity } from '../system/entities/dynamo.table.entity';
|
28
29
|
import { EmailTemplateEntity } from '../system/entities/email.template.entity';
|
@@ -52,6 +53,7 @@ import { PageDefinitionEntity } from '../system/entities/page.definition.entity'
|
|
52
53
|
import { ParentMenuEntity } from '../system/entities/parent.menu.entity';
|
53
54
|
import { PrimaryAxisEntity } from '../system/entities/primary.axis.entity';
|
54
55
|
import { PropertyEntity } from '../system/entities/property.entity';
|
56
|
+
import { RecurringQueryEntity } from '../system/entities/recurring.query.entity';
|
55
57
|
import { RelationshipEntity } from '../system/entities/relationship.entity';
|
56
58
|
import { ReportColumnEntity } from '../system/entities/report.column.entity';
|
57
59
|
import { ReportEntity } from '../system/entities/report.entity';
|
@@ -101,6 +103,7 @@ declare const entityConstants: {
|
|
101
103
|
'09e3f4fa64b56c119292be9e3faae89a': typeof ColumnEntity;
|
102
104
|
d77868f65dfb326a4cfb0378ff0c3ad8: typeof CommentEntity;
|
103
105
|
b6247ff20faaf225907f6fac6a1dd083: typeof CredentialIpEntity;
|
106
|
+
a1e21ebc46ff035fc25b8cb2fcdd7087: typeof DataLogEntity;
|
104
107
|
e062598479cbb7e16c15395b928ea5a7: typeof DocumentEntity;
|
105
108
|
dc391312269bea08532638498a886f5c: typeof DynamoTableEntity;
|
106
109
|
'4c391f9687715eeaddf71d95bdcf755b': typeof EmailTemplateEntity;
|
@@ -130,6 +133,7 @@ declare const entityConstants: {
|
|
130
133
|
fb39337fbb6060afb4960cb6c1018a05: typeof ParentMenuEntity;
|
131
134
|
'9403f8a834e1296bb260b466654fce60': typeof PrimaryAxisEntity;
|
132
135
|
'736fc944161cb45ec6291b0314e9d927': typeof PropertyEntity;
|
136
|
+
b896ceae184be54377b3a3b0fcf9d74f: typeof RecurringQueryEntity;
|
133
137
|
ca92f0ad887a73e9ffa448f5e4620c70: typeof RelationshipEntity;
|
134
138
|
'7eb4d0a3fa712300108a276ad19e3038': typeof ReportColumnEntity;
|
135
139
|
ab60ad4e1a51c7d593e957b7857662c1: typeof ReportEntity;
|
@@ -24,6 +24,7 @@ const column_definition_entity_1 = require("../system/entities/column.definition
|
|
24
24
|
const column_entity_1 = require("../system/entities/column.entity");
|
25
25
|
const comment_entity_1 = require("../system/entities/comment.entity");
|
26
26
|
const credential_ip_entity_1 = require("../system/entities/credential.ip.entity");
|
27
|
+
const data_log_entity_1 = require("../system/entities/data.log.entity");
|
27
28
|
const document_entity_1 = require("../system/entities/document.entity");
|
28
29
|
const dynamo_table_entity_1 = require("../system/entities/dynamo.table.entity");
|
29
30
|
const email_template_entity_1 = require("../system/entities/email.template.entity");
|
@@ -53,6 +54,7 @@ const page_definition_entity_1 = require("../system/entities/page.definition.ent
|
|
53
54
|
const parent_menu_entity_1 = require("../system/entities/parent.menu.entity");
|
54
55
|
const primary_axis_entity_1 = require("../system/entities/primary.axis.entity");
|
55
56
|
const property_entity_1 = require("../system/entities/property.entity");
|
57
|
+
const recurring_query_entity_1 = require("../system/entities/recurring.query.entity");
|
56
58
|
const relationship_entity_1 = require("../system/entities/relationship.entity");
|
57
59
|
const report_column_entity_1 = require("../system/entities/report.column.entity");
|
58
60
|
const report_entity_1 = require("../system/entities/report.entity");
|
@@ -102,6 +104,7 @@ const entityConstants = {
|
|
102
104
|
'09e3f4fa64b56c119292be9e3faae89a': column_entity_1.ColumnEntity,
|
103
105
|
d77868f65dfb326a4cfb0378ff0c3ad8: comment_entity_1.CommentEntity,
|
104
106
|
b6247ff20faaf225907f6fac6a1dd083: credential_ip_entity_1.CredentialIpEntity,
|
107
|
+
a1e21ebc46ff035fc25b8cb2fcdd7087: data_log_entity_1.DataLogEntity,
|
105
108
|
e062598479cbb7e16c15395b928ea5a7: document_entity_1.DocumentEntity,
|
106
109
|
dc391312269bea08532638498a886f5c: dynamo_table_entity_1.DynamoTableEntity,
|
107
110
|
'4c391f9687715eeaddf71d95bdcf755b': email_template_entity_1.EmailTemplateEntity,
|
@@ -131,6 +134,7 @@ const entityConstants = {
|
|
131
134
|
fb39337fbb6060afb4960cb6c1018a05: parent_menu_entity_1.ParentMenuEntity,
|
132
135
|
'9403f8a834e1296bb260b466654fce60': primary_axis_entity_1.PrimaryAxisEntity,
|
133
136
|
'736fc944161cb45ec6291b0314e9d927': property_entity_1.PropertyEntity,
|
137
|
+
b896ceae184be54377b3a3b0fcf9d74f: recurring_query_entity_1.RecurringQueryEntity,
|
134
138
|
ca92f0ad887a73e9ffa448f5e4620c70: relationship_entity_1.RelationshipEntity,
|
135
139
|
'7eb4d0a3fa712300108a276ad19e3038': report_column_entity_1.ReportColumnEntity,
|
136
140
|
ab60ad4e1a51c7d593e957b7857662c1: report_entity_1.ReportEntity,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"entity.constants.js","sourceRoot":"","sources":["../../src/config/entity.constants.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"entity.constants.js","sourceRoot":"","sources":["../../src/config/entity.constants.ts"],"names":[],"mappings":"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"}
|
@@ -12,6 +12,8 @@ const SourceHash = {
|
|
12
12
|
mobileValidation: 'fa2bfeba4f8c0f5c4ec5bf9ca6c03771',
|
13
13
|
mailLog: 'a3da8b74348b592a71fe3667f5d92954',
|
14
14
|
comment: 'd77868f65dfb326a4cfb0378ff0c3ad8',
|
15
|
+
recurringQuery: 'b896ceae184be54377b3a3b0fcf9d74f',
|
16
|
+
recurringQueryEvent: '49da21b3b3be45f66e8f88c55be55ebe',
|
15
17
|
};
|
16
18
|
module.exports = SourceHash;
|
17
19
|
//# sourceMappingURL=source.hash.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;IAC3C,OAAO,EAAE,kCAAkC;
|
1
|
+
{"version":3,"file":"source.hash.js","sourceRoot":"","sources":["../../src/config/source.hash.ts"],"names":[],"mappings":";AAAA,MAAM,UAAU,GAAG;IACf,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,kCAAkC;IACzC,iBAAiB,EAAE,kCAAkC;IACrD,MAAM,EAAE,kCAAkC;IAC1C,MAAM,EAAE,kCAAkC;IAC1C,IAAI,EAAE,kCAAkC;IACxC,SAAS,EAAE,kCAAkC;IAC7C,YAAY,EAAE,kCAAkC;IAChD,gBAAgB,EAAE,kCAAkC;IACpD,OAAO,EAAE,kCAAkC;IAC3C,OAAO,EAAE,kCAAkC;IAC3C,cAAc,EAAE,kCAAkC;IAClD,mBAAmB,EAAE,kCAAkC;CAC1D,CAAC;AAEF,iBAAS,UAAU,CAAC"}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateRecurringQueryTable1734632235444 = void 0;
|
4
|
+
const migration_utility_1 = require("../common/libraries/migration.utility");
|
5
|
+
class CreateRecurringQueryTable1734632235444 extends migration_utility_1.MigrationUtility {
|
6
|
+
constructor() {
|
7
|
+
super('sys_recurring_queries');
|
8
|
+
this.process();
|
9
|
+
}
|
10
|
+
process() {
|
11
|
+
this.primary();
|
12
|
+
this.string('name');
|
13
|
+
this.text('query');
|
14
|
+
this.string('timing');
|
15
|
+
this.dateTime('last_scheduled_time');
|
16
|
+
this.boolean('active');
|
17
|
+
this.json('attributes');
|
18
|
+
this.whoColumns();
|
19
|
+
}
|
20
|
+
}
|
21
|
+
exports.CreateRecurringQueryTable1734632235444 = CreateRecurringQueryTable1734632235444;
|
22
|
+
//# sourceMappingURL=1734632235444-CreateRecurringQueryTable.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"1734632235444-CreateRecurringQueryTable.js","sourceRoot":"","sources":["../../src/migrations/1734632235444-CreateRecurringQueryTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,sCAAuC,SAAQ,oCAAgB;IACxE;QACI,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC/B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QACpB,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEnB,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CAAC;QAErC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAEvB,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;CACJ;AApBD,wFAoBC"}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateDataLogTable1734941912633 = void 0;
|
4
|
+
const migration_utility_1 = require("../common/libraries/migration.utility");
|
5
|
+
class CreateDataLogTable1734941912633 extends migration_utility_1.MigrationUtility {
|
6
|
+
constructor() {
|
7
|
+
super('sys_data_logs');
|
8
|
+
this.process();
|
9
|
+
}
|
10
|
+
process() {
|
11
|
+
this.primary();
|
12
|
+
this.source();
|
13
|
+
this.json('payload');
|
14
|
+
this.json('attributes');
|
15
|
+
this.whoColumns();
|
16
|
+
}
|
17
|
+
}
|
18
|
+
exports.CreateDataLogTable1734941912633 = CreateDataLogTable1734941912633;
|
19
|
+
//# sourceMappingURL=1734941912633-CreateDataLogTable.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"1734941912633-CreateDataLogTable.js","sourceRoot":"","sources":["../../src/migrations/1734941912633-CreateDataLogTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,+BAAgC,SAAQ,oCAAgB;IACjE;QACI,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QACf,IAAI,CAAC,MAAM,EAAE,CAAC;QACd,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAErB,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;CACJ;AAdD,0EAcC"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DataLogAttributesDto = void 0;
|
4
|
+
const common_attributes_dto_1 = require("../../platformUtility/dtos/common.attributes.dto");
|
5
|
+
class DataLogAttributesDto extends common_attributes_dto_1.CommonAttributesDto {
|
6
|
+
}
|
7
|
+
exports.DataLogAttributesDto = DataLogAttributesDto;
|
8
|
+
//# sourceMappingURL=data.log.attributes.dto.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data.log.attributes.dto.js","sourceRoot":"","sources":["../../../src/system/dtos/data.log.attributes.dto.ts"],"names":[],"mappings":";;;AAAA,4FAAuF;AAEvF,MAAa,oBAAqB,SAAQ,2CAAmB;CAAG;AAAhE,oDAAgE"}
|
@@ -7,6 +7,7 @@ export * from './code.fix.log.attributes.dto';
|
|
7
7
|
export * from './code.fix.script.attributes.dto';
|
8
8
|
export * from './comment.attributes.dto';
|
9
9
|
export * from './credential.ip.attributes.dto';
|
10
|
+
export * from './data.log.attributes.dto';
|
10
11
|
export * from './document.attributes.dto';
|
11
12
|
export * from './file.upload.dto';
|
12
13
|
export * from './file.upload.spec.dto';
|
@@ -20,6 +21,7 @@ export * from './mobile.validation.dto';
|
|
20
21
|
export * from './model.allowed.column.dto';
|
21
22
|
export * from './model.form.preference.creation.dto';
|
22
23
|
export * from './otp.generation.dto';
|
24
|
+
export * from './recurring.query.attributes.dto';
|
23
25
|
export * from './s3.object.info.dto';
|
24
26
|
export * from './s3.upload.options.dto';
|
25
27
|
export * from './sms.message.attributes.dto';
|
@@ -23,6 +23,7 @@ __exportStar(require("./code.fix.log.attributes.dto"), exports);
|
|
23
23
|
__exportStar(require("./code.fix.script.attributes.dto"), exports);
|
24
24
|
__exportStar(require("./comment.attributes.dto"), exports);
|
25
25
|
__exportStar(require("./credential.ip.attributes.dto"), exports);
|
26
|
+
__exportStar(require("./data.log.attributes.dto"), exports);
|
26
27
|
__exportStar(require("./document.attributes.dto"), exports);
|
27
28
|
__exportStar(require("./file.upload.dto"), exports);
|
28
29
|
__exportStar(require("./file.upload.spec.dto"), exports);
|
@@ -36,6 +37,7 @@ __exportStar(require("./mobile.validation.dto"), exports);
|
|
36
37
|
__exportStar(require("./model.allowed.column.dto"), exports);
|
37
38
|
__exportStar(require("./model.form.preference.creation.dto"), exports);
|
38
39
|
__exportStar(require("./otp.generation.dto"), exports);
|
40
|
+
__exportStar(require("./recurring.query.attributes.dto"), exports);
|
39
41
|
__exportStar(require("./s3.object.info.dto"), exports);
|
40
42
|
__exportStar(require("./s3.upload.options.dto"), exports);
|
41
43
|
__exportStar(require("./sms.message.attributes.dto"), exports);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,qEAAmD;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,sEAAoD;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,iEAA+C;AAAA,2DAAwC"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,qEAAmD;AAAA,0DAAwC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,sEAAoD;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,uDAAqC;AAAA,mEAAiD;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,iEAA+C;AAAA,2DAAwC"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.RecurringQueryAttributesDto = void 0;
|
4
|
+
const common_attributes_dto_1 = require("../../platformUtility/dtos/common.attributes.dto");
|
5
|
+
class RecurringQueryAttributesDto extends common_attributes_dto_1.CommonAttributesDto {
|
6
|
+
}
|
7
|
+
exports.RecurringQueryAttributesDto = RecurringQueryAttributesDto;
|
8
|
+
//# sourceMappingURL=recurring.query.attributes.dto.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"recurring.query.attributes.dto.js","sourceRoot":"","sources":["../../../src/system/dtos/recurring.query.attributes.dto.ts"],"names":[],"mappings":";;;AAAA,4FAAuF;AAEvF,MAAa,2BAA4B,SAAQ,2CAAmB;CAAG;AAAvE,kEAAuE"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { CommonEntity } from '../../common/libraries/common.entity';
|
2
|
+
import { DataLogAttributesDto } from '../dtos/data.log.attributes.dto';
|
3
|
+
export declare class DataLogEntity extends CommonEntity {
|
4
|
+
source_type: string;
|
5
|
+
source_id: string;
|
6
|
+
payload: any;
|
7
|
+
attributes: DataLogAttributesDto;
|
8
|
+
}
|
@@ -0,0 +1,38 @@
|
|
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.DataLogEntity = void 0;
|
13
|
+
const typeorm_1 = require("typeorm");
|
14
|
+
const common_entity_1 = require("../../common/libraries/common.entity");
|
15
|
+
const data_log_attributes_dto_1 = require("../dtos/data.log.attributes.dto");
|
16
|
+
let DataLogEntity = class DataLogEntity extends common_entity_1.CommonEntity {
|
17
|
+
};
|
18
|
+
exports.DataLogEntity = DataLogEntity;
|
19
|
+
__decorate([
|
20
|
+
(0, typeorm_1.Column)(),
|
21
|
+
__metadata("design:type", String)
|
22
|
+
], DataLogEntity.prototype, "source_type", void 0);
|
23
|
+
__decorate([
|
24
|
+
(0, typeorm_1.Column)(),
|
25
|
+
__metadata("design:type", String)
|
26
|
+
], DataLogEntity.prototype, "source_id", void 0);
|
27
|
+
__decorate([
|
28
|
+
(0, typeorm_1.Column)('json'),
|
29
|
+
__metadata("design:type", Object)
|
30
|
+
], DataLogEntity.prototype, "payload", void 0);
|
31
|
+
__decorate([
|
32
|
+
(0, typeorm_1.Column)('json'),
|
33
|
+
__metadata("design:type", data_log_attributes_dto_1.DataLogAttributesDto)
|
34
|
+
], DataLogEntity.prototype, "attributes", void 0);
|
35
|
+
exports.DataLogEntity = DataLogEntity = __decorate([
|
36
|
+
(0, typeorm_1.Entity)('sys_data_logs')
|
37
|
+
], DataLogEntity);
|
38
|
+
//# sourceMappingURL=data.log.entity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data.log.entity.js","sourceRoot":"","sources":["../../../src/system/entities/data.log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,wEAAoE;AACpE,6EAAuE;AAShE,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,4BAAY;CAc9C,CAAA;AAdY,sCAAa;AAEtB;IADC,IAAA,gBAAM,GAAE;;kDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;gDACS;AAGlB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;8CACF;AAGb;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,8CAAoB;iDAAC;wBAXxB,aAAa;IADzB,IAAA,gBAAM,EAAC,eAAe,CAAC;GACX,aAAa,CAczB"}
|
@@ -10,6 +10,7 @@ export * from './column.definition.entity';
|
|
10
10
|
export * from './column.entity';
|
11
11
|
export * from './comment.entity';
|
12
12
|
export * from './credential.ip.entity';
|
13
|
+
export * from './data.log.entity';
|
13
14
|
export * from './document.entity';
|
14
15
|
export * from './dynamo.table.entity';
|
15
16
|
export * from './email.template.entity';
|
@@ -39,6 +40,7 @@ export * from './page.definition.entity';
|
|
39
40
|
export * from './parent.menu.entity';
|
40
41
|
export * from './primary.axis.entity';
|
41
42
|
export * from './property.entity';
|
43
|
+
export * from './recurring.query.entity';
|
42
44
|
export * from './relationship.entity';
|
43
45
|
export * from './report.column.entity';
|
44
46
|
export * from './report.entity';
|
@@ -26,6 +26,7 @@ __exportStar(require("./column.definition.entity"), exports);
|
|
26
26
|
__exportStar(require("./column.entity"), exports);
|
27
27
|
__exportStar(require("./comment.entity"), exports);
|
28
28
|
__exportStar(require("./credential.ip.entity"), exports);
|
29
|
+
__exportStar(require("./data.log.entity"), exports);
|
29
30
|
__exportStar(require("./document.entity"), exports);
|
30
31
|
__exportStar(require("./dynamo.table.entity"), exports);
|
31
32
|
__exportStar(require("./email.template.entity"), exports);
|
@@ -55,6 +56,7 @@ __exportStar(require("./page.definition.entity"), exports);
|
|
55
56
|
__exportStar(require("./parent.menu.entity"), exports);
|
56
57
|
__exportStar(require("./primary.axis.entity"), exports);
|
57
58
|
__exportStar(require("./property.entity"), exports);
|
59
|
+
__exportStar(require("./recurring.query.entity"), exports);
|
58
60
|
__exportStar(require("./relationship.entity"), exports);
|
59
61
|
__exportStar(require("./report.column.entity"), exports);
|
60
62
|
__exportStar(require("./report.entity"), exports);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAAA,8DAA4C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,mDAAiC;AAAA,yDAAuC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,iDAA+B;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,6DAA0C"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AAAA,8DAA4C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,kDAAgC;AAAA,mDAAiC;AAAA,yDAAuC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,2DAAyC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,iDAA+B;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,2DAAyC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,yDAAuC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,iEAA+C;AAAA,2DAAyC;AAAA,2DAAyC;AAAA,6DAA0C"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { RecurringQueryAttributesDto } from '../dtos/recurring.query.attributes.dto';
|
2
|
+
import { CommonEntity } from '../../common/libraries/common.entity';
|
3
|
+
export declare class RecurringQueryEntity extends CommonEntity {
|
4
|
+
name: string;
|
5
|
+
query: string;
|
6
|
+
active: boolean;
|
7
|
+
timing: string;
|
8
|
+
last_scheduled_time: Date;
|
9
|
+
attributes: RecurringQueryAttributesDto;
|
10
|
+
}
|
@@ -0,0 +1,46 @@
|
|
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.RecurringQueryEntity = void 0;
|
13
|
+
const typeorm_1 = require("typeorm");
|
14
|
+
const recurring_query_attributes_dto_1 = require("../dtos/recurring.query.attributes.dto");
|
15
|
+
const common_entity_1 = require("../../common/libraries/common.entity");
|
16
|
+
let RecurringQueryEntity = class RecurringQueryEntity extends common_entity_1.CommonEntity {
|
17
|
+
};
|
18
|
+
exports.RecurringQueryEntity = RecurringQueryEntity;
|
19
|
+
__decorate([
|
20
|
+
(0, typeorm_1.Column)(),
|
21
|
+
__metadata("design:type", String)
|
22
|
+
], RecurringQueryEntity.prototype, "name", void 0);
|
23
|
+
__decorate([
|
24
|
+
(0, typeorm_1.Column)(),
|
25
|
+
__metadata("design:type", String)
|
26
|
+
], RecurringQueryEntity.prototype, "query", void 0);
|
27
|
+
__decorate([
|
28
|
+
(0, typeorm_1.Column)(),
|
29
|
+
__metadata("design:type", Boolean)
|
30
|
+
], RecurringQueryEntity.prototype, "active", void 0);
|
31
|
+
__decorate([
|
32
|
+
(0, typeorm_1.Column)(),
|
33
|
+
__metadata("design:type", String)
|
34
|
+
], RecurringQueryEntity.prototype, "timing", void 0);
|
35
|
+
__decorate([
|
36
|
+
(0, typeorm_1.Column)(),
|
37
|
+
__metadata("design:type", Date)
|
38
|
+
], RecurringQueryEntity.prototype, "last_scheduled_time", void 0);
|
39
|
+
__decorate([
|
40
|
+
(0, typeorm_1.Column)('json'),
|
41
|
+
__metadata("design:type", recurring_query_attributes_dto_1.RecurringQueryAttributesDto)
|
42
|
+
], RecurringQueryEntity.prototype, "attributes", void 0);
|
43
|
+
exports.RecurringQueryEntity = RecurringQueryEntity = __decorate([
|
44
|
+
(0, typeorm_1.Entity)('sys_recurring_queries')
|
45
|
+
], RecurringQueryEntity);
|
46
|
+
//# sourceMappingURL=recurring.query.entity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"recurring.query.entity.js","sourceRoot":"","sources":["../../../src/system/entities/recurring.query.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,2FAAqF;AACrF,wEAAoE;AAS7D,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,4BAAY;CAoBrD,CAAA;AApBY,oDAAoB;AAE7B;IADC,IAAA,gBAAM,GAAE;;kDACI;AAGb;IADC,IAAA,gBAAM,GAAE;;mDACK;AAGd;IADC,IAAA,gBAAM,GAAE;;oDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;oDACM;AAGf;IADC,IAAA,gBAAM,GAAE;8BACY,IAAI;iEAAC;AAG1B;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,4DAA2B;wDAAC;+BAjB/B,oBAAoB;IADhC,IAAA,gBAAM,EAAC,uBAAuB,CAAC;GACnB,oBAAoB,CAoBhC"}
|
@@ -44,6 +44,7 @@ import { ColumnDefinitionEntity } from './entities/column.definition.entity';
|
|
44
44
|
import { ColumnEntity } from './entities/column.entity';
|
45
45
|
import { CommentEntity } from './entities/comment.entity';
|
46
46
|
import { CredentialIpEntity } from './entities/credential.ip.entity';
|
47
|
+
import { DataLogEntity } from './entities/data.log.entity';
|
47
48
|
import { DocumentEntity } from './entities/document.entity';
|
48
49
|
import { DynamoTableEntity } from './entities/dynamo.table.entity';
|
49
50
|
import { EventDetailEntity } from './entities/event.detail.entity';
|
@@ -68,6 +69,7 @@ import { OpenPropertyEntity } from './entities/open.property.entity';
|
|
68
69
|
import { PageDefinitionEntity } from './entities/page.definition.entity';
|
69
70
|
import { ParentMenuEntity } from './entities/parent.menu.entity';
|
70
71
|
import { PrimaryAxisEntity } from './entities/primary.axis.entity';
|
72
|
+
import { RecurringQueryEntity } from './entities/recurring.query.entity';
|
71
73
|
import { RelationshipEntity } from './entities/relationship.entity';
|
72
74
|
import { ReportColumnEntity } from './entities/report.column.entity';
|
73
75
|
import { ReportEntity } from './entities/report.entity';
|
@@ -90,7 +92,6 @@ import { UserGroupRoleEntity } from './entities/user.group.role.entity';
|
|
90
92
|
import { UserPreferenceEntity } from './entities/user.preference.entity';
|
91
93
|
import { WhatsappTemplateEntity } from './entities/whatsapp.template.entity';
|
92
94
|
import { SentryInterceptor } from './interceptors/sentry.interceptor';
|
93
|
-
import { CleanScheduledEventJob } from './jobs/clean.scheduled.event.job';
|
94
95
|
import { ClientCredentialJob } from './jobs/client.credential.job';
|
95
96
|
import { ClientJob } from './jobs/client.job';
|
96
97
|
import { CodeFixLogJob } from './jobs/code.fix.log.job';
|
@@ -98,19 +99,23 @@ import { CodeFixScriptJob } from './jobs/code.fix.script.job';
|
|
98
99
|
import { ColumnMapperJob } from './jobs/column.mapper.job';
|
99
100
|
import { CommentJob } from './jobs/comment.job';
|
100
101
|
import { CredentialIpJob } from './jobs/credential.ip.job';
|
102
|
+
import { DataLogJob } from './jobs/data.log.job';
|
101
103
|
import { DocumentJob } from './jobs/document.job';
|
102
104
|
import { ExecuteCodeFixJob } from './jobs/execute.code.fix.job';
|
105
|
+
import { ExecuteRecurringQueryJob } from './jobs/execute.recurring.query.job';
|
103
106
|
import { MailEventJob } from './jobs/mail.event.job';
|
104
107
|
import { MailRecipientJob } from './jobs/mail.recipient.job';
|
105
108
|
import { MailValidationJob } from './jobs/mail.validation.job';
|
106
109
|
import { MobileValidationJob } from './jobs/mobile.validation.job';
|
107
110
|
import { ModelScannerJob } from './jobs/model.scanner.job';
|
108
111
|
import { PropertyJob } from './jobs/property.job';
|
112
|
+
import { RecurringQueryJob } from './jobs/recurring.query.job';
|
109
113
|
import { RefreshPropertyCacheJob } from './jobs/refresh.property.cache.job';
|
110
114
|
import { RelationshipMapperJob } from './jobs/relationship.mapper.job';
|
111
115
|
import { ReportColumnSyncJob } from './jobs/report.column.sync.job';
|
112
116
|
import { ScheduledEventJob } from './jobs/scheduled.event.job';
|
113
117
|
import { SetEventQueueJob } from './jobs/set.event.queue.job';
|
118
|
+
import { SetRecurringQueryEventJob } from './jobs/set.recurring.query.event.job';
|
114
119
|
import { SetScheduledEventJob } from './jobs/set.scheduled.event.job';
|
115
120
|
import { SmsMessageJob } from './jobs/sms.message.job';
|
116
121
|
import { SqsPollingJob } from './jobs/sqs.polling.job';
|
@@ -163,12 +168,14 @@ import { CodeFixScriptSubscriber } from './subscribers/code.fix.script.subscribe
|
|
163
168
|
import { ColumnSubscriber } from './subscribers/column.subscriber';
|
164
169
|
import { CommentSubscriber } from './subscribers/comment.subscriber';
|
165
170
|
import { CredentialIpSubscriber } from './subscribers/credential.ip.subscriber';
|
171
|
+
import { DataLogSubscriber } from './subscribers/data.log.subscriber';
|
166
172
|
import { DocumentSubscriber } from './subscribers/document.subscriber';
|
167
173
|
import { MailEventSubscriber } from './subscribers/mail.event.subscriber';
|
168
174
|
import { MailRecipientSubscriber } from './subscribers/mail.recipient.subscriber';
|
169
175
|
import { MailValidationSubscriber } from './subscribers/mail.validation.subscriber';
|
170
176
|
import { MobileValidationSubscriber } from './subscribers/mobile.validation.subscriber';
|
171
177
|
import { PropertySubscriber } from './subscribers/property.subscriber';
|
178
|
+
import { RecurringQuerySubscriber } from './subscribers/recurring.query.subscriber';
|
172
179
|
import { RelationshipSubscriber } from './subscribers/relationship.subscriber';
|
173
180
|
import { ScheduledEventSubscriber } from './subscribers/scheduled.event.subscriber';
|
174
181
|
import { SmsMessageSubscriber } from './subscribers/sms.message.subscriber';
|
@@ -179,12 +186,12 @@ declare const es6Classes: {
|
|
179
186
|
commands: (typeof DbScannerCommand | typeof DynamoScannerCommand | typeof EventQueueCommand | typeof JobsScannerCommand | typeof ModelScannerCommand | typeof ReportScannerCommand | typeof ServiceScannerCommand | typeof SesEventTrackingCommand | typeof SyncAllCommand)[];
|
180
187
|
controllers: (typeof BaseController | typeof DataController | typeof FormController | typeof MenuController | typeof PreferenceController | typeof ReportController | typeof UploadController | typeof UserPreferenceController)[];
|
181
188
|
dtos: (typeof ClientCredentialAttributesDto | typeof FileUploadSpecDto | typeof S3UploadOptionsDto | typeof LocalFileS3UploadDto | typeof S3ObjectInfoDto | typeof AddDirectMenuDto | typeof ModelFormPreferenceCreationDto | typeof UserPreferenceCreationDto | typeof FileUploadDto | typeof AddCommentDto | typeof ClientCredentialDto | typeof JobRecordParamDto | typeof MailValidationDto | typeof MobileValidationDto | typeof ModelAllowedColumnDto | typeof OtpGenerationDto | typeof ValidationOptionsDto)[];
|
182
|
-
entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof CodeFixScriptEntity | typeof CodeFixLogEntity | typeof DocumentEntity | typeof CommentEntity | typeof DynamoTableEntity | typeof EventDetailEntity | typeof EventQueueEntity | typeof MailLogEntity | typeof MailEventEntity | typeof MailRecipientEntity | typeof MailValidationEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof ModuleEntity | typeof ModuleMenuEntity | typeof PageDefinitionEntity | typeof ParentMenuEntity | typeof MobileValidationEntity | typeof OpenPropertyEntity | typeof ReportFilterEntity | typeof ReportEntity | typeof ReportRelationshipEntity | typeof ReportRoleEntity | typeof ReportColumnEntity | typeof ScheduledEventEntity | typeof SecurityRuleEntity | typeof ServiceEntity | typeof SmsTemplateEntity | typeof SmsMessageEntity | typeof UserGroupPermissionEntity | typeof UserPreferenceEntity | typeof WhatsappTemplateEntity)[];
|
189
|
+
entities: (typeof LookupTypeEntity | typeof UserGroupRoleEntity | typeof UserGroupEntity | typeof UserGroupMemberEntity | typeof BusinessRuleRoleEntity | typeof BusinessRuleEntity | typeof ColumnDefinitionEntity | typeof ColumnEntity | typeof ModelEntity | typeof FormPreferenceEntity | typeof ModelColumnEntity | typeof RelationshipEntity | typeof ModelRelationshipEntity | typeof ModelRoleEntity | typeof FormColumnEntity | typeof SystemScriptEntity | typeof UiActionPermissionEntity | typeof UiActionEntity | typeof UiActionRoleEntity | typeof PrimaryAxisEntity | typeof ChartEntity | typeof ClientEntity | typeof ClientCredentialEntity | typeof CredentialIpEntity | typeof ClientScriptEntity | typeof CodeFixScriptEntity | typeof CodeFixLogEntity | typeof DocumentEntity | typeof CommentEntity | typeof DataLogEntity | typeof DynamoTableEntity | typeof EventDetailEntity | typeof EventQueueEntity | typeof MailLogEntity | typeof MailEventEntity | typeof MailRecipientEntity | typeof MailValidationEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof ModuleEntity | typeof ModuleMenuEntity | typeof PageDefinitionEntity | typeof ParentMenuEntity | typeof MobileValidationEntity | typeof OpenPropertyEntity | typeof RecurringQueryEntity | typeof ReportFilterEntity | typeof ReportEntity | typeof ReportRelationshipEntity | typeof ReportRoleEntity | typeof ReportColumnEntity | typeof ScheduledEventEntity | typeof SecurityRuleEntity | typeof ServiceEntity | typeof SmsTemplateEntity | typeof SmsMessageEntity | typeof UserGroupPermissionEntity | typeof UserPreferenceEntity | typeof WhatsappTemplateEntity)[];
|
183
190
|
interceptors: (typeof SentryInterceptor)[];
|
184
|
-
jobs: (typeof ExecuteCodeFixJob | typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof SyncAllCodeJob | typeof
|
191
|
+
jobs: (typeof ExecuteCodeFixJob | typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof SyncAllCodeJob | typeof ClientCredentialJob | typeof ClientJob | typeof CodeFixLogJob | typeof CodeFixScriptJob | typeof ColumnMapperJob | typeof CommentJob | typeof CredentialIpJob | typeof DataLogJob | typeof DocumentJob | typeof ExecuteRecurringQueryJob | typeof MailEventJob | typeof MailRecipientJob | typeof MailValidationJob | typeof MobileValidationJob | typeof RefreshPropertyCacheJob | typeof PropertyJob | typeof SetRecurringQueryEventJob | typeof RecurringQueryJob | typeof RelationshipMapperJob | typeof ScheduledEventJob | typeof SetEventQueueJob | typeof SmsMessageJob | typeof SqsPollingJob | typeof UserGroupMemberJob | typeof UserGroupPermissionJob | typeof UserGroupRoleJob)[];
|
185
192
|
libraries: (typeof ExecuteCodeFix | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof SyncDynamoTables | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation | typeof CodeEvaluator)[];
|
186
193
|
modifiers: (typeof MenuListModifier | typeof ModuleListModifier)[];
|
187
194
|
services: (typeof PropertyService | typeof AwsS3Service | typeof UploadService | typeof ScheduledEventService | typeof SecurityRuleService | typeof UiActionService | typeof ModelService | typeof CommonService | typeof EventDetailService | typeof EventQueueService | typeof ClientScriptService | typeof PreferenceService | typeof BusinessRuleService | typeof ListService | typeof FormService | typeof MenuService | typeof UserPreferenceService | typeof ReportService | typeof ClientCredentialService | typeof ColumnService | typeof DocumentService | typeof CommentService | typeof Es6JobsService | typeof Es6Service | typeof InternalServerConnectService | typeof MailValidationService | typeof MobileValidationService)[];
|
188
|
-
subscribers: (typeof ClientCredentialSubscriber | typeof ClientSubscriber | typeof CodeFixLogSubscriber | typeof CodeFixScriptSubscriber | typeof ColumnSubscriber | typeof CommentSubscriber | typeof CredentialIpSubscriber | typeof DocumentSubscriber | typeof MailEventSubscriber | typeof MailRecipientSubscriber | typeof MailValidationSubscriber | typeof MobileValidationSubscriber | typeof PropertySubscriber | typeof RelationshipSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
|
195
|
+
subscribers: (typeof ClientCredentialSubscriber | typeof ClientSubscriber | typeof CodeFixLogSubscriber | typeof CodeFixScriptSubscriber | typeof ColumnSubscriber | typeof CommentSubscriber | typeof CredentialIpSubscriber | typeof DataLogSubscriber | typeof DocumentSubscriber | typeof MailEventSubscriber | typeof MailRecipientSubscriber | typeof MailValidationSubscriber | typeof MobileValidationSubscriber | typeof PropertySubscriber | typeof RecurringQuerySubscriber | typeof RelationshipSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
|
189
196
|
};
|
190
197
|
export default es6Classes;
|