@servicelabsco/slabs-access-manager 0.1.138 → 0.1.140

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/access/controllers/business.app.integration.controller.d.ts +2 -6
  2. package/dist/access/controllers/business.app.integration.controller.js +15 -41
  3. package/dist/access/controllers/business.app.integration.controller.js.map +1 -1
  4. package/dist/access/controllers/common.webhook.controller.d.ts +6 -2
  5. package/dist/access/controllers/common.webhook.controller.js +27 -4
  6. package/dist/access/controllers/common.webhook.controller.js.map +1 -1
  7. package/dist/access/entities/business.app.integration.credential.entity.js +1 -1
  8. package/dist/access/entities/business.app.integration.credential.entity.js.map +1 -1
  9. package/dist/access/es6.classes.d.ts +7 -4
  10. package/dist/access/es6.classes.js +7 -1
  11. package/dist/access/es6.classes.js.map +1 -1
  12. package/dist/access/libraries/index.d.ts +2 -0
  13. package/dist/access/libraries/index.js +2 -0
  14. package/dist/access/libraries/index.js.map +1 -1
  15. package/dist/access/libraries/process.app.integration.d.ts +17 -0
  16. package/dist/access/libraries/process.app.integration.js +62 -0
  17. package/dist/access/libraries/process.app.integration.js.map +1 -0
  18. package/dist/access/libraries/process.notification.js +1 -1
  19. package/dist/access/libraries/process.notification.js.map +1 -1
  20. package/dist/access/libraries/process.slack.integration.d.ts +7 -5
  21. package/dist/access/libraries/process.slack.integration.js +9 -12
  22. package/dist/access/libraries/process.slack.integration.js.map +1 -1
  23. package/dist/access/libraries/process.zoho.integration.d.ts +19 -0
  24. package/dist/access/libraries/process.zoho.integration.js +87 -0
  25. package/dist/access/libraries/process.zoho.integration.js.map +1 -0
  26. package/dist/access/services/access.business.service.d.ts +4 -2
  27. package/dist/access/services/access.business.service.js +14 -2
  28. package/dist/access/services/access.business.service.js.map +1 -1
  29. package/dist/access/services/app.integration.service.d.ts +9 -0
  30. package/dist/access/services/app.integration.service.js +63 -0
  31. package/dist/access/services/app.integration.service.js.map +1 -0
  32. package/dist/access/services/index.d.ts +1 -0
  33. package/dist/access/services/index.js +1 -0
  34. package/dist/access/services/index.js.map +1 -1
  35. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { PropertyService, SqlService } from '@servicelabsco/nestjs-utility-services';
2
- import { AddBusinessAppIntegrationDto } from '../dtos/add.business.app.integration.dto';
2
+ import { Response } from 'express';
3
3
  import { BusinessParamDto } from '../dtos/business.param.dto';
4
4
  import { DbFindDto } from '../dtos/db.find.dto';
5
5
  import { AppIntegrationEntity } from '../entities/app.integration.entity';
@@ -13,11 +13,7 @@ export declare class BusinessAppIntegrationController {
13
13
  search(): Promise<BusinessAppIntegrationEntity[]>;
14
14
  find(body: DbFindDto): Promise<any>;
15
15
  integrations(): Promise<AppIntegrationEntity[]>;
16
+ integrateSlack(params: BusinessParamDto, res: Response): Promise<void | BusinessAppIntegrationEntity>;
16
17
  show(params: BusinessParamDto): Promise<BusinessAppIntegrationEntity>;
17
- initializeIntegration(body: AddBusinessAppIntegrationDto): Promise<BusinessAppIntegrationEntity>;
18
18
  revokeIntegration(params: BusinessParamDto): Promise<BusinessAppIntegrationEntity>;
19
- integrateSlack(): Promise<{
20
- client_id: string;
21
- scope: string;
22
- }>;
23
19
  }
@@ -15,14 +15,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.BusinessAppIntegrationController = void 0;
16
16
  const common_1 = require("@nestjs/common");
17
17
  const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
18
- const integration_type_constant_1 = require("../../config/integration.type.constant");
19
- const add_business_app_integration_dto_1 = require("../dtos/add.business.app.integration.dto");
20
18
  const business_param_dto_1 = require("../dtos/business.param.dto");
21
19
  const db_find_dto_1 = require("../dtos/db.find.dto");
22
20
  const app_integration_entity_1 = require("../entities/app.integration.entity");
23
21
  const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
22
+ const process_app_integration_1 = require("../libraries/process.app.integration");
24
23
  const process_db_find_1 = require("../libraries/process.db.find");
25
- const process_whatsapp_integration_1 = require("../libraries/process.whatsapp.integration");
26
24
  const access_business_service_1 = require("../services/access.business.service");
27
25
  let BusinessAppIntegrationController = class BusinessAppIntegrationController {
28
26
  constructor(accessBusinessService, sqlService, propertyService) {
@@ -52,21 +50,15 @@ let BusinessAppIntegrationController = class BusinessAppIntegrationController {
52
50
  await this.accessBusinessService.validateAccess();
53
51
  return app_integration_entity_1.AppIntegrationEntity.find({ where: { active: true } });
54
52
  }
55
- async show(params) {
53
+ async integrateSlack(params, res) {
56
54
  const business = await this.accessBusinessService.validateAccess();
57
- return business_app_integration_entity_1.BusinessAppIntegrationEntity.findOne({ where: { id: params.id, business_id: business.id } });
55
+ if (!business)
56
+ return;
57
+ return new process_app_integration_1.ProcessAppIntegration(business, this.propertyService, res).process(params.id);
58
58
  }
59
- async initializeIntegration(body) {
59
+ async show(params) {
60
60
  const business = await this.accessBusinessService.validateAccess();
61
- const integration = await app_integration_entity_1.AppIntegrationEntity.findOne({ where: { id: body.integration_id } });
62
- if (!integration)
63
- throw new nestjs_utility_services_1.OperationException('There is no any integration');
64
- switch (integration.integration_identifier) {
65
- case integration_type_constant_1.IntegrationIdentifierConstants.whatsapp:
66
- return new process_whatsapp_integration_1.ProcessWhatsappIntegration(business).handle(integration.id);
67
- default:
68
- break;
69
- }
61
+ return business_app_integration_entity_1.BusinessAppIntegrationEntity.findOne({ where: { id: params.id, business_id: business.id } });
70
62
  }
71
63
  async revokeIntegration(params) {
72
64
  const business = await this.accessBusinessService.validateAccess();
@@ -76,19 +68,6 @@ let BusinessAppIntegrationController = class BusinessAppIntegrationController {
76
68
  bz_integration.active = false;
77
69
  return bz_integration.save();
78
70
  }
79
- async integrateSlack() {
80
- const business = await this.accessBusinessService.validateAccess();
81
- if (!business)
82
- return;
83
- const clientId = await this.propertyService.get('slack.client.id');
84
- const scope = await this.propertyService.get('slack.access.scope');
85
- if (!clientId)
86
- throw new nestjs_utility_services_1.OperationException('No Client Id');
87
- return {
88
- client_id: clientId,
89
- scope: scope,
90
- };
91
- }
92
71
  };
93
72
  exports.BusinessAppIntegrationController = BusinessAppIntegrationController;
94
73
  __decorate([
@@ -111,19 +90,20 @@ __decorate([
111
90
  __metadata("design:returntype", Promise)
112
91
  ], BusinessAppIntegrationController.prototype, "integrations", null);
113
92
  __decorate([
114
- (0, common_1.Get)(':id'),
93
+ (0, common_1.Post)(':id/integrate'),
115
94
  __param(0, (0, common_1.Param)()),
95
+ __param(1, (0, common_1.Res)()),
116
96
  __metadata("design:type", Function),
117
- __metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
97
+ __metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto, Object]),
118
98
  __metadata("design:returntype", Promise)
119
- ], BusinessAppIntegrationController.prototype, "show", null);
99
+ ], BusinessAppIntegrationController.prototype, "integrateSlack", null);
120
100
  __decorate([
121
- (0, common_1.Post)(),
122
- __param(0, (0, common_1.Body)()),
101
+ (0, common_1.Get)(':id/detail'),
102
+ __param(0, (0, common_1.Param)()),
123
103
  __metadata("design:type", Function),
124
- __metadata("design:paramtypes", [add_business_app_integration_dto_1.AddBusinessAppIntegrationDto]),
104
+ __metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
125
105
  __metadata("design:returntype", Promise)
126
- ], BusinessAppIntegrationController.prototype, "initializeIntegration", null);
106
+ ], BusinessAppIntegrationController.prototype, "show", null);
127
107
  __decorate([
128
108
  (0, common_1.Post)(':id/revoke'),
129
109
  __param(0, (0, common_1.Param)()),
@@ -131,12 +111,6 @@ __decorate([
131
111
  __metadata("design:paramtypes", [business_param_dto_1.BusinessParamDto]),
132
112
  __metadata("design:returntype", Promise)
133
113
  ], BusinessAppIntegrationController.prototype, "revokeIntegration", null);
134
- __decorate([
135
- (0, common_1.Get)('slack-id'),
136
- __metadata("design:type", Function),
137
- __metadata("design:paramtypes", []),
138
- __metadata("design:returntype", Promise)
139
- ], BusinessAppIntegrationController.prototype, "integrateSlack", null);
140
114
  exports.BusinessAppIntegrationController = BusinessAppIntegrationController = __decorate([
141
115
  (0, common_1.Controller)('api/b/integration'),
142
116
  __metadata("design:paramtypes", [access_business_service_1.AccessBusinessService,
@@ -1 +1 @@
1
- {"version":3,"file":"business.app.integration.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/business.app.integration.controller.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"business.app.integration.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/business.app.integration.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAAyE;AACzE,oFAAyG;AAEzG,mEAA8D;AAC9D,qDAAgD;AAEhD,+EAA0E;AAC1E,iGAA2F;AAC3F,kFAA6E;AAC7E,kEAA6D;AAC7D,iFAA4E;AAQrE,IAAM,gCAAgC,GAAtC,MAAM,gCAAgC;IACzC,YACqB,qBAA4C,EAC5C,UAAsB,EACtB,eAAgC;QAFhC,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,eAAU,GAAV,UAAU,CAAY;QACtB,oBAAe,GAAf,eAAe,CAAiB;IAClD,CAAC;IAGE,AAAN,KAAK,CAAC,MAAM;QACR,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,OAAO,8DAA4B,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;IAC9G,CAAC;IAGK,AAAN,KAAK,CAAC,IAAI,CAAS,IAAe;QAC9B,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,MAAM,MAAM,GAAqB;YAC7B,gBAAgB,EAAE,4CAA4C,QAAQ,CAAC,EAAE,EAAE;YAC3E,SAAS,EAAE,mFAAmF;YAC9F,OAAO,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,6BAA6B,CAAC;YACtE,aAAa,EAAE,MAAM;YACrB,iBAAiB,EAAE,CAAC,QAAQ,CAAC;YAC7B,KAAK,EAAE,QAAQ;YACf,iBAAiB,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC;YAC3C,GAAG,IAAI;SACV,CAAC;QAEF,OAAO,IAAI,+BAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAC9D,CAAC;IAGK,AAAN,KAAK,CAAC,YAAY;QACd,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAClD,OAAO,6CAAoB,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAGK,AAAN,KAAK,CAAC,cAAc,CAAU,MAAwB,EAAS,GAAa;QACxE,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QACnE,IAAI,CAAC,QAAQ;YAAE,OAAO;QAEtB,OAAO,IAAI,+CAAqB,CAAC,QAAQ,EAAE,IAAI,CAAC,eAAe,EAAE,GAAG,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC7F,CAAC;IAGK,AAAN,KAAK,CAAC,IAAI,CAAU,MAAwB;QACxC,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,OAAO,8DAA4B,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;IACxG,CAAC;IAGK,AAAN,KAAK,CAAC,iBAAiB,CAAU,MAAwB;QACrD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,cAAc,EAAE,CAAC;QAEnE,MAAM,cAAc,GAAG,MAAM,8DAA4B,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QAC1H,IAAI,CAAC,cAAc;YAAE,MAAM,IAAI,4CAAkB,CAAC,6BAA6B,CAAC,CAAC;QAEjF,cAAc,CAAC,MAAM,GAAG,KAAK,CAAC;QAE9B,OAAO,cAAc,CAAC,IAAI,EAAE,CAAC;IACjC,CAAC;CACJ,CAAA;AA/DY,4EAAgC;AAQnC;IADL,IAAA,aAAI,EAAC,QAAQ,CAAC;;;;8DAId;AAGK;IADL,IAAA,aAAI,EAAC,MAAM,CAAC;IACD,WAAA,IAAA,aAAI,GAAE,CAAA;;qCAAO,uBAAS;;4DAejC;AAGK;IADL,IAAA,aAAI,EAAC,cAAc,CAAC;;;;oEAIpB;AAGK;IADL,IAAA,aAAI,EAAC,eAAe,CAAC;IACA,WAAA,IAAA,cAAK,GAAE,CAAA;IAA4B,WAAA,IAAA,YAAG,GAAE,CAAA;;qCAAxB,qCAAgB;;sEAKrD;AAGK;IADL,IAAA,YAAG,EAAC,YAAY,CAAC;IACN,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;4DAI3C;AAGK;IADL,IAAA,aAAI,EAAC,YAAY,CAAC;IACM,WAAA,IAAA,cAAK,GAAE,CAAA;;qCAAS,qCAAgB;;yEASxD;2CA9DQ,gCAAgC;IAD5C,IAAA,mBAAU,EAAC,mBAAmB,CAAC;qCAGgB,+CAAqB;QAChC,oCAAU;QACL,yCAAe;GAJ5C,gCAAgC,CA+D5C"}
@@ -1,11 +1,15 @@
1
- import { PropertyService } from '@servicelabsco/nestjs-utility-services';
1
+ import { PropertyService, RemoteRequestService } from '@servicelabsco/nestjs-utility-services';
2
2
  import { Response } from 'express';
3
3
  import { PdfDocumentService } from '../../accessUtility/services/pdf.document.service';
4
+ import { AccessBusinessService } from '../services/access.business.service';
4
5
  export declare class CommonWebhookController {
5
6
  private readonly propertyService;
6
7
  private readonly pdfDocumentService;
7
- constructor(propertyService: PropertyService, pdfDocumentService: PdfDocumentService);
8
+ private readonly accessBusinessService;
9
+ private readonly remoteRequestService;
10
+ constructor(propertyService: PropertyService, pdfDocumentService: PdfDocumentService, accessBusinessService: AccessBusinessService, remoteRequestService: RemoteRequestService);
8
11
  slackIntegration(queries: any, res: Response): Promise<void>;
12
+ zohoIntegration(queries: any, res: Response): Promise<void>;
9
13
  htmlToPdf(body: any): Promise<{
10
14
  success: boolean;
11
15
  }>;
@@ -17,10 +17,14 @@ const common_1 = require("@nestjs/common");
17
17
  const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
18
18
  const pdf_document_service_1 = require("../../accessUtility/services/pdf.document.service");
19
19
  const process_slack_integration_1 = require("../libraries/process.slack.integration");
20
+ const access_business_service_1 = require("../services/access.business.service");
21
+ const process_zoho_integration_1 = require("../libraries/process.zoho.integration");
20
22
  let CommonWebhookController = class CommonWebhookController {
21
- constructor(propertyService, pdfDocumentService) {
23
+ constructor(propertyService, pdfDocumentService, accessBusinessService, remoteRequestService) {
22
24
  this.propertyService = propertyService;
23
25
  this.pdfDocumentService = pdfDocumentService;
26
+ this.accessBusinessService = accessBusinessService;
27
+ this.remoteRequestService = remoteRequestService;
24
28
  }
25
29
  async slackIntegration(queries, res) {
26
30
  if (!queries)
@@ -28,7 +32,15 @@ let CommonWebhookController = class CommonWebhookController {
28
32
  const { state, code } = queries;
29
33
  if (!code || !state)
30
34
  throw new nestjs_utility_services_1.OperationException('Invalid Request');
31
- return new process_slack_integration_1.ProcessSlackIntegration(this.propertyService).handle(code, state, res);
35
+ return new process_slack_integration_1.ProcessSlackIntegration(this.propertyService, this.accessBusinessService).handle(code, state, res);
36
+ }
37
+ async zohoIntegration(queries, res) {
38
+ if (!queries)
39
+ return;
40
+ const { state, code } = queries;
41
+ if (!code || !state)
42
+ throw new nestjs_utility_services_1.OperationException('Invalid Request');
43
+ return new process_zoho_integration_1.ProcessZohoIntegration(this.propertyService, this.accessBusinessService, this.remoteRequestService).handle(code, state, res);
32
44
  }
33
45
  async htmlToPdf(body) {
34
46
  await this.pdfDocumentService.uploadToTheSystem(body);
@@ -47,6 +59,15 @@ __decorate([
47
59
  __metadata("design:paramtypes", [Object, Object]),
48
60
  __metadata("design:returntype", Promise)
49
61
  ], CommonWebhookController.prototype, "slackIntegration", null);
62
+ __decorate([
63
+ (0, common_1.Get)('integrate-zoho'),
64
+ (0, common_1.HttpCode)(common_1.HttpStatus.OK),
65
+ __param(0, (0, common_1.Query)()),
66
+ __param(1, (0, common_1.Res)()),
67
+ __metadata("design:type", Function),
68
+ __metadata("design:paramtypes", [Object, Object]),
69
+ __metadata("design:returntype", Promise)
70
+ ], CommonWebhookController.prototype, "zohoIntegration", null);
50
71
  __decorate([
51
72
  (0, common_1.Post)('html-to-pdf'),
52
73
  __param(0, (0, common_1.Body)()),
@@ -55,8 +76,10 @@ __decorate([
55
76
  __metadata("design:returntype", Promise)
56
77
  ], CommonWebhookController.prototype, "htmlToPdf", null);
57
78
  exports.CommonWebhookController = CommonWebhookController = __decorate([
58
- (0, common_1.Controller)('api/b/webhook'),
79
+ (0, common_1.Controller)('webhook'),
59
80
  __metadata("design:paramtypes", [nestjs_utility_services_1.PropertyService,
60
- pdf_document_service_1.PdfDocumentService])
81
+ pdf_document_service_1.PdfDocumentService,
82
+ access_business_service_1.AccessBusinessService,
83
+ nestjs_utility_services_1.RemoteRequestService])
61
84
  ], CommonWebhookController);
62
85
  //# sourceMappingURL=common.webhook.controller.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"common.webhook.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/common.webhook.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA+F;AAC/F,oFAA6F;AAE7F,4FAAuF;AACvF,sFAAiF;AAQ1E,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAChC,YACqB,eAAgC,EAChC,kBAAsC;QADtC,oBAAe,GAAf,eAAe,CAAiB;QAChC,uBAAkB,GAAlB,kBAAkB,CAAoB;IACxD,CAAC;IAIE,AAAN,KAAK,CAAC,gBAAgB,CAAU,OAAY,EAAS,GAAa;QAC9D,IAAI,CAAC,OAAO;YAAE,OAAO;QACrB,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;QAEhC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK;YAAE,MAAM,IAAI,4CAAkB,CAAC,iBAAiB,CAAC,CAAC;QACrE,OAAO,IAAI,mDAAuB,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IACtF,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAS,IAAS;QAC7B,MAAM,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEtD,OAAO;YACH,OAAO,EAAE,IAAI;SAChB,CAAC;IACN,CAAC;CACJ,CAAA;AAxBY,0DAAuB;AAQ1B;IAFL,IAAA,YAAG,EAAC,iBAAiB,CAAC;IACtB,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IACA,WAAA,IAAA,cAAK,GAAE,CAAA;IAAgB,WAAA,IAAA,YAAG,GAAE,CAAA;;;;+DAMnD;AAGK;IADL,IAAA,aAAI,EAAC,aAAa,CAAC;IACH,WAAA,IAAA,aAAI,GAAE,CAAA;;;;wDAMtB;kCAvBQ,uBAAuB;IADnC,IAAA,mBAAU,EAAC,eAAe,CAAC;qCAGc,yCAAe;QACZ,yCAAkB;GAHlD,uBAAuB,CAwBnC"}
1
+ {"version":3,"file":"common.webhook.controller.js","sourceRoot":"","sources":["../../../src/access/controllers/common.webhook.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA+F;AAC/F,oFAAmH;AAEnH,4FAAuF;AACvF,sFAAiF;AACjF,iFAA4E;AAC5E,oFAA+E;AAQxE,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAChC,YACqB,eAAgC,EAChC,kBAAsC,EACtC,qBAA4C,EAC5C,oBAA0C;QAH1C,oBAAe,GAAf,eAAe,CAAiB;QAChC,uBAAkB,GAAlB,kBAAkB,CAAoB;QACtC,0BAAqB,GAArB,qBAAqB,CAAuB;QAC5C,yBAAoB,GAApB,oBAAoB,CAAsB;IAC5D,CAAC;IAIE,AAAN,KAAK,CAAC,gBAAgB,CAAU,OAAY,EAAS,GAAa;QAC9D,IAAI,CAAC,OAAO;YAAE,OAAO;QACrB,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;QAEhC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK;YAAE,MAAM,IAAI,4CAAkB,CAAC,iBAAiB,CAAC,CAAC;QACrE,OAAO,IAAI,mDAAuB,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IAClH,CAAC;IAIK,AAAN,KAAK,CAAC,eAAe,CAAU,OAAY,EAAS,GAAa;QAC7D,IAAI,CAAC,OAAO;YAAE,OAAO;QACrB,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;QAEhC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK;YAAE,MAAM,IAAI,4CAAkB,CAAC,iBAAiB,CAAC,CAAC;QACrE,OAAO,IAAI,iDAAsB,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IAC5I,CAAC;IAGK,AAAN,KAAK,CAAC,SAAS,CAAS,IAAS;QAC7B,MAAM,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEtD,OAAO;YACH,OAAO,EAAE,IAAI;SAChB,CAAC;IACN,CAAC;CACJ,CAAA;AApCY,0DAAuB;AAU1B;IAFL,IAAA,YAAG,EAAC,iBAAiB,CAAC;IACtB,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IACA,WAAA,IAAA,cAAK,GAAE,CAAA;IAAgB,WAAA,IAAA,YAAG,GAAE,CAAA;;;;+DAMnD;AAIK;IAFL,IAAA,YAAG,EAAC,gBAAgB,CAAC;IACrB,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IACD,WAAA,IAAA,cAAK,GAAE,CAAA;IAAgB,WAAA,IAAA,YAAG,GAAE,CAAA;;;;8DAMlD;AAGK;IADL,IAAA,aAAI,EAAC,aAAa,CAAC;IACH,WAAA,IAAA,aAAI,GAAE,CAAA;;;;wDAMtB;kCAnCQ,uBAAuB;IADnC,IAAA,mBAAU,EAAC,SAAS,CAAC;qCAGoB,yCAAe;QACZ,yCAAkB;QACf,+CAAqB;QACtB,8CAAoB;GALtD,uBAAuB,CAoCnC"}
@@ -10,8 +10,8 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.BusinessAppIntegrationCredentialEntity = void 0;
13
- const typeorm_1 = require("typeorm");
14
13
  const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
14
+ const typeorm_1 = require("typeorm");
15
15
  const business_app_integration_credential_attributes_dto_1 = require("../dtos/business.app.integration.credential.attributes.dto");
16
16
  const business_app_integration_entity_1 = require("./business.app.integration.entity");
17
17
  let BusinessAppIntegrationCredentialEntity = class BusinessAppIntegrationCredentialEntity extends nestjs_utility_services_1.CommonEntity {
@@ -1 +1 @@
1
- {"version":3,"file":"business.app.integration.credential.entity.js","sourceRoot":"","sources":["../../../src/access/entities/business.app.integration.credential.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,oFAAsE;AACtE,mIAA2H;AAC3H,uFAAiF;AAS1E,IAAM,sCAAsC,GAA5C,MAAM,sCAAuC,SAAQ,sCAAY;CAsBvE,CAAA;AAtBY,wFAAsC;AAE/C;IADC,IAAA,gBAAM,GAAE;;uFACuB;AAGhC;IADC,IAAA,gBAAM,GAAE;;6EACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;4EACY;AAGrB;IADC,IAAA,gBAAM,GAAE;8BACE,IAAI;yEAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,kGAA6C;0EAAC;AAK1D;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8DAA4B,CAAC;IAC7C,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;8BAC1B,8DAA4B;oFAAC;iDAnB1C,sCAAsC;IADlD,IAAA,gBAAM,EAAC,gCAAgC,CAAC;GAC5B,sCAAsC,CAsBlD"}
1
+ {"version":3,"file":"business.app.integration.credential.entity.js","sourceRoot":"","sources":["../../../src/access/entities/business.app.integration.credential.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,oFAAsE;AACtE,qCAAgE;AAChE,mIAA2H;AAC3H,uFAAiF;AAS1E,IAAM,sCAAsC,GAA5C,MAAM,sCAAuC,SAAQ,sCAAY;CAoBvE,CAAA;AApBY,wFAAsC;AAE/C;IADC,IAAA,gBAAM,GAAE;;uFACuB;AAGhC;IADC,IAAA,gBAAM,GAAE;;6EACa;AAGtB;IADC,IAAA,gBAAM,GAAE;;4EACY;AAGrB;IADC,IAAA,gBAAM,GAAE;8BACE,IAAI;yEAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;8BACH,kGAA6C;0EAAC;AAK1D;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8DAA4B,CAAC;IAC7C,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;8BAC1B,8DAA4B;oFAAC;iDAnB1C,sCAAsC;IADlD,IAAA,gBAAM,EAAC,gCAAgC,CAAC;GAC5B,sCAAsC,CAoBlD"}
@@ -183,6 +183,7 @@ import { CommonTagController } from './libraries/common.tag.controller';
183
183
  import { ConversationController } from './libraries/conversation.controller';
184
184
  import { ProcessApiAccountData } from './libraries/process.api.account.data';
185
185
  import { ProcessApiAccountList } from './libraries/process.api.account.list';
186
+ import { ProcessAppIntegration } from './libraries/process.app.integration';
186
187
  import { ProcessApplicationMenu } from './libraries/process.application.menu';
187
188
  import { ProcessBulkUploadItemList } from './libraries/process.bulk.upload.item.list';
188
189
  import { ProcessBulkUploadList } from './libraries/process.bulk.upload.list';
@@ -199,8 +200,8 @@ import { ProcessCreateDashboardComponent } from './libraries/process.create.dash
199
200
  import { ProcessCustomFieldCreation } from './libraries/process.custom.field.creation';
200
201
  import { ProcessCustomFieldList } from './libraries/process.custom.field.list';
201
202
  import { ProcessDashboardComponent } from './libraries/process.dashboard.component';
202
- import { ProcessDashboardReport } from './libraries/process.dashboard.report';
203
203
  import { ProcessDashboardReportData } from './libraries/process.dashboard.report.data';
204
+ import { ProcessDashboardReport } from './libraries/process.dashboard.report';
204
205
  import { ProcessDateFilter } from './libraries/process.date.filter';
205
206
  import { ProcessDbFind } from './libraries/process.db.find';
206
207
  import { ProcessDownloadLogList } from './libraries/process.download.log.list';
@@ -222,6 +223,7 @@ import { ProcessTestList } from './libraries/process.test.list';
222
223
  import { ProcessUserGroupCreation } from './libraries/process.user.group.creation';
223
224
  import { ProcessUserNotificationList } from './libraries/process.user.notification.list';
224
225
  import { ProcessWhatsappIntegration } from './libraries/process.whatsapp.integration';
226
+ import { ProcessZohoIntegration } from './libraries/process.zoho.integration';
225
227
  import { SendEmailNotification } from './libraries/send.email.notification';
226
228
  import { SendFcmNotification } from './libraries/send.fcm.notification';
227
229
  import { SendGchatMessageNotification } from './libraries/send.gchat.message.notification';
@@ -237,6 +239,7 @@ import { ExternalAccessMiddleware } from './middlewares/external.access.middlewa
237
239
  import { AccessBusinessService } from './services/access.business.service';
238
240
  import { AccessReportService } from './services/access.report.service';
239
241
  import { ApiAccountService } from './services/api.account.service';
242
+ import { AppIntegrationService } from './services/app.integration.service';
240
243
  import { AuditLogService } from './services/audit.log.service';
241
244
  import { BusinessPreferenceService } from './services/business.preference.service';
242
245
  import { BusinessUserRoleService } from './services/business.user.role.service';
@@ -327,13 +330,13 @@ import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subs
327
330
  declare const es6Classes: {
328
331
  commands: (typeof WebhookPollCommand)[];
329
332
  controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | 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)[];
330
- dtos: (typeof FcmTemplateAttributesDto | 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 AddBusinessAppIntegrationDto | 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 BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof SlackMessageDataDto)[];
333
+ dtos: (typeof FcmTemplateAttributesDto | 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 AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof SlackMessageDataDto)[];
331
334
  entities: (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 BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | 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)[];
332
335
  enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof CustomColumnTypeEnum | typeof PlatformTypeEnum)[];
333
336
  jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | 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)[];
334
- 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 ProcessWhatsappIntegration | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessSlackIntegration | 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 ProcessSlackMessage | typeof ProcessTestList)[];
337
+ 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 ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessChoiceListData | typeof ProcessChoiceTypeList | typeof ProcessChoiceTypeData | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | 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 ProcessSlackMessage | typeof ProcessTestList)[];
335
338
  middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
336
- 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 GptService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
339
+ 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 AppIntegrationService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof GptService | typeof LoadEntityService | typeof UserNotificationService | typeof UserPreferenceService)[];
337
340
  subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | 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)[];
338
341
  };
339
342
  export default es6Classes;
@@ -304,6 +304,7 @@ const common_tag_controller_1 = require("./libraries/common.tag.controller");
304
304
  const conversation_controller_1 = require("./libraries/conversation.controller");
305
305
  const process_api_account_data_1 = require("./libraries/process.api.account.data");
306
306
  const process_api_account_list_1 = require("./libraries/process.api.account.list");
307
+ const process_app_integration_1 = require("./libraries/process.app.integration");
307
308
  const process_application_menu_1 = require("./libraries/process.application.menu");
308
309
  const process_bulk_upload_item_list_1 = require("./libraries/process.bulk.upload.item.list");
309
310
  const process_bulk_upload_list_1 = require("./libraries/process.bulk.upload.list");
@@ -320,8 +321,8 @@ const process_create_dashboard_component_1 = require("./libraries/process.create
320
321
  const process_custom_field_creation_1 = require("./libraries/process.custom.field.creation");
321
322
  const process_custom_field_list_1 = require("./libraries/process.custom.field.list");
322
323
  const process_dashboard_component_1 = require("./libraries/process.dashboard.component");
323
- const process_dashboard_report_1 = require("./libraries/process.dashboard.report");
324
324
  const process_dashboard_report_data_1 = require("./libraries/process.dashboard.report.data");
325
+ const process_dashboard_report_1 = require("./libraries/process.dashboard.report");
325
326
  const process_date_filter_1 = require("./libraries/process.date.filter");
326
327
  const process_db_find_1 = require("./libraries/process.db.find");
327
328
  const process_download_log_list_1 = require("./libraries/process.download.log.list");
@@ -343,6 +344,7 @@ const process_test_list_1 = require("./libraries/process.test.list");
343
344
  const process_user_group_creation_1 = require("./libraries/process.user.group.creation");
344
345
  const process_user_notification_list_1 = require("./libraries/process.user.notification.list");
345
346
  const process_whatsapp_integration_1 = require("./libraries/process.whatsapp.integration");
347
+ const process_zoho_integration_1 = require("./libraries/process.zoho.integration");
346
348
  const send_email_notification_1 = require("./libraries/send.email.notification");
347
349
  const send_fcm_notification_1 = require("./libraries/send.fcm.notification");
348
350
  const send_gchat_message_notification_1 = require("./libraries/send.gchat.message.notification");
@@ -358,6 +360,7 @@ const external_access_middleware_1 = require("./middlewares/external.access.midd
358
360
  const access_business_service_1 = require("./services/access.business.service");
359
361
  const access_report_service_1 = require("./services/access.report.service");
360
362
  const api_account_service_1 = require("./services/api.account.service");
363
+ const app_integration_service_1 = require("./services/app.integration.service");
361
364
  const audit_log_service_1 = require("./services/audit.log.service");
362
365
  const business_preference_service_1 = require("./services/business.preference.service");
363
366
  const business_user_role_service_1 = require("./services/business.user.role.service");
@@ -756,6 +759,7 @@ const es6Classes = {
756
759
  conversation_controller_1.ConversationController,
757
760
  process_api_account_data_1.ProcessApiAccountData,
758
761
  process_api_account_list_1.ProcessApiAccountList,
762
+ process_app_integration_1.ProcessAppIntegration,
759
763
  process_application_menu_1.ProcessApplicationMenu,
760
764
  process_bulk_upload_item_list_1.ProcessBulkUploadItemList,
761
765
  process_bulk_upload_list_1.ProcessBulkUploadList,
@@ -795,6 +799,7 @@ const es6Classes = {
795
799
  process_user_group_creation_1.ProcessUserGroupCreation,
796
800
  process_user_notification_list_1.ProcessUserNotificationList,
797
801
  process_whatsapp_integration_1.ProcessWhatsappIntegration,
802
+ process_zoho_integration_1.ProcessZohoIntegration,
798
803
  send_email_notification_1.SendEmailNotification,
799
804
  send_fcm_notification_1.SendFcmNotification,
800
805
  send_gchat_message_notification_1.SendGchatMessageNotification,
@@ -811,6 +816,7 @@ const es6Classes = {
811
816
  access_business_service_1.AccessBusinessService,
812
817
  access_report_service_1.AccessReportService,
813
818
  api_account_service_1.ApiAccountService,
819
+ app_integration_service_1.AppIntegrationService,
814
820
  audit_log_service_1.AuditLogService,
815
821
  business_preference_service_1.BusinessPreferenceService,
816
822
  business_user_role_service_1.BusinessUserRoleService,
@@ -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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"}
@@ -2,6 +2,7 @@ export * from './common.tag.controller';
2
2
  export * from './conversation.controller';
3
3
  export * from './process.api.account.data';
4
4
  export * from './process.api.account.list';
5
+ export * from './process.app.integration';
5
6
  export * from './process.application.menu';
6
7
  export * from './process.bulk.upload.item.list';
7
8
  export * from './process.bulk.upload.list';
@@ -41,6 +42,7 @@ export * from './process.test.list';
41
42
  export * from './process.user.group.creation';
42
43
  export * from './process.user.notification.list';
43
44
  export * from './process.whatsapp.integration';
45
+ export * from './process.zoho.integration';
44
46
  export * from './send.email.notification';
45
47
  export * from './send.fcm.notification';
46
48
  export * from './send.gchat.message.notification';
@@ -18,6 +18,7 @@ __exportStar(require("./common.tag.controller"), exports);
18
18
  __exportStar(require("./conversation.controller"), exports);
19
19
  __exportStar(require("./process.api.account.data"), exports);
20
20
  __exportStar(require("./process.api.account.list"), exports);
21
+ __exportStar(require("./process.app.integration"), exports);
21
22
  __exportStar(require("./process.application.menu"), exports);
22
23
  __exportStar(require("./process.bulk.upload.item.list"), exports);
23
24
  __exportStar(require("./process.bulk.upload.list"), exports);
@@ -57,6 +58,7 @@ __exportStar(require("./process.test.list"), exports);
57
58
  __exportStar(require("./process.user.group.creation"), exports);
58
59
  __exportStar(require("./process.user.notification.list"), exports);
59
60
  __exportStar(require("./process.whatsapp.integration"), exports);
61
+ __exportStar(require("./process.zoho.integration"), exports);
60
62
  __exportStar(require("./send.email.notification"), exports);
61
63
  __exportStar(require("./send.fcm.notification"), exports);
62
64
  __exportStar(require("./send.gchat.message.notification"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,yEAAuD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,uEAAqD;AAAA,kDAAgC;AAAA,4DAA0C;AAAA,+DAA4C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,yEAAuD;AAAA,qEAAmD;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,yDAAuC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,uEAAqD;AAAA,kDAAgC;AAAA,4DAA0C;AAAA,+DAA4C"}
@@ -0,0 +1,17 @@
1
+ import { PropertyService, UserAccessDto } from '@servicelabsco/nestjs-utility-services';
2
+ import { Response } from 'express';
3
+ import { AccessBusinessEntity } from '../entities/access.business.entity';
4
+ import { AppIntegrationEntity } from '../entities/app.integration.entity';
5
+ import { BusinessAppIntegrationEntity } from '../entities/business.app.integration.entity';
6
+ export declare class ProcessAppIntegration {
7
+ protected readonly business: AccessBusinessEntity;
8
+ protected readonly propertyService: PropertyService;
9
+ protected readonly res: Response;
10
+ protected integration: AppIntegrationEntity;
11
+ protected user: UserAccessDto;
12
+ constructor(business: AccessBusinessEntity, propertyService: PropertyService, res: Response);
13
+ process(integrationId: number): Promise<void | BusinessAppIntegrationEntity>;
14
+ validate(id: number): Promise<void>;
15
+ initializeSlack(): Promise<void>;
16
+ initializeZoho(): Promise<void>;
17
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProcessAppIntegration = void 0;
4
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
5
+ const integration_type_constant_1 = require("../../config/integration.type.constant");
6
+ const app_integration_entity_1 = require("../entities/app.integration.entity");
7
+ const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
8
+ const process_whatsapp_integration_1 = require("./process.whatsapp.integration");
9
+ class ProcessAppIntegration {
10
+ constructor(business, propertyService, res) {
11
+ this.business = business;
12
+ this.propertyService = propertyService;
13
+ this.res = res;
14
+ }
15
+ async process(integrationId) {
16
+ await this.validate(integrationId);
17
+ switch (this.integration.integration_identifier) {
18
+ case integration_type_constant_1.IntegrationIdentifierConstants.slack:
19
+ return this.initializeSlack();
20
+ case integration_type_constant_1.IntegrationIdentifierConstants.zoho:
21
+ return this.initializeZoho();
22
+ case integration_type_constant_1.IntegrationIdentifierConstants.whatsapp:
23
+ return new process_whatsapp_integration_1.ProcessWhatsappIntegration(this.business).handle(this.integration.id);
24
+ default:
25
+ throw new nestjs_utility_services_1.OperationException('No integration found');
26
+ }
27
+ }
28
+ async validate(id) {
29
+ const integration = await app_integration_entity_1.AppIntegrationEntity.findOne({ where: { id, active: true } });
30
+ if (!integration)
31
+ throw new nestjs_utility_services_1.OperationException('No integration found');
32
+ const businessIntegration = await business_app_integration_entity_1.BusinessAppIntegrationEntity.findOne({
33
+ where: { integration_id: id, business_id: this.business.id, active: true },
34
+ });
35
+ if (businessIntegration)
36
+ throw new nestjs_utility_services_1.OperationException(`${integration.name} is already integrated on this business`);
37
+ this.integration = integration;
38
+ this.user = nestjs_utility_services_1.Auth.user();
39
+ }
40
+ async initializeSlack() {
41
+ const clientId = await this.propertyService.get('slack.client.id');
42
+ const scope = await this.propertyService.get('slack.access.scope');
43
+ const redirectUrl = `${process.env.SERVER_URL}/webhook/integrate-slack`;
44
+ const state = [this.business.id, this.user.id];
45
+ if (!clientId)
46
+ throw new nestjs_utility_services_1.OperationException('No Client Id');
47
+ const url = `https://slack.com/oauth/v2/authorize?scope=${scope}&client_id=${clientId}&redirect_uri=${redirectUrl}&state=${state}`;
48
+ return this.res.redirect(url);
49
+ }
50
+ async initializeZoho() {
51
+ const clientId = await this.propertyService.get('zoho.client.id');
52
+ const scope = await this.propertyService.get('zoho.access.scope');
53
+ const redirectUrl = `${process.env.SERVER_URL}/webhook/integrate-zoho`;
54
+ const state = [this.business.id, this.user.id];
55
+ if (!clientId)
56
+ throw new nestjs_utility_services_1.OperationException('No Client Id');
57
+ const url = `https://accounts.zoho.com/oauth/v2/auth?scope=${scope}&client_id=${clientId}&redirect_uri=${redirectUrl}&state=${state}&response_type=code`;
58
+ return this.res.redirect(url);
59
+ }
60
+ }
61
+ exports.ProcessAppIntegration = ProcessAppIntegration;
62
+ //# sourceMappingURL=process.app.integration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process.app.integration.js","sourceRoot":"","sources":["../../../src/access/libraries/process.app.integration.ts"],"names":[],"mappings":"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"}
@@ -12,7 +12,7 @@ class ProcessNotification {
12
12
  this.payload = payload;
13
13
  const notification = await notification_entity_1.NotificationEntity.findOne({
14
14
  where: { identifier: payload.identifier },
15
- relations: ['sms.template', 'emails.template', 'whatsapp.template', 'slack.template', 'gchat.template', 'inapp'],
15
+ relations: ['sms.template', 'emails.template', 'whatsapp.template', 'slack.template', 'gchat.template', 'inapp', 'fcm.template'],
16
16
  });
17
17
  if (!notification)
18
18
  throw new nestjs_utility_services_1.OperationException(`Notification of type ${payload.identifier} is not defined`);
@@ -1 +1 @@
1
- {"version":3,"file":"process.notification.js","sourceRoot":"","sources":["../../../src/access/libraries/process.notification.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"process.notification.js","sourceRoot":"","sources":["../../../src/access/libraries/process.notification.ts"],"names":[],"mappings":"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"}
@@ -1,18 +1,20 @@
1
- import { PropertyService } from '@servicelabsco/nestjs-utility-services';
2
- import { SlackIntegrationEntity } from '../entities/slack.integration.entity';
1
+ import { PropertyService, UserEntity } from '@servicelabsco/nestjs-utility-services';
2
+ import { Response } from 'express';
3
3
  import { AccessBusinessEntity } from '../entities/access.business.entity';
4
4
  import { BusinessAppIntegrationEntity } from '../entities/business.app.integration.entity';
5
- import { Response } from 'express';
5
+ import { SlackIntegrationEntity } from '../entities/slack.integration.entity';
6
+ import { AccessBusinessService } from '../services/access.business.service';
6
7
  export declare class ProcessSlackIntegration {
7
8
  private readonly propertyService;
9
+ private readonly accessBusinessService;
8
10
  protected business: AccessBusinessEntity;
11
+ protected user: UserEntity;
9
12
  protected res: Response;
10
- constructor(propertyService: PropertyService);
13
+ constructor(propertyService: PropertyService, accessBusinessService: AccessBusinessService);
11
14
  handle(code: string, state: any, res: Response): Promise<void>;
12
15
  handleRedirect(): Promise<void>;
13
16
  initialize(state: any): Promise<void>;
14
17
  setBusinessIntegration(integration_id: number): Promise<BusinessAppIntegrationEntity>;
15
18
  getAccessToken(code: string): Promise<any>;
16
19
  setSlackToken(token: string): Promise<SlackIntegrationEntity>;
17
- getFrontendUrl(business: any): Promise<string>;
18
20
  }
@@ -3,14 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ProcessSlackIntegration = void 0;
4
4
  const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
5
5
  const integration_type_constant_1 = require("../../config/integration.type.constant");
6
- const slack_integration_entity_1 = require("../entities/slack.integration.entity");
7
6
  const access_business_entity_1 = require("../entities/access.business.entity");
8
7
  const app_integration_entity_1 = require("../entities/app.integration.entity");
9
- const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
10
8
  const business_app_integration_credential_entity_1 = require("../entities/business.app.integration.credential.entity");
9
+ const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
10
+ const slack_integration_entity_1 = require("../entities/slack.integration.entity");
11
11
  class ProcessSlackIntegration {
12
- constructor(propertyService) {
12
+ constructor(propertyService, accessBusinessService) {
13
13
  this.propertyService = propertyService;
14
+ this.accessBusinessService = accessBusinessService;
14
15
  }
15
16
  async handle(code, state, res) {
16
17
  await this.initialize(state);
@@ -32,7 +33,7 @@ class ProcessSlackIntegration {
32
33
  return this.handleRedirect();
33
34
  }
34
35
  async handleRedirect() {
35
- const link = await this.getFrontendUrl(this.business);
36
+ const link = await this.accessBusinessService.getFrontendUrl(this.business.id);
36
37
  this.res.redirect(`${link}/e/f/integrations`);
37
38
  }
38
39
  async initialize(state) {
@@ -45,6 +46,7 @@ class ProcessSlackIntegration {
45
46
  const user = await nestjs_utility_services_1.UserEntity.findOne({ where: { id: +stateData[1] } });
46
47
  if (!user)
47
48
  throw new nestjs_utility_services_1.OperationException('No Any user there');
49
+ this.user = user;
48
50
  this.business = business;
49
51
  }
50
52
  async setBusinessIntegration(integration_id) {
@@ -59,8 +61,10 @@ class ProcessSlackIntegration {
59
61
  active: true,
60
62
  name: 'Slack',
61
63
  description: 'Slack has been integrated on this business',
64
+ created_by: this.user.id,
65
+ updated_by: this.user.id,
62
66
  });
63
- return await bzIntegration.save();
67
+ return bzIntegration.save();
64
68
  }
65
69
  async getAccessToken(code) {
66
70
  const apiUrl = `https://slack.com/api/oauth.v2.access`;
@@ -95,13 +99,6 @@ class ProcessSlackIntegration {
95
99
  slackIntegration.access_token = token;
96
100
  return slackIntegration.save();
97
101
  }
98
- async getFrontendUrl(business) {
99
- const url = business.attributes?.url;
100
- if (url)
101
- return url;
102
- const defaultUrl = `https://client.finnoto.in`;
103
- return this.propertyService.get(`business.default.frontend.url`, defaultUrl);
104
- }
105
102
  }
106
103
  exports.ProcessSlackIntegration = ProcessSlackIntegration;
107
104
  //# sourceMappingURL=process.slack.integration.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"process.slack.integration.js","sourceRoot":"","sources":["../../../src/access/libraries/process.slack.integration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"process.slack.integration.js","sourceRoot":"","sources":["../../../src/access/libraries/process.slack.integration.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ import { PropertyService, RemoteRequestService, UserEntity } from '@servicelabsco/nestjs-utility-services';
2
+ import { Response } from 'express';
3
+ import { AccessBusinessEntity } from '../entities/access.business.entity';
4
+ import { BusinessAppIntegrationEntity } from '../entities/business.app.integration.entity';
5
+ import { AccessBusinessService } from '../services/access.business.service';
6
+ export declare class ProcessZohoIntegration {
7
+ private readonly propertyService;
8
+ private readonly accessBusinessService;
9
+ private readonly remoteRequestService;
10
+ protected business: AccessBusinessEntity;
11
+ protected user: UserEntity;
12
+ protected res: Response;
13
+ constructor(propertyService: PropertyService, accessBusinessService: AccessBusinessService, remoteRequestService: RemoteRequestService);
14
+ handle(code: string, state: any, res: Response): Promise<void>;
15
+ handleRedirect(): Promise<void>;
16
+ initialize(state: any): Promise<void>;
17
+ setBusinessIntegration(integration_id: number): Promise<BusinessAppIntegrationEntity>;
18
+ getAccessToken(code: string): Promise<import("@servicelabsco/nestjs-utility-services").RemoteRawResponseDto>;
19
+ }
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProcessZohoIntegration = void 0;
4
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
5
+ const integration_type_constant_1 = require("../../config/integration.type.constant");
6
+ const access_business_entity_1 = require("../entities/access.business.entity");
7
+ const app_integration_entity_1 = require("../entities/app.integration.entity");
8
+ const business_app_integration_credential_entity_1 = require("../entities/business.app.integration.credential.entity");
9
+ const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
10
+ class ProcessZohoIntegration {
11
+ constructor(propertyService, accessBusinessService, remoteRequestService) {
12
+ this.propertyService = propertyService;
13
+ this.accessBusinessService = accessBusinessService;
14
+ this.remoteRequestService = remoteRequestService;
15
+ }
16
+ async handle(code, state, res) {
17
+ await this.initialize(state);
18
+ this.res = res;
19
+ const integration = await app_integration_entity_1.AppIntegrationEntity.findOne({ where: { integration_identifier: integration_type_constant_1.IntegrationIdentifierConstants.zoho } });
20
+ if (!integration)
21
+ throw new nestjs_utility_services_1.OperationException('No integration found');
22
+ const tokens = await this.getAccessToken(code);
23
+ if (!tokens)
24
+ throw new nestjs_utility_services_1.OperationException('Failed To get token');
25
+ const businessIntegration = await this.setBusinessIntegration(integration.id);
26
+ const payload = { business_integration_id: businessIntegration.id };
27
+ let setCredentials = await business_app_integration_credential_entity_1.BusinessAppIntegrationCredentialEntity.findOne({ where: payload });
28
+ if (!setCredentials)
29
+ setCredentials = business_app_integration_credential_entity_1.BusinessAppIntegrationCredentialEntity.create({ ...payload });
30
+ setCredentials.access_token = tokens?.data.access_token;
31
+ setCredentials.refresh_token = tokens?.data?.refresh_token;
32
+ setCredentials.expiry_at = tokens?.data?.expiry_at;
33
+ await setCredentials.save();
34
+ return this.handleRedirect();
35
+ }
36
+ async handleRedirect() {
37
+ const link = await this.accessBusinessService.getFrontendUrl(this.business.id);
38
+ this.res.redirect(`${link}/e/f/integrations`);
39
+ }
40
+ async initialize(state) {
41
+ const stateData = state?.split(',');
42
+ if (!stateData)
43
+ throw new nestjs_utility_services_1.OperationException('No State is defined');
44
+ const business = await access_business_entity_1.AccessBusinessEntity.findOne({ where: { id: +stateData[0] } });
45
+ if (!business)
46
+ throw new nestjs_utility_services_1.OperationException('No Any business there');
47
+ const user = await nestjs_utility_services_1.UserEntity.findOne({ where: { id: +stateData[1] } });
48
+ if (!user)
49
+ throw new nestjs_utility_services_1.OperationException('No Any user there');
50
+ this.user = user;
51
+ this.business = business;
52
+ }
53
+ async setBusinessIntegration(integration_id) {
54
+ let integration = await business_app_integration_entity_1.BusinessAppIntegrationEntity.findOne({ where: { business_id: this.business.id, integration_id } });
55
+ if (integration) {
56
+ integration.active = true;
57
+ return integration.save();
58
+ }
59
+ const bzIntegration = await business_app_integration_entity_1.BusinessAppIntegrationEntity.firstOrCreate({
60
+ business_id: this.business.id,
61
+ integration_id,
62
+ active: true,
63
+ name: 'Zoho',
64
+ description: 'Zoho has been integrated on this business',
65
+ created_by: this.user.id,
66
+ updated_by: this.user.id,
67
+ });
68
+ return bzIntegration.save();
69
+ }
70
+ async getAccessToken(code) {
71
+ const client_id = await this.propertyService.get('zoho.client.id');
72
+ const client_secret = await this.propertyService.get('zoho.client.secret');
73
+ const baseUrl = `https://accounts.zoho.com/oauth/v2/token?code=${code}`;
74
+ const redirectUrl = `${process.env.SERVER_URL}/webhook/integrate-zoho`;
75
+ const url = `${baseUrl}&client_id=${client_id}&client_secret=${client_secret}&grant_type=authorization_code&redirect_uri=${redirectUrl}`;
76
+ const opts = {
77
+ url,
78
+ method: 'POST',
79
+ headers: {
80
+ 'Content-Type': 'application/json',
81
+ },
82
+ };
83
+ return this.remoteRequestService.getRawResponse(opts);
84
+ }
85
+ }
86
+ exports.ProcessZohoIntegration = ProcessZohoIntegration;
87
+ //# sourceMappingURL=process.zoho.integration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process.zoho.integration.js","sourceRoot":"","sources":["../../../src/access/libraries/process.zoho.integration.ts"],"names":[],"mappings":"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"}
@@ -1,9 +1,11 @@
1
- import { AccessService } from '@servicelabsco/nestjs-utility-services';
1
+ import { AccessService, PropertyService } from '@servicelabsco/nestjs-utility-services';
2
2
  import { AccessBusinessEntity } from '../entities/access.business.entity';
3
3
  export declare class AccessBusinessService {
4
4
  private readonly accessService;
5
- constructor(accessService: AccessService);
5
+ private readonly propertyService;
6
+ constructor(accessService: AccessService, propertyService: PropertyService);
6
7
  validateAccess(): Promise<AccessBusinessEntity>;
7
8
  hasRoles(roles: string[]): Promise<AccessBusinessEntity>;
8
9
  validateRoles(roles: string[]): Promise<void>;
10
+ getFrontendUrl(business_id: number): Promise<string>;
9
11
  }
@@ -14,8 +14,9 @@ const common_1 = require("@nestjs/common");
14
14
  const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
15
15
  const access_business_entity_1 = require("../entities/access.business.entity");
16
16
  let AccessBusinessService = class AccessBusinessService {
17
- constructor(accessService) {
17
+ constructor(accessService, propertyService) {
18
18
  this.accessService = accessService;
19
+ this.propertyService = propertyService;
19
20
  }
20
21
  async validateAccess() {
21
22
  const user = nestjs_utility_services_1.Auth.user();
@@ -39,10 +40,21 @@ let AccessBusinessService = class AccessBusinessService {
39
40
  if (!hasRole)
40
41
  throw new nestjs_utility_services_1.AccessException(`You don't have appropriate role to do this operation`);
41
42
  }
43
+ async getFrontendUrl(business_id) {
44
+ const business = await access_business_entity_1.AccessBusinessEntity.first(business_id);
45
+ if (!business)
46
+ return;
47
+ const url = business.attributes?.url;
48
+ if (url)
49
+ return url;
50
+ const defaultUrl = `https://client.finnoto.in`;
51
+ return this.propertyService.get(`business.default.frontend.url`, defaultUrl);
52
+ }
42
53
  };
43
54
  exports.AccessBusinessService = AccessBusinessService;
44
55
  exports.AccessBusinessService = AccessBusinessService = __decorate([
45
56
  (0, common_1.Injectable)(),
46
- __metadata("design:paramtypes", [nestjs_utility_services_1.AccessService])
57
+ __metadata("design:paramtypes", [nestjs_utility_services_1.AccessService,
58
+ nestjs_utility_services_1.PropertyService])
47
59
  ], AccessBusinessService);
48
60
  //# sourceMappingURL=access.business.service.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"access.business.service.js","sourceRoot":"","sources":["../../../src/access/services/access.business.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAA8F;AAC9F,+EAA0E;AAGnE,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;IAC9B,YAA6B,aAA4B;QAA5B,kBAAa,GAAb,aAAa,CAAe;IAAG,CAAC;IAE7D,KAAK,CAAC,cAAc;QAChB,MAAM,IAAI,GAAG,8BAAI,CAAC,IAAI,EAAE,CAAC;QAEzB,MAAM,UAAU,GAAG,IAAI,EAAE,eAAe,EAAE,WAAW,CAAC;QACtD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,yCAAe,EAAE,CAAC;QAE7C,MAAM,QAAQ,GAAG,MAAM,6CAAoB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC;QACnF,IAAI,CAAC,QAAQ;YAAE,MAAM,IAAI,yCAAe,EAAE,CAAC;QAE3C,OAAO,QAAQ,CAAC;IACpB,CAAC;IAQD,KAAK,CAAC,QAAQ,CAAC,KAAe;QAC1B,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,cAAc,EAAE,CAAC;QAE7C,IAAI,KAAK,EAAE,MAAM,GAAG,CAAC,EAAE,CAAC;YACpB,MAAM,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACpC,CAAC;QAED,OAAO,QAAQ,CAAC;IACpB,CAAC;IASD,KAAK,CAAC,aAAa,CAAC,KAAe;QAC/B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;QAEnE,IAAI,CAAC,OAAO;YAAE,MAAM,IAAI,yCAAe,CAAC,sDAAsD,CAAC,CAAC;IACpG,CAAC;CACJ,CAAA;AA3CY,sDAAqB;gCAArB,qBAAqB;IADjC,IAAA,mBAAU,GAAE;qCAEmC,uCAAa;GADhD,qBAAqB,CA2CjC"}
1
+ {"version":3,"file":"access.business.service.js","sourceRoot":"","sources":["../../../src/access/services/access.business.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAA+G;AAC/G,+EAA0E;AAGnE,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;IAC9B,YACqB,aAA4B,EAC5B,eAAgC;QADhC,kBAAa,GAAb,aAAa,CAAe;QAC5B,oBAAe,GAAf,eAAe,CAAiB;IAClD,CAAC;IAEJ,KAAK,CAAC,cAAc;QAChB,MAAM,IAAI,GAAG,8BAAI,CAAC,IAAI,EAAE,CAAC;QAEzB,MAAM,UAAU,GAAG,IAAI,EAAE,eAAe,EAAE,WAAW,CAAC;QACtD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,yCAAe,EAAE,CAAC;QAE7C,MAAM,QAAQ,GAAG,MAAM,6CAAoB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC;QACnF,IAAI,CAAC,QAAQ;YAAE,MAAM,IAAI,yCAAe,EAAE,CAAC;QAE3C,OAAO,QAAQ,CAAC;IACpB,CAAC;IAQD,KAAK,CAAC,QAAQ,CAAC,KAAe;QAC1B,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,cAAc,EAAE,CAAC;QAE7C,IAAI,KAAK,EAAE,MAAM,GAAG,CAAC,EAAE,CAAC;YACpB,MAAM,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACpC,CAAC;QAED,OAAO,QAAQ,CAAC;IACpB,CAAC;IASD,KAAK,CAAC,aAAa,CAAC,KAAe;QAC/B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;QAEnE,IAAI,CAAC,OAAO;YAAE,MAAM,IAAI,yCAAe,CAAC,sDAAsD,CAAC,CAAC;IACpG,CAAC;IAQD,KAAK,CAAC,cAAc,CAAC,WAAmB;QACpC,MAAM,QAAQ,GAAQ,MAAM,6CAAoB,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QACpE,IAAI,CAAC,QAAQ;YAAE,OAAO;QAEtB,MAAM,GAAG,GAAG,QAAQ,CAAC,UAAU,EAAE,GAAG,CAAC;QACrC,IAAI,GAAG;YAAE,OAAO,GAAG,CAAC;QAEpB,MAAM,UAAU,GAAG,2BAA2B,CAAC;QAC/C,OAAO,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,+BAA+B,EAAE,UAAU,CAAC,CAAC;IACjF,CAAC;CACJ,CAAA;AA/DY,sDAAqB;gCAArB,qBAAqB;IADjC,IAAA,mBAAU,GAAE;qCAG2B,uCAAa;QACX,yCAAe;GAH5C,qBAAqB,CA+DjC"}
@@ -0,0 +1,9 @@
1
+ import { PropertyService, RemoteRequestService } from '@servicelabsco/nestjs-utility-services';
2
+ import { BusinessAppIntegrationCredentialEntity } from '../entities/business.app.integration.credential.entity';
3
+ export declare class AppIntegrationService {
4
+ private readonly propertyService;
5
+ private readonly remoteRequestService;
6
+ constructor(propertyService: PropertyService, remoteRequestService: RemoteRequestService);
7
+ updateZohoAccessToken(businessId: number): Promise<BusinessAppIntegrationCredentialEntity>;
8
+ getCredential(businessId: number, identifier: string): Promise<BusinessAppIntegrationCredentialEntity>;
9
+ }
@@ -0,0 +1,63 @@
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.AppIntegrationService = void 0;
13
+ const common_1 = require("@nestjs/common");
14
+ const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
15
+ const integration_type_constant_1 = require("../../config/integration.type.constant");
16
+ const app_integration_entity_1 = require("../entities/app.integration.entity");
17
+ const business_app_integration_credential_entity_1 = require("../entities/business.app.integration.credential.entity");
18
+ const business_app_integration_entity_1 = require("../entities/business.app.integration.entity");
19
+ let AppIntegrationService = class AppIntegrationService {
20
+ constructor(propertyService, remoteRequestService) {
21
+ this.propertyService = propertyService;
22
+ this.remoteRequestService = remoteRequestService;
23
+ }
24
+ async updateZohoAccessToken(businessId) {
25
+ const client_id = await this.propertyService.get('zoho.client.id');
26
+ const client_secret = await this.propertyService.get('zoho.client.secret');
27
+ const credential = await this.getCredential(businessId, integration_type_constant_1.IntegrationIdentifierConstants.zoho);
28
+ if (new Date(credential?.expiry_at) < new Date())
29
+ return credential;
30
+ const baseUrl = `https://accounts.zoho.com/oauth/v2/token?referesh_token=${credential?.refresh_token}`;
31
+ const redirectUrl = `${process.env.SERVER_URL}/webhook/integrate-zoho`;
32
+ const url = `${baseUrl}&client_id=${client_id}&client_secret=${client_secret}&grant_type=refresh_token&redirect_uri=${redirectUrl}`;
33
+ const opts = {
34
+ url,
35
+ method: 'POST',
36
+ headers: {
37
+ 'Content-Type': 'application/json',
38
+ },
39
+ };
40
+ const response = await this.remoteRequestService.getRawResponse(opts);
41
+ credential.access_token = response?.data?.access_token;
42
+ credential.refresh_token = response?.data?.refresh_token;
43
+ credential.expiry_at = response?.data?.expires_in;
44
+ return credential.save();
45
+ }
46
+ async getCredential(businessId, identifier) {
47
+ const integration = await app_integration_entity_1.AppIntegrationEntity.findOne({ where: { integration_identifier: identifier } });
48
+ const businessIntegration = await business_app_integration_entity_1.BusinessAppIntegrationEntity.findOne({
49
+ where: { business_id: businessId, integration_id: integration?.id },
50
+ });
51
+ const credential = await business_app_integration_credential_entity_1.BusinessAppIntegrationCredentialEntity.findOne({
52
+ where: { business_integration_id: businessIntegration?.id },
53
+ });
54
+ return credential;
55
+ }
56
+ };
57
+ exports.AppIntegrationService = AppIntegrationService;
58
+ exports.AppIntegrationService = AppIntegrationService = __decorate([
59
+ (0, common_1.Injectable)(),
60
+ __metadata("design:paramtypes", [nestjs_utility_services_1.PropertyService,
61
+ nestjs_utility_services_1.RemoteRequestService])
62
+ ], AppIntegrationService);
63
+ //# sourceMappingURL=app.integration.service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.integration.service.js","sourceRoot":"","sources":["../../../src/access/services/app.integration.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAA+F;AAC/F,sFAAwF;AACxF,+EAA0E;AAC1E,uHAAgH;AAChH,iGAA2F;AAGpF,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;IAC9B,YACqB,eAAgC,EAChC,oBAA0C;QAD1C,oBAAe,GAAf,eAAe,CAAiB;QAChC,yBAAoB,GAApB,oBAAoB,CAAsB;IAC5D,CAAC;IAEJ,KAAK,CAAC,qBAAqB,CAAC,UAAkB;QAC1C,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;QACnE,MAAM,aAAa,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;QAE3E,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,0DAA8B,CAAC,IAAI,CAAC,CAAC;QAC7F,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC,GAAG,IAAI,IAAI,EAAE;YAAE,OAAO,UAAU,CAAC;QAEpE,MAAM,OAAO,GAAG,2DAA2D,UAAU,EAAE,aAAa,EAAE,CAAC;QACvG,MAAM,WAAW,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,yBAAyB,CAAC;QACvE,MAAM,GAAG,GAAG,GAAG,OAAO,cAAc,SAAS,kBAAkB,aAAa,0CAA0C,WAAW,EAAE,CAAC;QAEpI,MAAM,IAAI,GAAG;YACT,GAAG;YACH,MAAM,EAAE,MAAM;YACd,OAAO,EAAE;gBACL,cAAc,EAAE,kBAAkB;aACrC;SACJ,CAAC;QACF,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QAEtE,UAAU,CAAC,YAAY,GAAG,QAAQ,EAAE,IAAI,EAAE,YAAY,CAAC;QACvD,UAAU,CAAC,aAAa,GAAG,QAAQ,EAAE,IAAI,EAAE,aAAa,CAAC;QACzD,UAAU,CAAC,SAAS,GAAG,QAAQ,EAAE,IAAI,EAAE,UAAU,CAAC;QAElD,OAAO,UAAU,CAAC,IAAI,EAAE,CAAC;IAC7B,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,UAAkB,EAAE,UAAkB;QACtD,MAAM,WAAW,GAAG,MAAM,6CAAoB,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,sBAAsB,EAAE,UAAU,EAAE,EAAE,CAAC,CAAC;QAE1G,MAAM,mBAAmB,GAAG,MAAM,8DAA4B,CAAC,OAAO,CAAC;YACnE,KAAK,EAAE,EAAE,WAAW,EAAE,UAAU,EAAE,cAAc,EAAE,WAAW,EAAE,EAAE,EAAE;SACtE,CAAC,CAAC;QAEH,MAAM,UAAU,GAAG,MAAM,mFAAsC,CAAC,OAAO,CAAC;YACpE,KAAK,EAAE,EAAE,uBAAuB,EAAE,mBAAmB,EAAE,EAAE,EAAE;SAC9D,CAAC,CAAC;QAEH,OAAO,UAAU,CAAC;IACtB,CAAC;CACJ,CAAA;AA9CY,sDAAqB;gCAArB,qBAAqB;IADjC,IAAA,mBAAU,GAAE;qCAG6B,yCAAe;QACV,8CAAoB;GAHtD,qBAAqB,CA8CjC"}
@@ -1,6 +1,7 @@
1
1
  export * from './access.business.service';
2
2
  export * from './access.report.service';
3
3
  export * from './api.account.service';
4
+ export * from './app.integration.service';
4
5
  export * from './audit.log.service';
5
6
  export * from './business.preference.service';
6
7
  export * from './business.user.role.service';
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./access.business.service"), exports);
18
18
  __exportStar(require("./access.report.service"), exports);
19
19
  __exportStar(require("./api.account.service"), exports);
20
+ __exportStar(require("./app.integration.service"), exports);
20
21
  __exportStar(require("./audit.log.service"), exports);
21
22
  __exportStar(require("./business.preference.service"), exports);
22
23
  __exportStar(require("./business.user.role.service"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,gDAA8B;AAAA,+DAA6C;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,uDAAqC;AAAA,kDAAgC;AAAA,kDAAgC;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAkC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,+DAA6C;AAAA,yDAAuC;AAAA,kDAAgC;AAAA,gDAA8B;AAAA,+DAA6C;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,6DAA2C;AAAA,uDAAqC;AAAA,kDAAgC;AAAA,kDAAgC;AAAA,8DAA4C;AAAA,4DAA0C;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAkC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servicelabsco/slabs-access-manager",
3
- "version": "0.1.138",
3
+ "version": "0.1.140",
4
4
  "description": "Support for application level menus and dashboards",
5
5
  "author": "Hemant Kumar Sah <hemantanshu@gmail.com>",
6
6
  "license": "MIT",