@servicelabsco/slabs-access-manager 0.1.110 → 0.1.111
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/access/dtos/email.message.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/email.message.attributes.dto.js.map +1 -1
- package/dist/access/dtos/index.d.ts +4 -0
- package/dist/access/dtos/index.js +4 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/dtos/server.email.attachment.dto.d.ts +5 -0
- package/dist/access/dtos/server.email.attachment.dto.js +35 -0
- package/dist/access/dtos/server.email.attachment.dto.js.map +1 -0
- package/dist/access/dtos/server.email.message.dto.d.ts +13 -0
- package/dist/access/dtos/server.email.message.dto.js +70 -0
- package/dist/access/dtos/server.email.message.dto.js.map +1 -0
- package/dist/access/dtos/server.email.recipient.dto.d.ts +4 -0
- package/dist/access/dtos/server.email.recipient.dto.js +28 -0
- package/dist/access/dtos/server.email.recipient.dto.js.map +1 -0
- package/dist/access/dtos/server.email.recipients.dto.d.ts +5 -0
- package/dist/access/dtos/server.email.recipients.dto.js +35 -0
- package/dist/access/dtos/server.email.recipients.dto.js.map +1 -0
- package/dist/access/entities/email.message.entity.d.ts +1 -0
- package/dist/access/entities/email.message.entity.js +4 -0
- package/dist/access/entities/email.message.entity.js.map +1 -1
- package/dist/access/es6.classes.d.ts +5 -2
- package/dist/access/es6.classes.js +10 -0
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/jobs/index.d.ts +1 -0
- package/dist/access/jobs/index.js +1 -0
- package/dist/access/jobs/index.js.map +1 -1
- package/dist/access/jobs/process.server.email.job.d.ts +17 -0
- package/dist/access/jobs/process.server.email.job.js +108 -0
- package/dist/access/jobs/process.server.email.job.js.map +1 -0
- package/dist/access/services/es6.jobs.service.d.ts +3 -1
- package/dist/access/services/es6.jobs.service.js +5 -1
- package/dist/access/services/es6.jobs.service.js.map +1 -1
- package/dist/accessUtility/libraries/slabs.util.d.ts +1 -1
- package/dist/accessUtility/libraries/slabs.util.js +3 -2
- package/dist/accessUtility/libraries/slabs.util.js.map +1 -1
- package/dist/migrations/1719663080003-AddEmailAtBzEmailMessagesTable.ts.d.ts +5 -0
- package/dist/migrations/1719663080003-AddEmailAtBzEmailMessagesTable.ts.js +15 -0
- package/dist/migrations/1719663080003-AddEmailAtBzEmailMessagesTable.ts.js.map +1 -0
- package/package.json +1 -1
|
@@ -4,6 +4,9 @@ export declare class EmailMessageAttributesDto extends CommonAttributesDto {
|
|
|
4
4
|
recipients_count?: number;
|
|
5
5
|
from_user_id?: number;
|
|
6
6
|
in_reply_to?: string;
|
|
7
|
+
references?: string[];
|
|
8
|
+
date?: string;
|
|
9
|
+
message_id?: string;
|
|
7
10
|
threads_count?: number;
|
|
8
11
|
user_managed_tracking?: boolean;
|
|
9
12
|
attachments?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"email.message.attributes.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/email.message.attributes.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAA6E;AAC7E,yDAA2C;AAC3C,qDAAuD;AAEvD,MAAa,yBAA0B,SAAQ,6CAAmB;
|
|
1
|
+
{"version":3,"file":"email.message.attributes.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/email.message.attributes.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAA6E;AAC7E,yDAA2C;AAC3C,qDAAuD;AAEvD,MAAa,yBAA0B,SAAQ,6CAAmB;CAsCjE;AAtCD,8DAsCC;AApCG;IADC,IAAA,0BAAQ,GAAE;;oEACgB;AAO3B;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;;+DACW"}
|
|
@@ -88,6 +88,10 @@ export * from './scheduled.report.item.attributes.dto';
|
|
|
88
88
|
export * from './scheduled.report.item.list.filter.dto';
|
|
89
89
|
export * from './scheduled.report.list.filter.dto';
|
|
90
90
|
export * from './send.email.notification.data.dto';
|
|
91
|
+
export * from './server.email.attachment.dto';
|
|
92
|
+
export * from './server.email.message.dto';
|
|
93
|
+
export * from './server.email.recipient.dto';
|
|
94
|
+
export * from './server.email.recipients.dto';
|
|
91
95
|
export * from './slack.integration.attributes.dto';
|
|
92
96
|
export * from './slack.message.attributes.dto';
|
|
93
97
|
export * from './slack.posting.payload.dto';
|
|
@@ -104,6 +104,10 @@ __exportStar(require("./scheduled.report.item.attributes.dto"), exports);
|
|
|
104
104
|
__exportStar(require("./scheduled.report.item.list.filter.dto"), exports);
|
|
105
105
|
__exportStar(require("./scheduled.report.list.filter.dto"), exports);
|
|
106
106
|
__exportStar(require("./send.email.notification.data.dto"), exports);
|
|
107
|
+
__exportStar(require("./server.email.attachment.dto"), exports);
|
|
108
|
+
__exportStar(require("./server.email.message.dto"), exports);
|
|
109
|
+
__exportStar(require("./server.email.recipient.dto"), exports);
|
|
110
|
+
__exportStar(require("./server.email.recipients.dto"), exports);
|
|
107
111
|
__exportStar(require("./slack.integration.attributes.dto"), exports);
|
|
108
112
|
__exportStar(require("./slack.message.attributes.dto"), exports);
|
|
109
113
|
__exportStar(require("./slack.posting.payload.dto"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,2EAAyD;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gDAA8B;AAAA,wDAAsC;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,wDAAsC;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAkD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAAA,wDAAsC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,gEAA8C;AAAA,2EAAyD;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,iDAA+B;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,gDAA8B;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,uDAAqC;AAAA,uEAAqD;AAAA,iEAA+C;AAAA,uEAAqD;AAAA,wEAAsD;AAAA,sEAAoD;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,uEAAqD;AAAA,oDAAkC;AAAA,0DAAwC;AAAA,gDAA8B;AAAA,wDAAsC;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,gEAA8C;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,sDAAoC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,wDAAsC;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,yEAAuD;AAAA,oEAAkD;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,2DAAyC;AAAA,6DAA2C;AAAA,8DAA4C;AAAA,oEAAkD;AAAA,0EAAwD;AAAA,yEAAuD;AAAA,0EAAwD;AAAA,qEAAmD;AAAA,qEAAmD;AAAA,gEAA8C;AAAA,6DAA2C;AAAA,+DAA6C;AAAA,gEAA8C;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,iEAA+C;AAAA,yEAAuD;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,wDAAsC;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,mEAAiD;AAAA,6DAA2C;AAAA,wEAAsD;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,oEAAkD;AAAA,iEAA+C;AAAA,qEAAkD"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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.ServerEmailAttachmentDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class ServerEmailAttachmentDto {
|
|
16
|
+
}
|
|
17
|
+
exports.ServerEmailAttachmentDto = ServerEmailAttachmentDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
(0, class_validator_1.IsUrl)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], ServerEmailAttachmentDto.prototype, "url", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
(0, class_validator_1.IsNumber)(),
|
|
27
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
28
|
+
__metadata("design:type", Number)
|
|
29
|
+
], ServerEmailAttachmentDto.prototype, "size", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_transformer_1.Expose)(),
|
|
32
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], ServerEmailAttachmentDto.prototype, "name", void 0);
|
|
35
|
+
//# sourceMappingURL=server.email.attachment.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.email.attachment.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/server.email.attachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAA8D;AAE9D,MAAa,wBAAwB;CAcpC;AAdD,4DAcC;AAVG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;;qDACI;AAKZ;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;sDACA;AAIb;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;sDACA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ServerEmailAttachmentDto } from './server.email.attachment.dto';
|
|
2
|
+
import { ServerEmailRecipientsDto } from './server.email.recipients.dto';
|
|
3
|
+
export declare class ServerEmailMessageDto {
|
|
4
|
+
email_id: number;
|
|
5
|
+
identifier: string;
|
|
6
|
+
from_email: string;
|
|
7
|
+
subject: string;
|
|
8
|
+
body: string;
|
|
9
|
+
recipients?: ServerEmailRecipientsDto;
|
|
10
|
+
attachments: ServerEmailAttachmentDto[];
|
|
11
|
+
attributes?: any;
|
|
12
|
+
original?: any;
|
|
13
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
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.ServerEmailMessageDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const server_email_attachment_dto_1 = require("./server.email.attachment.dto");
|
|
16
|
+
const server_email_recipients_dto_1 = require("./server.email.recipients.dto");
|
|
17
|
+
class ServerEmailMessageDto {
|
|
18
|
+
}
|
|
19
|
+
exports.ServerEmailMessageDto = ServerEmailMessageDto;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], ServerEmailMessageDto.prototype, "email_id", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], ServerEmailMessageDto.prototype, "identifier", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ServerEmailMessageDto.prototype, "from_email", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], ServerEmailMessageDto.prototype, "subject", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], ServerEmailMessageDto.prototype, "body", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_transformer_1.Expose)(),
|
|
48
|
+
(0, class_validator_1.ValidateNested)(),
|
|
49
|
+
(0, class_validator_1.IsOptional)(),
|
|
50
|
+
(0, class_transformer_1.Type)(() => server_email_recipients_dto_1.ServerEmailRecipientsDto),
|
|
51
|
+
__metadata("design:type", server_email_recipients_dto_1.ServerEmailRecipientsDto)
|
|
52
|
+
], ServerEmailMessageDto.prototype, "recipients", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
(0, class_validator_1.ValidateNested)(),
|
|
56
|
+
(0, class_validator_1.IsOptional)(),
|
|
57
|
+
(0, class_transformer_1.Type)(() => server_email_attachment_dto_1.ServerEmailAttachmentDto),
|
|
58
|
+
__metadata("design:type", Array)
|
|
59
|
+
], ServerEmailMessageDto.prototype, "attachments", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, class_transformer_1.Expose)(),
|
|
62
|
+
(0, class_validator_1.IsOptional)(),
|
|
63
|
+
__metadata("design:type", Object)
|
|
64
|
+
], ServerEmailMessageDto.prototype, "attributes", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_transformer_1.Expose)(),
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
__metadata("design:type", Object)
|
|
69
|
+
], ServerEmailMessageDto.prototype, "original", void 0);
|
|
70
|
+
//# sourceMappingURL=server.email.message.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.email.message.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/server.email.message.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAAmF;AACnF,+EAAyE;AACzE,+EAAyE;AAEzE,MAAa,qBAAqB;CAyCjC;AAzCD,sDAyCC;AArCG;IAHC,IAAA,0BAAM,GAAE;IACR,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;uDACI;AAIjB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;yDACM;AAInB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;yDACM;AAInB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;sDACG;AAIhB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;mDACA;AAMb;IAJC,IAAA,0BAAM,GAAE;IACR,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sDAAwB,CAAC;8BACxB,sDAAwB;yDAAC;AAMtC;IAJC,IAAA,0BAAM,GAAE;IACR,IAAA,gCAAc,GAAE;IAChB,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sDAAwB,CAAC;;0DACG;AAIxC;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;yDACI;AAIjB;IAFC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;;uDACE"}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.ServerEmailRecipientDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class ServerEmailRecipientDto {
|
|
16
|
+
}
|
|
17
|
+
exports.ServerEmailRecipientDto = ServerEmailRecipientDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], ServerEmailRecipientDto.prototype, "email", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsOptional)(),
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], ServerEmailRecipientDto.prototype, "name", void 0);
|
|
28
|
+
//# sourceMappingURL=server.email.recipient.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.email.recipient.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/server.email.recipient.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAyD;AAEzD,MAAa,uBAAuB;CAQnC;AARD,0DAQC;AALG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;sDACK;AAId;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;qDACK"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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.ServerEmailRecipientsDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const server_email_recipient_dto_1 = require("./server.email.recipient.dto");
|
|
16
|
+
class ServerEmailRecipientsDto {
|
|
17
|
+
}
|
|
18
|
+
exports.ServerEmailRecipientsDto = ServerEmailRecipientsDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
(0, class_validator_1.IsOptional)(),
|
|
22
|
+
(0, class_validator_1.IsArray)(),
|
|
23
|
+
(0, class_transformer_1.Type)(() => server_email_recipient_dto_1.ServerEmailRecipientDto),
|
|
24
|
+
(0, class_validator_1.ValidateNested)(),
|
|
25
|
+
__metadata("design:type", Array)
|
|
26
|
+
], ServerEmailRecipientsDto.prototype, "to", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
(0, class_validator_1.IsOptional)(),
|
|
30
|
+
(0, class_validator_1.IsArray)(),
|
|
31
|
+
(0, class_transformer_1.Type)(() => server_email_recipient_dto_1.ServerEmailRecipientDto),
|
|
32
|
+
(0, class_validator_1.ValidateNested)(),
|
|
33
|
+
__metadata("design:type", Array)
|
|
34
|
+
], ServerEmailRecipientsDto.prototype, "cc", void 0);
|
|
35
|
+
//# sourceMappingURL=server.email.recipients.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.email.recipients.dto.js","sourceRoot":"","sources":["../../../src/access/dtos/server.email.recipients.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,qDAAsE;AACtE,6EAAuE;AAEvE,MAAa,wBAAwB;CAcpC;AAdD,4DAcC;AARG;IALC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oDAAuB,CAAC;IACnC,IAAA,gCAAc,GAAE;;oDACc;AAO/B;IALC,IAAA,0BAAM,GAAE;IACR,IAAA,4BAAU,GAAE;IACZ,IAAA,yBAAO,GAAE;IACT,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oDAAuB,CAAC;IACnC,IAAA,gCAAc,GAAE;;oDACc"}
|
|
@@ -55,6 +55,10 @@ __decorate([
|
|
|
55
55
|
(0, typeorm_1.Column)(),
|
|
56
56
|
__metadata("design:type", Boolean)
|
|
57
57
|
], EmailMessageEntity.prototype, "is_tracked", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typeorm_1.Column)(),
|
|
60
|
+
__metadata("design:type", Date)
|
|
61
|
+
], EmailMessageEntity.prototype, "emailed_at", void 0);
|
|
58
62
|
__decorate([
|
|
59
63
|
(0, typeorm_1.Column)(),
|
|
60
64
|
__metadata("design:type", Boolean)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"email.message.entity.js","sourceRoot":"","sources":["../../../src/access/entities/email.message.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAsE;AACtE,qCAA2E;AAE3E,uFAAiF;AACjF,mEAA8D;AAC9D,uEAAkE;AAClE,qEAAgE;AASzD,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,sCAAY;
|
|
1
|
+
{"version":3,"file":"email.message.entity.js","sourceRoot":"","sources":["../../../src/access/entities/email.message.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAsE;AACtE,qCAA2E;AAE3E,uFAAiF;AACjF,mEAA8D;AAC9D,uEAAkE;AAClE,qEAAgE;AASzD,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,sCAAY;CAoDnD,CAAA;AApDY,gDAAkB;AAE3B;IADC,IAAA,gBAAM,GAAE;;oDACQ;AAGjB;IADC,IAAA,gBAAM,GAAE;;sDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;sDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;mDACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;gDACI;AAGb;IADC,IAAA,gBAAM,GAAE;8BACI,IAAI;uDAAC;AAGlB;IADC,IAAA,gBAAM,GAAE;;gDACK;AAGd;IADC,IAAA,gBAAM,GAAE;;+DACmB;AAG5B;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;8BACG,IAAI;sDAAC;AAGjB;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;qDACS;AAGlB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,wDAAyB;sDAAC;AAGkC;IAAvE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,2CAAmB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;8BAAQ,2CAAmB;iDAAC;AAEvB;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,+CAAqB,EAAE,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC;;uDAAsC;AAExC;IAAxE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,CAAC;;sDAAoC;6BAhDnG,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,kBAAkB,CAoD9B"}
|
|
@@ -48,6 +48,8 @@ import { ProcessCommonListConfigDto } from './dtos/process.common.list.config.dt
|
|
|
48
48
|
import { ProcessListingPayloadDto } from './dtos/process.listing.payload.dto';
|
|
49
49
|
import { RecurringDefinitionDto } from './dtos/recurring.definition.dto';
|
|
50
50
|
import { SendEmailNotificationDataDto } from './dtos/send.email.notification.data.dto';
|
|
51
|
+
import { ServerEmailMessageDto } from './dtos/server.email.message.dto';
|
|
52
|
+
import { ServerEmailRecipientsDto } from './dtos/server.email.recipients.dto';
|
|
51
53
|
import { SlackPostingPayloadDto } from './dtos/slack.posting.payload.dto';
|
|
52
54
|
import { SlackTemplateAttributesDto } from './dtos/slack.template.attributes.dto';
|
|
53
55
|
import { StringSearchDto } from './dtos/string.search.dto';
|
|
@@ -130,6 +132,7 @@ import { ModuleJob } from './jobs/module.job';
|
|
|
130
132
|
import { ModuleMenuJob } from './jobs/module.menu.job';
|
|
131
133
|
import { PreferenceUserGroupJob } from './jobs/preference.user.group.job';
|
|
132
134
|
import { PreferenceUsersJob } from './jobs/preference.users.job';
|
|
135
|
+
import { ProcessServerEmailJob } from './jobs/process.server.email.job';
|
|
133
136
|
import { ProductJob } from './jobs/product.job';
|
|
134
137
|
import { RoleGroupJob } from './jobs/role.group.job';
|
|
135
138
|
import { ScheduledReportEmailJob } from './jobs/scheduled.report.email.job';
|
|
@@ -284,10 +287,10 @@ import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subs
|
|
|
284
287
|
declare const es6Classes: {
|
|
285
288
|
commands: (typeof WebhookPollCommand)[];
|
|
286
289
|
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CustomFieldController | typeof DashboardComponentController | typeof DashboardController | typeof DeveloperModeController | typeof DownloadLogController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
287
|
-
dtos: (typeof SlackTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof SlackPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof AccessBusinessParamDto | typeof DbFindDto | typeof AddBusinessPreferenceDto | typeof ModifyCustomFieldStatusDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto | typeof AddTagDto | typeof ProcessListingPayloadDto)[];
|
|
290
|
+
dtos: (typeof SlackTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof SlackPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof AccessBusinessParamDto | typeof DbFindDto | typeof AddBusinessPreferenceDto | typeof ModifyCustomFieldStatusDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto | typeof AddTagDto | typeof ProcessListingPayloadDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto)[];
|
|
288
291
|
entities: (typeof AccessBusinessEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackIntegrationEntity | typeof SlackMessageEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof BusinessEmailEntity | typeof BusinessGroupRoleEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof ConversationEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EmailRecipientEntity | typeof EmailMessageEntity | typeof GroupMemberEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof ModuleMenuEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookSlugEntity)[];
|
|
289
292
|
enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum)[];
|
|
290
|
-
jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof EmailAttachmentJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProductJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob)[];
|
|
293
|
+
jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserRoleJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof EmailAttachmentJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RoleGroupJob | typeof ScheduledReportEmailJob | typeof ScheduledReportItemJob | typeof ScheduledReportJob | typeof SlackIncomingWebhookJob | typeof SlackIntegrationJob | typeof SlackMessageJob | typeof SlackTemplateJob | typeof SlackUserJob | typeof SlackWebhookJob | typeof SlackWebhookMessageJob | typeof SyncBURoleJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob)[];
|
|
291
294
|
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessReportData | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessPreferenceData | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof ProcessUserNotificationList | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessTestList)[];
|
|
292
295
|
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
|
|
293
296
|
services: (typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof SlabsService | typeof AccessBusinessService | typeof ListingService | typeof WebhookService | typeof AuditLogService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof UtilityService | typeof CustomFieldService | typeof ApiAccountService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
@@ -113,6 +113,10 @@ const scheduled_report_item_attributes_dto_1 = require("./dtos/scheduled.report.
|
|
|
113
113
|
const scheduled_report_item_list_filter_dto_1 = require("./dtos/scheduled.report.item.list.filter.dto");
|
|
114
114
|
const scheduled_report_list_filter_dto_1 = require("./dtos/scheduled.report.list.filter.dto");
|
|
115
115
|
const send_email_notification_data_dto_1 = require("./dtos/send.email.notification.data.dto");
|
|
116
|
+
const server_email_attachment_dto_1 = require("./dtos/server.email.attachment.dto");
|
|
117
|
+
const server_email_message_dto_1 = require("./dtos/server.email.message.dto");
|
|
118
|
+
const server_email_recipient_dto_1 = require("./dtos/server.email.recipient.dto");
|
|
119
|
+
const server_email_recipients_dto_1 = require("./dtos/server.email.recipients.dto");
|
|
116
120
|
const slack_integration_attributes_dto_1 = require("./dtos/slack.integration.attributes.dto");
|
|
117
121
|
const slack_message_attributes_dto_1 = require("./dtos/slack.message.attributes.dto");
|
|
118
122
|
const slack_posting_payload_dto_1 = require("./dtos/slack.posting.payload.dto");
|
|
@@ -237,6 +241,7 @@ const module_job_1 = require("./jobs/module.job");
|
|
|
237
241
|
const module_menu_job_1 = require("./jobs/module.menu.job");
|
|
238
242
|
const preference_user_group_job_1 = require("./jobs/preference.user.group.job");
|
|
239
243
|
const preference_users_job_1 = require("./jobs/preference.users.job");
|
|
244
|
+
const process_server_email_job_1 = require("./jobs/process.server.email.job");
|
|
240
245
|
const product_job_1 = require("./jobs/product.job");
|
|
241
246
|
const role_group_job_1 = require("./jobs/role.group.job");
|
|
242
247
|
const scheduled_report_email_job_1 = require("./jobs/scheduled.report.email.job");
|
|
@@ -505,6 +510,10 @@ const es6Classes = {
|
|
|
505
510
|
scheduled_report_item_list_filter_dto_1.ScheduledReportItemListFilterDto,
|
|
506
511
|
scheduled_report_list_filter_dto_1.ScheduledReportListFilterDto,
|
|
507
512
|
send_email_notification_data_dto_1.SendEmailNotificationDataDto,
|
|
513
|
+
server_email_attachment_dto_1.ServerEmailAttachmentDto,
|
|
514
|
+
server_email_message_dto_1.ServerEmailMessageDto,
|
|
515
|
+
server_email_recipient_dto_1.ServerEmailRecipientDto,
|
|
516
|
+
server_email_recipients_dto_1.ServerEmailRecipientsDto,
|
|
508
517
|
slack_integration_attributes_dto_1.SlackIntegrationAttributesDto,
|
|
509
518
|
slack_message_attributes_dto_1.SlackMessageAttributesDto,
|
|
510
519
|
slack_posting_payload_dto_1.SlackPostingPayloadDto,
|
|
@@ -631,6 +640,7 @@ const es6Classes = {
|
|
|
631
640
|
module_menu_job_1.ModuleMenuJob,
|
|
632
641
|
preference_user_group_job_1.PreferenceUserGroupJob,
|
|
633
642
|
preference_users_job_1.PreferenceUsersJob,
|
|
643
|
+
process_server_email_job_1.ProcessServerEmailJob,
|
|
634
644
|
product_job_1.ProductJob,
|
|
635
645
|
role_group_job_1.RoleGroupJob,
|
|
636
646
|
scheduled_report_email_job_1.ScheduledReportEmailJob,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/access/es6.classes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"es6.classes.js","sourceRoot":"","sources":["../../src/access/es6.classes.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,6 +37,7 @@ export * from './module.job';
|
|
|
37
37
|
export * from './module.menu.job';
|
|
38
38
|
export * from './preference.user.group.job';
|
|
39
39
|
export * from './preference.users.job';
|
|
40
|
+
export * from './process.server.email.job';
|
|
40
41
|
export * from './product.job';
|
|
41
42
|
export * from './role.group.job';
|
|
42
43
|
export * from './scheduled.report.email.job';
|
|
@@ -53,6 +53,7 @@ __exportStar(require("./module.job"), exports);
|
|
|
53
53
|
__exportStar(require("./module.menu.job"), exports);
|
|
54
54
|
__exportStar(require("./preference.user.group.job"), exports);
|
|
55
55
|
__exportStar(require("./preference.users.job"), exports);
|
|
56
|
+
__exportStar(require("./process.server.email.job"), exports);
|
|
56
57
|
__exportStar(require("./product.job"), exports);
|
|
57
58
|
__exportStar(require("./role.group.job"), exports);
|
|
58
59
|
__exportStar(require("./scheduled.report.email.job"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,uDAAqC;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,mDAAiC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,kDAAgC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,sDAAoC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,2DAAyC;AAAA,oDAAkC;AAAA,6CAA2B;AAAA,kDAAgC;AAAA,+CAA6B;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,gDAA8B;AAAA,mDAAiC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,kDAAgC;AAAA,6DAA2C;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,kEAAgD;AAAA,yDAAuC;AAAA,0DAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,uDAAqC;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,mDAAiC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,kDAAgC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,sDAAoC;AAAA,wDAAsC;AAAA,+DAA6C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,2DAAyC;AAAA,oDAAkC;AAAA,6CAA2B;AAAA,kDAAgC;AAAA,+CAA6B;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,gDAA8B;AAAA,mDAAiC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,kDAAgC;AAAA,6DAA2C;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,kEAAgD;AAAA,yDAAuC;AAAA,0DAAuC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CommonJob, QueueService, UploadService } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { ServerEmailMessageDto } from '../dtos/server.email.message.dto';
|
|
3
|
+
import { EmailMessageEntity } from '../entities/email.message.entity';
|
|
4
|
+
export declare class ProcessServerEmailJob extends CommonJob {
|
|
5
|
+
protected readonly queueService: QueueService;
|
|
6
|
+
private readonly uploadService;
|
|
7
|
+
constructor(queueService: QueueService, uploadService: UploadService);
|
|
8
|
+
handle(data: ServerEmailMessageDto): Promise<EmailMessageEntity>;
|
|
9
|
+
private setMessage;
|
|
10
|
+
private setAttachments;
|
|
11
|
+
private setAttachment;
|
|
12
|
+
private setRecipients;
|
|
13
|
+
private getBody;
|
|
14
|
+
private getAttachment;
|
|
15
|
+
private getSenderId;
|
|
16
|
+
private getParentDetails;
|
|
17
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
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.ProcessServerEmailJob = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
const business_email_entity_1 = require("../entities/business.email.entity");
|
|
16
|
+
const email_attachment_entity_1 = require("../entities/email.attachment.entity");
|
|
17
|
+
const email_message_entity_1 = require("../entities/email.message.entity");
|
|
18
|
+
const email_recipient_entity_1 = require("../entities/email.recipient.entity");
|
|
19
|
+
let ProcessServerEmailJob = class ProcessServerEmailJob extends nestjs_utility_services_1.CommonJob {
|
|
20
|
+
constructor(queueService, uploadService) {
|
|
21
|
+
super('6dc279beaec1891635dab7b1c7e76be3');
|
|
22
|
+
this.queueService = queueService;
|
|
23
|
+
this.uploadService = uploadService;
|
|
24
|
+
}
|
|
25
|
+
async handle(data) {
|
|
26
|
+
const email = await business_email_entity_1.BusinessEmailEntity.findOne({ where: { meta_server_id: data.email_id }, relations: ['business'] });
|
|
27
|
+
if (!email)
|
|
28
|
+
return;
|
|
29
|
+
return this.setMessage(email, data);
|
|
30
|
+
}
|
|
31
|
+
async setMessage(email, payload) {
|
|
32
|
+
const message = await email_message_entity_1.EmailMessageEntity.firstOrNew({ email_id: email.id, identifier: payload.identifier });
|
|
33
|
+
message.subject = payload.subject;
|
|
34
|
+
message.from_email = payload.from_email;
|
|
35
|
+
message.sender_id = await this.getSenderId(payload.from_email);
|
|
36
|
+
message.tracking_identifier = payload.attributes?.message_id;
|
|
37
|
+
message.body = await this.getBody(email, payload.body);
|
|
38
|
+
message.attributes = { ...message.attributes, ...payload.attributes };
|
|
39
|
+
message.emailed_at = payload.attributes?.date || null;
|
|
40
|
+
const parent = await this.getParentDetails(message);
|
|
41
|
+
message.parent_id = parent?.id || null;
|
|
42
|
+
await message.save();
|
|
43
|
+
await this.setAttachments(email, message, payload.attachments);
|
|
44
|
+
await this.setRecipients(message, payload.recipients);
|
|
45
|
+
return message;
|
|
46
|
+
}
|
|
47
|
+
async setAttachments(email, message, attachments) {
|
|
48
|
+
if (!Array.isArray(attachments))
|
|
49
|
+
return;
|
|
50
|
+
for (const attachment of attachments)
|
|
51
|
+
await this.setAttachment(email, message, attachment);
|
|
52
|
+
}
|
|
53
|
+
async setAttachment(email, message, attachment) {
|
|
54
|
+
const url = await this.getAttachment(email, attachment);
|
|
55
|
+
const r = await email_attachment_entity_1.EmailAttachmentEntity.firstOrNew({ message_id: message.id, url });
|
|
56
|
+
r.name = attachment.name;
|
|
57
|
+
r.attributes = { ...r.attributes, size: attachment.size };
|
|
58
|
+
return r.save();
|
|
59
|
+
}
|
|
60
|
+
async setRecipients(message, recipients) {
|
|
61
|
+
const nodes = ['to', 'cc'];
|
|
62
|
+
for (const node of nodes) {
|
|
63
|
+
const records = recipients.to;
|
|
64
|
+
if (!Array.isArray(records))
|
|
65
|
+
continue;
|
|
66
|
+
for (const record of records) {
|
|
67
|
+
const r = await email_recipient_entity_1.EmailRecipientEntity.firstOrNew({ message_id: message.id, type: node, email: record.email });
|
|
68
|
+
r.attributes = { ...r.attributes, name: record.name };
|
|
69
|
+
await r.save();
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
async getBody(email, url) {
|
|
74
|
+
const originalname = `${Date.now()}.${nestjs_utility_services_1.PlatformUtility.generateRandomAlpha(6).toLowerCase()}.emailBody.html`;
|
|
75
|
+
const file = { url, originalname };
|
|
76
|
+
const params = { folder: `business/${email.business.identifier}/email/body`, acl: 'private' };
|
|
77
|
+
return this.uploadService.upload(file, params);
|
|
78
|
+
}
|
|
79
|
+
async getAttachment(email, attachment) {
|
|
80
|
+
const file = { url: attachment.url, originalname: attachment.name };
|
|
81
|
+
const params = { folder: `business/${email.business.identifier}/email/attachments`, acl: 'private' };
|
|
82
|
+
return this.uploadService.upload(file, params);
|
|
83
|
+
}
|
|
84
|
+
async getSenderId(email) {
|
|
85
|
+
const user = await nestjs_utility_services_1.UserEntity.findOne({ where: { email } });
|
|
86
|
+
return user?.id || null;
|
|
87
|
+
}
|
|
88
|
+
async getParentDetails(message) {
|
|
89
|
+
const identifiers = [message?.attributes?.in_reply_to, ...message.attributes.references];
|
|
90
|
+
if (!identifiers.length)
|
|
91
|
+
return;
|
|
92
|
+
for (const identifier of identifiers) {
|
|
93
|
+
const parent = await email_message_entity_1.EmailMessageEntity.findOne({ where: { email_id: message.email_id, tracking_identifier: identifier } });
|
|
94
|
+
if (parent) {
|
|
95
|
+
parent.is_visible = true;
|
|
96
|
+
parent.emailed_at = message.emailed_at;
|
|
97
|
+
return parent.save();
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
exports.ProcessServerEmailJob = ProcessServerEmailJob;
|
|
103
|
+
exports.ProcessServerEmailJob = ProcessServerEmailJob = __decorate([
|
|
104
|
+
(0, common_1.Injectable)(),
|
|
105
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.QueueService,
|
|
106
|
+
nestjs_utility_services_1.UploadService])
|
|
107
|
+
], ProcessServerEmailJob);
|
|
108
|
+
//# sourceMappingURL=process.server.email.job.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"process.server.email.job.js","sourceRoot":"","sources":["../../../src/access/jobs/process.server.email.job.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,6 +37,7 @@ import { ModuleJob } from '../jobs/module.job';
|
|
|
37
37
|
import { ModuleMenuJob } from '../jobs/module.menu.job';
|
|
38
38
|
import { PreferenceUserGroupJob } from '../jobs/preference.user.group.job';
|
|
39
39
|
import { PreferenceUsersJob } from '../jobs/preference.users.job';
|
|
40
|
+
import { ProcessServerEmailJob } from '../jobs/process.server.email.job';
|
|
40
41
|
import { ProductJob } from '../jobs/product.job';
|
|
41
42
|
import { RoleGroupJob } from '../jobs/role.group.job';
|
|
42
43
|
import { ScheduledReportEmailJob } from '../jobs/scheduled.report.email.job';
|
|
@@ -101,6 +102,7 @@ export declare class Es6JobsService {
|
|
|
101
102
|
private readonly moduleMenuJob;
|
|
102
103
|
private readonly preferenceUserGroupJob;
|
|
103
104
|
private readonly preferenceUsersJob;
|
|
105
|
+
private readonly processServerEmailJob;
|
|
104
106
|
private readonly productJob;
|
|
105
107
|
private readonly roleGroupJob;
|
|
106
108
|
private readonly scheduledReportEmailJob;
|
|
@@ -126,7 +128,7 @@ export declare class Es6JobsService {
|
|
|
126
128
|
private readonly whatsappMessageJob;
|
|
127
129
|
private readonly whatsappTemplateJob;
|
|
128
130
|
private jobs;
|
|
129
|
-
constructor(accessTestJob: AccessTestJob, apiAccountJob: ApiAccountJob, businessEmailJob: BusinessEmailJob, businessGroupRoleJob: BusinessGroupRoleJob, businessPreferenceJob: BusinessPreferenceJob, businessUserGroupJob: BusinessUserGroupJob, businessUserJob: BusinessUserJob, businessUserRoleJob: BusinessUserRoleJob, childMenuJob: ChildMenuJob, choiceListJob: ChoiceListJob, choiceTypeJob: ChoiceTypeJob, conversationJob: ConversationJob, customFieldJob: CustomFieldJob, customReportJob: CustomReportJob, dashboardComponentJob: DashboardComponentJob, dashboardJob: DashboardJob, downloadLogJob: DownloadLogJob, emailAttachmentJob: EmailAttachmentJob, emailMessageJob: EmailMessageJob, emailRecipientJob: EmailRecipientJob, gchatIncomingWebhookJob: GchatIncomingWebhookJob, gchatMessageJob: GchatMessageJob, gchatTemplateJob: GchatTemplateJob, gchatUserJob: GchatUserJob, gchatWebhookJob: GchatWebhookJob, gchatWebhookMessageJob: GchatWebhookMessageJob, groupMemberJob: GroupMemberJob, groupRoleJob: GroupRoleJob, listPreferenceJob: ListPreferenceJob, listingColumnJob: ListingColumnJob, listingPageJob: ListingPageJob, listingPreferenceJob: ListingPreferenceJob, menuActionJob: MenuActionJob, menuJob: MenuJob, menuRoleJob: MenuRoleJob, moduleJob: ModuleJob, moduleMenuJob: ModuleMenuJob, preferenceUserGroupJob: PreferenceUserGroupJob, preferenceUsersJob: PreferenceUsersJob, productJob: ProductJob, roleGroupJob: RoleGroupJob, scheduledReportEmailJob: ScheduledReportEmailJob, scheduledReportItemJob: ScheduledReportItemJob, scheduledReportJob: ScheduledReportJob, slackIncomingWebhookJob: SlackIncomingWebhookJob, slackIntegrationJob: SlackIntegrationJob, slackMessageJob: SlackMessageJob, slackTemplateJob: SlackTemplateJob, slackUserJob: SlackUserJob, slackWebhookJob: SlackWebhookJob, slackWebhookMessageJob: SlackWebhookMessageJob, syncBURoleJob: SyncBURoleJob, uiActionJob: UiActionJob, uiActionRoleJob: UiActionRoleJob, userNotificationJob: UserNotificationJob, userPreferenceJob: UserPreferenceJob, userRoleJob: UserRoleJob, watchlistAssignmentJob: WatchlistAssignmentJob, webhookSlugJob: WebhookSlugJob, webhookTypeJob: WebhookTypeJob, whatsappIncomingWebhookJob: WhatsappIncomingWebhookJob, whatsappMessageJob: WhatsappMessageJob, whatsappTemplateJob: WhatsappTemplateJob);
|
|
131
|
+
constructor(accessTestJob: AccessTestJob, apiAccountJob: ApiAccountJob, businessEmailJob: BusinessEmailJob, businessGroupRoleJob: BusinessGroupRoleJob, businessPreferenceJob: BusinessPreferenceJob, businessUserGroupJob: BusinessUserGroupJob, businessUserJob: BusinessUserJob, businessUserRoleJob: BusinessUserRoleJob, childMenuJob: ChildMenuJob, choiceListJob: ChoiceListJob, choiceTypeJob: ChoiceTypeJob, conversationJob: ConversationJob, customFieldJob: CustomFieldJob, customReportJob: CustomReportJob, dashboardComponentJob: DashboardComponentJob, dashboardJob: DashboardJob, downloadLogJob: DownloadLogJob, emailAttachmentJob: EmailAttachmentJob, emailMessageJob: EmailMessageJob, emailRecipientJob: EmailRecipientJob, gchatIncomingWebhookJob: GchatIncomingWebhookJob, gchatMessageJob: GchatMessageJob, gchatTemplateJob: GchatTemplateJob, gchatUserJob: GchatUserJob, gchatWebhookJob: GchatWebhookJob, gchatWebhookMessageJob: GchatWebhookMessageJob, groupMemberJob: GroupMemberJob, groupRoleJob: GroupRoleJob, listPreferenceJob: ListPreferenceJob, listingColumnJob: ListingColumnJob, listingPageJob: ListingPageJob, listingPreferenceJob: ListingPreferenceJob, menuActionJob: MenuActionJob, menuJob: MenuJob, menuRoleJob: MenuRoleJob, moduleJob: ModuleJob, moduleMenuJob: ModuleMenuJob, preferenceUserGroupJob: PreferenceUserGroupJob, preferenceUsersJob: PreferenceUsersJob, processServerEmailJob: ProcessServerEmailJob, productJob: ProductJob, roleGroupJob: RoleGroupJob, scheduledReportEmailJob: ScheduledReportEmailJob, scheduledReportItemJob: ScheduledReportItemJob, scheduledReportJob: ScheduledReportJob, slackIncomingWebhookJob: SlackIncomingWebhookJob, slackIntegrationJob: SlackIntegrationJob, slackMessageJob: SlackMessageJob, slackTemplateJob: SlackTemplateJob, slackUserJob: SlackUserJob, slackWebhookJob: SlackWebhookJob, slackWebhookMessageJob: SlackWebhookMessageJob, syncBURoleJob: SyncBURoleJob, uiActionJob: UiActionJob, uiActionRoleJob: UiActionRoleJob, userNotificationJob: UserNotificationJob, userPreferenceJob: UserPreferenceJob, userRoleJob: UserRoleJob, watchlistAssignmentJob: WatchlistAssignmentJob, webhookSlugJob: WebhookSlugJob, webhookTypeJob: WebhookTypeJob, whatsappIncomingWebhookJob: WhatsappIncomingWebhookJob, whatsappMessageJob: WhatsappMessageJob, whatsappTemplateJob: WhatsappTemplateJob);
|
|
130
132
|
alignJobs(): void;
|
|
131
133
|
setJobs(): void;
|
|
132
134
|
}
|
|
@@ -50,6 +50,7 @@ const module_job_1 = require("../jobs/module.job");
|
|
|
50
50
|
const module_menu_job_1 = require("../jobs/module.menu.job");
|
|
51
51
|
const preference_user_group_job_1 = require("../jobs/preference.user.group.job");
|
|
52
52
|
const preference_users_job_1 = require("../jobs/preference.users.job");
|
|
53
|
+
const process_server_email_job_1 = require("../jobs/process.server.email.job");
|
|
53
54
|
const product_job_1 = require("../jobs/product.job");
|
|
54
55
|
const role_group_job_1 = require("../jobs/role.group.job");
|
|
55
56
|
const scheduled_report_email_job_1 = require("../jobs/scheduled.report.email.job");
|
|
@@ -76,7 +77,7 @@ const whatsapp_message_job_1 = require("../jobs/whatsapp.message.job");
|
|
|
76
77
|
const whatsapp_template_job_1 = require("../jobs/whatsapp.template.job");
|
|
77
78
|
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
78
79
|
let Es6JobsService = class Es6JobsService {
|
|
79
|
-
constructor(accessTestJob, apiAccountJob, businessEmailJob, businessGroupRoleJob, businessPreferenceJob, businessUserGroupJob, businessUserJob, businessUserRoleJob, childMenuJob, choiceListJob, choiceTypeJob, conversationJob, customFieldJob, customReportJob, dashboardComponentJob, dashboardJob, downloadLogJob, emailAttachmentJob, emailMessageJob, emailRecipientJob, gchatIncomingWebhookJob, gchatMessageJob, gchatTemplateJob, gchatUserJob, gchatWebhookJob, gchatWebhookMessageJob, groupMemberJob, groupRoleJob, listPreferenceJob, listingColumnJob, listingPageJob, listingPreferenceJob, menuActionJob, menuJob, menuRoleJob, moduleJob, moduleMenuJob, preferenceUserGroupJob, preferenceUsersJob, productJob, roleGroupJob, scheduledReportEmailJob, scheduledReportItemJob, scheduledReportJob, slackIncomingWebhookJob, slackIntegrationJob, slackMessageJob, slackTemplateJob, slackUserJob, slackWebhookJob, slackWebhookMessageJob, syncBURoleJob, uiActionJob, uiActionRoleJob, userNotificationJob, userPreferenceJob, userRoleJob, watchlistAssignmentJob, webhookSlugJob, webhookTypeJob, whatsappIncomingWebhookJob, whatsappMessageJob, whatsappTemplateJob) {
|
|
80
|
+
constructor(accessTestJob, apiAccountJob, businessEmailJob, businessGroupRoleJob, businessPreferenceJob, businessUserGroupJob, businessUserJob, businessUserRoleJob, childMenuJob, choiceListJob, choiceTypeJob, conversationJob, customFieldJob, customReportJob, dashboardComponentJob, dashboardJob, downloadLogJob, emailAttachmentJob, emailMessageJob, emailRecipientJob, gchatIncomingWebhookJob, gchatMessageJob, gchatTemplateJob, gchatUserJob, gchatWebhookJob, gchatWebhookMessageJob, groupMemberJob, groupRoleJob, listPreferenceJob, listingColumnJob, listingPageJob, listingPreferenceJob, menuActionJob, menuJob, menuRoleJob, moduleJob, moduleMenuJob, preferenceUserGroupJob, preferenceUsersJob, processServerEmailJob, productJob, roleGroupJob, scheduledReportEmailJob, scheduledReportItemJob, scheduledReportJob, slackIncomingWebhookJob, slackIntegrationJob, slackMessageJob, slackTemplateJob, slackUserJob, slackWebhookJob, slackWebhookMessageJob, syncBURoleJob, uiActionJob, uiActionRoleJob, userNotificationJob, userPreferenceJob, userRoleJob, watchlistAssignmentJob, webhookSlugJob, webhookTypeJob, whatsappIncomingWebhookJob, whatsappMessageJob, whatsappTemplateJob) {
|
|
80
81
|
this.accessTestJob = accessTestJob;
|
|
81
82
|
this.apiAccountJob = apiAccountJob;
|
|
82
83
|
this.businessEmailJob = businessEmailJob;
|
|
@@ -116,6 +117,7 @@ let Es6JobsService = class Es6JobsService {
|
|
|
116
117
|
this.moduleMenuJob = moduleMenuJob;
|
|
117
118
|
this.preferenceUserGroupJob = preferenceUserGroupJob;
|
|
118
119
|
this.preferenceUsersJob = preferenceUsersJob;
|
|
120
|
+
this.processServerEmailJob = processServerEmailJob;
|
|
119
121
|
this.productJob = productJob;
|
|
120
122
|
this.roleGroupJob = roleGroupJob;
|
|
121
123
|
this.scheduledReportEmailJob = scheduledReportEmailJob;
|
|
@@ -185,6 +187,7 @@ let Es6JobsService = class Es6JobsService {
|
|
|
185
187
|
'447c2a2defb0e76e97cd8a83503e0df2': this.moduleMenuJob,
|
|
186
188
|
ae659d7c00a87bd306d449800b77f9fb: this.preferenceUserGroupJob,
|
|
187
189
|
'5e4290185523173053f4c2bd2d6f781a': this.preferenceUsersJob,
|
|
190
|
+
'6dc279beaec1891635dab7b1c7e76be3': this.processServerEmailJob,
|
|
188
191
|
'380f3258c132c9a6bdcda56024f25fcc': this.productJob,
|
|
189
192
|
cc942b35323b7ed6158469df81dee73a: this.roleGroupJob,
|
|
190
193
|
f648e2022216ba7d959651b825729cbe: this.scheduledReportEmailJob,
|
|
@@ -257,6 +260,7 @@ exports.Es6JobsService = Es6JobsService = __decorate([
|
|
|
257
260
|
module_menu_job_1.ModuleMenuJob,
|
|
258
261
|
preference_user_group_job_1.PreferenceUserGroupJob,
|
|
259
262
|
preference_users_job_1.PreferenceUsersJob,
|
|
263
|
+
process_server_email_job_1.ProcessServerEmailJob,
|
|
260
264
|
product_job_1.ProductJob,
|
|
261
265
|
role_group_job_1.RoleGroupJob,
|
|
262
266
|
scheduled_report_email_job_1.ScheduledReportEmailJob,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es6.jobs.service.js","sourceRoot":"","sources":["../../../src/access/services/es6.jobs.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,6DAAwD;AACxD,6DAAwD;AACxD,mEAA8D;AAC9D,6EAAuE;AACvE,6EAAwE;AACxE,6EAAuE;AACvE,iEAA4D;AAC5D,2EAAqE;AACrE,2DAAsD;AACtD,6DAAwD;AACxD,6DAAwD;AACxD,+DAA2D;AAC3D,+DAA0D;AAC1D,iEAA4D;AAC5D,6EAAwE;AACxE,yDAAqD;AACrD,+DAA0D;AAC1D,uEAAkE;AAClE,iEAA4D;AAC5D,qEAAgE;AAChE,mFAA6E;AAC7E,iEAA4D;AAC5D,mEAA8D;AAC9D,2DAAsD;AACtD,iEAA4D;AAC5D,iFAA2E;AAC3E,+DAA0D;AAC1D,2DAAsD;AACtD,qEAAgE;AAChE,mEAA8D;AAC9D,+DAA0D;AAC1D,2EAAsE;AACtE,6DAAwD;AACxD,+CAA2C;AAC3C,yDAAoD;AACpD,mDAA+C;AAC/C,6DAAwD;AACxD,iFAA2E;AAC3E,uEAAkE;AAClE,qDAAiD;AACjD,2DAAsD;AACtD,mFAA6E;AAC7E,iFAA2E;AAC3E,uEAAkE;AAClE,mFAA6E;AAC7E,yEAAoE;AACpE,iEAA4D;AAC5D,mEAA8D;AAC9D,2DAAsD;AACtD,iEAA4D;AAC5D,iFAA2E;AAC3E,iEAA0D;AAC1D,yDAAoD;AACpD,mEAA6D;AAC7D,yEAAoE;AACpE,qEAAgE;AAChE,yDAAoD;AACpD,+EAA0E;AAC1E,+DAA0D;AAC1D,+DAA0D;AAC1D,yFAAmF;AACnF,uEAAkE;AAClE,yEAAoE;AACpE,oFAAyE;AAQlE,IAAM,cAAc,GAApB,MAAM,cAAc;IAGvB,YACqB,aAA4B,EAC5B,aAA4B,EAC5B,gBAAkC,EAClC,oBAA0C,EAC1C,qBAA4C,EAC5C,oBAA0C,EAC1C,eAAgC,EAChC,mBAAwC,EACxC,YAA0B,EAC1B,aAA4B,EAC5B,aAA4B,EAC5B,eAAgC,EAChC,cAA8B,EAC9B,eAAgC,EAChC,qBAA4C,EAC5C,YAA0B,EAC1B,cAA8B,EAC9B,kBAAsC,EACtC,eAAgC,EAChC,iBAAoC,EACpC,uBAAgD,EAChD,eAAgC,EAChC,gBAAkC,EAClC,YAA0B,EAC1B,eAAgC,EAChC,sBAA8C,EAC9C,cAA8B,EAC9B,YAA0B,EAC1B,iBAAoC,EACpC,gBAAkC,EAClC,cAA8B,EAC9B,oBAA0C,EAC1C,aAA4B,EAC5B,OAAgB,EAChB,WAAwB,EACxB,SAAoB,EACpB,aAA4B,EAC5B,sBAA8C,EAC9C,kBAAsC,EACtC,UAAsB,EACtB,YAA0B,EAC1B,uBAAgD,EAChD,sBAA8C,EAC9C,kBAAsC,EACtC,uBAAgD,EAChD,mBAAwC,EACxC,eAAgC,EAChC,gBAAkC,EAClC,YAA0B,EAC1B,eAAgC,EAChC,sBAA8C,EAC9C,aAA4B,EAC5B,WAAwB,EACxB,eAAgC,EAChC,mBAAwC,EACxC,iBAAoC,EACpC,WAAwB,EACxB,sBAA8C,EAC9C,cAA8B,EAC9B,cAA8B,EAC9B,0BAAsD,EACtD,kBAAsC,EACtC,mBAAwC;
|
|
1
|
+
{"version":3,"file":"es6.jobs.service.js","sourceRoot":"","sources":["../../../src/access/services/es6.jobs.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SlabsUtil = void 0;
|
|
4
4
|
const DEFAULT_CURRENCY_IDENTIFIER = 'INR';
|
|
5
5
|
class SlabsUtil {
|
|
6
|
-
static formatCurrency({ amount, region = 'en-IN', currency = DEFAULT_CURRENCY_IDENTIFIER, style
|
|
6
|
+
static formatCurrency({ amount, region = 'en-IN', currency = DEFAULT_CURRENCY_IDENTIFIER, style, noDecimal = false }) {
|
|
7
|
+
style = style || 'currency';
|
|
7
8
|
if (noDecimal) {
|
|
8
9
|
return new Intl.NumberFormat(region, {
|
|
9
10
|
style,
|
|
@@ -14,7 +15,7 @@ class SlabsUtil {
|
|
|
14
15
|
}
|
|
15
16
|
return new Intl.NumberFormat(region, {
|
|
16
17
|
style,
|
|
17
|
-
currency
|
|
18
|
+
currency,
|
|
18
19
|
}).format(amount);
|
|
19
20
|
}
|
|
20
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slabs.util.js","sourceRoot":"","sources":["../../../src/accessUtility/libraries/slabs.util.ts"],"names":[],"mappings":";;;AAAA,MAAM,2BAA2B,GAAG,KAAK,CAAC;AAE1C,MAAa,SAAS;IAUlB,MAAM,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,EAAE,QAAQ,GAAG,2BAA2B,EAAE,KAAK,GAAG,
|
|
1
|
+
{"version":3,"file":"slabs.util.js","sourceRoot":"","sources":["../../../src/accessUtility/libraries/slabs.util.ts"],"names":[],"mappings":";;;AAAA,MAAM,2BAA2B,GAAG,KAAK,CAAC;AAE1C,MAAa,SAAS;IAUlB,MAAM,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,EAAE,QAAQ,GAAG,2BAA2B,EAAE,KAAK,EAAE,SAAS,GAAG,KAAK,EAAE;QAChH,KAAK,GAAG,KAAK,IAAI,UAAU,CAAC;QAE5B,IAAI,SAAS,EAAE,CAAC;YACZ,OAAO,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE;gBACjC,KAAK;gBACL,QAAQ;gBACR,qBAAqB,EAAE,MAAM,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAE/C,qBAAqB,EAAE,CAAC;aAC3B,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QACtB,CAAC;QAED,OAAO,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE;YACjC,KAAK;YACL,QAAQ;SACX,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CACJ;AA5BD,8BA4BC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AddEmailAtBzEmailMessagesTable1719663080003 = void 0;
|
|
4
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
5
|
+
class AddEmailAtBzEmailMessagesTable1719663080003 extends nestjs_utility_services_1.MigrationUtility {
|
|
6
|
+
constructor() {
|
|
7
|
+
super('bz_email_messages');
|
|
8
|
+
this.process();
|
|
9
|
+
}
|
|
10
|
+
process() {
|
|
11
|
+
this.dateTime('emailed_at');
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.AddEmailAtBzEmailMessagesTable1719663080003 = AddEmailAtBzEmailMessagesTable1719663080003;
|
|
15
|
+
//# sourceMappingURL=1719663080003-AddEmailAtBzEmailMessagesTable.ts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1719663080003-AddEmailAtBzEmailMessagesTable.ts.js","sourceRoot":"","sources":["../../src/migrations/1719663080003-AddEmailAtBzEmailMessagesTable.ts.ts"],"names":[],"mappings":";;;AAAA,oFAA0E;AAE1E,MAAa,2CAA4C,SAAQ,0CAAgB;IAC7E;QACI,KAAK,CAAC,mBAAmB,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAChC,CAAC;CACJ;AATD,kGASC"}
|
package/package.json
CHANGED