@servicelabsco/nestjs-utility-services 1.2.107 → 1.2.109
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 +2 -0
- package/dist/config/entity.constants.js +2 -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/system/dtos/index.d.ts +1 -0
- package/dist/system/dtos/index.js +1 -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/index.d.ts +1 -0
- package/dist/system/entities/index.js +1 -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 +10 -5
- package/dist/system/es6.classes.js +14 -2
- package/dist/system/es6.classes.js.map +1 -1
- 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 +3 -1
- package/dist/system/jobs/index.js +3 -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 +9 -0
- package/dist/system/libraries/code.evaluator.js +33 -0
- package/dist/system/libraries/code.evaluator.js.map +1 -0
- package/dist/system/libraries/index.d.ts +1 -0
- package/dist/system/libraries/index.js +1 -0
- package/dist/system/libraries/index.js.map +1 -1
- package/dist/system/services/es6.jobs.service.d.ts +7 -3
- package/dist/system/services/es6.jobs.service.js +14 -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/index.d.ts +1 -0
- package/dist/system/subscribers/index.js +1 -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
@@ -52,6 +52,7 @@ import { PageDefinitionEntity } from '../system/entities/page.definition.entity'
|
|
52
52
|
import { ParentMenuEntity } from '../system/entities/parent.menu.entity';
|
53
53
|
import { PrimaryAxisEntity } from '../system/entities/primary.axis.entity';
|
54
54
|
import { PropertyEntity } from '../system/entities/property.entity';
|
55
|
+
import { RecurringQueryEntity } from '../system/entities/recurring.query.entity';
|
55
56
|
import { RelationshipEntity } from '../system/entities/relationship.entity';
|
56
57
|
import { ReportColumnEntity } from '../system/entities/report.column.entity';
|
57
58
|
import { ReportEntity } from '../system/entities/report.entity';
|
@@ -130,6 +131,7 @@ declare const entityConstants: {
|
|
130
131
|
fb39337fbb6060afb4960cb6c1018a05: typeof ParentMenuEntity;
|
131
132
|
'9403f8a834e1296bb260b466654fce60': typeof PrimaryAxisEntity;
|
132
133
|
'736fc944161cb45ec6291b0314e9d927': typeof PropertyEntity;
|
134
|
+
b896ceae184be54377b3a3b0fcf9d74f: typeof RecurringQueryEntity;
|
133
135
|
ca92f0ad887a73e9ffa448f5e4620c70: typeof RelationshipEntity;
|
134
136
|
'7eb4d0a3fa712300108a276ad19e3038': typeof ReportColumnEntity;
|
135
137
|
ab60ad4e1a51c7d593e957b7857662c1: typeof ReportEntity;
|
@@ -53,6 +53,7 @@ const page_definition_entity_1 = require("../system/entities/page.definition.ent
|
|
53
53
|
const parent_menu_entity_1 = require("../system/entities/parent.menu.entity");
|
54
54
|
const primary_axis_entity_1 = require("../system/entities/primary.axis.entity");
|
55
55
|
const property_entity_1 = require("../system/entities/property.entity");
|
56
|
+
const recurring_query_entity_1 = require("../system/entities/recurring.query.entity");
|
56
57
|
const relationship_entity_1 = require("../system/entities/relationship.entity");
|
57
58
|
const report_column_entity_1 = require("../system/entities/report.column.entity");
|
58
59
|
const report_entity_1 = require("../system/entities/report.entity");
|
@@ -131,6 +132,7 @@ const entityConstants = {
|
|
131
132
|
fb39337fbb6060afb4960cb6c1018a05: parent_menu_entity_1.ParentMenuEntity,
|
132
133
|
'9403f8a834e1296bb260b466654fce60': primary_axis_entity_1.PrimaryAxisEntity,
|
133
134
|
'736fc944161cb45ec6291b0314e9d927': property_entity_1.PropertyEntity,
|
135
|
+
b896ceae184be54377b3a3b0fcf9d74f: recurring_query_entity_1.RecurringQueryEntity,
|
134
136
|
ca92f0ad887a73e9ffa448f5e4620c70: relationship_entity_1.RelationshipEntity,
|
135
137
|
'7eb4d0a3fa712300108a276ad19e3038': report_column_entity_1.ReportColumnEntity,
|
136
138
|
ab60ad4e1a51c7d593e957b7857662c1: report_entity_1.ReportEntity,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"entity.constants.js","sourceRoot":"","sources":["../../src/config/entity.constants.ts"],"names":[],"mappings":";AAAA,oEAAgE;AAChE,oEAAgE;AAChE,8EAAyE;AACzE,gFAA2E;AAC3E,0FAAqF;AACrF,8DAA0D;AAC1D,gFAA2E;AAC3E,+FAAyF;AACzF,iGAA2F;AAC3F,8EAA0E;AAC1E,kEAA8D;AAC9D,wFAAmF;AACnF,4EAAuE;AACvE,kFAA6E;AAC7E,4FAAsF;AACtF,kEAA8D;AAC9D,0FAAqF;AACrF,oEAAgE;AAChE,kFAA6E;AAC7E,gFAA0E;AAC1E,sFAAgF;AAChF,0FAAqF;AACrF,oEAAgE;AAChE,sEAAkE;AAClE,kFAA6E;AAC7E,wEAAoE;AACpE,gFAA2E;AAC3E,oFAA+E;AAC/E,gFAA2E;AAC3E,8EAAyE;AACzE,8EAAyE;AACzE,gEAA4D;AAC5D,sFAAiF;AACjF,sFAAiF;AACjF,8EAAyE;AACzE,gFAA2E;AAC3E,4EAAuE;AACvE,wEAAmE;AACnE,oFAA+E;AAC/E,sFAAiF;AACjF,gEAA4D;AAC5D,0EAAqE;AACrE,0FAAqF;AACrF,gFAA2E;AAC3E,kEAA8D;AAC9D,4FAAuF;AACvF,4EAAuE;AACvE,oEAAgE;AAChE,8EAAyE;AACzE,kFAA6E;AAC7E,sFAAiF;AACjF,8EAAyE;AACzE,gFAA2E;AAC3E,wEAAoE;AACpE,gFAA4E;AAC5E,kFAA6E;AAC7E,oEAAgE;AAChE,kFAA6E;AAC7E,gFAA2E;AAC3E,8FAAyF;AACzF,8EAAyE;AACzE,sFAAiF;AACjF,oFAA+E;AAC/E,kFAA6E;AAC7E,sEAAkE;AAClE,8EAAyE;AACzE,gFAA2E;AAC3E,kFAA6E;AAC7E,0EAAqE;AACrE,gGAA0F;AAC1F,oFAA8E;AAC9E,4EAAuE;AACvE,0FAAoF;AACpF,kGAA4F;AAC5F,sFAAgF;AAChF,sFAAiF;AACjF,0FAAqF;AAErF,MAAM,eAAe,GAAG;IACpB,kCAAkC,EAAE,8BAAa;IACjD,kCAAkC,EAAE,8BAAa;IACjD,kCAAkC,EAAE,uCAAiB;IACrD,kCAAkC,EAAE,yCAAkB;IACtD,kCAAkC,EAAE,mDAAuB;IAC3D,gCAAgC,EAAE,wBAAU;IAC5C,gCAAgC,EAAE,yCAAkB;IACpD,kCAAkC,EAAE,4CAAmB;IACvD,kCAAkC,EAAE,8CAAoB;IACxD,kCAAkC,EAAE,oCAAgB;IACpD,kCAAkC,EAAE,wBAAU;IAC9C,kCAAkC,EAAE,6CAAoB;IACxD,kCAAkC,EAAE,iCAAc;IAClD,kCAAkC,EAAE,yCAAkB;IACtD,gCAAgC,EAAE,kDAAsB;IACxD,kCAAkC,EAAE,0BAAW;IAC/C,kCAAkC,EAAE,iDAAsB;IAC1D,kCAAkC,EAAE,4BAAY;IAChD,kCAAkC,EAAE,yCAAkB;IACtD,kCAAkC,EAAE,sCAAgB;IACpD,kCAAkC,EAAE,4CAAmB;IACvD,kCAAkC,EAAE,iDAAsB;IAC1D,kCAAkC,EAAE,4BAAY;IAChD,gCAAgC,EAAE,8BAAa;IAC/C,gCAAgC,EAAE,yCAAkB;IACpD,gCAAgC,EAAE,gCAAc;IAChD,gCAAgC,EAAE,uCAAiB;IACnD,kCAAkC,EAAE,2CAAmB;IACvD,kCAAkC,EAAE,uCAAiB;IACrD,gCAAgC,EAAE,qCAAgB;IAClD,gCAAgC,EAAE,qCAAgB;IAClD,gCAAgC,EAAE,wBAAU;IAC5C,kCAAkC,EAAE,6CAAoB;IACxD,gCAAgC,EAAE,6CAAoB;IACtD,kCAAkC,EAAE,qCAAgB;IACpD,gCAAgC,EAAE,uCAAiB;IACnD,gCAAgC,EAAE,mCAAe;IACjD,gCAAgC,EAAE,+BAAa;IAC/C,gCAAgC,EAAE,2CAAmB;IACrD,kCAAkC,EAAE,6CAAoB;IACxD,kCAAkC,EAAE,wBAAU;IAC9C,kCAAkC,EAAE,iCAAc;IAClD,gCAAgC,EAAE,iDAAsB;IACxD,gCAAgC,EAAE,uCAAiB;IACnD,gCAAgC,EAAE,0BAAW;IAC7C,gCAAgC,EAAE,mDAAuB;IACzD,kCAAkC,EAAE,mCAAe;IACnD,kCAAkC,EAAE,4BAAY;IAChD,kCAAkC,EAAE,qCAAgB;IACpD,gCAAgC,EAAE,yCAAkB;IACpD,kCAAkC,EAAE,6CAAoB;IACxD,gCAAgC,EAAE,qCAAgB;IAClD,kCAAkC,EAAE,uCAAiB;IACrD,kCAAkC,EAAE,gCAAc;IAClD,gCAAgC,EAAE,wCAAkB;IACpD,kCAAkC,EAAE,yCAAkB;IACtD,gCAAgC,EAAE,4BAAY;IAC9C,gCAAgC,EAAE,yCAAkB;IACpD,kCAAkC,EAAE,uCAAiB;IACrD,kCAAkC,EAAE,qDAAwB;IAC5D,gCAAgC,EAAE,qCAAgB;IAClD,gCAAgC,EAAE,6CAAoB;IACtD,kCAAkC,EAAE,2CAAmB;IACvD,gCAAgC,EAAE,yCAAkB;IACpD,kCAAkC,EAAE,8BAAa;IACjD,gCAAgC,EAAE,qCAAgB;IAClD,kCAAkC,EAAE,uCAAiB;IACrD,kCAAkC,EAAE,yCAAkB;IACtD,kCAAkC,EAAE,iCAAc;IAClD,kCAAkC,EAAE,sDAAwB;IAC5D,kCAAkC,EAAE,0CAAkB;IACtD,kCAAkC,EAAE,mCAAe;IACnD,kCAAkC,EAAE,gDAAqB;IACzD,kCAAkC,EAAE,wDAAyB;IAC7D,kCAAkC,EAAE,4CAAmB;IACvD,gCAAgC,EAAE,6CAAoB;IACtD,kCAAkC,EAAE,iDAAsB;CAC7D,CAAC;AAEF,iBAAS,eAAe,CAAC"}
|
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"}
|
@@ -20,6 +20,7 @@ export * from './mobile.validation.dto';
|
|
20
20
|
export * from './model.allowed.column.dto';
|
21
21
|
export * from './model.form.preference.creation.dto';
|
22
22
|
export * from './otp.generation.dto';
|
23
|
+
export * from './recurring.query.attributes.dto';
|
23
24
|
export * from './s3.object.info.dto';
|
24
25
|
export * from './s3.upload.options.dto';
|
25
26
|
export * from './sms.message.attributes.dto';
|
@@ -36,6 +36,7 @@ __exportStar(require("./mobile.validation.dto"), exports);
|
|
36
36
|
__exportStar(require("./model.allowed.column.dto"), exports);
|
37
37
|
__exportStar(require("./model.form.preference.creation.dto"), exports);
|
38
38
|
__exportStar(require("./otp.generation.dto"), exports);
|
39
|
+
__exportStar(require("./recurring.query.attributes.dto"), exports);
|
39
40
|
__exportStar(require("./s3.object.info.dto"), exports);
|
40
41
|
__exportStar(require("./s3.upload.options.dto"), exports);
|
41
42
|
__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,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"}
|
@@ -39,6 +39,7 @@ export * from './page.definition.entity';
|
|
39
39
|
export * from './parent.menu.entity';
|
40
40
|
export * from './primary.axis.entity';
|
41
41
|
export * from './property.entity';
|
42
|
+
export * from './recurring.query.entity';
|
42
43
|
export * from './relationship.entity';
|
43
44
|
export * from './report.column.entity';
|
44
45
|
export * from './report.entity';
|
@@ -55,6 +55,7 @@ __exportStar(require("./page.definition.entity"), exports);
|
|
55
55
|
__exportStar(require("./parent.menu.entity"), exports);
|
56
56
|
__exportStar(require("./primary.axis.entity"), exports);
|
57
57
|
__exportStar(require("./property.entity"), exports);
|
58
|
+
__exportStar(require("./recurring.query.entity"), exports);
|
58
59
|
__exportStar(require("./relationship.entity"), exports);
|
59
60
|
__exportStar(require("./report.column.entity"), exports);
|
60
61
|
__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,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"}
|
@@ -68,6 +68,7 @@ import { OpenPropertyEntity } from './entities/open.property.entity';
|
|
68
68
|
import { PageDefinitionEntity } from './entities/page.definition.entity';
|
69
69
|
import { ParentMenuEntity } from './entities/parent.menu.entity';
|
70
70
|
import { PrimaryAxisEntity } from './entities/primary.axis.entity';
|
71
|
+
import { RecurringQueryEntity } from './entities/recurring.query.entity';
|
71
72
|
import { RelationshipEntity } from './entities/relationship.entity';
|
72
73
|
import { ReportColumnEntity } from './entities/report.column.entity';
|
73
74
|
import { ReportEntity } from './entities/report.entity';
|
@@ -90,7 +91,6 @@ import { UserGroupRoleEntity } from './entities/user.group.role.entity';
|
|
90
91
|
import { UserPreferenceEntity } from './entities/user.preference.entity';
|
91
92
|
import { WhatsappTemplateEntity } from './entities/whatsapp.template.entity';
|
92
93
|
import { SentryInterceptor } from './interceptors/sentry.interceptor';
|
93
|
-
import { CleanScheduledEventJob } from './jobs/clean.scheduled.event.job';
|
94
94
|
import { ClientCredentialJob } from './jobs/client.credential.job';
|
95
95
|
import { ClientJob } from './jobs/client.job';
|
96
96
|
import { CodeFixLogJob } from './jobs/code.fix.log.job';
|
@@ -100,17 +100,20 @@ import { CommentJob } from './jobs/comment.job';
|
|
100
100
|
import { CredentialIpJob } from './jobs/credential.ip.job';
|
101
101
|
import { DocumentJob } from './jobs/document.job';
|
102
102
|
import { ExecuteCodeFixJob } from './jobs/execute.code.fix.job';
|
103
|
+
import { ExecuteRecurringQueryJob } from './jobs/execute.recurring.query.job';
|
103
104
|
import { MailEventJob } from './jobs/mail.event.job';
|
104
105
|
import { MailRecipientJob } from './jobs/mail.recipient.job';
|
105
106
|
import { MailValidationJob } from './jobs/mail.validation.job';
|
106
107
|
import { MobileValidationJob } from './jobs/mobile.validation.job';
|
107
108
|
import { ModelScannerJob } from './jobs/model.scanner.job';
|
108
109
|
import { PropertyJob } from './jobs/property.job';
|
110
|
+
import { RecurringQueryJob } from './jobs/recurring.query.job';
|
109
111
|
import { RefreshPropertyCacheJob } from './jobs/refresh.property.cache.job';
|
110
112
|
import { RelationshipMapperJob } from './jobs/relationship.mapper.job';
|
111
113
|
import { ReportColumnSyncJob } from './jobs/report.column.sync.job';
|
112
114
|
import { ScheduledEventJob } from './jobs/scheduled.event.job';
|
113
115
|
import { SetEventQueueJob } from './jobs/set.event.queue.job';
|
116
|
+
import { SetRecurringQueryEventJob } from './jobs/set.recurring.query.event.job';
|
114
117
|
import { SetScheduledEventJob } from './jobs/set.scheduled.event.job';
|
115
118
|
import { SmsMessageJob } from './jobs/sms.message.job';
|
116
119
|
import { SqsPollingJob } from './jobs/sqs.polling.job';
|
@@ -120,6 +123,7 @@ import { UserGroupPermissionJob } from './jobs/user.group.permission.job';
|
|
120
123
|
import { UserGroupRoleJob } from './jobs/user.group.role.job';
|
121
124
|
import { BusinessRuleFilterValidator } from './libraries/business.rule.filter.validator';
|
122
125
|
import { BusinessRuleQueryEvaluator } from './libraries/business.rule.query.evaluator';
|
126
|
+
import { CodeEvaluator } from './libraries/code.evaluator';
|
123
127
|
import { ColumnManager } from './libraries/column.manager';
|
124
128
|
import { ExecuteCodeFix } from './libraries/execute.code.fix';
|
125
129
|
import { ModelSync } from './libraries/model.sync';
|
@@ -168,6 +172,7 @@ import { MailRecipientSubscriber } from './subscribers/mail.recipient.subscriber
|
|
168
172
|
import { MailValidationSubscriber } from './subscribers/mail.validation.subscriber';
|
169
173
|
import { MobileValidationSubscriber } from './subscribers/mobile.validation.subscriber';
|
170
174
|
import { PropertySubscriber } from './subscribers/property.subscriber';
|
175
|
+
import { RecurringQuerySubscriber } from './subscribers/recurring.query.subscriber';
|
171
176
|
import { RelationshipSubscriber } from './subscribers/relationship.subscriber';
|
172
177
|
import { ScheduledEventSubscriber } from './subscribers/scheduled.event.subscriber';
|
173
178
|
import { SmsMessageSubscriber } from './subscribers/sms.message.subscriber';
|
@@ -178,12 +183,12 @@ declare const es6Classes: {
|
|
178
183
|
commands: (typeof DbScannerCommand | typeof DynamoScannerCommand | typeof EventQueueCommand | typeof JobsScannerCommand | typeof ModelScannerCommand | typeof ReportScannerCommand | typeof ServiceScannerCommand | typeof SesEventTrackingCommand | typeof SyncAllCommand)[];
|
179
184
|
controllers: (typeof BaseController | typeof DataController | typeof FormController | typeof MenuController | typeof PreferenceController | typeof ReportController | typeof UploadController | typeof UserPreferenceController)[];
|
180
185
|
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)[];
|
181
|
-
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)[];
|
186
|
+
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 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)[];
|
182
187
|
interceptors: (typeof SentryInterceptor)[];
|
183
|
-
jobs: (typeof ExecuteCodeFixJob | typeof SetScheduledEventJob | typeof ModelScannerJob | typeof ReportColumnSyncJob | typeof SyncAllCodeJob | typeof
|
184
|
-
libraries: (typeof ExecuteCodeFix | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof SyncDynamoTables | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation)[];
|
188
|
+
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 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)[];
|
189
|
+
libraries: (typeof ExecuteCodeFix | typeof ModelSync | typeof SecurityRuleEvaluator | typeof ColumnManager | typeof SyncDynamoTables | typeof BusinessRuleFilterValidator | typeof BusinessRuleQueryEvaluator | typeof ProcessMenuCreation | typeof CodeEvaluator)[];
|
185
190
|
modifiers: (typeof MenuListModifier | typeof ModuleListModifier)[];
|
186
191
|
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)[];
|
187
|
-
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)[];
|
192
|
+
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 RecurringQuerySubscriber | typeof RelationshipSubscriber | typeof ScheduledEventSubscriber | typeof SmsMessageSubscriber | typeof UserGroupMemberSubscriber | typeof UserGroupPermissionSubscriber | typeof UserGroupRoleSubscriber)[];
|
188
193
|
};
|
189
194
|
export default es6Classes;
|
@@ -39,6 +39,7 @@ const mobile_validation_dto_1 = require("./dtos/mobile.validation.dto");
|
|
39
39
|
const model_allowed_column_dto_1 = require("./dtos/model.allowed.column.dto");
|
40
40
|
const model_form_preference_creation_dto_1 = require("./dtos/model.form.preference.creation.dto");
|
41
41
|
const otp_generation_dto_1 = require("./dtos/otp.generation.dto");
|
42
|
+
const recurring_query_attributes_dto_1 = require("./dtos/recurring.query.attributes.dto");
|
42
43
|
const s3_object_info_dto_1 = require("./dtos/s3.object.info.dto");
|
43
44
|
const s3_upload_options_dto_1 = require("./dtos/s3.upload.options.dto");
|
44
45
|
const sms_message_attributes_dto_1 = require("./dtos/sms.message.attributes.dto");
|
@@ -85,6 +86,7 @@ const page_definition_entity_1 = require("./entities/page.definition.entity");
|
|
85
86
|
const parent_menu_entity_1 = require("./entities/parent.menu.entity");
|
86
87
|
const primary_axis_entity_1 = require("./entities/primary.axis.entity");
|
87
88
|
const property_entity_1 = require("./entities/property.entity");
|
89
|
+
const recurring_query_entity_1 = require("./entities/recurring.query.entity");
|
88
90
|
const relationship_entity_1 = require("./entities/relationship.entity");
|
89
91
|
const report_column_entity_1 = require("./entities/report.column.entity");
|
90
92
|
const report_entity_1 = require("./entities/report.entity");
|
@@ -109,7 +111,6 @@ const user_group_role_entity_1 = require("./entities/user.group.role.entity");
|
|
109
111
|
const user_preference_entity_1 = require("./entities/user.preference.entity");
|
110
112
|
const whatsapp_template_entity_1 = require("./entities/whatsapp.template.entity");
|
111
113
|
const sentry_interceptor_1 = require("./interceptors/sentry.interceptor");
|
112
|
-
const clean_scheduled_event_job_1 = require("./jobs/clean.scheduled.event.job");
|
113
114
|
const client_credential_job_1 = require("./jobs/client.credential.job");
|
114
115
|
const client_job_1 = require("./jobs/client.job");
|
115
116
|
const code_fix_log_job_1 = require("./jobs/code.fix.log.job");
|
@@ -119,17 +120,20 @@ const comment_job_1 = require("./jobs/comment.job");
|
|
119
120
|
const credential_ip_job_1 = require("./jobs/credential.ip.job");
|
120
121
|
const document_job_1 = require("./jobs/document.job");
|
121
122
|
const execute_code_fix_job_1 = require("./jobs/execute.code.fix.job");
|
123
|
+
const execute_recurring_query_job_1 = require("./jobs/execute.recurring.query.job");
|
122
124
|
const mail_event_job_1 = require("./jobs/mail.event.job");
|
123
125
|
const mail_recipient_job_1 = require("./jobs/mail.recipient.job");
|
124
126
|
const mail_validation_job_1 = require("./jobs/mail.validation.job");
|
125
127
|
const mobile_validation_job_1 = require("./jobs/mobile.validation.job");
|
126
128
|
const model_scanner_job_1 = require("./jobs/model.scanner.job");
|
127
129
|
const property_job_1 = require("./jobs/property.job");
|
130
|
+
const recurring_query_job_1 = require("./jobs/recurring.query.job");
|
128
131
|
const refresh_property_cache_job_1 = require("./jobs/refresh.property.cache.job");
|
129
132
|
const relationship_mapper_job_1 = require("./jobs/relationship.mapper.job");
|
130
133
|
const report_column_sync_job_1 = require("./jobs/report.column.sync.job");
|
131
134
|
const scheduled_event_job_1 = require("./jobs/scheduled.event.job");
|
132
135
|
const set_event_queue_job_1 = require("./jobs/set.event.queue.job");
|
136
|
+
const set_recurring_query_event_job_1 = require("./jobs/set.recurring.query.event.job");
|
133
137
|
const set_scheduled_event_job_1 = require("./jobs/set.scheduled.event.job");
|
134
138
|
const sms_message_job_1 = require("./jobs/sms.message.job");
|
135
139
|
const sqs_polling_job_1 = require("./jobs/sqs.polling.job");
|
@@ -139,6 +143,7 @@ const user_group_permission_job_1 = require("./jobs/user.group.permission.job");
|
|
139
143
|
const user_group_role_job_1 = require("./jobs/user.group.role.job");
|
140
144
|
const business_rule_filter_validator_1 = require("./libraries/business.rule.filter.validator");
|
141
145
|
const business_rule_query_evaluator_1 = require("./libraries/business.rule.query.evaluator");
|
146
|
+
const code_evaluator_1 = require("./libraries/code.evaluator");
|
142
147
|
const column_manager_1 = require("./libraries/column.manager");
|
143
148
|
const execute_code_fix_1 = require("./libraries/execute.code.fix");
|
144
149
|
const model_sync_1 = require("./libraries/model.sync");
|
@@ -187,6 +192,7 @@ const mail_recipient_subscriber_1 = require("./subscribers/mail.recipient.subscr
|
|
187
192
|
const mail_validation_subscriber_1 = require("./subscribers/mail.validation.subscriber");
|
188
193
|
const mobile_validation_subscriber_1 = require("./subscribers/mobile.validation.subscriber");
|
189
194
|
const property_subscriber_1 = require("./subscribers/property.subscriber");
|
195
|
+
const recurring_query_subscriber_1 = require("./subscribers/recurring.query.subscriber");
|
190
196
|
const relationship_subscriber_1 = require("./subscribers/relationship.subscriber");
|
191
197
|
const scheduled_event_subscriber_1 = require("./subscribers/scheduled.event.subscriber");
|
192
198
|
const sms_message_subscriber_1 = require("./subscribers/sms.message.subscriber");
|
@@ -238,6 +244,7 @@ const es6Classes = {
|
|
238
244
|
model_allowed_column_dto_1.ModelAllowedColumnDto,
|
239
245
|
model_form_preference_creation_dto_1.ModelFormPreferenceCreationDto,
|
240
246
|
otp_generation_dto_1.OtpGenerationDto,
|
247
|
+
recurring_query_attributes_dto_1.RecurringQueryAttributesDto,
|
241
248
|
s3_object_info_dto_1.S3ObjectInfoDto,
|
242
249
|
s3_upload_options_dto_1.S3UploadOptionsDto,
|
243
250
|
sms_message_attributes_dto_1.SmsMessageAttributesDto,
|
@@ -286,6 +293,7 @@ const es6Classes = {
|
|
286
293
|
parent_menu_entity_1.ParentMenuEntity,
|
287
294
|
primary_axis_entity_1.PrimaryAxisEntity,
|
288
295
|
property_entity_1.PropertyEntity,
|
296
|
+
recurring_query_entity_1.RecurringQueryEntity,
|
289
297
|
relationship_entity_1.RelationshipEntity,
|
290
298
|
report_column_entity_1.ReportColumnEntity,
|
291
299
|
report_entity_1.ReportEntity,
|
@@ -312,7 +320,6 @@ const es6Classes = {
|
|
312
320
|
],
|
313
321
|
interceptors: [sentry_interceptor_1.SentryInterceptor],
|
314
322
|
jobs: [
|
315
|
-
clean_scheduled_event_job_1.CleanScheduledEventJob,
|
316
323
|
client_credential_job_1.ClientCredentialJob,
|
317
324
|
client_job_1.ClientJob,
|
318
325
|
code_fix_log_job_1.CodeFixLogJob,
|
@@ -322,17 +329,20 @@ const es6Classes = {
|
|
322
329
|
credential_ip_job_1.CredentialIpJob,
|
323
330
|
document_job_1.DocumentJob,
|
324
331
|
execute_code_fix_job_1.ExecuteCodeFixJob,
|
332
|
+
execute_recurring_query_job_1.ExecuteRecurringQueryJob,
|
325
333
|
mail_event_job_1.MailEventJob,
|
326
334
|
mail_recipient_job_1.MailRecipientJob,
|
327
335
|
mail_validation_job_1.MailValidationJob,
|
328
336
|
mobile_validation_job_1.MobileValidationJob,
|
329
337
|
model_scanner_job_1.ModelScannerJob,
|
330
338
|
property_job_1.PropertyJob,
|
339
|
+
recurring_query_job_1.RecurringQueryJob,
|
331
340
|
refresh_property_cache_job_1.RefreshPropertyCacheJob,
|
332
341
|
relationship_mapper_job_1.RelationshipMapperJob,
|
333
342
|
report_column_sync_job_1.ReportColumnSyncJob,
|
334
343
|
scheduled_event_job_1.ScheduledEventJob,
|
335
344
|
set_event_queue_job_1.SetEventQueueJob,
|
345
|
+
set_recurring_query_event_job_1.SetRecurringQueryEventJob,
|
336
346
|
set_scheduled_event_job_1.SetScheduledEventJob,
|
337
347
|
sms_message_job_1.SmsMessageJob,
|
338
348
|
sqs_polling_job_1.SqsPollingJob,
|
@@ -344,6 +354,7 @@ const es6Classes = {
|
|
344
354
|
libraries: [
|
345
355
|
business_rule_filter_validator_1.BusinessRuleFilterValidator,
|
346
356
|
business_rule_query_evaluator_1.BusinessRuleQueryEvaluator,
|
357
|
+
code_evaluator_1.CodeEvaluator,
|
347
358
|
column_manager_1.ColumnManager,
|
348
359
|
execute_code_fix_1.ExecuteCodeFix,
|
349
360
|
model_sync_1.ModelSync,
|
@@ -395,6 +406,7 @@ const es6Classes = {
|
|
395
406
|
mail_validation_subscriber_1.MailValidationSubscriber,
|
396
407
|
mobile_validation_subscriber_1.MobileValidationSubscriber,
|
397
408
|
property_subscriber_1.PropertySubscriber,
|
409
|
+
recurring_query_subscriber_1.RecurringQuerySubscriber,
|
398
410
|
relationship_subscriber_1.RelationshipSubscriber,
|
399
411
|
scheduled_event_subscriber_1.ScheduledEventSubscriber,
|
400
412
|
sms_message_subscriber_1.SmsMessageSubscriber,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/system/es6.classes.ts"],"names":[],"mappings":";;AAAA,sEAAiE;AACjE,8EAAyE;AACzE,wEAAmE;AACnE,0EAAqE;AACrE,4EAAuE;AACvE,8EAAyE;AACzE,gFAA2E;AAC3E,sFAAgF;AAChF,kEAA6D;AAC7D,mEAA+D;AAC/D,mEAA+D;AAC/D,mEAA+D;AAC/D,mEAA+D;AAC/D,+EAA2E;AAC3E,uEAAmE;AACnE,uEAAmE;AACnE,yFAAoF;AACpF,4DAAuD;AACvD,oEAA8D;AAC9D,wEAAmE;AACnE,8FAAwF;AACxF,wEAAmE;AACnE,oFAA6E;AAC7E,0FAAmF;AACnF,0EAAqE;AACrE,sFAAgF;AAChF,4EAAuE;AACvE,4DAAuD;AACvD,sEAAgE;AAChE,sEAAgE;AAChE,8EAAuE;AACvE,gFAA0E;AAC1E,wFAAkF;AAClF,oEAA+D;AAC/D,gGAAyF;AACzF,wEAAmE;AACnE,8EAAwE;AACxE,kGAA2F;AAC3F,kEAA6D;AAC7D,kEAA4D;AAC5D,wEAAkE;AAClE,kFAA4E;AAC5E,sFAAgF;AAChF,0EAAqE;AACrE,0EAAqE;AACrE,oFAA8E;AAC9E,0DAAsD;AACtD,kFAA6E;AAC7E,4DAAwD;AACxD,0EAAqE;AACrE,wEAAkE;AAClE,8EAAwE;AACxE,kFAA6E;AAC7E,4DAAwD;AACxD,8DAA0D;AAC1D,0EAAqE;AACrE,gEAA4D;AAC5D,wEAAmE;AACnE,4EAAuE;AACvE,wEAAmE;AACnE,sEAAiE;AACjE,sEAAiE;AACjE,wDAAoD;AACpD,8EAAyE;AACzE,8EAAyE;AACzE,sEAAiE;AACjE,wEAAmE;AACnE,oEAA+D;AAC/D,gEAA2D;AAC3D,4EAAuE;AACvE,8EAAyE;AACzE,wDAAoD;AACpD,kEAA6D;AAC7D,kFAA6E;AAC7E,wEAAmE;AACnE,0DAAsD;AACtD,oFAA+E;AAC/E,oEAA+D;AAC/D,4DAAwD;AACxD,sEAAiE;AACjE,0EAAqE;AACrE,8EAAyE;AACzE,sEAAiE;AACjE,wEAAmE;AACnE,gEAA4D;AAC5D,wEAAoE;AACpE,0EAAqE;AACrE,4DAAwD;AACxD,0EAAqE;AACrE,wEAAmE;AACnE,sFAAiF;AACjF,sEAAiE;AACjE,8EAAyE;AACzE,4EAAuE;AACvE,0EAAqE;AACrE,8DAA0D;AAC1D,sEAAiE;AACjE,wEAAmE;AACnE,0EAAqE;AACrE,kEAA6D;AAC7D,wFAAkF;AAClF,4EAAsE;AACtE,oEAA+D;AAC/D,kFAA4E;AAC5E,0FAAoF;AACpF,8EAAwE;AACxE,8EAAyE;AACzE,kFAA6E;AAC7E,0EAAsE;AACtE,
|
1
|
+
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/system/es6.classes.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { CommonJob } from '../../common/libraries/common.job';
|
2
|
+
import { QueueService } from '../../platformUtility/services/queue.service';
|
3
|
+
import { SqlService } from '../../platformUtility/services/sql.service';
|
4
|
+
export declare class ExecuteRecurringQueryJob extends CommonJob {
|
5
|
+
protected readonly queueService: QueueService;
|
6
|
+
private readonly sqlService;
|
7
|
+
protected timeout: number;
|
8
|
+
constructor(queueService: QueueService, sqlService: SqlService);
|
9
|
+
handle(id: number): Promise<any>;
|
10
|
+
}
|
@@ -9,29 +9,32 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
10
|
};
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
-
exports.
|
12
|
+
exports.ExecuteRecurringQueryJob = void 0;
|
13
13
|
const common_1 = require("@nestjs/common");
|
14
14
|
const common_job_1 = require("../../common/libraries/common.job");
|
15
15
|
const queue_service_1 = require("../../platformUtility/services/queue.service");
|
16
|
-
const
|
17
|
-
const
|
18
|
-
let
|
19
|
-
constructor(queueService,
|
20
|
-
super('
|
16
|
+
const sql_service_1 = require("../../platformUtility/services/sql.service");
|
17
|
+
const recurring_query_entity_1 = require("../entities/recurring.query.entity");
|
18
|
+
let ExecuteRecurringQueryJob = class ExecuteRecurringQueryJob extends common_job_1.CommonJob {
|
19
|
+
constructor(queueService, sqlService) {
|
20
|
+
super('49da21b3b3be45f66e8f88c55be55ebe');
|
21
21
|
this.queueService = queueService;
|
22
|
-
this.
|
23
|
-
this.
|
22
|
+
this.sqlService = sqlService;
|
23
|
+
this.timeout = 300000;
|
24
24
|
}
|
25
25
|
async handle(id) {
|
26
|
-
|
27
|
-
|
26
|
+
if (!id)
|
27
|
+
return;
|
28
|
+
const query = await recurring_query_entity_1.RecurringQueryEntity.first(+id);
|
29
|
+
if (!query?.query)
|
30
|
+
return;
|
31
|
+
return this.sqlService.sql(query.query);
|
28
32
|
}
|
29
33
|
};
|
30
|
-
exports.
|
31
|
-
exports.
|
34
|
+
exports.ExecuteRecurringQueryJob = ExecuteRecurringQueryJob;
|
35
|
+
exports.ExecuteRecurringQueryJob = ExecuteRecurringQueryJob = __decorate([
|
32
36
|
(0, common_1.Injectable)(),
|
33
37
|
__metadata("design:paramtypes", [queue_service_1.QueueService,
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
//# sourceMappingURL=clean.scheduled.event.job.js.map
|
38
|
+
sql_service_1.SqlService])
|
39
|
+
], ExecuteRecurringQueryJob);
|
40
|
+
//# sourceMappingURL=execute.recurring.query.job.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"execute.recurring.query.job.js","sourceRoot":"","sources":["../../../src/system/jobs/execute.recurring.query.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,kEAA8D;AAC9D,gFAA4E;AAC5E,4EAAwE;AACxE,+EAA0E;AAGnE,IAAM,wBAAwB,GAA9B,MAAM,wBAAyB,SAAQ,sBAAS;IAGnD,YACuB,YAA0B,EAC5B,UAAsB;QAEvC,KAAK,CAAC,kCAAkC,CAAC,CAAC;QAHvB,iBAAY,GAAZ,YAAY,CAAc;QAC5B,eAAU,GAAV,UAAU,CAAY;QAJjC,YAAO,GAAW,MAAM,CAAC;IAOnC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,EAAU;QACnB,IAAI,CAAC,EAAE;YAAE,OAAO;QAEhB,MAAM,KAAK,GAAG,MAAM,6CAAoB,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;QAEpD,IAAI,CAAC,KAAK,EAAE,KAAK;YAAE,OAAO;QAE1B,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC5C,CAAC;CACJ,CAAA;AAlBY,4DAAwB;mCAAxB,wBAAwB;IADpC,IAAA,mBAAU,GAAE;qCAK4B,4BAAY;QAChB,wBAAU;GALlC,wBAAwB,CAkBpC"}
|
@@ -1,4 +1,3 @@
|
|
1
|
-
export * from './clean.scheduled.event.job';
|
2
1
|
export * from './client.credential.job';
|
3
2
|
export * from './client.job';
|
4
3
|
export * from './code.fix.log.job';
|
@@ -8,17 +7,20 @@ export * from './comment.job';
|
|
8
7
|
export * from './credential.ip.job';
|
9
8
|
export * from './document.job';
|
10
9
|
export * from './execute.code.fix.job';
|
10
|
+
export * from './execute.recurring.query.job';
|
11
11
|
export * from './mail.event.job';
|
12
12
|
export * from './mail.recipient.job';
|
13
13
|
export * from './mail.validation.job';
|
14
14
|
export * from './mobile.validation.job';
|
15
15
|
export * from './model.scanner.job';
|
16
16
|
export * from './property.job';
|
17
|
+
export * from './recurring.query.job';
|
17
18
|
export * from './refresh.property.cache.job';
|
18
19
|
export * from './relationship.mapper.job';
|
19
20
|
export * from './report.column.sync.job';
|
20
21
|
export * from './scheduled.event.job';
|
21
22
|
export * from './set.event.queue.job';
|
23
|
+
export * from './set.recurring.query.event.job';
|
22
24
|
export * from './set.scheduled.event.job';
|
23
25
|
export * from './sms.message.job';
|
24
26
|
export * from './sqs.polling.job';
|
@@ -14,7 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
__exportStar(require("./clean.scheduled.event.job"), exports);
|
18
17
|
__exportStar(require("./client.credential.job"), exports);
|
19
18
|
__exportStar(require("./client.job"), exports);
|
20
19
|
__exportStar(require("./code.fix.log.job"), exports);
|
@@ -24,17 +23,20 @@ __exportStar(require("./comment.job"), exports);
|
|
24
23
|
__exportStar(require("./credential.ip.job"), exports);
|
25
24
|
__exportStar(require("./document.job"), exports);
|
26
25
|
__exportStar(require("./execute.code.fix.job"), exports);
|
26
|
+
__exportStar(require("./execute.recurring.query.job"), exports);
|
27
27
|
__exportStar(require("./mail.event.job"), exports);
|
28
28
|
__exportStar(require("./mail.recipient.job"), exports);
|
29
29
|
__exportStar(require("./mail.validation.job"), exports);
|
30
30
|
__exportStar(require("./mobile.validation.job"), exports);
|
31
31
|
__exportStar(require("./model.scanner.job"), exports);
|
32
32
|
__exportStar(require("./property.job"), exports);
|
33
|
+
__exportStar(require("./recurring.query.job"), exports);
|
33
34
|
__exportStar(require("./refresh.property.cache.job"), exports);
|
34
35
|
__exportStar(require("./relationship.mapper.job"), exports);
|
35
36
|
__exportStar(require("./report.column.sync.job"), exports);
|
36
37
|
__exportStar(require("./scheduled.event.job"), exports);
|
37
38
|
__exportStar(require("./set.event.queue.job"), exports);
|
39
|
+
__exportStar(require("./set.recurring.query.event.job"), exports);
|
38
40
|
__exportStar(require("./set.scheduled.event.job"), exports);
|
39
41
|
__exportStar(require("./sms.message.job"), exports);
|
40
42
|
__exportStar(require("./sqs.polling.job"), exports);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/system/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,+CAA6B;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,sDAAoC;AAAA,iDAA+B;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,mDAAiC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,iDAA+B;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,2DAAyC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,sDAAoC;AAAA,0DAAwC;AAAA,8DAA4C;AAAA,wDAAqC"}
|