@servicelabsco/slabs-access-manager 0.1.128 → 0.1.129
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/controllers/fcm.token.controller.d.ts +18 -0
- package/dist/access/controllers/fcm.token.controller.js +109 -0
- package/dist/access/controllers/fcm.token.controller.js.map +1 -0
- package/dist/access/controllers/index.d.ts +1 -0
- package/dist/access/controllers/index.js +1 -0
- package/dist/access/controllers/index.js.map +1 -1
- package/dist/access/dtos/fcm.message.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/fcm.message.attributes.dto.js +8 -0
- package/dist/access/dtos/fcm.message.attributes.dto.js.map +1 -0
- package/dist/access/dtos/fcm.notification.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/fcm.notification.attributes.dto.js +8 -0
- package/dist/access/dtos/fcm.notification.attributes.dto.js.map +1 -0
- package/dist/access/dtos/fcm.template.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/fcm.template.attributes.dto.js +8 -0
- package/dist/access/dtos/fcm.template.attributes.dto.js.map +1 -0
- package/dist/access/dtos/fcm.token.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/fcm.token.attributes.dto.js +8 -0
- package/dist/access/dtos/fcm.token.attributes.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +5 -0
- package/dist/access/dtos/index.js +5 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/dtos/token.payload.dto.d.ts +3 -0
- package/dist/access/dtos/token.payload.dto.js +23 -0
- package/dist/access/dtos/token.payload.dto.js.map +1 -0
- package/dist/access/entities/fcm.message.entity.d.ts +19 -0
- package/dist/access/entities/fcm.message.entity.js +80 -0
- package/dist/access/entities/fcm.message.entity.js.map +1 -0
- package/dist/access/entities/fcm.notification.entity.d.ts +14 -0
- package/dist/access/entities/fcm.notification.entity.js +58 -0
- package/dist/access/entities/fcm.notification.entity.js.map +1 -0
- package/dist/access/entities/fcm.template.entity.d.ts +10 -0
- package/dist/access/entities/fcm.template.entity.js +46 -0
- package/dist/access/entities/fcm.template.entity.js.map +1 -0
- package/dist/access/entities/fcm.token.entity.d.ts +18 -0
- package/dist/access/entities/fcm.token.entity.js +76 -0
- package/dist/access/entities/fcm.token.entity.js.map +1 -0
- package/dist/access/entities/index.d.ts +4 -0
- package/dist/access/entities/index.js +4 -0
- package/dist/access/entities/index.js.map +1 -1
- package/dist/access/enums/index.d.ts +1 -0
- package/dist/access/enums/index.js +1 -0
- package/dist/access/enums/index.js.map +1 -1
- package/dist/access/enums/platform.type.enum.d.ts +9 -0
- package/dist/access/enums/platform.type.enum.js +14 -0
- package/dist/access/enums/platform.type.enum.js.map +1 -0
- package/dist/access/es6.classes.d.ts +26 -10
- package/dist/access/es6.classes.js +44 -1
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/jobs/fcm.message.job.d.ts +7 -0
- package/dist/access/jobs/fcm.message.job.js +29 -0
- package/dist/access/jobs/fcm.message.job.js.map +1 -0
- package/dist/access/jobs/fcm.notification.job.d.ts +7 -0
- package/dist/access/jobs/fcm.notification.job.js +29 -0
- package/dist/access/jobs/fcm.notification.job.js.map +1 -0
- package/dist/access/jobs/fcm.template.job.d.ts +7 -0
- package/dist/access/jobs/fcm.template.job.js +29 -0
- package/dist/access/jobs/fcm.template.job.js.map +1 -0
- package/dist/access/jobs/fcm.token.job.d.ts +7 -0
- package/dist/access/jobs/fcm.token.job.js +29 -0
- package/dist/access/jobs/fcm.token.job.js.map +1 -0
- package/dist/access/jobs/index.d.ts +4 -0
- package/dist/access/jobs/index.js +4 -0
- package/dist/access/jobs/index.js.map +1 -1
- package/dist/access/libraries/index.d.ts +2 -0
- package/dist/access/libraries/index.js +2 -0
- package/dist/access/libraries/index.js.map +1 -1
- package/dist/access/libraries/process.notification.d.ts +1 -0
- package/dist/access/libraries/process.notification.js +12 -0
- package/dist/access/libraries/process.notification.js.map +1 -1
- package/dist/access/libraries/send.fcm.notification.d.ts +18 -0
- package/dist/access/libraries/send.fcm.notification.js +73 -0
- package/dist/access/libraries/send.fcm.notification.js.map +1 -0
- package/dist/access/libraries/set.fcm.token.d.ts +13 -0
- package/dist/access/libraries/set.fcm.token.js +37 -0
- package/dist/access/libraries/set.fcm.token.js.map +1 -0
- package/dist/access/services/es6.jobs.service.d.ts +9 -1
- package/dist/access/services/es6.jobs.service.js +17 -1
- package/dist/access/services/es6.jobs.service.js.map +1 -1
- package/dist/access/services/index.d.ts +1 -0
- package/dist/access/services/index.js +1 -0
- package/dist/access/services/index.js.map +1 -1
- package/dist/access/services/notification.service.d.ts +2 -0
- package/dist/access/services/notification.service.js +4 -0
- package/dist/access/services/notification.service.js.map +1 -1
- package/dist/access/services/platform.service.d.ts +5 -0
- package/dist/access/services/platform.service.js +21 -0
- package/dist/access/services/platform.service.js.map +1 -0
- package/dist/access/subscribers/fcm.message.subscriber.d.ts +10 -0
- package/dist/access/subscribers/fcm.message.subscriber.js +34 -0
- package/dist/access/subscribers/fcm.message.subscriber.js.map +1 -0
- package/dist/access/subscribers/fcm.notification.subscriber.d.ts +10 -0
- package/dist/access/subscribers/fcm.notification.subscriber.js +34 -0
- package/dist/access/subscribers/fcm.notification.subscriber.js.map +1 -0
- package/dist/access/subscribers/fcm.template.subscriber.d.ts +10 -0
- package/dist/access/subscribers/fcm.template.subscriber.js +34 -0
- package/dist/access/subscribers/fcm.template.subscriber.js.map +1 -0
- package/dist/access/subscribers/fcm.token.subscriber.d.ts +10 -0
- package/dist/access/subscribers/fcm.token.subscriber.js +34 -0
- package/dist/access/subscribers/fcm.token.subscriber.js.map +1 -0
- package/dist/access/subscribers/index.d.ts +4 -0
- package/dist/access/subscribers/index.js +4 -0
- package/dist/access/subscribers/index.js.map +1 -1
- package/dist/accessUtility/entities/notification.entity.d.ts +2 -0
- package/dist/accessUtility/entities/notification.entity.js +5 -0
- package/dist/accessUtility/entities/notification.entity.js.map +1 -1
- package/dist/accessUtility/es6.classes.d.ts +1 -1
- package/dist/config/entity.constants.d.ts +8 -0
- package/dist/config/entity.constants.js +8 -0
- package/dist/config/entity.constants.js.map +1 -1
- package/dist/migrations/1721976797529-CreateFcmTokenTable.d.ts +5 -0
- package/dist/migrations/1721976797529-CreateFcmTokenTable.js +24 -0
- package/dist/migrations/1721976797529-CreateFcmTokenTable.js.map +1 -0
- package/dist/migrations/1721980573138-CreateFcmTemplateTable.d.ts +5 -0
- package/dist/migrations/1721980573138-CreateFcmTemplateTable.js +22 -0
- package/dist/migrations/1721980573138-CreateFcmTemplateTable.js.map +1 -0
- package/dist/migrations/1721980974253-CreateFcmNotificationTable.d.ts +5 -0
- package/dist/migrations/1721980974253-CreateFcmNotificationTable.js +22 -0
- package/dist/migrations/1721980974253-CreateFcmNotificationTable.js.map +1 -0
- package/dist/migrations/1721981508349-CreateFcmMessageTable.d.ts +5 -0
- package/dist/migrations/1721981508349-CreateFcmMessageTable.js +24 -0
- package/dist/migrations/1721981508349-CreateFcmMessageTable.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
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.FcmTokenEntity = void 0;
|
|
13
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
14
|
+
const typeorm_1 = require("typeorm");
|
|
15
|
+
const product_entity_1 = require("./product.entity");
|
|
16
|
+
const fcm_token_attributes_dto_1 = require("../dtos/fcm.token.attributes.dto");
|
|
17
|
+
const access_business_entity_1 = require("./access.business.entity");
|
|
18
|
+
let FcmTokenEntity = class FcmTokenEntity extends nestjs_utility_services_1.CommonEntity {
|
|
19
|
+
};
|
|
20
|
+
exports.FcmTokenEntity = FcmTokenEntity;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, typeorm_1.Column)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], FcmTokenEntity.prototype, "business_id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, typeorm_1.Column)(),
|
|
27
|
+
__metadata("design:type", Number)
|
|
28
|
+
], FcmTokenEntity.prototype, "user_id", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, typeorm_1.Column)(),
|
|
31
|
+
__metadata("design:type", Number)
|
|
32
|
+
], FcmTokenEntity.prototype, "platform_id", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, typeorm_1.Column)(),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], FcmTokenEntity.prototype, "product_id", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)(),
|
|
39
|
+
__metadata("design:type", Boolean)
|
|
40
|
+
], FcmTokenEntity.prototype, "active", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], FcmTokenEntity.prototype, "token", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], FcmTokenEntity.prototype, "season_identifier", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)('json'),
|
|
51
|
+
__metadata("design:type", fcm_token_attributes_dto_1.FcmTokenAttributesDto)
|
|
52
|
+
], FcmTokenEntity.prototype, "attributes", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, typeorm_1.ManyToOne)(() => access_business_entity_1.AccessBusinessEntity),
|
|
55
|
+
(0, typeorm_1.JoinColumn)({ name: 'business_id' }),
|
|
56
|
+
__metadata("design:type", access_business_entity_1.AccessBusinessEntity)
|
|
57
|
+
], FcmTokenEntity.prototype, "business", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.UserEntity),
|
|
60
|
+
(0, typeorm_1.JoinColumn)({ name: 'user_id' }),
|
|
61
|
+
__metadata("design:type", nestjs_utility_services_1.UserEntity)
|
|
62
|
+
], FcmTokenEntity.prototype, "user", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.LookupValueEntity),
|
|
65
|
+
(0, typeorm_1.JoinColumn)({ name: 'platform_id' }),
|
|
66
|
+
__metadata("design:type", nestjs_utility_services_1.LookupValueEntity)
|
|
67
|
+
], FcmTokenEntity.prototype, "platform", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ManyToOne)(() => nestjs_utility_services_1.LookupValueEntity),
|
|
70
|
+
(0, typeorm_1.JoinColumn)({ name: 'product_id' }),
|
|
71
|
+
__metadata("design:type", product_entity_1.ProductEntity)
|
|
72
|
+
], FcmTokenEntity.prototype, "product", void 0);
|
|
73
|
+
exports.FcmTokenEntity = FcmTokenEntity = __decorate([
|
|
74
|
+
(0, typeorm_1.Entity)('bz_fcm_tokens')
|
|
75
|
+
], FcmTokenEntity);
|
|
76
|
+
//# sourceMappingURL=fcm.token.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fcm.token.entity.js","sourceRoot":"","sources":["../../../src/access/entities/fcm.token.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAqG;AACrG,qCAAgE;AAChE,qDAAiD;AACjD,+EAAyE;AACzE,qEAAgE;AASzD,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,sCAAY;CA8B/C,CAAA;AA9BY,wCAAc;AAEvB;IADC,IAAA,gBAAM,GAAE;;mDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;+CACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;mDACW;AAGpB;IADC,IAAA,gBAAM,GAAE;;kDACU;AAGnB;IADC,IAAA,gBAAM,GAAE;;8CACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;6CACK;AAGd;IADC,IAAA,gBAAM,GAAE;;yDACiB;AAG1B;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,gDAAqB;kDAAC;AAG0C;IAA3E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,6CAAoB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,6CAAoB;gDAAC;AAC7C;IAA7D,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oCAAU,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAAO,oCAAU;4CAAC;AACN;IAAxE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,2CAAiB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BAAW,2CAAiB;gDAAC;AAC7B;IAAvE,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,2CAAiB,CAAC;IAAE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC;8BAAU,8BAAa;+CAAC;yBA7BtF,cAAc;IAD1B,IAAA,gBAAM,EAAC,eAAe,CAAC;GACX,cAAc,CA8B1B"}
|
|
@@ -18,6 +18,10 @@ export * from './download.log.entity';
|
|
|
18
18
|
export * from './email.attachment.entity';
|
|
19
19
|
export * from './email.message.entity';
|
|
20
20
|
export * from './email.recipient.entity';
|
|
21
|
+
export * from './fcm.message.entity';
|
|
22
|
+
export * from './fcm.notification.entity';
|
|
23
|
+
export * from './fcm.template.entity';
|
|
24
|
+
export * from './fcm.token.entity';
|
|
21
25
|
export * from './gchat.message.entity';
|
|
22
26
|
export * from './gchat.template.entity';
|
|
23
27
|
export * from './gchat.user.entity';
|
|
@@ -34,6 +34,10 @@ __exportStar(require("./download.log.entity"), exports);
|
|
|
34
34
|
__exportStar(require("./email.attachment.entity"), exports);
|
|
35
35
|
__exportStar(require("./email.message.entity"), exports);
|
|
36
36
|
__exportStar(require("./email.recipient.entity"), exports);
|
|
37
|
+
__exportStar(require("./fcm.message.entity"), exports);
|
|
38
|
+
__exportStar(require("./fcm.notification.entity"), exports);
|
|
39
|
+
__exportStar(require("./fcm.template.entity"), exports);
|
|
40
|
+
__exportStar(require("./fcm.token.entity"), exports);
|
|
37
41
|
__exportStar(require("./gchat.message.entity"), exports);
|
|
38
42
|
__exportStar(require("./gchat.template.entity"), exports);
|
|
39
43
|
__exportStar(require("./gchat.user.entity"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA0C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,uDAAqC;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,qDAAmC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,yDAAuC;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,2DAAyC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uDAAqC;AAAA,gDAA8B;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,2DAAyC;AAAA,iEAA+C;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,yDAAuC;AAAA,iEAA+C;AAAA,qDAAmC;AAAA,0DAAwC;AAAA,6DAA2C;AAAA,2DAAyC;AAAA,qDAAmC;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA0C"}
|
|
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./custom.column.type.enum"), exports);
|
|
18
18
|
__exportStar(require("./notification.type.enum"), exports);
|
|
19
|
+
__exportStar(require("./platform.type.enum"), exports);
|
|
19
20
|
__exportStar(require("./recurring.period.enum"), exports);
|
|
20
21
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/enums/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAAA,2DAAyC;AAAA,0DAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/enums/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAAA,2DAAyC;AAAA,uDAAqC;AAAA,0DAAuC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PlatformTypeEnum = void 0;
|
|
4
|
+
var PlatformTypeEnum;
|
|
5
|
+
(function (PlatformTypeEnum) {
|
|
6
|
+
PlatformTypeEnum[PlatformTypeEnum["ANDROID_APP"] = 1] = "ANDROID_APP";
|
|
7
|
+
PlatformTypeEnum[PlatformTypeEnum["IOS_APP"] = 2] = "IOS_APP";
|
|
8
|
+
PlatformTypeEnum[PlatformTypeEnum["PWA"] = 3] = "PWA";
|
|
9
|
+
PlatformTypeEnum[PlatformTypeEnum["DESKTOP"] = 4] = "DESKTOP";
|
|
10
|
+
PlatformTypeEnum[PlatformTypeEnum["EXTENSION"] = 5] = "EXTENSION";
|
|
11
|
+
PlatformTypeEnum[PlatformTypeEnum["WHATSAPP"] = 6] = "WHATSAPP";
|
|
12
|
+
PlatformTypeEnum[PlatformTypeEnum["SLACK"] = 7] = "SLACK";
|
|
13
|
+
})(PlatformTypeEnum || (exports.PlatformTypeEnum = PlatformTypeEnum = {}));
|
|
14
|
+
//# sourceMappingURL=platform.type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"platform.type.enum.js","sourceRoot":"","sources":["../../../src/access/enums/platform.type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAQX;AARD,WAAY,gBAAgB;IACxB,qEAAe,CAAA;IACf,6DAAW,CAAA;IACX,qDAAO,CAAA;IACP,6DAAW,CAAA;IACX,iEAAa,CAAA;IACb,+DAAY,CAAA;IACZ,yDAAS,CAAA;AACb,CAAC,EARW,gBAAgB,gCAAhB,gBAAgB,QAQ3B"}
|
|
@@ -14,6 +14,7 @@ import { DashboardController } from './controllers/dashboard.controller';
|
|
|
14
14
|
import { DashboardReportController } from './controllers/dashboard.report.controller';
|
|
15
15
|
import { DeveloperModeController } from './controllers/developer.mode.controller';
|
|
16
16
|
import { DownloadLogController } from './controllers/download.log.controller';
|
|
17
|
+
import { FcmTokenController } from './controllers/fcm.token.controller';
|
|
17
18
|
import { GroupMemberController } from './controllers/group.member.controller';
|
|
18
19
|
import { GroupRoleController } from './controllers/group.role.controller';
|
|
19
20
|
import { ListingController } from './controllers/listing.controller';
|
|
@@ -40,6 +41,7 @@ import { DateFilterDto } from './dtos/date.filter.dto';
|
|
|
40
41
|
import { DateRangeFilterDto } from './dtos/date.range.filter.dto';
|
|
41
42
|
import { DbFindDto } from './dtos/db.find.dto';
|
|
42
43
|
import { EditQueryDto } from './dtos/edit.query.dto';
|
|
44
|
+
import { FcmNotificationAttributesDto } from './dtos/fcm.notification.attributes.dto';
|
|
43
45
|
import { GchatPostingPayloadDto } from './dtos/gchat.posting.payload.dto';
|
|
44
46
|
import { GetScriptValuesDto } from './dtos/get.script.values.dto';
|
|
45
47
|
import { ListResponseDto } from './dtos/list.response.dto';
|
|
@@ -53,9 +55,8 @@ import { RecurringDefinitionDto } from './dtos/recurring.definition.dto';
|
|
|
53
55
|
import { SendEmailNotificationDataDto } from './dtos/send.email.notification.data.dto';
|
|
54
56
|
import { ServerEmailMessageDto } from './dtos/server.email.message.dto';
|
|
55
57
|
import { ServerEmailRecipientsDto } from './dtos/server.email.recipients.dto';
|
|
56
|
-
import { SlackPostingPayloadDto } from './dtos/slack.posting.payload.dto';
|
|
57
|
-
import { SlackTemplateAttributesDto } from './dtos/slack.template.attributes.dto';
|
|
58
58
|
import { StringSearchDto } from './dtos/string.search.dto';
|
|
59
|
+
import { TokenPayloadDto } from './dtos/token.payload.dto';
|
|
59
60
|
import { AccessBusinessEntity } from './entities/access.business.entity';
|
|
60
61
|
import { BusinessEmailEntity } from './entities/business.email.entity';
|
|
61
62
|
import { BusinessGroupRoleEntity } from './entities/business.group.role.entity';
|
|
@@ -67,6 +68,9 @@ import { DashboardComponentEntity } from './entities/dashboard.component.entity'
|
|
|
67
68
|
import { DownloadLogEntity } from './entities/download.log.entity';
|
|
68
69
|
import { EmailMessageEntity } from './entities/email.message.entity';
|
|
69
70
|
import { EmailRecipientEntity } from './entities/email.recipient.entity';
|
|
71
|
+
import { FcmMessageEntity } from './entities/fcm.message.entity';
|
|
72
|
+
import { FcmNotificationEntity } from './entities/fcm.notification.entity';
|
|
73
|
+
import { FcmTokenEntity } from './entities/fcm.token.entity';
|
|
70
74
|
import { GchatMessageEntity } from './entities/gchat.message.entity';
|
|
71
75
|
import { GchatUserEntity } from './entities/gchat.user.entity';
|
|
72
76
|
import { GchatWebhookMessageEntity } from './entities/gchat.webhook.message.entity';
|
|
@@ -95,6 +99,7 @@ import { WhatsappMessageEntity } from './entities/whatsapp.message.entity';
|
|
|
95
99
|
import { WhatsappPreferenceEntity } from './entities/whatsapp.preference.entity';
|
|
96
100
|
import { CustomColumnTypeEnum } from './enums/custom.column.type.enum';
|
|
97
101
|
import { NotificationTypeEnum } from './enums/notification.type.enum';
|
|
102
|
+
import { PlatformTypeEnum } from './enums/platform.type.enum';
|
|
98
103
|
import { RecurringPeriodEnum } from './enums/recurring.period.enum';
|
|
99
104
|
import { AccessTestJob } from './jobs/access.test.job';
|
|
100
105
|
import { ApiAccountJob } from './jobs/api.account.job';
|
|
@@ -116,6 +121,10 @@ import { DownloadLogJob } from './jobs/download.log.job';
|
|
|
116
121
|
import { EmailAttachmentJob } from './jobs/email.attachment.job';
|
|
117
122
|
import { EmailMessageJob } from './jobs/email.message.job';
|
|
118
123
|
import { EmailRecipientJob } from './jobs/email.recipient.job';
|
|
124
|
+
import { FcmMessageJob } from './jobs/fcm.message.job';
|
|
125
|
+
import { FcmNotificationJob } from './jobs/fcm.notification.job';
|
|
126
|
+
import { FcmTemplateJob } from './jobs/fcm.template.job';
|
|
127
|
+
import { FcmTokenJob } from './jobs/fcm.token.job';
|
|
119
128
|
import { GchatIncomingWebhookJob } from './jobs/gchat.incoming.webhook.job';
|
|
120
129
|
import { GchatMessageJob } from './jobs/gchat.message.job';
|
|
121
130
|
import { GchatTemplateJob } from './jobs/gchat.template.job';
|
|
@@ -201,11 +210,13 @@ import { ProcessTestList } from './libraries/process.test.list';
|
|
|
201
210
|
import { ProcessUserGroupCreation } from './libraries/process.user.group.creation';
|
|
202
211
|
import { ProcessUserNotificationList } from './libraries/process.user.notification.list';
|
|
203
212
|
import { SendEmailNotification } from './libraries/send.email.notification';
|
|
213
|
+
import { SendFcmNotification } from './libraries/send.fcm.notification';
|
|
204
214
|
import { SendGchatMessageNotification } from './libraries/send.gchat.message.notification';
|
|
205
215
|
import { SendGchatWebhookNotification } from './libraries/send.gchat.webhook.notification';
|
|
206
216
|
import { SendSlackMessageNotification } from './libraries/send.slack.message.notification';
|
|
207
217
|
import { SendSlackWebhookNotification } from './libraries/send.slack.webhook.notification.';
|
|
208
218
|
import { SendWhatsappMessageNotification } from './libraries/send.whatsapp.message.notification';
|
|
219
|
+
import { SetFcmToken } from './libraries/set.fcm.token';
|
|
209
220
|
import { SyncBusinessUserRole } from './libraries/sync.business.user.role';
|
|
210
221
|
import { ValidateCustomFieldData } from './libraries/validate.custom.field.data';
|
|
211
222
|
import { BusinessMiddleware } from './middlewares/business.middleware';
|
|
@@ -223,6 +234,7 @@ import { ListingPreferenceService } from './services/listing.preference.service'
|
|
|
223
234
|
import { ListingService } from './services/listing.service';
|
|
224
235
|
import { LoadEntityService } from './services/load.entity.service';
|
|
225
236
|
import { NotificationService } from './services/notification.service';
|
|
237
|
+
import { PlatformService } from './services/platform.service';
|
|
226
238
|
import { ScheduledReportService } from './services/scheduled.report.service';
|
|
227
239
|
import { SendEmailService } from './services/send.email.service';
|
|
228
240
|
import { SlabsService } from './services/slabs.service';
|
|
@@ -251,6 +263,10 @@ import { DownloadLogSubscriber } from './subscribers/download.log.subscriber';
|
|
|
251
263
|
import { EmailAttachmentSubscriber } from './subscribers/email.attachment.subscriber';
|
|
252
264
|
import { EmailMessageSubscriber } from './subscribers/email.message.subscriber';
|
|
253
265
|
import { EmailRecipientSubscriber } from './subscribers/email.recipient.subscriber';
|
|
266
|
+
import { FcmMessageSubscriber } from './subscribers/fcm.message.subscriber';
|
|
267
|
+
import { FcmNotificationSubscriber } from './subscribers/fcm.notification.subscriber';
|
|
268
|
+
import { FcmTemplateSubscriber } from './subscribers/fcm.template.subscriber';
|
|
269
|
+
import { FcmTokenSubscriber } from './subscribers/fcm.token.subscriber';
|
|
254
270
|
import { GchatMessageSubscriber } from './subscribers/gchat.message.subscriber';
|
|
255
271
|
import { GchatTemplateSubscriber } from './subscribers/gchat.template.subscriber';
|
|
256
272
|
import { GchatUserSubscriber } from './subscribers/gchat.user.subscriber';
|
|
@@ -292,14 +308,14 @@ import { WhatsappMessageSubscriber } from './subscribers/whatsapp.message.subscr
|
|
|
292
308
|
import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subscriber';
|
|
293
309
|
declare const es6Classes: {
|
|
294
310
|
commands: (typeof WebhookPollCommand)[];
|
|
295
|
-
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
296
|
-
dtos: (typeof
|
|
297
|
-
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)[];
|
|
298
|
-
enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum)[];
|
|
299
|
-
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)[];
|
|
300
|
-
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessCreateDashboardComponent | 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)[];
|
|
311
|
+
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof ListingController | typeof ListingPreferenceController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
312
|
+
dtos: (typeof FcmNotificationAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof AccessBusinessParamDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof DbFindDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof ProcessCommonListConfigDto | typeof AddBusinessPreferenceDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddScheduledReportDto | typeof AddConversationDto | typeof AddTagDto | typeof ProcessListingPayloadDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto)[];
|
|
313
|
+
entities: (typeof FcmNotificationEntity | typeof AccessBusinessEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackIntegrationEntity | typeof SlackMessageEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | 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)[];
|
|
314
|
+
enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum | typeof PlatformTypeEnum)[];
|
|
315
|
+
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 FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | 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)[];
|
|
316
|
+
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof SendFcmNotification | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessListingCsvFile | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessApiAccountList | typeof ProcessDbFind | typeof ProcessBulkUploadList | typeof ProcessBulkUploadItemList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof SetFcmToken | 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)[];
|
|
301
317
|
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
|
|
302
|
-
services: (typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof SlabsService | typeof WebhookService | typeof AccessBusinessService | typeof ListingService | typeof AuditLogService | typeof AccessReportService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof UtilityService | typeof CustomFieldService | typeof ApiAccountService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
303
|
-
subscribers: (typeof ApiAccountSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber)[];
|
|
318
|
+
services: (typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof SlabsService | typeof WebhookService | typeof AccessBusinessService | typeof ListingService | typeof AuditLogService | typeof AccessReportService | typeof PlatformService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof UtilityService | typeof CustomFieldService | typeof ApiAccountService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
319
|
+
subscribers: (typeof ApiAccountSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof RoleGroupSubscriber | typeof ScheduledReportEmailSubscriber | typeof ScheduledReportItemSubscriber | typeof ScheduledReportSubscriber | typeof SlackIntegrationSubscriber | typeof SlackMessageSubscriber | typeof SlackTemplateSubscriber | typeof SlackUserSubscriber | typeof SlackWebhookMessageSubscriber | typeof SlackWebhookSubscriber | typeof UiActionRoleSubscriber | typeof UiActionSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber)[];
|
|
304
320
|
};
|
|
305
321
|
export default es6Classes;
|
|
@@ -16,6 +16,7 @@ const dashboard_controller_1 = require("./controllers/dashboard.controller");
|
|
|
16
16
|
const dashboard_report_controller_1 = require("./controllers/dashboard.report.controller");
|
|
17
17
|
const developer_mode_controller_1 = require("./controllers/developer.mode.controller");
|
|
18
18
|
const download_log_controller_1 = require("./controllers/download.log.controller");
|
|
19
|
+
const fcm_token_controller_1 = require("./controllers/fcm.token.controller");
|
|
19
20
|
const group_member_controller_1 = require("./controllers/group.member.controller");
|
|
20
21
|
const group_role_controller_1 = require("./controllers/group.role.controller");
|
|
21
22
|
const listing_controller_1 = require("./controllers/listing.controller");
|
|
@@ -78,6 +79,10 @@ const email_attachment_attributes_dto_1 = require("./dtos/email.attachment.attri
|
|
|
78
79
|
const email_message_attributes_dto_1 = require("./dtos/email.message.attributes.dto");
|
|
79
80
|
const email_notification_payload_dto_1 = require("./dtos/email.notification.payload.dto");
|
|
80
81
|
const email_recipient_attributes_dto_1 = require("./dtos/email.recipient.attributes.dto");
|
|
82
|
+
const fcm_message_attributes_dto_1 = require("./dtos/fcm.message.attributes.dto");
|
|
83
|
+
const fcm_notification_attributes_dto_1 = require("./dtos/fcm.notification.attributes.dto");
|
|
84
|
+
const fcm_template_attributes_dto_1 = require("./dtos/fcm.template.attributes.dto");
|
|
85
|
+
const fcm_token_attributes_dto_1 = require("./dtos/fcm.token.attributes.dto");
|
|
81
86
|
const gchat_message_attributes_dto_1 = require("./dtos/gchat.message.attributes.dto");
|
|
82
87
|
const gchat_posting_payload_dto_1 = require("./dtos/gchat.posting.payload.dto");
|
|
83
88
|
const gchat_template_attributes_dto_1 = require("./dtos/gchat.template.attributes.dto");
|
|
@@ -130,6 +135,7 @@ const slack_webhook_attributes_dto_1 = require("./dtos/slack.webhook.attributes.
|
|
|
130
135
|
const slack_webhook_message_attributes_dto_1 = require("./dtos/slack.webhook.message.attributes.dto");
|
|
131
136
|
const string_search_dto_1 = require("./dtos/string.search.dto");
|
|
132
137
|
const tagged_user_dto_1 = require("./dtos/tagged.user.dto");
|
|
138
|
+
const token_payload_dto_1 = require("./dtos/token.payload.dto");
|
|
133
139
|
const ui_action_attributes_dto_1 = require("./dtos/ui.action.attributes.dto");
|
|
134
140
|
const ui_action_role_attributes_dto_1 = require("./dtos/ui.action.role.attributes.dto");
|
|
135
141
|
const upi_vpa_payload_dto_1 = require("./dtos/upi.vpa.payload.dto");
|
|
@@ -163,6 +169,10 @@ const download_log_entity_1 = require("./entities/download.log.entity");
|
|
|
163
169
|
const email_attachment_entity_1 = require("./entities/email.attachment.entity");
|
|
164
170
|
const email_message_entity_1 = require("./entities/email.message.entity");
|
|
165
171
|
const email_recipient_entity_1 = require("./entities/email.recipient.entity");
|
|
172
|
+
const fcm_message_entity_1 = require("./entities/fcm.message.entity");
|
|
173
|
+
const fcm_notification_entity_1 = require("./entities/fcm.notification.entity");
|
|
174
|
+
const fcm_template_entity_1 = require("./entities/fcm.template.entity");
|
|
175
|
+
const fcm_token_entity_1 = require("./entities/fcm.token.entity");
|
|
166
176
|
const gchat_message_entity_1 = require("./entities/gchat.message.entity");
|
|
167
177
|
const gchat_template_entity_1 = require("./entities/gchat.template.entity");
|
|
168
178
|
const gchat_user_entity_1 = require("./entities/gchat.user.entity");
|
|
@@ -205,6 +215,7 @@ const whatsapp_preference_entity_1 = require("./entities/whatsapp.preference.ent
|
|
|
205
215
|
const whatsapp_template_entity_1 = require("./entities/whatsapp.template.entity");
|
|
206
216
|
const custom_column_type_enum_1 = require("./enums/custom.column.type.enum");
|
|
207
217
|
const notification_type_enum_1 = require("./enums/notification.type.enum");
|
|
218
|
+
const platform_type_enum_1 = require("./enums/platform.type.enum");
|
|
208
219
|
const recurring_period_enum_1 = require("./enums/recurring.period.enum");
|
|
209
220
|
const access_test_job_1 = require("./jobs/access.test.job");
|
|
210
221
|
const api_account_job_1 = require("./jobs/api.account.job");
|
|
@@ -226,6 +237,10 @@ const download_log_job_1 = require("./jobs/download.log.job");
|
|
|
226
237
|
const email_attachment_job_1 = require("./jobs/email.attachment.job");
|
|
227
238
|
const email_message_job_1 = require("./jobs/email.message.job");
|
|
228
239
|
const email_recipient_job_1 = require("./jobs/email.recipient.job");
|
|
240
|
+
const fcm_message_job_1 = require("./jobs/fcm.message.job");
|
|
241
|
+
const fcm_notification_job_1 = require("./jobs/fcm.notification.job");
|
|
242
|
+
const fcm_template_job_1 = require("./jobs/fcm.template.job");
|
|
243
|
+
const fcm_token_job_1 = require("./jobs/fcm.token.job");
|
|
229
244
|
const gchat_incoming_webhook_job_1 = require("./jobs/gchat.incoming.webhook.job");
|
|
230
245
|
const gchat_message_job_1 = require("./jobs/gchat.message.job");
|
|
231
246
|
const gchat_template_job_1 = require("./jobs/gchat.template.job");
|
|
@@ -311,11 +326,13 @@ const process_test_list_1 = require("./libraries/process.test.list");
|
|
|
311
326
|
const process_user_group_creation_1 = require("./libraries/process.user.group.creation");
|
|
312
327
|
const process_user_notification_list_1 = require("./libraries/process.user.notification.list");
|
|
313
328
|
const send_email_notification_1 = require("./libraries/send.email.notification");
|
|
329
|
+
const send_fcm_notification_1 = require("./libraries/send.fcm.notification");
|
|
314
330
|
const send_gchat_message_notification_1 = require("./libraries/send.gchat.message.notification");
|
|
315
331
|
const send_gchat_webhook_notification_1 = require("./libraries/send.gchat.webhook.notification");
|
|
316
332
|
const send_slack_message_notification_1 = require("./libraries/send.slack.message.notification");
|
|
317
333
|
const send_slack_webhook_notification_1 = require("./libraries/send.slack.webhook.notification.");
|
|
318
334
|
const send_whatsapp_message_notification_1 = require("./libraries/send.whatsapp.message.notification");
|
|
335
|
+
const set_fcm_token_1 = require("./libraries/set.fcm.token");
|
|
319
336
|
const sync_business_user_role_1 = require("./libraries/sync.business.user.role");
|
|
320
337
|
const validate_custom_field_data_1 = require("./libraries/validate.custom.field.data");
|
|
321
338
|
const business_middleware_1 = require("./middlewares/business.middleware");
|
|
@@ -333,6 +350,7 @@ const listing_preference_service_1 = require("./services/listing.preference.serv
|
|
|
333
350
|
const listing_service_1 = require("./services/listing.service");
|
|
334
351
|
const load_entity_service_1 = require("./services/load.entity.service");
|
|
335
352
|
const notification_service_1 = require("./services/notification.service");
|
|
353
|
+
const platform_service_1 = require("./services/platform.service");
|
|
336
354
|
const scheduled_report_service_1 = require("./services/scheduled.report.service");
|
|
337
355
|
const send_email_service_1 = require("./services/send.email.service");
|
|
338
356
|
const slabs_service_1 = require("./services/slabs.service");
|
|
@@ -361,6 +379,10 @@ const download_log_subscriber_1 = require("./subscribers/download.log.subscriber
|
|
|
361
379
|
const email_attachment_subscriber_1 = require("./subscribers/email.attachment.subscriber");
|
|
362
380
|
const email_message_subscriber_1 = require("./subscribers/email.message.subscriber");
|
|
363
381
|
const email_recipient_subscriber_1 = require("./subscribers/email.recipient.subscriber");
|
|
382
|
+
const fcm_message_subscriber_1 = require("./subscribers/fcm.message.subscriber");
|
|
383
|
+
const fcm_notification_subscriber_1 = require("./subscribers/fcm.notification.subscriber");
|
|
384
|
+
const fcm_template_subscriber_1 = require("./subscribers/fcm.template.subscriber");
|
|
385
|
+
const fcm_token_subscriber_1 = require("./subscribers/fcm.token.subscriber");
|
|
364
386
|
const gchat_message_subscriber_1 = require("./subscribers/gchat.message.subscriber");
|
|
365
387
|
const gchat_template_subscriber_1 = require("./subscribers/gchat.template.subscriber");
|
|
366
388
|
const gchat_user_subscriber_1 = require("./subscribers/gchat.user.subscriber");
|
|
@@ -418,6 +440,7 @@ const es6Classes = {
|
|
|
418
440
|
dashboard_report_controller_1.DashboardReportController,
|
|
419
441
|
developer_mode_controller_1.DeveloperModeController,
|
|
420
442
|
download_log_controller_1.DownloadLogController,
|
|
443
|
+
fcm_token_controller_1.FcmTokenController,
|
|
421
444
|
group_member_controller_1.GroupMemberController,
|
|
422
445
|
group_role_controller_1.GroupRoleController,
|
|
423
446
|
listing_controller_1.ListingController,
|
|
@@ -482,6 +505,10 @@ const es6Classes = {
|
|
|
482
505
|
email_message_attributes_dto_1.EmailMessageAttributesDto,
|
|
483
506
|
email_notification_payload_dto_1.EmailNotificationPayloadDto,
|
|
484
507
|
email_recipient_attributes_dto_1.EmailRecipientAttributesDto,
|
|
508
|
+
fcm_message_attributes_dto_1.FcmMessageAttributesDto,
|
|
509
|
+
fcm_notification_attributes_dto_1.FcmNotificationAttributesDto,
|
|
510
|
+
fcm_template_attributes_dto_1.FcmTemplateAttributesDto,
|
|
511
|
+
fcm_token_attributes_dto_1.FcmTokenAttributesDto,
|
|
485
512
|
gchat_message_attributes_dto_1.GchatMessageAttributesDto,
|
|
486
513
|
gchat_posting_payload_dto_1.GchatPostingPayloadDto,
|
|
487
514
|
gchat_template_attributes_dto_1.GchatTemplateAttributesDto,
|
|
@@ -534,6 +561,7 @@ const es6Classes = {
|
|
|
534
561
|
slack_webhook_message_attributes_dto_1.SlackWebhookMessageAttributesDto,
|
|
535
562
|
string_search_dto_1.StringSearchDto,
|
|
536
563
|
tagged_user_dto_1.TaggedUserDto,
|
|
564
|
+
token_payload_dto_1.TokenPayloadDto,
|
|
537
565
|
ui_action_attributes_dto_1.UiActionAttributesDto,
|
|
538
566
|
ui_action_role_attributes_dto_1.UiActionRoleAttributesDto,
|
|
539
567
|
upi_vpa_payload_dto_1.UpiVpaPayloadDto,
|
|
@@ -569,6 +597,10 @@ const es6Classes = {
|
|
|
569
597
|
email_attachment_entity_1.EmailAttachmentEntity,
|
|
570
598
|
email_message_entity_1.EmailMessageEntity,
|
|
571
599
|
email_recipient_entity_1.EmailRecipientEntity,
|
|
600
|
+
fcm_message_entity_1.FcmMessageEntity,
|
|
601
|
+
fcm_notification_entity_1.FcmNotificationEntity,
|
|
602
|
+
fcm_template_entity_1.FcmTemplateEntity,
|
|
603
|
+
fcm_token_entity_1.FcmTokenEntity,
|
|
572
604
|
gchat_message_entity_1.GchatMessageEntity,
|
|
573
605
|
gchat_template_entity_1.GchatTemplateEntity,
|
|
574
606
|
gchat_user_entity_1.GchatUserEntity,
|
|
@@ -610,7 +642,7 @@ const es6Classes = {
|
|
|
610
642
|
whatsapp_preference_entity_1.WhatsappPreferenceEntity,
|
|
611
643
|
whatsapp_template_entity_1.WhatsappTemplateEntity,
|
|
612
644
|
],
|
|
613
|
-
enums: [custom_column_type_enum_1.CustomColumnTypeEnum, notification_type_enum_1.NotificationTypeEnum, recurring_period_enum_1.RecurringPeriodEnum],
|
|
645
|
+
enums: [custom_column_type_enum_1.CustomColumnTypeEnum, notification_type_enum_1.NotificationTypeEnum, platform_type_enum_1.PlatformTypeEnum, recurring_period_enum_1.RecurringPeriodEnum],
|
|
614
646
|
jobs: [
|
|
615
647
|
access_test_job_1.AccessTestJob,
|
|
616
648
|
api_account_job_1.ApiAccountJob,
|
|
@@ -632,6 +664,10 @@ const es6Classes = {
|
|
|
632
664
|
email_attachment_job_1.EmailAttachmentJob,
|
|
633
665
|
email_message_job_1.EmailMessageJob,
|
|
634
666
|
email_recipient_job_1.EmailRecipientJob,
|
|
667
|
+
fcm_message_job_1.FcmMessageJob,
|
|
668
|
+
fcm_notification_job_1.FcmNotificationJob,
|
|
669
|
+
fcm_template_job_1.FcmTemplateJob,
|
|
670
|
+
fcm_token_job_1.FcmTokenJob,
|
|
635
671
|
gchat_incoming_webhook_job_1.GchatIncomingWebhookJob,
|
|
636
672
|
gchat_message_job_1.GchatMessageJob,
|
|
637
673
|
gchat_template_job_1.GchatTemplateJob,
|
|
@@ -719,11 +755,13 @@ const es6Classes = {
|
|
|
719
755
|
process_user_group_creation_1.ProcessUserGroupCreation,
|
|
720
756
|
process_user_notification_list_1.ProcessUserNotificationList,
|
|
721
757
|
send_email_notification_1.SendEmailNotification,
|
|
758
|
+
send_fcm_notification_1.SendFcmNotification,
|
|
722
759
|
send_gchat_message_notification_1.SendGchatMessageNotification,
|
|
723
760
|
send_gchat_webhook_notification_1.SendGchatWebhookNotification,
|
|
724
761
|
send_slack_message_notification_1.SendSlackMessageNotification,
|
|
725
762
|
send_slack_webhook_notification_1.SendSlackWebhookNotification,
|
|
726
763
|
send_whatsapp_message_notification_1.SendWhatsappMessageNotification,
|
|
764
|
+
set_fcm_token_1.SetFcmToken,
|
|
727
765
|
sync_business_user_role_1.SyncBusinessUserRole,
|
|
728
766
|
validate_custom_field_data_1.ValidateCustomFieldData,
|
|
729
767
|
],
|
|
@@ -742,6 +780,7 @@ const es6Classes = {
|
|
|
742
780
|
listing_service_1.ListingService,
|
|
743
781
|
load_entity_service_1.LoadEntityService,
|
|
744
782
|
notification_service_1.NotificationService,
|
|
783
|
+
platform_service_1.PlatformService,
|
|
745
784
|
scheduled_report_service_1.ScheduledReportService,
|
|
746
785
|
send_email_service_1.SendEmailService,
|
|
747
786
|
slabs_service_1.SlabsService,
|
|
@@ -772,6 +811,10 @@ const es6Classes = {
|
|
|
772
811
|
email_attachment_subscriber_1.EmailAttachmentSubscriber,
|
|
773
812
|
email_message_subscriber_1.EmailMessageSubscriber,
|
|
774
813
|
email_recipient_subscriber_1.EmailRecipientSubscriber,
|
|
814
|
+
fcm_message_subscriber_1.FcmMessageSubscriber,
|
|
815
|
+
fcm_notification_subscriber_1.FcmNotificationSubscriber,
|
|
816
|
+
fcm_template_subscriber_1.FcmTemplateSubscriber,
|
|
817
|
+
fcm_token_subscriber_1.FcmTokenSubscriber,
|
|
775
818
|
gchat_message_subscriber_1.GchatMessageSubscriber,
|
|
776
819
|
gchat_template_subscriber_1.GchatTemplateSubscriber,
|
|
777
820
|
gchat_user_subscriber_1.GchatUserSubscriber,
|
|
@@ -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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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CommonJob, DatabaseEventDto, QueueService } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { FcmMessageEntity } from '../entities/fcm.message.entity';
|
|
3
|
+
export declare class FcmMessageJob extends CommonJob {
|
|
4
|
+
protected readonly queueService: QueueService;
|
|
5
|
+
constructor(queueService: QueueService);
|
|
6
|
+
handle(evt: DatabaseEventDto<FcmMessageEntity>): Promise<FcmMessageEntity>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.FcmMessageJob = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
let FcmMessageJob = class FcmMessageJob extends nestjs_utility_services_1.CommonJob {
|
|
16
|
+
constructor(queueService) {
|
|
17
|
+
super('30d35af7ad012903ee9d6c054d47afb0');
|
|
18
|
+
this.queueService = queueService;
|
|
19
|
+
}
|
|
20
|
+
async handle(evt) {
|
|
21
|
+
return evt.entity;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.FcmMessageJob = FcmMessageJob;
|
|
25
|
+
exports.FcmMessageJob = FcmMessageJob = __decorate([
|
|
26
|
+
(0, common_1.Injectable)(),
|
|
27
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.QueueService])
|
|
28
|
+
], FcmMessageJob);
|
|
29
|
+
//# sourceMappingURL=fcm.message.job.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fcm.message.job.js","sourceRoot":"","sources":["../../../src/access/jobs/fcm.message.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAAmG;AAI5F,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,mCAAS;IACxC,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;IAEzD,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,GAAuC;QAChD,OAAO,GAAG,CAAC,MAAM,CAAC;IACtB,CAAC;CACJ,CAAA;AAPY,sCAAa;wBAAb,aAAa;IADzB,IAAA,mBAAU,GAAE;qCAEoC,sCAAY;GADhD,aAAa,CAOzB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CommonJob, DatabaseEventDto, QueueService } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { FcmNotificationEntity } from '../entities/fcm.notification.entity';
|
|
3
|
+
export declare class FcmNotificationJob extends CommonJob {
|
|
4
|
+
protected readonly queueService: QueueService;
|
|
5
|
+
constructor(queueService: QueueService);
|
|
6
|
+
handle(evt: DatabaseEventDto<FcmNotificationEntity>): Promise<FcmNotificationEntity>;
|
|
7
|
+
}
|