@servicelabsco/slabs-access-manager 0.1.170 → 0.1.171
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/business.webhook.controller.d.ts +13 -0
- package/dist/access/controllers/business.webhook.controller.js +81 -0
- package/dist/access/controllers/business.webhook.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/add.webhook.dto.d.ts +5 -0
- package/dist/access/dtos/add.webhook.dto.js +36 -0
- package/dist/access/dtos/add.webhook.dto.js.map +1 -0
- package/dist/access/dtos/business.webhook.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/business.webhook.attributes.dto.js +8 -0
- package/dist/access/dtos/business.webhook.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/send.webhook.request.payload.d.ts +4 -0
- package/dist/access/dtos/send.webhook.request.payload.js +7 -0
- package/dist/access/dtos/send.webhook.request.payload.js.map +1 -0
- package/dist/access/dtos/webhook.event.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/webhook.event.attributes.dto.js +8 -0
- package/dist/access/dtos/webhook.event.attributes.dto.js.map +1 -0
- package/dist/access/dtos/webhook.log.attributes.dto.d.ts +3 -0
- package/dist/access/dtos/webhook.log.attributes.dto.js +8 -0
- package/dist/access/dtos/webhook.log.attributes.dto.js.map +1 -0
- package/dist/access/entities/business.webhook.entity.d.ts +12 -0
- package/dist/access/entities/business.webhook.entity.js +52 -0
- package/dist/access/entities/business.webhook.entity.js.map +1 -0
- package/dist/access/entities/index.d.ts +3 -0
- package/dist/access/entities/index.js +3 -0
- package/dist/access/entities/index.js.map +1 -1
- package/dist/access/entities/webhook.event.entity.d.ts +9 -0
- package/dist/access/entities/webhook.event.entity.js +42 -0
- package/dist/access/entities/webhook.event.entity.js.map +1 -0
- package/dist/access/entities/webhook.log.entity.d.ts +16 -0
- package/dist/access/entities/webhook.log.entity.js +66 -0
- package/dist/access/entities/webhook.log.entity.js.map +1 -0
- package/dist/access/es6.classes.d.ts +18 -6
- package/dist/access/es6.classes.js +32 -0
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/jobs/business.webhook.job.d.ts +7 -0
- package/dist/access/jobs/business.webhook.job.js +29 -0
- package/dist/access/jobs/business.webhook.job.js.map +1 -0
- package/dist/access/jobs/index.d.ts +3 -0
- package/dist/access/jobs/index.js +3 -0
- package/dist/access/jobs/index.js.map +1 -1
- package/dist/access/jobs/webhook.event.job.d.ts +7 -0
- package/dist/access/jobs/webhook.event.job.js +29 -0
- package/dist/access/jobs/webhook.event.job.js.map +1 -0
- package/dist/access/jobs/webhook.log.job.d.ts +7 -0
- package/dist/access/jobs/webhook.log.job.js +29 -0
- package/dist/access/jobs/webhook.log.job.js.map +1 -0
- package/dist/access/libraries/index.d.ts +1 -0
- package/dist/access/libraries/index.js +1 -0
- package/dist/access/libraries/index.js.map +1 -1
- package/dist/access/libraries/send.webhook.request.d.ts +20 -0
- package/dist/access/libraries/send.webhook.request.js +71 -0
- package/dist/access/libraries/send.webhook.request.js.map +1 -0
- package/dist/access/services/es6.jobs.service.d.ts +7 -1
- package/dist/access/services/es6.jobs.service.js +13 -1
- package/dist/access/services/es6.jobs.service.js.map +1 -1
- package/dist/access/services/webhook.service.d.ts +5 -2
- package/dist/access/services/webhook.service.js +12 -2
- package/dist/access/services/webhook.service.js.map +1 -1
- package/dist/access/subscribers/business.webhook.subscriber.d.ts +10 -0
- package/dist/access/subscribers/business.webhook.subscriber.js +34 -0
- package/dist/access/subscribers/business.webhook.subscriber.js.map +1 -0
- package/dist/access/subscribers/index.d.ts +3 -0
- package/dist/access/subscribers/index.js +3 -0
- package/dist/access/subscribers/index.js.map +1 -1
- package/dist/access/subscribers/webhook.event.subscriber.d.ts +10 -0
- package/dist/access/subscribers/webhook.event.subscriber.js +34 -0
- package/dist/access/subscribers/webhook.event.subscriber.js.map +1 -0
- package/dist/access/subscribers/webhook.log.subscriber.d.ts +10 -0
- package/dist/access/subscribers/webhook.log.subscriber.js +34 -0
- package/dist/access/subscribers/webhook.log.subscriber.js.map +1 -0
- package/dist/config/entity.constants.d.ts +6 -0
- package/dist/config/entity.constants.js +6 -0
- package/dist/config/entity.constants.js.map +1 -1
- package/dist/migrations/1725422481585-CreateBusinessWebhookTable.d.ts +5 -0
- package/dist/migrations/1725422481585-CreateBusinessWebhookTable.js +22 -0
- package/dist/migrations/1725422481585-CreateBusinessWebhookTable.js.map +1 -0
- package/dist/migrations/1725428002811-CreateWebhookEventTable.d.ts +5 -0
- package/dist/migrations/1725428002811-CreateWebhookEventTable.js +21 -0
- package/dist/migrations/1725428002811-CreateWebhookEventTable.js.map +1 -0
- package/dist/migrations/1725428278040-CreateWebhookLogTable.d.ts +5 -0
- package/dist/migrations/1725428278040-CreateWebhookLogTable.js +24 -0
- package/dist/migrations/1725428278040-CreateWebhookLogTable.js.map +1 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ import { BusinessNotificationChannelPreferenceController } from './controllers/b
|
|
|
8
8
|
import { BusinessPreferenceController } from './controllers/business.preference.controller';
|
|
9
9
|
import { BusinessUserGroupController } from './controllers/business.user.group.controller';
|
|
10
10
|
import { BusinessUserNotificationPreferenceController } from './controllers/business.user.notification.preference.controller';
|
|
11
|
+
import { BusinessWebhookController } from './controllers/business.webhook.controller';
|
|
11
12
|
import { ChoiceListController } from './controllers/choice.list.controller';
|
|
12
13
|
import { ChoiceTypeController } from './controllers/choice.type.controller';
|
|
13
14
|
import { CommonWebhookController } from './controllers/common.webhook.controller';
|
|
@@ -40,6 +41,7 @@ import { AddRoleDto } from './dtos/add.role.dto';
|
|
|
40
41
|
import { AddScheduledReportDto } from './dtos/add.scheduled.report.dto';
|
|
41
42
|
import { AddShortUrlDto } from './dtos/add.short.url.dto';
|
|
42
43
|
import { AddTagDto } from './dtos/add.tag.dto';
|
|
44
|
+
import { AddWebhookDto } from './dtos/add.webhook.dto';
|
|
43
45
|
import { BankAccountPayloadDto } from './dtos/bank.account.payload.dto';
|
|
44
46
|
import { BusinessAppIntegrationMessagePayloadDto } from './dtos/business.app.integration.message.payload.dto';
|
|
45
47
|
import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
@@ -59,6 +61,7 @@ import { ProcessCommonListConfigDto } from './dtos/process.common.list.config.dt
|
|
|
59
61
|
import { ProcessListingPayloadDto } from './dtos/process.listing.payload.dto';
|
|
60
62
|
import { RecurringDefinitionDto } from './dtos/recurring.definition.dto';
|
|
61
63
|
import { SendEmailNotificationDataDto } from './dtos/send.email.notification.data.dto';
|
|
64
|
+
import { SendWebhookRequestPayload } from './dtos/send.webhook.request.payload';
|
|
62
65
|
import { ServerEmailMessageDto } from './dtos/server.email.message.dto';
|
|
63
66
|
import { ServerEmailRecipientsDto } from './dtos/server.email.recipients.dto';
|
|
64
67
|
import { SlackMessageDataDto } from './dtos/slack.message.data.dto';
|
|
@@ -72,6 +75,7 @@ import { BusinessGroupRoleEntity } from './entities/business.group.role.entity';
|
|
|
72
75
|
import { BusinessMenuEntity } from './entities/business.menu.entity';
|
|
73
76
|
import { BusinessUserEntity } from './entities/business.user.entity';
|
|
74
77
|
import { BusinessUserRoleEntity } from './entities/business.user.role.entity';
|
|
78
|
+
import { BusinessWebhookEntity } from './entities/business.webhook.entity';
|
|
75
79
|
import { BzNotificationChannelPreferenceEntity } from './entities/bz.notification.channel.preference.entity';
|
|
76
80
|
import { ChildMenuEntity } from './entities/child.menu.entity';
|
|
77
81
|
import { ConversationEntity } from './entities/conversation.entity';
|
|
@@ -104,6 +108,7 @@ import { UiActionRoleEntity } from './entities/ui.action.role.entity';
|
|
|
104
108
|
import { UserNotificationEntity } from './entities/user.notification.entity';
|
|
105
109
|
import { UserRoleEntity } from './entities/user.role.entity';
|
|
106
110
|
import { WatchlistAssignmentEntity } from './entities/watchlist.assignment.entity';
|
|
111
|
+
import { WebhookLogEntity } from './entities/webhook.log.entity';
|
|
107
112
|
import { WebhookSlugEntity } from './entities/webhook.slug.entity';
|
|
108
113
|
import { WhatsappMessageEntity } from './entities/whatsapp.message.entity';
|
|
109
114
|
import { WhatsappPreferenceEntity } from './entities/whatsapp.preference.entity';
|
|
@@ -126,6 +131,7 @@ import { BusinessUserGroupJob } from './jobs/business.user.group.job';
|
|
|
126
131
|
import { BusinessUserJob } from './jobs/business.user.job';
|
|
127
132
|
import { BusinessUserNotificationPreferenceJob } from './jobs/business.user.notification.preference.job';
|
|
128
133
|
import { BusinessUserRoleJob } from './jobs/business.user.role.job';
|
|
134
|
+
import { BusinessWebhookJob } from './jobs/business.webhook.job';
|
|
129
135
|
import { BzNotificationChannelPreferenceJob } from './jobs/bz.notification.channel.preference.job';
|
|
130
136
|
import { ChildMenuJob } from './jobs/child.menu.job';
|
|
131
137
|
import { ChoiceListJob } from './jobs/choice.list.job';
|
|
@@ -182,6 +188,8 @@ import { UserNotificationJob } from './jobs/user.notification.job';
|
|
|
182
188
|
import { UserPreferenceJob } from './jobs/user.preference.job';
|
|
183
189
|
import { UserRoleJob } from './jobs/user.role.job';
|
|
184
190
|
import { WatchlistAssignmentJob } from './jobs/watchlist.assignment.job';
|
|
191
|
+
import { WebhookEventJob } from './jobs/webhook.event.job';
|
|
192
|
+
import { WebhookLogJob } from './jobs/webhook.log.job';
|
|
185
193
|
import { WebhookSlugJob } from './jobs/webhook.slug.job';
|
|
186
194
|
import { WebhookTypeJob } from './jobs/webhook.type.job';
|
|
187
195
|
import { WhatsappIncomingWebhookJob } from './jobs/whatsapp.incoming.webhook.job';
|
|
@@ -241,6 +249,7 @@ import { SendGchatMessageNotification } from './libraries/send.gchat.message.not
|
|
|
241
249
|
import { SendGchatWebhookNotification } from './libraries/send.gchat.webhook.notification';
|
|
242
250
|
import { SendSlackMessageNotification } from './libraries/send.slack.message.notification';
|
|
243
251
|
import { SendSlackWebhookNotification } from './libraries/send.slack.webhook.notification.';
|
|
252
|
+
import { SendWebhookRequest } from './libraries/send.webhook.request';
|
|
244
253
|
import { SendWhatsappMessageNotification } from './libraries/send.whatsapp.message.notification';
|
|
245
254
|
import { SetFcmToken } from './libraries/set.fcm.token';
|
|
246
255
|
import { SyncBusinessUserRole } from './libraries/sync.business.user.role';
|
|
@@ -285,6 +294,7 @@ import { BusinessUserGroupSubscriber } from './subscribers/business.user.group.s
|
|
|
285
294
|
import { BusinessUserNotificationPreferenceSubscriber } from './subscribers/business.user.notification.preference.subscriber';
|
|
286
295
|
import { BusinessUserRoleSubscriber } from './subscribers/business.user.role.subscriber';
|
|
287
296
|
import { BusinessUserSubscriber } from './subscribers/business.user.subscriber';
|
|
297
|
+
import { BusinessWebhookSubscriber } from './subscribers/business.webhook.subscriber';
|
|
288
298
|
import { BzNotificationChannelPreferenceSubscriber } from './subscribers/bz.notification.channel.preference.subscriber';
|
|
289
299
|
import { ChildMenuSubscriber } from './subscribers/child.menu.subscriber';
|
|
290
300
|
import { ChoiceListSubscriber } from './subscribers/choice.list.subscriber';
|
|
@@ -337,20 +347,22 @@ import { UserNotificationSubscriber } from './subscribers/user.notification.subs
|
|
|
337
347
|
import { UserPreferenceSubscriber } from './subscribers/user.preference.subscriber';
|
|
338
348
|
import { UserRoleSubscriber } from './subscribers/user.role.subscriber';
|
|
339
349
|
import { WatchlistAssignmentSubscriber } from './subscribers/watchlist.assignment.subscriber';
|
|
350
|
+
import { WebhookEventSubscriber } from './subscribers/webhook.event.subscriber';
|
|
351
|
+
import { WebhookLogSubscriber } from './subscribers/webhook.log.subscriber';
|
|
340
352
|
import { WebhookSlugSubscriber } from './subscribers/webhook.slug.subscriber';
|
|
341
353
|
import { WebhookTypeSubscriber } from './subscribers/webhook.type.subscriber';
|
|
342
354
|
import { WhatsappMessageSubscriber } from './subscribers/whatsapp.message.subscriber';
|
|
343
355
|
import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subscriber';
|
|
344
356
|
declare const es6Classes: {
|
|
345
357
|
commands: (typeof WebhookPollCommand)[];
|
|
346
|
-
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | 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)[];
|
|
347
|
-
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)[];
|
|
348
|
-
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 MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof BusinessMenuEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BzNotificationChannelPreferenceEntity | 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)[];
|
|
358
|
+
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | 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)[];
|
|
359
|
+
dtos: (typeof FcmTemplateAttributesDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof GchatPostingPayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof DbFindDto | typeof ListResponseDto | typeof AddListingPreferenceDto | typeof ProcessCommonListConfigDto | typeof AddBusinessPreferenceDto | typeof AddWebhookDto | 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)[];
|
|
360
|
+
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 MenuRoleEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof ChildMenuEntity | typeof BusinessMenuEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof BzNotificationChannelPreferenceEntity | 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 WebhookLogEntity | typeof WebhookSlugEntity)[];
|
|
349
361
|
enums: (typeof NotificationTypeEnum | typeof RecurringPeriodEnum | typeof NotificationChannelTypeEnum | typeof CustomColumnTypeEnum | typeof PlatformTypeEnum)[];
|
|
350
|
-
jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BzNotificationChannelPreferenceJob | 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)[];
|
|
351
|
-
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 ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | 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 ProcessRevokeSlackIntegration | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
|
|
362
|
+
jobs: (typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessEmailJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | 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 WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob)[];
|
|
363
|
+
libraries: (typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof SendWhatsappMessageNotification | typeof SendFcmNotification | typeof SendWebhookRequest | 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 ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | 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 ProcessRevokeSlackIntegration | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessBusinessUserRoleUpdate | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
|
|
352
364
|
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware)[];
|
|
353
365
|
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)[];
|
|
354
|
-
subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BzNotificationChannelPreferenceSubscriber | 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)[];
|
|
366
|
+
subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessEmailSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | 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 WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber)[];
|
|
355
367
|
};
|
|
356
368
|
export default es6Classes;
|
|
@@ -10,6 +10,7 @@ const business_notification_channel_preference_controller_1 = require("./control
|
|
|
10
10
|
const business_preference_controller_1 = require("./controllers/business.preference.controller");
|
|
11
11
|
const business_user_group_controller_1 = require("./controllers/business.user.group.controller");
|
|
12
12
|
const business_user_notification_preference_controller_1 = require("./controllers/business.user.notification.preference.controller");
|
|
13
|
+
const business_webhook_controller_1 = require("./controllers/business.webhook.controller");
|
|
13
14
|
const choice_list_controller_1 = require("./controllers/choice.list.controller");
|
|
14
15
|
const choice_type_controller_1 = require("./controllers/choice.type.controller");
|
|
15
16
|
const common_webhook_controller_1 = require("./controllers/common.webhook.controller");
|
|
@@ -50,6 +51,7 @@ const add_scheduled_report_dto_1 = require("./dtos/add.scheduled.report.dto");
|
|
|
50
51
|
const add_short_url_dto_1 = require("./dtos/add.short.url.dto");
|
|
51
52
|
const add_tag_dto_1 = require("./dtos/add.tag.dto");
|
|
52
53
|
const add_user_preference_dto_1 = require("./dtos/add.user.preference.dto");
|
|
54
|
+
const add_webhook_dto_1 = require("./dtos/add.webhook.dto");
|
|
53
55
|
const api_account_attributes_dto_1 = require("./dtos/api.account.attributes.dto");
|
|
54
56
|
const api_account_list_filter_dto_1 = require("./dtos/api.account.list.filter.dto");
|
|
55
57
|
const app_integration_attributes_dto_1 = require("./dtos/app.integration.attributes.dto");
|
|
@@ -71,6 +73,7 @@ const business_user_group_list_filter_dto_1 = require("./dtos/business.user.grou
|
|
|
71
73
|
const business_user_notification_preference_attributes_dto_1 = require("./dtos/business.user.notification.preference.attributes.dto");
|
|
72
74
|
const business_user_notification_preference_list_filter_dto_1 = require("./dtos/business.user.notification.preference.list.filter.dto");
|
|
73
75
|
const business_user_role_attributes_dto_1 = require("./dtos/business.user.role.attributes.dto");
|
|
76
|
+
const business_webhook_attributes_dto_1 = require("./dtos/business.webhook.attributes.dto");
|
|
74
77
|
const bz_notification_channel_preference_attributes_dto_1 = require("./dtos/bz.notification.channel.preference.attributes.dto");
|
|
75
78
|
const child_menu_attributes_dto_1 = require("./dtos/child.menu.attributes.dto");
|
|
76
79
|
const choice_list_attributes_dto_1 = require("./dtos/choice.list.attributes.dto");
|
|
@@ -139,6 +142,7 @@ const scheduled_report_item_attributes_dto_1 = require("./dtos/scheduled.report.
|
|
|
139
142
|
const scheduled_report_item_list_filter_dto_1 = require("./dtos/scheduled.report.item.list.filter.dto");
|
|
140
143
|
const scheduled_report_list_filter_dto_1 = require("./dtos/scheduled.report.list.filter.dto");
|
|
141
144
|
const send_email_notification_data_dto_1 = require("./dtos/send.email.notification.data.dto");
|
|
145
|
+
const send_webhook_request_payload_1 = require("./dtos/send.webhook.request.payload");
|
|
142
146
|
const server_email_attachment_dto_1 = require("./dtos/server.email.attachment.dto");
|
|
143
147
|
const server_email_message_dto_1 = require("./dtos/server.email.message.dto");
|
|
144
148
|
const server_email_recipient_dto_1 = require("./dtos/server.email.recipient.dto");
|
|
@@ -162,6 +166,8 @@ const user_notification_list_filter_dto_1 = require("./dtos/user.notification.li
|
|
|
162
166
|
const user_preference_attributes_dto_1 = require("./dtos/user.preference.attributes.dto");
|
|
163
167
|
const user_role_attributes_dto_1 = require("./dtos/user.role.attributes.dto");
|
|
164
168
|
const watchlist_assignment_attributes_dto_1 = require("./dtos/watchlist.assignment.attributes.dto");
|
|
169
|
+
const webhook_event_attributes_dto_1 = require("./dtos/webhook.event.attributes.dto");
|
|
170
|
+
const webhook_log_attributes_dto_1 = require("./dtos/webhook.log.attributes.dto");
|
|
165
171
|
const webhook_slug_attributes_dto_1 = require("./dtos/webhook.slug.attributes.dto");
|
|
166
172
|
const webhook_type_attributes_dto_1 = require("./dtos/webhook.type.attributes.dto");
|
|
167
173
|
const whatsapp_message_attributes_dto_1 = require("./dtos/whatsapp.message.attributes.dto");
|
|
@@ -181,6 +187,7 @@ const business_user_entity_1 = require("./entities/business.user.entity");
|
|
|
181
187
|
const business_user_group_entity_1 = require("./entities/business.user.group.entity");
|
|
182
188
|
const business_user_notification_preference_entity_1 = require("./entities/business.user.notification.preference.entity");
|
|
183
189
|
const business_user_role_entity_1 = require("./entities/business.user.role.entity");
|
|
190
|
+
const business_webhook_entity_1 = require("./entities/business.webhook.entity");
|
|
184
191
|
const bz_notification_channel_preference_entity_1 = require("./entities/bz.notification.channel.preference.entity");
|
|
185
192
|
const child_menu_entity_1 = require("./entities/child.menu.entity");
|
|
186
193
|
const choice_list_entity_1 = require("./entities/choice.list.entity");
|
|
@@ -231,6 +238,8 @@ const user_notification_entity_1 = require("./entities/user.notification.entity"
|
|
|
231
238
|
const user_preference_entity_1 = require("./entities/user.preference.entity");
|
|
232
239
|
const user_role_entity_1 = require("./entities/user.role.entity");
|
|
233
240
|
const watchlist_assignment_entity_1 = require("./entities/watchlist.assignment.entity");
|
|
241
|
+
const webhook_event_entity_1 = require("./entities/webhook.event.entity");
|
|
242
|
+
const webhook_log_entity_1 = require("./entities/webhook.log.entity");
|
|
234
243
|
const webhook_slug_entity_1 = require("./entities/webhook.slug.entity");
|
|
235
244
|
const webhook_type_entity_1 = require("./entities/webhook.type.entity");
|
|
236
245
|
const whatsapp_message_entity_1 = require("./entities/whatsapp.message.entity");
|
|
@@ -255,6 +264,7 @@ const business_user_group_job_1 = require("./jobs/business.user.group.job");
|
|
|
255
264
|
const business_user_job_1 = require("./jobs/business.user.job");
|
|
256
265
|
const business_user_notification_preference_job_1 = require("./jobs/business.user.notification.preference.job");
|
|
257
266
|
const business_user_role_job_1 = require("./jobs/business.user.role.job");
|
|
267
|
+
const business_webhook_job_1 = require("./jobs/business.webhook.job");
|
|
258
268
|
const bz_notification_channel_preference_job_1 = require("./jobs/bz.notification.channel.preference.job");
|
|
259
269
|
const child_menu_job_1 = require("./jobs/child.menu.job");
|
|
260
270
|
const choice_list_job_1 = require("./jobs/choice.list.job");
|
|
@@ -311,6 +321,8 @@ const user_notification_job_1 = require("./jobs/user.notification.job");
|
|
|
311
321
|
const user_preference_job_1 = require("./jobs/user.preference.job");
|
|
312
322
|
const user_role_job_1 = require("./jobs/user.role.job");
|
|
313
323
|
const watchlist_assignment_job_1 = require("./jobs/watchlist.assignment.job");
|
|
324
|
+
const webhook_event_job_1 = require("./jobs/webhook.event.job");
|
|
325
|
+
const webhook_log_job_1 = require("./jobs/webhook.log.job");
|
|
314
326
|
const webhook_slug_job_1 = require("./jobs/webhook.slug.job");
|
|
315
327
|
const webhook_type_job_1 = require("./jobs/webhook.type.job");
|
|
316
328
|
const whatsapp_incoming_webhook_job_1 = require("./jobs/whatsapp.incoming.webhook.job");
|
|
@@ -370,6 +382,7 @@ const send_gchat_message_notification_1 = require("./libraries/send.gchat.messag
|
|
|
370
382
|
const send_gchat_webhook_notification_1 = require("./libraries/send.gchat.webhook.notification");
|
|
371
383
|
const send_slack_message_notification_1 = require("./libraries/send.slack.message.notification");
|
|
372
384
|
const send_slack_webhook_notification_1 = require("./libraries/send.slack.webhook.notification.");
|
|
385
|
+
const send_webhook_request_1 = require("./libraries/send.webhook.request");
|
|
373
386
|
const send_whatsapp_message_notification_1 = require("./libraries/send.whatsapp.message.notification");
|
|
374
387
|
const set_fcm_token_1 = require("./libraries/set.fcm.token");
|
|
375
388
|
const sync_business_user_role_1 = require("./libraries/sync.business.user.role");
|
|
@@ -414,6 +427,7 @@ const business_user_group_subscriber_1 = require("./subscribers/business.user.gr
|
|
|
414
427
|
const business_user_notification_preference_subscriber_1 = require("./subscribers/business.user.notification.preference.subscriber");
|
|
415
428
|
const business_user_role_subscriber_1 = require("./subscribers/business.user.role.subscriber");
|
|
416
429
|
const business_user_subscriber_1 = require("./subscribers/business.user.subscriber");
|
|
430
|
+
const business_webhook_subscriber_1 = require("./subscribers/business.webhook.subscriber");
|
|
417
431
|
const bz_notification_channel_preference_subscriber_1 = require("./subscribers/bz.notification.channel.preference.subscriber");
|
|
418
432
|
const child_menu_subscriber_1 = require("./subscribers/child.menu.subscriber");
|
|
419
433
|
const choice_list_subscriber_1 = require("./subscribers/choice.list.subscriber");
|
|
@@ -466,6 +480,8 @@ const user_notification_subscriber_1 = require("./subscribers/user.notification.
|
|
|
466
480
|
const user_preference_subscriber_1 = require("./subscribers/user.preference.subscriber");
|
|
467
481
|
const user_role_subscriber_1 = require("./subscribers/user.role.subscriber");
|
|
468
482
|
const watchlist_assignment_subscriber_1 = require("./subscribers/watchlist.assignment.subscriber");
|
|
483
|
+
const webhook_event_subscriber_1 = require("./subscribers/webhook.event.subscriber");
|
|
484
|
+
const webhook_log_subscriber_1 = require("./subscribers/webhook.log.subscriber");
|
|
469
485
|
const webhook_slug_subscriber_1 = require("./subscribers/webhook.slug.subscriber");
|
|
470
486
|
const webhook_type_subscriber_1 = require("./subscribers/webhook.type.subscriber");
|
|
471
487
|
const whatsapp_message_subscriber_1 = require("./subscribers/whatsapp.message.subscriber");
|
|
@@ -482,6 +498,7 @@ const es6Classes = {
|
|
|
482
498
|
business_preference_controller_1.BusinessPreferenceController,
|
|
483
499
|
business_user_group_controller_1.BusinessUserGroupController,
|
|
484
500
|
business_user_notification_preference_controller_1.BusinessUserNotificationPreferenceController,
|
|
501
|
+
business_webhook_controller_1.BusinessWebhookController,
|
|
485
502
|
choice_list_controller_1.ChoiceListController,
|
|
486
503
|
choice_type_controller_1.ChoiceTypeController,
|
|
487
504
|
common_webhook_controller_1.CommonWebhookController,
|
|
@@ -524,6 +541,7 @@ const es6Classes = {
|
|
|
524
541
|
add_short_url_dto_1.AddShortUrlDto,
|
|
525
542
|
add_tag_dto_1.AddTagDto,
|
|
526
543
|
add_user_preference_dto_1.AddUserPreferenceDto,
|
|
544
|
+
add_webhook_dto_1.AddWebhookDto,
|
|
527
545
|
api_account_attributes_dto_1.ApiAccountAttributesDto,
|
|
528
546
|
api_account_list_filter_dto_1.ApiAccountListFilterDto,
|
|
529
547
|
app_integration_attributes_dto_1.AppIntegrationAttributesDto,
|
|
@@ -545,6 +563,7 @@ const es6Classes = {
|
|
|
545
563
|
business_user_notification_preference_attributes_dto_1.BusinessUserNotificationPreferenceAttributesDto,
|
|
546
564
|
business_user_notification_preference_list_filter_dto_1.BusinessUserNotificationPreferenceListFilterDto,
|
|
547
565
|
business_user_role_attributes_dto_1.BusinessUserRoleAttributesDto,
|
|
566
|
+
business_webhook_attributes_dto_1.BusinessWebhookAttributesDto,
|
|
548
567
|
bz_notification_channel_preference_attributes_dto_1.BzNotificationChannelPreferenceAttributesDto,
|
|
549
568
|
child_menu_attributes_dto_1.ChildMenuAttributesDto,
|
|
550
569
|
choice_list_attributes_dto_1.ChoiceListAttributesDto,
|
|
@@ -613,6 +632,7 @@ const es6Classes = {
|
|
|
613
632
|
scheduled_report_item_list_filter_dto_1.ScheduledReportItemListFilterDto,
|
|
614
633
|
scheduled_report_list_filter_dto_1.ScheduledReportListFilterDto,
|
|
615
634
|
send_email_notification_data_dto_1.SendEmailNotificationDataDto,
|
|
635
|
+
send_webhook_request_payload_1.SendWebhookRequestPayload,
|
|
616
636
|
server_email_attachment_dto_1.ServerEmailAttachmentDto,
|
|
617
637
|
server_email_message_dto_1.ServerEmailMessageDto,
|
|
618
638
|
server_email_recipient_dto_1.ServerEmailRecipientDto,
|
|
@@ -636,6 +656,8 @@ const es6Classes = {
|
|
|
636
656
|
user_preference_attributes_dto_1.UserPreferenceAttributesDto,
|
|
637
657
|
user_role_attributes_dto_1.UserRoleAttributesDto,
|
|
638
658
|
watchlist_assignment_attributes_dto_1.WatchlistAssignmentAttributesDto,
|
|
659
|
+
webhook_event_attributes_dto_1.WebhookEventAttributesDto,
|
|
660
|
+
webhook_log_attributes_dto_1.WebhookLogAttributesDto,
|
|
639
661
|
webhook_slug_attributes_dto_1.WebhookSlugAttributesDto,
|
|
640
662
|
webhook_type_attributes_dto_1.WebhookTypeAttributesDto,
|
|
641
663
|
whatsapp_message_attributes_dto_1.WhatsappMessageAttributesDto,
|
|
@@ -657,6 +679,7 @@ const es6Classes = {
|
|
|
657
679
|
business_user_group_entity_1.BusinessUserGroupEntity,
|
|
658
680
|
business_user_notification_preference_entity_1.BusinessUserNotificationPreferenceEntity,
|
|
659
681
|
business_user_role_entity_1.BusinessUserRoleEntity,
|
|
682
|
+
business_webhook_entity_1.BusinessWebhookEntity,
|
|
660
683
|
bz_notification_channel_preference_entity_1.BzNotificationChannelPreferenceEntity,
|
|
661
684
|
child_menu_entity_1.ChildMenuEntity,
|
|
662
685
|
choice_list_entity_1.ChoiceListEntity,
|
|
@@ -707,6 +730,8 @@ const es6Classes = {
|
|
|
707
730
|
user_preference_entity_1.UserPreferenceEntity,
|
|
708
731
|
user_role_entity_1.UserRoleEntity,
|
|
709
732
|
watchlist_assignment_entity_1.WatchlistAssignmentEntity,
|
|
733
|
+
webhook_event_entity_1.WebhookEventEntity,
|
|
734
|
+
webhook_log_entity_1.WebhookLogEntity,
|
|
710
735
|
webhook_slug_entity_1.WebhookSlugEntity,
|
|
711
736
|
webhook_type_entity_1.WebhookTypeEntity,
|
|
712
737
|
whatsapp_message_entity_1.WhatsappMessageEntity,
|
|
@@ -729,6 +754,7 @@ const es6Classes = {
|
|
|
729
754
|
business_user_job_1.BusinessUserJob,
|
|
730
755
|
business_user_notification_preference_job_1.BusinessUserNotificationPreferenceJob,
|
|
731
756
|
business_user_role_job_1.BusinessUserRoleJob,
|
|
757
|
+
business_webhook_job_1.BusinessWebhookJob,
|
|
732
758
|
bz_notification_channel_preference_job_1.BzNotificationChannelPreferenceJob,
|
|
733
759
|
child_menu_job_1.ChildMenuJob,
|
|
734
760
|
choice_list_job_1.ChoiceListJob,
|
|
@@ -785,6 +811,8 @@ const es6Classes = {
|
|
|
785
811
|
user_preference_job_1.UserPreferenceJob,
|
|
786
812
|
user_role_job_1.UserRoleJob,
|
|
787
813
|
watchlist_assignment_job_1.WatchlistAssignmentJob,
|
|
814
|
+
webhook_event_job_1.WebhookEventJob,
|
|
815
|
+
webhook_log_job_1.WebhookLogJob,
|
|
788
816
|
webhook_slug_job_1.WebhookSlugJob,
|
|
789
817
|
webhook_type_job_1.WebhookTypeJob,
|
|
790
818
|
whatsapp_incoming_webhook_job_1.WhatsappIncomingWebhookJob,
|
|
@@ -846,6 +874,7 @@ const es6Classes = {
|
|
|
846
874
|
send_gchat_webhook_notification_1.SendGchatWebhookNotification,
|
|
847
875
|
send_slack_message_notification_1.SendSlackMessageNotification,
|
|
848
876
|
send_slack_webhook_notification_1.SendSlackWebhookNotification,
|
|
877
|
+
send_webhook_request_1.SendWebhookRequest,
|
|
849
878
|
send_whatsapp_message_notification_1.SendWhatsappMessageNotification,
|
|
850
879
|
set_fcm_token_1.SetFcmToken,
|
|
851
880
|
sync_business_user_role_1.SyncBusinessUserRole,
|
|
@@ -893,6 +922,7 @@ const es6Classes = {
|
|
|
893
922
|
business_user_notification_preference_subscriber_1.BusinessUserNotificationPreferenceSubscriber,
|
|
894
923
|
business_user_role_subscriber_1.BusinessUserRoleSubscriber,
|
|
895
924
|
business_user_subscriber_1.BusinessUserSubscriber,
|
|
925
|
+
business_webhook_subscriber_1.BusinessWebhookSubscriber,
|
|
896
926
|
bz_notification_channel_preference_subscriber_1.BzNotificationChannelPreferenceSubscriber,
|
|
897
927
|
child_menu_subscriber_1.ChildMenuSubscriber,
|
|
898
928
|
choice_list_subscriber_1.ChoiceListSubscriber,
|
|
@@ -945,6 +975,8 @@ const es6Classes = {
|
|
|
945
975
|
user_preference_subscriber_1.UserPreferenceSubscriber,
|
|
946
976
|
user_role_subscriber_1.UserRoleSubscriber,
|
|
947
977
|
watchlist_assignment_subscriber_1.WatchlistAssignmentSubscriber,
|
|
978
|
+
webhook_event_subscriber_1.WebhookEventSubscriber,
|
|
979
|
+
webhook_log_subscriber_1.WebhookLogSubscriber,
|
|
948
980
|
webhook_slug_subscriber_1.WebhookSlugSubscriber,
|
|
949
981
|
webhook_type_subscriber_1.WebhookTypeSubscriber,
|
|
950
982
|
whatsapp_message_subscriber_1.WhatsappMessageSubscriber,
|
|
@@ -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 { BusinessWebhookEntity } from '../entities/business.webhook.entity';
|
|
3
|
+
export declare class BusinessWebhookJob extends CommonJob {
|
|
4
|
+
protected readonly queueService: QueueService;
|
|
5
|
+
constructor(queueService: QueueService);
|
|
6
|
+
handle(evt: DatabaseEventDto<BusinessWebhookEntity>): Promise<BusinessWebhookEntity>;
|
|
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.BusinessWebhookJob = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
let BusinessWebhookJob = class BusinessWebhookJob extends nestjs_utility_services_1.CommonJob {
|
|
16
|
+
constructor(queueService) {
|
|
17
|
+
super('8ea4526f7a5a487483b9e0e4501f6e52');
|
|
18
|
+
this.queueService = queueService;
|
|
19
|
+
}
|
|
20
|
+
async handle(evt) {
|
|
21
|
+
return evt.entity;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.BusinessWebhookJob = BusinessWebhookJob;
|
|
25
|
+
exports.BusinessWebhookJob = BusinessWebhookJob = __decorate([
|
|
26
|
+
(0, common_1.Injectable)(),
|
|
27
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.QueueService])
|
|
28
|
+
], BusinessWebhookJob);
|
|
29
|
+
//# sourceMappingURL=business.webhook.job.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"business.webhook.job.js","sourceRoot":"","sources":["../../../src/access/jobs/business.webhook.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAAmG;AAI5F,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,mCAAS;IAC7C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;IAEzD,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,GAA4C;QACrD,OAAO,GAAG,CAAC,MAAM,CAAC;IACtB,CAAC;CACJ,CAAA;AAPY,gDAAkB;6BAAlB,kBAAkB;IAD9B,IAAA,mBAAU,GAAE;qCAEoC,sCAAY;GADhD,kBAAkB,CAO9B"}
|
|
@@ -12,6 +12,7 @@ export * from './business.user.group.job';
|
|
|
12
12
|
export * from './business.user.job';
|
|
13
13
|
export * from './business.user.notification.preference.job';
|
|
14
14
|
export * from './business.user.role.job';
|
|
15
|
+
export * from './business.webhook.job';
|
|
15
16
|
export * from './bz.notification.channel.preference.job';
|
|
16
17
|
export * from './child.menu.job';
|
|
17
18
|
export * from './choice.list.job';
|
|
@@ -68,6 +69,8 @@ export * from './user.notification.job';
|
|
|
68
69
|
export * from './user.preference.job';
|
|
69
70
|
export * from './user.role.job';
|
|
70
71
|
export * from './watchlist.assignment.job';
|
|
72
|
+
export * from './webhook.event.job';
|
|
73
|
+
export * from './webhook.log.job';
|
|
71
74
|
export * from './webhook.slug.job';
|
|
72
75
|
export * from './webhook.type.job';
|
|
73
76
|
export * from './whatsapp.incoming.webhook.job';
|
|
@@ -28,6 +28,7 @@ __exportStar(require("./business.user.group.job"), exports);
|
|
|
28
28
|
__exportStar(require("./business.user.job"), exports);
|
|
29
29
|
__exportStar(require("./business.user.notification.preference.job"), exports);
|
|
30
30
|
__exportStar(require("./business.user.role.job"), exports);
|
|
31
|
+
__exportStar(require("./business.webhook.job"), exports);
|
|
31
32
|
__exportStar(require("./bz.notification.channel.preference.job"), exports);
|
|
32
33
|
__exportStar(require("./child.menu.job"), exports);
|
|
33
34
|
__exportStar(require("./choice.list.job"), exports);
|
|
@@ -84,6 +85,8 @@ __exportStar(require("./user.notification.job"), exports);
|
|
|
84
85
|
__exportStar(require("./user.preference.job"), exports);
|
|
85
86
|
__exportStar(require("./user.role.job"), exports);
|
|
86
87
|
__exportStar(require("./watchlist.assignment.job"), exports);
|
|
88
|
+
__exportStar(require("./webhook.event.job"), exports);
|
|
89
|
+
__exportStar(require("./webhook.log.job"), exports);
|
|
87
90
|
__exportStar(require("./webhook.slug.job"), exports);
|
|
88
91
|
__exportStar(require("./webhook.type.job"), exports);
|
|
89
92
|
__exportStar(require("./whatsapp.incoming.webhook.job"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,4EAA0D;AAAA,iEAA+C;AAAA,0EAAwD;AAAA,uDAAqC;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,8EAA4D;AAAA,2DAAyC;AAAA,2EAAyD;AAAA,mDAAiC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,kDAAgC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,sDAAoC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,+DAA6C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,2DAAyC;AAAA,oDAAkC;AAAA,6CAA2B;AAAA,kDAAgC;AAAA,+CAA6B;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,gDAA8B;AAAA,mDAAiC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,kDAAgC;AAAA,6DAA2C;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,kEAAgD;AAAA,yDAAuC;AAAA,0DAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/jobs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,wDAAsC;AAAA,4EAA0D;AAAA,iEAA+C;AAAA,0EAAwD;AAAA,uDAAqC;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,sDAAoC;AAAA,8EAA4D;AAAA,2DAAyC;AAAA,yDAAuC;AAAA,2EAAyD;AAAA,mDAAiC;AAAA,oDAAkC;AAAA,oDAAkC;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,sDAAoC;AAAA,4DAA0C;AAAA,kDAAgC;AAAA,qDAAmC;AAAA,yDAAuC;AAAA,sDAAoC;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,yDAAuC;AAAA,qDAAmC;AAAA,kDAAgC;AAAA,+DAA6C;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,qDAAmC;AAAA,mDAAiC;AAAA,wDAAsC;AAAA,uDAAqC;AAAA,qDAAmC;AAAA,2DAAyC;AAAA,oDAAkC;AAAA,6CAA2B;AAAA,kDAAgC;AAAA,+CAA6B;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,6DAA2C;AAAA,gDAA8B;AAAA,mDAAiC;AAAA,+DAA6C;AAAA,8DAA4C;AAAA,yDAAuC;AAAA,+DAA6C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,uDAAqC;AAAA,mDAAiC;AAAA,sDAAoC;AAAA,8DAA4C;AAAA,sDAAoC;AAAA,kDAAgC;AAAA,uDAAqC;AAAA,0DAAwC;AAAA,wDAAsC;AAAA,kDAAgC;AAAA,6DAA2C;AAAA,sDAAoC;AAAA,oDAAkC;AAAA,qDAAmC;AAAA,qDAAmC;AAAA,kEAAgD;AAAA,yDAAuC;AAAA,0DAAuC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CommonJob, DatabaseEventDto, QueueService } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { WebhookEventEntity } from '../entities/webhook.event.entity';
|
|
3
|
+
export declare class WebhookEventJob extends CommonJob {
|
|
4
|
+
protected readonly queueService: QueueService;
|
|
5
|
+
constructor(queueService: QueueService);
|
|
6
|
+
handle(evt: DatabaseEventDto<WebhookEventEntity>): Promise<WebhookEventEntity>;
|
|
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.WebhookEventJob = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
let WebhookEventJob = class WebhookEventJob extends nestjs_utility_services_1.CommonJob {
|
|
16
|
+
constructor(queueService) {
|
|
17
|
+
super('d6398176da2ef9abab52f8974d249942');
|
|
18
|
+
this.queueService = queueService;
|
|
19
|
+
}
|
|
20
|
+
async handle(evt) {
|
|
21
|
+
return evt.entity;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.WebhookEventJob = WebhookEventJob;
|
|
25
|
+
exports.WebhookEventJob = WebhookEventJob = __decorate([
|
|
26
|
+
(0, common_1.Injectable)(),
|
|
27
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.QueueService])
|
|
28
|
+
], WebhookEventJob);
|
|
29
|
+
//# sourceMappingURL=webhook.event.job.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.event.job.js","sourceRoot":"","sources":["../../../src/access/jobs/webhook.event.job.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,oFAAmG;AAI5F,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,mCAAS;IAC1C,YAA+B,YAA0B;QACrD,KAAK,CAAC,kCAAkC,CAAC,CAAC;QADf,iBAAY,GAAZ,YAAY,CAAc;IAEzD,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,GAAyC;QAClD,OAAO,GAAG,CAAC,MAAM,CAAC;IACtB,CAAC;CACJ,CAAA;AAPY,0CAAe;0BAAf,eAAe;IAD3B,IAAA,mBAAU,GAAE;qCAEoC,sCAAY;GADhD,eAAe,CAO3B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CommonJob, DatabaseEventDto, QueueService } from '@servicelabsco/nestjs-utility-services';
|
|
2
|
+
import { WebhookLogEntity } from '../entities/webhook.log.entity';
|
|
3
|
+
export declare class WebhookLogJob extends CommonJob {
|
|
4
|
+
protected readonly queueService: QueueService;
|
|
5
|
+
constructor(queueService: QueueService);
|
|
6
|
+
handle(evt: DatabaseEventDto<WebhookLogEntity>): Promise<WebhookLogEntity>;
|
|
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.WebhookLogJob = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
15
|
+
let WebhookLogJob = class WebhookLogJob extends nestjs_utility_services_1.CommonJob {
|
|
16
|
+
constructor(queueService) {
|
|
17
|
+
super('4147e479deae8d2de827bb0a1b9a8c2d');
|
|
18
|
+
this.queueService = queueService;
|
|
19
|
+
}
|
|
20
|
+
async handle(evt) {
|
|
21
|
+
return evt.entity;
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
exports.WebhookLogJob = WebhookLogJob;
|
|
25
|
+
exports.WebhookLogJob = WebhookLogJob = __decorate([
|
|
26
|
+
(0, common_1.Injectable)(),
|
|
27
|
+
__metadata("design:paramtypes", [nestjs_utility_services_1.QueueService])
|
|
28
|
+
], WebhookLogJob);
|
|
29
|
+
//# sourceMappingURL=webhook.log.job.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.log.job.js","sourceRoot":"","sources":["../../../src/access/jobs/webhook.log.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"}
|
|
@@ -52,6 +52,7 @@ export * from './send.gchat.message.notification';
|
|
|
52
52
|
export * from './send.gchat.webhook.notification';
|
|
53
53
|
export * from './send.slack.message.notification';
|
|
54
54
|
export * from './send.slack.webhook.notification.';
|
|
55
|
+
export * from './send.webhook.request';
|
|
55
56
|
export * from './send.whatsapp.message.notification';
|
|
56
57
|
export * from './set.fcm.token';
|
|
57
58
|
export * from './sync.business.user.role';
|
|
@@ -68,6 +68,7 @@ __exportStar(require("./send.gchat.message.notification"), exports);
|
|
|
68
68
|
__exportStar(require("./send.gchat.webhook.notification"), exports);
|
|
69
69
|
__exportStar(require("./send.slack.message.notification"), exports);
|
|
70
70
|
__exportStar(require("./send.slack.webhook.notification."), exports);
|
|
71
|
+
__exportStar(require("./send.webhook.request"), exports);
|
|
71
72
|
__exportStar(require("./send.whatsapp.message.notification"), exports);
|
|
72
73
|
__exportStar(require("./set.fcm.token"), exports);
|
|
73
74
|
__exportStar(require("./sync.business.user.role"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kFAAgE;AAAA,+EAA6D;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,qEAAmD;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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kFAAgE;AAAA,+EAA6D;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,qEAAmD;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,yDAAuC;AAAA,uEAAqD;AAAA,kDAAgC;AAAA,4DAA0C;AAAA,+DAA4C"}
|