@servicelabsco/slabs-access-manager 1.0.52 → 1.0.54
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/device.auth.controller.d.ts +44 -0
- package/dist/access/controllers/device.auth.controller.js +69 -0
- package/dist/access/controllers/device.auth.controller.js.map +1 -0
- package/dist/access/controllers/index.d.ts +3 -0
- package/dist/access/controllers/index.js +3 -0
- package/dist/access/controllers/index.js.map +1 -1
- package/dist/access/controllers/lock.script.controller.d.ts +5 -1
- package/dist/access/controllers/lock.script.controller.js +24 -2
- package/dist/access/controllers/lock.script.controller.js.map +1 -1
- package/dist/access/controllers/oauth.as.controller.d.ts +52 -0
- package/dist/access/controllers/oauth.as.controller.js +117 -0
- package/dist/access/controllers/oauth.as.controller.js.map +1 -0
- package/dist/access/controllers/oauth.discovery.controller.d.ts +16 -0
- package/dist/access/controllers/oauth.discovery.controller.js +35 -0
- package/dist/access/controllers/oauth.discovery.controller.js.map +1 -0
- package/dist/access/dtos/add.lock.script.dto.d.ts +0 -1
- package/dist/access/dtos/add.lock.script.dto.js +0 -5
- package/dist/access/dtos/add.lock.script.dto.js.map +1 -1
- package/dist/access/dtos/device.decide.dto.d.ts +5 -0
- package/dist/access/dtos/device.decide.dto.js +36 -0
- package/dist/access/dtos/device.decide.dto.js.map +1 -0
- package/dist/access/dtos/device.poll.dto.d.ts +3 -0
- package/dist/access/dtos/device.poll.dto.js +24 -0
- package/dist/access/dtos/device.poll.dto.js.map +1 -0
- package/dist/access/dtos/index.d.ts +4 -0
- package/dist/access/dtos/index.js +4 -0
- package/dist/access/dtos/index.js.map +1 -1
- package/dist/access/dtos/oauth.consent.decide.dto.d.ts +5 -0
- package/dist/access/dtos/oauth.consent.decide.dto.js +38 -0
- package/dist/access/dtos/oauth.consent.decide.dto.js.map +1 -0
- package/dist/access/dtos/oauth.register.dto.d.ts +7 -0
- package/dist/access/dtos/oauth.register.dto.js +51 -0
- package/dist/access/dtos/oauth.register.dto.js.map +1 -0
- package/dist/access/entities/device.code.entity.d.ts +17 -0
- package/dist/access/entities/device.code.entity.js +74 -0
- package/dist/access/entities/device.code.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/menu.action.entity.d.ts +1 -0
- package/dist/access/entities/menu.action.entity.js +4 -0
- package/dist/access/entities/menu.action.entity.js.map +1 -1
- package/dist/access/entities/oauth.authorization.entity.d.ts +23 -0
- package/dist/access/entities/oauth.authorization.entity.js +98 -0
- package/dist/access/entities/oauth.authorization.entity.js.map +1 -0
- package/dist/access/entities/oauth.client.entity.d.ts +10 -0
- package/dist/access/entities/oauth.client.entity.js +49 -0
- package/dist/access/entities/oauth.client.entity.js.map +1 -0
- package/dist/access/es6.classes.d.ts +24 -6
- package/dist/access/es6.classes.js +36 -1
- package/dist/access/es6.classes.js.map +1 -1
- package/dist/access/libraries/evaluate.email.rule.js.map +1 -1
- package/dist/access/libraries/extract.client.credentials.d.ts +12 -0
- package/dist/access/libraries/extract.client.credentials.js +41 -0
- package/dist/access/libraries/extract.client.credentials.js.map +1 -0
- package/dist/access/libraries/index.d.ts +2 -0
- package/dist/access/libraries/index.js +2 -0
- package/dist/access/libraries/index.js.map +1 -1
- package/dist/access/libraries/oauth.pkce.d.ts +6 -0
- package/dist/access/libraries/oauth.pkce.js +25 -0
- package/dist/access/libraries/oauth.pkce.js.map +1 -0
- package/dist/access/libraries/process.email.notification.js +3 -3
- package/dist/access/libraries/process.email.notification.js.map +1 -1
- package/dist/access/libraries/process.internal.notification.js +3 -3
- package/dist/access/libraries/process.internal.notification.js.map +1 -1
- package/dist/access/libraries/process.lock.script.data.js +2 -9
- package/dist/access/libraries/process.lock.script.data.js.map +1 -1
- package/dist/access/libraries/sanitize.email.addresses.d.ts +3 -1
- package/dist/access/libraries/sanitize.email.addresses.js +28 -25
- package/dist/access/libraries/sanitize.email.addresses.js.map +1 -1
- package/dist/access/libraries/send.email.notification.js +1 -1
- package/dist/access/libraries/send.email.notification.js.map +1 -1
- package/dist/access/middlewares/external.access.middleware.d.ts +3 -5
- package/dist/access/middlewares/external.access.middleware.js +9 -17
- package/dist/access/middlewares/external.access.middleware.js.map +1 -1
- package/dist/access/middlewares/index.d.ts +1 -0
- package/dist/access/middlewares/index.js +1 -0
- package/dist/access/middlewares/index.js.map +1 -1
- package/dist/access/middlewares/mcp.access.middleware.d.ts +7 -0
- package/dist/access/middlewares/mcp.access.middleware.js +34 -0
- package/dist/access/middlewares/mcp.access.middleware.js.map +1 -0
- package/dist/access/services/credential.resolve.service.d.ts +22 -0
- package/dist/access/services/credential.resolve.service.js +106 -0
- package/dist/access/services/credential.resolve.service.js.map +1 -0
- package/dist/access/services/device.auth.service.d.ts +50 -0
- package/dist/access/services/device.auth.service.js +177 -0
- package/dist/access/services/device.auth.service.js.map +1 -0
- package/dist/access/services/index.d.ts +4 -0
- package/dist/access/services/index.js +4 -0
- package/dist/access/services/index.js.map +1 -1
- package/dist/access/services/lock.script.service.d.ts +6 -0
- package/dist/access/services/lock.script.service.js +41 -0
- package/dist/access/services/lock.script.service.js.map +1 -0
- package/dist/access/services/oauth.as.service.d.ts +96 -0
- package/dist/access/services/oauth.as.service.js +299 -0
- package/dist/access/services/oauth.as.service.js.map +1 -0
- package/dist/app.module.js +2 -1
- package/dist/app.module.js.map +1 -1
- 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/development/registries/development.entity.registry.js +2 -0
- package/dist/development/registries/development.entity.registry.js.map +1 -1
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -1
- package/dist/mcp/admin/tools/admin.tool.registry.js +10 -0
- package/dist/mcp/admin/tools/admin.tool.registry.js.map +1 -1
- package/dist/mcp/admin/tools/index.d.ts +1 -0
- package/dist/mcp/admin/tools/index.js +1 -0
- package/dist/mcp/admin/tools/index.js.map +1 -1
- package/dist/mcp/admin/tools/menu_ui_action/index.d.ts +5 -0
- package/dist/mcp/admin/tools/menu_ui_action/index.js +22 -0
- package/dist/mcp/admin/tools/menu_ui_action/index.js.map +1 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.create.tool.d.ts +22 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.create.tool.js +25 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.create.tool.js.map +1 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.delete.tool.d.ts +17 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.delete.tool.js +23 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.delete.tool.js.map +1 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.get.tool.d.ts +17 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.get.tool.js +23 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.get.tool.js.map +1 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.list.tool.d.ts +23 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.list.tool.js +37 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.list.tool.js.map +1 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.update.tool.d.ts +20 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.update.tool.js +25 -0
- package/dist/mcp/admin/tools/menu_ui_action/menu.ui.action.update.tool.js.map +1 -0
- package/dist/mcp/auth/execution.context.interface.d.ts +9 -0
- package/dist/mcp/auth/execution.context.interface.js +3 -0
- package/dist/mcp/auth/execution.context.interface.js.map +1 -0
- package/dist/mcp/auth/index.d.ts +1 -0
- package/dist/mcp/auth/index.js +18 -0
- package/dist/mcp/auth/index.js.map +1 -0
- package/dist/mcp/es6.classes.d.ts +7 -1
- package/dist/mcp/es6.classes.js +14 -1
- package/dist/mcp/es6.classes.js.map +1 -1
- package/dist/mcp/http/admin.mcp.controller.js +1 -1
- package/dist/mcp/http/admin.mcp.controller.js.map +1 -1
- package/dist/mcp/http/business.mcp.controller.js +5 -5
- package/dist/mcp/http/business.mcp.controller.js.map +1 -1
- package/dist/mcp/http/index.d.ts +1 -0
- package/dist/mcp/http/index.js +1 -0
- package/dist/mcp/http/index.js.map +1 -1
- package/dist/mcp/http/mcp.http.module.js +2 -1
- package/dist/mcp/http/mcp.http.module.js.map +1 -1
- package/dist/mcp/http/mcp.request.handler.js +1 -1
- package/dist/mcp/http/mcp.request.handler.js.map +1 -1
- package/dist/mcp/http/prm.controller.d.ts +10 -0
- package/dist/mcp/http/prm.controller.js +45 -0
- package/dist/mcp/http/prm.controller.js.map +1 -0
- package/dist/mcp/http/unauthorized.mcp.response.d.ts +6 -3
- package/dist/mcp/http/unauthorized.mcp.response.js +27 -17
- package/dist/mcp/http/unauthorized.mcp.response.js.map +1 -1
- package/dist/mcp/index.d.ts +1 -0
- package/dist/mcp/index.js +1 -0
- package/dist/mcp/index.js.map +1 -1
- package/dist/migrations/1785056165556-AddDisplayOrderUtlMenuActionsTable.d.ts +5 -0
- package/dist/migrations/1785056165556-AddDisplayOrderUtlMenuActionsTable.js +15 -0
- package/dist/migrations/1785056165556-AddDisplayOrderUtlMenuActionsTable.js.map +1 -0
- package/dist/migrations/1785057482427-CreateDeviceCodesTable.d.ts +5 -0
- package/dist/migrations/1785057482427-CreateDeviceCodesTable.js +25 -0
- package/dist/migrations/1785057482427-CreateDeviceCodesTable.js.map +1 -0
- package/dist/migrations/1785058700995-CreateOauthClientsTable.d.ts +5 -0
- package/dist/migrations/1785058700995-CreateOauthClientsTable.js +23 -0
- package/dist/migrations/1785058700995-CreateOauthClientsTable.js.map +1 -0
- package/dist/migrations/1785058701000-CreateOauthAuthorizationsTable.d.ts +5 -0
- package/dist/migrations/1785058701000-CreateOauthAuthorizationsTable.js +31 -0
- package/dist/migrations/1785058701000-CreateOauthAuthorizationsTable.js.map +1 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ import { DashboardComponentController } from './controllers/dashboard.component.
|
|
|
24
24
|
import { DashboardController } from './controllers/dashboard.controller';
|
|
25
25
|
import { DashboardReportController } from './controllers/dashboard.report.controller';
|
|
26
26
|
import { DeveloperModeController } from './controllers/developer.mode.controller';
|
|
27
|
+
import { DeviceAuthController } from './controllers/device.auth.controller';
|
|
27
28
|
import { DownloadLogController } from './controllers/download.log.controller';
|
|
28
29
|
import { EmailRuleController } from './controllers/email.rule.controller';
|
|
29
30
|
import { EventTriggerController } from './controllers/event.trigger.controller';
|
|
@@ -39,6 +40,8 @@ import { LockScriptController } from './controllers/lock.script.controller';
|
|
|
39
40
|
import { MenuController } from './controllers/menu.controller';
|
|
40
41
|
import { ModuleController } from './controllers/module.controller';
|
|
41
42
|
import { ModuleMenuController } from './controllers/module.menu.controller';
|
|
43
|
+
import { OauthAsController } from './controllers/oauth.as.controller';
|
|
44
|
+
import { OauthDiscoveryController } from './controllers/oauth.discovery.controller';
|
|
42
45
|
import { OverridingScriptController } from './controllers/overriding.script.controller';
|
|
43
46
|
import { ScheduledReportController } from './controllers/scheduled.report.controller';
|
|
44
47
|
import { ScheduledReportItemController } from './controllers/scheduled.report.item.controller';
|
|
@@ -72,6 +75,8 @@ import { CommonListFilterDto } from './dtos/common.list.filter.dto';
|
|
|
72
75
|
import { DateFilterDto } from './dtos/date.filter.dto';
|
|
73
76
|
import { DateRangeFilterDto } from './dtos/date.range.filter.dto';
|
|
74
77
|
import { DbFindDto } from './dtos/db.find.dto';
|
|
78
|
+
import { DeviceDecideDto } from './dtos/device.decide.dto';
|
|
79
|
+
import { DevicePollDto } from './dtos/device.poll.dto';
|
|
75
80
|
import { EditQueryDto } from './dtos/edit.query.dto';
|
|
76
81
|
import { EmailMessageNormalizedDto } from './dtos/email.message.normalized.dto';
|
|
77
82
|
import { EmailRecipientToDto } from './dtos/email.recipient.to.dto';
|
|
@@ -88,6 +93,8 @@ import { ListResponseFormatDto } from './dtos/list.response.format.dto';
|
|
|
88
93
|
import { ModifyCustomFieldStatusDto } from './dtos/modify.custom.field.status.dto';
|
|
89
94
|
import { NotificationPayloadDto } from './dtos/notification.payload.dto';
|
|
90
95
|
import { NumberRangeFilterDto } from './dtos/number.range.filter.dto';
|
|
96
|
+
import { OauthConsentDecideDto } from './dtos/oauth.consent.decide.dto';
|
|
97
|
+
import { OauthRegisterDto } from './dtos/oauth.register.dto';
|
|
91
98
|
import { ProcessCommonListConfigDto } from './dtos/process.common.list.config.dto';
|
|
92
99
|
import { ProcessListingPayloadDto } from './dtos/process.listing.payload.dto';
|
|
93
100
|
import { RecurringDefinitionDto } from './dtos/recurring.definition.dto';
|
|
@@ -118,6 +125,7 @@ import { ChildMenuEntity } from './entities/child.menu.entity';
|
|
|
118
125
|
import { ConversationEntity } from './entities/conversation.entity';
|
|
119
126
|
import { CurrencyRateEntity } from './entities/currency.rate.entity';
|
|
120
127
|
import { DashboardComponentEntity } from './entities/dashboard.component.entity';
|
|
128
|
+
import { DeviceCodeEntity } from './entities/device.code.entity';
|
|
121
129
|
import { DownloadLogEntity } from './entities/download.log.entity';
|
|
122
130
|
import { EmailMessageEntity } from './entities/email.message.entity';
|
|
123
131
|
import { EmailRecipientEntity } from './entities/email.recipient.entity';
|
|
@@ -141,6 +149,8 @@ import { MenuActionEntity } from './entities/menu.action.entity';
|
|
|
141
149
|
import { MenuEntity } from './entities/menu.entity';
|
|
142
150
|
import { MenuRoleEntity } from './entities/menu.role.entity';
|
|
143
151
|
import { ModuleMenuEntity } from './entities/module.menu.entity';
|
|
152
|
+
import { OauthAuthorizationEntity } from './entities/oauth.authorization.entity';
|
|
153
|
+
import { OauthClientEntity } from './entities/oauth.client.entity';
|
|
144
154
|
import { OnholdDocumentEntity } from './entities/onhold.document.entity';
|
|
145
155
|
import { PreferenceUserEntity } from './entities/preference.user.entity';
|
|
146
156
|
import { PreferenceUserGroupEntity } from './entities/preference.user.group.entity';
|
|
@@ -290,6 +300,8 @@ import { CreateUserBusinessSecret } from './libraries/create.user.business.secre
|
|
|
290
300
|
import { DateFn } from './libraries/date.fn';
|
|
291
301
|
import { EvaluateEmailRule } from './libraries/evaluate.email.rule';
|
|
292
302
|
import { ExecuteBusinessScript } from './libraries/execute.business.script';
|
|
303
|
+
import { ExtractClientCredentials } from './libraries/extract.client.credentials';
|
|
304
|
+
import { OauthPkce } from './libraries/oauth.pkce';
|
|
293
305
|
import { ProcessAmazonIntegration } from './libraries/process.amazon.integration';
|
|
294
306
|
import { ProcessApiAccountData } from './libraries/process.api.account.data';
|
|
295
307
|
import { ProcessApiAccountList } from './libraries/process.api.account.list';
|
|
@@ -372,6 +384,7 @@ import { ProcessUserNotificationList } from './libraries/process.user.notificati
|
|
|
372
384
|
import { ProcessWhatsappIntegration } from './libraries/process.whatsapp.integration';
|
|
373
385
|
import { ProcessWhatsappMessage } from './libraries/process.whatsapp.message';
|
|
374
386
|
import { ProcessZohoIntegration } from './libraries/process.zoho.integration';
|
|
387
|
+
import { SanitizeEmailAddresses } from './libraries/sanitize.email.addresses';
|
|
375
388
|
import { SendEmailNotification } from './libraries/send.email.notification';
|
|
376
389
|
import { SendFcmNotification } from './libraries/send.fcm.notification';
|
|
377
390
|
import { SendGchatMessageNotification } from './libraries/send.gchat.message.notification';
|
|
@@ -385,6 +398,7 @@ import { SyncBusinessUserRole } from './libraries/sync.business.user.role';
|
|
|
385
398
|
import { ValidateCustomFieldData } from './libraries/validate.custom.field.data';
|
|
386
399
|
import { BusinessMiddleware } from './middlewares/business.middleware';
|
|
387
400
|
import { ExternalAccessMiddleware } from './middlewares/external.access.middleware';
|
|
401
|
+
import { McpAccessMiddleware } from './middlewares/mcp.access.middleware';
|
|
388
402
|
import { UserBusinessAccessMiddleware } from './middlewares/user.business.access.middleware';
|
|
389
403
|
import { AccessBusinessService } from './services/access.business.service';
|
|
390
404
|
import { AccessReportService } from './services/access.report.service';
|
|
@@ -396,8 +410,10 @@ import { BusinessPreferenceService } from './services/business.preference.servic
|
|
|
396
410
|
import { BusinessPropertyService } from './services/business.property.service';
|
|
397
411
|
import { BusinessScriptService } from './services/business.script.service';
|
|
398
412
|
import { BusinessUserRoleService } from './services/business.user.role.service';
|
|
413
|
+
import { CredentialResolveService } from './services/credential.resolve.service';
|
|
399
414
|
import { CurrencyService } from './services/currency.service';
|
|
400
415
|
import { CustomFieldService } from './services/custom.field.service';
|
|
416
|
+
import { DeviceAuthService } from './services/device.auth.service';
|
|
401
417
|
import { Es6JobsService } from './services/es6.jobs.service';
|
|
402
418
|
import { Es6Service } from './services/es6.service';
|
|
403
419
|
import { GchatService } from './services/gchat.service';
|
|
@@ -406,7 +422,9 @@ import { GptService } from './services/gpt.service';
|
|
|
406
422
|
import { ListingPreferenceService } from './services/listing.preference.service';
|
|
407
423
|
import { ListingService } from './services/listing.service';
|
|
408
424
|
import { LoadEntityService } from './services/load.entity.service';
|
|
425
|
+
import { LockScriptService } from './services/lock.script.service';
|
|
409
426
|
import { NotificationService } from './services/notification.service';
|
|
427
|
+
import { OauthAsService } from './services/oauth.as.service';
|
|
410
428
|
import { OverridingScriptService } from './services/overriding.script.service';
|
|
411
429
|
import { PlatformService } from './services/platform.service';
|
|
412
430
|
import { RequestLogService } from './services/request.log.service';
|
|
@@ -519,14 +537,14 @@ import { WhatsappTemplateSubscriber } from './subscribers/whatsapp.template.subs
|
|
|
519
537
|
import { WhitelistedWhatsappNumberSubscriber } from './subscribers/whitelisted.whatsapp.number.subscriber';
|
|
520
538
|
declare const es6Classes: {
|
|
521
539
|
commands: (typeof WebhookPollCommand)[];
|
|
522
|
-
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessCurrencyController | typeof BusinessEmailController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessPropertyController | typeof BusinessReportController | typeof BusinessScriptController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CurrencyRateController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DownloadLogController | typeof EmailRuleController | typeof EventTriggerController | typeof EventTriggerLogController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof GstMappingController | typeof ListingController | typeof ListingPageController | typeof ListingPreferenceController | typeof LockScriptController | typeof MenuController | typeof ModuleController | typeof ModuleMenuController | typeof OverridingScriptController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserBusinessSecretController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
523
|
-
dtos: (typeof EmailRuleAttributesDto | typeof EmailMessageNormalizedDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof EmailRecipientToDto | typeof GchatPostingPayloadDto | typeof BoardCastInternalStatusMessageDto | typeof WhatsappPostingPayloadDto | typeof SendWhatsappMessagePayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof DbFindDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof AddIntegrationPreferenceDto | typeof AddBusinessCurrencyDto | typeof GmailIntegrationOauthDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof AddBusinessPreferenceDto | typeof GenerateBusinessReportDto | typeof GenerateReportDto | typeof GenerateReportSheetDataDto | typeof AddBusinessUserNotificationPreferenceDto | typeof AddWebhookDto | typeof GetCurrencyRateDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddGstMappingDto | typeof AddModuleMenuDto | typeof AddOverridingScriptDto | typeof AddScheduledReportDto | typeof AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof RequestLogOptionsDto | typeof SlackMessageDataDto)[];
|
|
524
|
-
entities: (typeof AccessBusinessEntity | typeof EmailMessageEntity | typeof EmailRecipientEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof EmailTemplateRecipientEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof OnholdDocumentEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessCurrencyEntity | typeof BusinessDownloadableReportEntity | typeof ChildMenuEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof MenuRoleEntity | typeof FeatureMenuEntity | typeof BusinessFeatureEntity | typeof BusinessGroupRoleEntity | typeof BusinessMenuEntity | typeof BusinessReportEntity | typeof ExecutionLogEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof CurrencyRateEntity | typeof DashboardComponentEntity | typeof DownloadLogEntity | typeof EventTriggerLogEntity | typeof FinnotoUserEntity | typeof GroupMemberEntity | typeof GstMappingEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof LockScriptEntity | typeof ModuleMenuEntity | typeof ReportLogEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
|
|
540
|
+
controllers: (typeof AccessMenuController | typeof ApiAccountController | typeof BulkUploadController | typeof BulkUploadItemController | typeof BusinessAppIntegrationController | typeof BusinessCurrencyController | typeof BusinessEmailController | typeof BusinessNotificationChannelPreferenceController | typeof BusinessPreferenceController | typeof BusinessPropertyController | typeof BusinessReportController | typeof BusinessScriptController | typeof BusinessUserGroupController | typeof BusinessUserNotificationPreferenceController | typeof BusinessWebhookController | typeof ChoiceListController | typeof ChoiceTypeController | typeof CommonWebhookController | typeof CurrencyRateController | typeof CustomFieldController | typeof DashboardBuilderController | typeof DashboardComponentController | typeof DashboardController | typeof DashboardReportController | typeof DeveloperModeController | typeof DeviceAuthController | typeof DownloadLogController | typeof EmailRuleController | typeof EventTriggerController | typeof EventTriggerLogController | typeof FcmTokenController | typeof GroupMemberController | typeof GroupRoleController | typeof GstMappingController | typeof ListingController | typeof ListingPageController | typeof ListingPreferenceController | typeof LockScriptController | typeof MenuController | typeof ModuleController | typeof ModuleMenuController | typeof OauthAsController | typeof OauthDiscoveryController | typeof OverridingScriptController | typeof ScheduledReportController | typeof ScheduledReportItemController | typeof TagController | typeof UserBusinessSecretController | typeof UserNotificationController | typeof UserPreferenceController)[];
|
|
541
|
+
dtos: (typeof EmailRuleAttributesDto | typeof EmailMessageNormalizedDto | typeof NotificationPayloadDto | typeof SendEmailNotificationDataDto | typeof EmailRecipientToDto | typeof GchatPostingPayloadDto | typeof BoardCastInternalStatusMessageDto | typeof WhatsappPostingPayloadDto | typeof SendWhatsappMessagePayloadDto | typeof AddShortUrlDto | typeof BankAccountPayloadDto | typeof RecurringDefinitionDto | typeof DbFindDto | typeof AddListingPreferenceDto | typeof ListResponseDto | typeof DateRangeFilterDto | typeof DateFilterDto | typeof ListResponseFormatDto | typeof NumberRangeFilterDto | typeof CommonListFilterDto | typeof ProcessCommonListConfigDto | typeof SendWebhookRequestPayload | typeof AccessBusinessParamDto | typeof AddIntegrationPreferenceDto | typeof AddBusinessCurrencyDto | typeof GmailIntegrationOauthDto | typeof ServerEmailRecipientsDto | typeof ServerEmailMessageDto | typeof AddBusinessPreferenceDto | typeof GenerateBusinessReportDto | typeof GenerateReportDto | typeof GenerateReportSheetDataDto | typeof AddBusinessUserNotificationPreferenceDto | typeof AddWebhookDto | typeof GetCurrencyRateDto | typeof ModifyCustomFieldStatusDto | typeof GetScriptValuesDto | typeof AddDashboardComponentPropertiesDto | typeof AddDashboardComponentDto | typeof StringSearchDto | typeof EditQueryDto | typeof DeviceDecideDto | typeof DevicePollDto | typeof TokenPayloadDto | typeof AddGroupMemberDto | typeof AddRoleDto | typeof AddGstMappingDto | typeof AddModuleMenuDto | typeof OauthConsentDecideDto | typeof OauthRegisterDto | typeof AddOverridingScriptDto | typeof AddScheduledReportDto | typeof AddBusinessAppIntegrationDto | typeof AddConversationDto | typeof AddTagDto | typeof BusinessAppIntegrationMessagePayloadDto | typeof ProcessListingPayloadDto | typeof RequestLogOptionsDto | typeof SlackMessageDataDto)[];
|
|
542
|
+
entities: (typeof AccessBusinessEntity | typeof EmailMessageEntity | typeof EmailRecipientEntity | typeof BusinessUserEntity | typeof ProductEntity | typeof EmailStyleEntity | typeof EmailTemplateLogEntity | typeof EmailTemplateRecipientEntity | typeof FcmMessageEntity | typeof FcmTokenEntity | typeof GchatUserEntity | typeof GchatMessageEntity | typeof GchatWebhookMessageEntity | typeof SlackMessageEntity | typeof BzNotificationChannelPreferenceEntity | typeof SlackIntegrationEntity | typeof SlackUserEntity | typeof WhatsappMessageEntity | typeof WhatsappPreferenceEntity | typeof OnholdDocumentEntity | typeof BusinessAppIntegrationCredentialEntity | typeof BusinessAppIntegrationMessagesEntity | typeof BusinessCurrencyEntity | typeof BusinessDownloadableReportEntity | typeof ChildMenuEntity | typeof MenuEntity | typeof UiActionRoleEntity | typeof MenuActionEntity | typeof MenuRoleEntity | typeof FeatureMenuEntity | typeof BusinessFeatureEntity | typeof BusinessGroupRoleEntity | typeof BusinessMenuEntity | typeof BusinessReportEntity | typeof ExecutionLogEntity | typeof GroupRoleEntity | typeof BusinessUserRoleEntity | typeof BusinessWebhookEntity | typeof ConversationEntity | typeof CurrencyRateEntity | typeof DashboardComponentEntity | typeof DeviceCodeEntity | typeof DownloadLogEntity | typeof EventTriggerLogEntity | typeof FinnotoUserEntity | typeof GroupMemberEntity | typeof GstMappingEntity | typeof PreferenceUserEntity | typeof PreferenceUserGroupEntity | typeof LockScriptEntity | typeof ModuleMenuEntity | typeof OauthAuthorizationEntity | typeof OauthClientEntity | typeof ReportLogEntity | typeof RequestLogEntity | typeof ScheduledReportEntity | typeof ScheduledReportEmailEntity | typeof ScheduledReportItemEntity | typeof SlackWebhookMessageEntity | typeof UserNotificationEntity | typeof UserRoleEntity | typeof WatchlistAssignmentEntity | typeof WebhookLogEntity | typeof WebhookSlugEntity)[];
|
|
525
543
|
enums: (typeof NotificationTypeEnum | typeof NotificationChannelTypeEnum | typeof RecurringPeriodEnum | typeof ListingViewTypeEnum | typeof CustomColumnTypeEnum | typeof ProductTypeEnum | typeof PlatformTypeEnum)[];
|
|
526
544
|
jobs: (typeof EvaluateEmailRuleJob | typeof WhatsappMessagePayloadDto | typeof AccessTestJob | typeof ApiAccountJob | typeof AppIntegrationJob | typeof BusinessAppIntegrationCredentialJob | typeof BusinessAppIntegrationJob | typeof BusinessAppIntegrationMessagesJob | typeof BusinessCurrencyJob | typeof BusinessDownloadableReportJob | typeof BusinessEmailJob | typeof BusinessFeatureJob | typeof BusinessGroupRoleJob | typeof BusinessMenuJob | typeof BusinessPreferenceJob | typeof BusinessPropertyJob | typeof GenerateBusinessReportJob | typeof SendBusinessReportNotificationJob | typeof BusinessReportJob | typeof SetBusinessScriptScheduleJob | typeof BusinessScriptJob | typeof BusinessUserGroupJob | typeof BusinessUserJob | typeof BusinessUserNotificationPreferenceJob | typeof BusinessUserRoleJob | typeof BusinessWebhookJob | typeof BzNotificationChannelPreferenceJob | typeof CaptureEventTriggerJob | typeof ChildMenuJob | typeof ChoiceListJob | typeof ChoiceTypeJob | typeof ConversationJob | typeof CurrencyRateJob | typeof CustomFieldJob | typeof CustomReportJob | typeof DashboardComponentJob | typeof DashboardJob | typeof DownloadLogJob | typeof SyncEmailMessageMetricsJob | typeof EmailAttachmentJob | typeof SetEmailUnreadCountJob | typeof EmailMessageJob | typeof EmailRecipientJob | typeof EmailRuleJob | typeof EmailStyleJob | typeof EmailTemplateLogJob | typeof EmailTemplateRecipientJob | typeof EventTriggerJob | typeof EventTriggerLogJob | typeof ExecuteBusinessScriptJob | typeof ExecutionLogJob | typeof FcmMessageJob | typeof FcmNotificationJob | typeof FcmTemplateJob | typeof FcmTokenJob | typeof FeatureJob | typeof FeatureMenuJob | typeof GchatIncomingWebhookJob | typeof GchatMessageJob | typeof GchatTemplateJob | typeof GchatUserJob | typeof GchatWebhookJob | typeof GchatWebhookMessageJob | typeof GmailIntegrationFetchMessagesJob | typeof GroupMemberJob | typeof GroupRoleJob | typeof GstMappingJob | typeof ListPreferenceJob | typeof ListingColumnJob | typeof ListingPageJob | typeof ListingPreferenceJob | typeof LockScriptJob | typeof MenuActionJob | typeof MenuJob | typeof MenuRoleJob | typeof ModuleJob | typeof ModuleMenuJob | typeof OnholdDocumentJob | typeof OverridingScriptJob | typeof PreferenceUserGroupJob | typeof PreferenceUsersJob | typeof ProcessServerEmailJob | typeof ProductJob | typeof RefreshBusinessPropertyJob | typeof ReportLogJob | typeof RequestLogJob | 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 SyncEmailMessagesJob | typeof SyncMenuJob | typeof UiActionJob | typeof UiActionRoleJob | typeof UserBusinessSecretJob | typeof UserNotificationJob | typeof UserPreferenceJob | typeof UserRoleJob | typeof WatchlistAssignmentJob | typeof WebhookEventJob | typeof WebhookLogJob | typeof WebhookSlugJob | typeof WebhookTypeJob | typeof WhatsappIncomingWebhookJob | typeof WhatsappMessageJob | typeof WhatsappTemplateJob | typeof WhitelistedWhatsappNumberJob)[];
|
|
527
|
-
libraries: (typeof DateFn | typeof EvaluateEmailRule | typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendFcmNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof ProcessWhatsappMessage | typeof SendWhatsappMessageNotification | typeof ProcessDbFind | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessListingCsvFile | typeof SendWebhookRequest | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessBulkUploadItemList | typeof ProcessBulkUploadList | typeof ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessCurrencyList | typeof ProcessBusinessEmailList | typeof ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessPropertyData | typeof ProcessBusinessPropertyList | typeof ProcessBusinessReportList | typeof ProcessGenerateReport | typeof ProcessDownloadableReportsList | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessReportSheetData | typeof ExecuteBusinessScript | typeof ProcessBusinessScriptCreation | typeof ProcessBusinessScriptList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | typeof ProcessChoiceListData | typeof ProcessChoiceTypeData | typeof ProcessChoiceTypeList | typeof ProcessAmazonIntegration | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | typeof ProcessCurrencyRateList | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof ProcessDownloadLogList | typeof ProcessEmailRuleData | typeof ProcessEmailRuleList | typeof ProcessEventTriggerData | typeof ProcessEventTriggerList | typeof ProcessEventTriggerLogList | typeof SetFcmToken | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessGstMappingData | typeof ProcessGstMappingList | typeof ProcessListingPageCreation | typeof ProcessPreferenceData | typeof ProcessLockScriptData | typeof ProcessLockScriptList | typeof ProcessMenuCreation | typeof ProcessModuleCreation | typeof ProcessModuleMenuCreation | typeof ProcessOverridingScriptData | typeof ProcessOverridingScriptList | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof
|
|
528
|
-
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware | typeof UserBusinessAccessMiddleware)[];
|
|
529
|
-
services: (typeof BusinessPropertyService | typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof OverridingScriptService | typeof SlabsService | typeof UtilityService | typeof AccessBusinessService | typeof ListingService | typeof CustomFieldService | typeof WebhookService | typeof BusinessEmailService | typeof GmailIntegrationService | typeof AccessReportService | typeof BusinessScriptService | typeof AuditLogService | typeof CurrencyService | typeof PlatformService | typeof ListingPreferenceService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof ApiAccountService | typeof UserBusinessAccessService | typeof AppIntegrationService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof Es6Service | typeof GptService | typeof LoadEntityService | typeof RequestLogService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
545
|
+
libraries: (typeof DateFn | typeof EvaluateEmailRule | typeof SanitizeEmailAddresses | typeof ProcessEmailNotification | typeof SendEmailNotification | typeof SendFcmNotification | typeof SendGchatMessageNotification | typeof SendGchatWebhookNotification | typeof SendSlackMessageNotification | typeof SendSlackWebhookNotification | typeof ProcessWhatsappMessage | typeof SendWhatsappMessageNotification | typeof ProcessDbFind | typeof ProcessDateFilter | typeof ProcessCommonList | typeof ProcessListingCsvFile | typeof SendWebhookRequest | typeof ProcessApplicationMenu | typeof ProcessMenuDetails | typeof ProcessApiAccountData | typeof ProcessApiAccountList | typeof ProcessBulkUploadItemList | typeof ProcessBulkUploadList | typeof ProcessWhatsappIntegration | typeof ProcessAppIntegration | typeof ProcessBusinessCurrencyList | typeof ProcessBusinessEmailList | typeof ProcessBusinessNotificationChannelPreferenceList | typeof ProcessBusinessPropertyData | typeof ProcessBusinessPropertyList | typeof ProcessBusinessReportList | typeof ProcessGenerateReport | typeof ProcessDownloadableReportsList | typeof ProcessDashboardReportData | typeof ProcessReportData | typeof ProcessReportSheetData | typeof ExecuteBusinessScript | typeof ProcessBusinessScriptCreation | typeof ProcessBusinessScriptList | typeof ProcessBusinessUserGroupList | typeof ProcessUserGroupCreation | typeof ProcessBusinessUserNotificationPreferenceList | typeof ProcessChoiceListData | typeof ProcessChoiceTypeData | typeof ProcessChoiceTypeList | typeof ProcessAmazonIntegration | typeof ProcessSlackIntegration | typeof ProcessZohoIntegration | typeof ProcessCurrencyRateList | typeof ProcessCustomFieldList | typeof ProcessCustomFieldCreation | typeof ProcessCreateDashboardComponent | typeof ProcessDashboardComponent | typeof ProcessDashboardReport | typeof CreateUserBusinessSecret | typeof ExtractClientCredentials | typeof ProcessDownloadLogList | typeof ProcessEmailRuleData | typeof ProcessEmailRuleList | typeof ProcessEventTriggerData | typeof ProcessEventTriggerList | typeof ProcessEventTriggerLogList | typeof SetFcmToken | typeof ProcessGroupMemberList | typeof ProcessGroupRoleList | typeof ProcessGstMappingData | typeof ProcessGstMappingList | typeof ProcessListingPageCreation | typeof ProcessPreferenceData | typeof ProcessLockScriptData | typeof ProcessLockScriptList | typeof ProcessMenuCreation | typeof ProcessModuleCreation | typeof ProcessModuleMenuCreation | typeof OauthPkce | typeof ProcessOverridingScriptData | typeof ProcessOverridingScriptList | typeof ProcessScheduledReportData | typeof ProcessScheduledReportList | typeof ProcessScheduledReportItemList | typeof ProcessUserNotificationList | typeof ProcessRevokeSlackIntegration | typeof ProcessRevokeZohoIntegration | typeof ProcessBusinessFeatureAddition | typeof ProcessBusinessFeatureDeletion | typeof ProcessBusinessGroupRoleUpdation | typeof ProcessInternalNotification | typeof ProcessBusinessUserRoleUpdate | typeof ProcessFeatureMenuAddition | typeof ProcessFeatureMenuDeletion | typeof ProcessGmailMessage | typeof ProcessGroupMemberUpdation | typeof SyncBusinessUserRole | typeof CommonTagController | typeof ProcessConversationData | typeof ConversationController | typeof ProcessBusinessScriptData | typeof ValidateCustomFieldData | typeof ProcessCommonCustomField | typeof ProcessNotification | typeof ProcessSlackMessage | typeof ProcessTestList)[];
|
|
546
|
+
middlewares: (typeof BusinessMiddleware | typeof ExternalAccessMiddleware | typeof McpAccessMiddleware | typeof UserBusinessAccessMiddleware)[];
|
|
547
|
+
services: (typeof BusinessPropertyService | typeof SendEmailService | typeof GchatService | typeof SlackService | typeof WhatsappService | typeof NotificationService | typeof OverridingScriptService | typeof SlabsService | typeof UtilityService | typeof AccessBusinessService | typeof ListingService | typeof CustomFieldService | typeof WebhookService | typeof BusinessEmailService | typeof GmailIntegrationService | typeof AccessReportService | typeof BusinessScriptService | typeof AuditLogService | typeof CurrencyService | typeof DeviceAuthService | typeof PlatformService | typeof ListingPreferenceService | typeof LockScriptService | typeof OauthAsService | typeof ScheduledReportService | typeof BusinessUserRoleService | typeof ApiAccountService | typeof UserBusinessAccessService | typeof CredentialResolveService | typeof AppIntegrationService | typeof BusinessPreferenceService | typeof Es6JobsService | typeof Es6Service | typeof GptService | typeof LoadEntityService | typeof RequestLogService | typeof UserNotificationService | typeof UserPreferenceService)[];
|
|
530
548
|
subscribers: (typeof ApiAccountSubscriber | typeof AppIntegrationSubscriber | typeof BusinessAppIntegrationCredentialSubscriber | typeof BusinessAppIntegrationMessagesSubscriber | typeof BusinessAppIntegrationSubscriber | typeof BusinessCurrencySubscriber | typeof BusinessDownloadableReportSubscriber | typeof BusinessEmailSubscriber | typeof BusinessFeatureSubscriber | typeof BusinessGroupRoleSubscriber | typeof BusinessMenuSubscriber | typeof BusinessPreferenceSubscriber | typeof BusinessPropertySubscriber | typeof BusinessReportSubscriber | typeof BusinessScriptSubscriber | typeof BusinessUserGroupSubscriber | typeof BusinessUserNotificationPreferenceSubscriber | typeof BusinessUserRoleSubscriber | typeof BusinessUserSubscriber | typeof BusinessWebhookSubscriber | typeof BzNotificationChannelPreferenceSubscriber | typeof CaptureEventTriggerSubscriber | typeof ChildMenuSubscriber | typeof ChoiceListSubscriber | typeof ChoiceTypeSubscriber | typeof ConversationSubscriber | typeof CurrencyRateSubscriber | typeof CustomFieldSubscriber | typeof CustomReportSubscriber | typeof DashboardComponentSubscriber | typeof DashboardSubscriber | typeof DownloadLogSubscriber | typeof EmailAttachmentSubscriber | typeof EmailMessageSubscriber | typeof EmailRecipientSubscriber | typeof EmailRuleSubscriber | typeof EmailStyleSubscriber | typeof EmailTemplateLogSubscriber | typeof EmailTemplateRecipientSubscriber | typeof EventTriggerLogSubscriber | typeof EventTriggerSubscriber | typeof ExecutionLogSubscriber | typeof FcmMessageSubscriber | typeof FcmNotificationSubscriber | typeof FcmTemplateSubscriber | typeof FcmTokenSubscriber | typeof FeatureMenuSubscriber | typeof FeatureSubscriber | typeof GchatMessageSubscriber | typeof GchatTemplateSubscriber | typeof GchatUserSubscriber | typeof GchatWebhookMessageSubscriber | typeof GchatWebhookSubscriber | typeof GroupMemberSubscriber | typeof GroupRoleSubscriber | typeof GstMappingSubscriber | typeof ListPreferenceSubscriber | typeof ListingColumnSubscriber | typeof ListingPageSubscriber | typeof ListingPreferenceSubscriber | typeof LockScriptSubscriber | typeof MenuActionSubscriber | typeof MenuRoleSubscriber | typeof MenuSubscriber | typeof ModuleMenuSubscriber | typeof ModuleSubscriber | typeof OnholdDocumentSubscriber | typeof OverridingScriptSubscriber | typeof PreferenceUserGroupSubscriber | typeof PreferenceUserSubscriber | typeof ProductSubscriber | typeof ReportLogSubscriber | typeof RequestLogSubscriber | 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 UserBusinessSecretSubscriber | typeof UserNotificationSubscriber | typeof UserPreferenceSubscriber | typeof UserRoleSubscriber | typeof WatchlistAssignmentSubscriber | typeof WebhookEventSubscriber | typeof WebhookLogSubscriber | typeof WebhookSlugSubscriber | typeof WebhookTypeSubscriber | typeof WhatsappMessageSubscriber | typeof WhatsappTemplateSubscriber | typeof WhitelistedWhatsappNumberSubscriber)[];
|
|
531
549
|
};
|
|
532
550
|
export default es6Classes;
|
|
@@ -26,6 +26,7 @@ const dashboard_component_controller_1 = require("./controllers/dashboard.compon
|
|
|
26
26
|
const dashboard_controller_1 = require("./controllers/dashboard.controller");
|
|
27
27
|
const dashboard_report_controller_1 = require("./controllers/dashboard.report.controller");
|
|
28
28
|
const developer_mode_controller_1 = require("./controllers/developer.mode.controller");
|
|
29
|
+
const device_auth_controller_1 = require("./controllers/device.auth.controller");
|
|
29
30
|
const download_log_controller_1 = require("./controllers/download.log.controller");
|
|
30
31
|
const email_rule_controller_1 = require("./controllers/email.rule.controller");
|
|
31
32
|
const event_trigger_controller_1 = require("./controllers/event.trigger.controller");
|
|
@@ -41,6 +42,8 @@ const lock_script_controller_1 = require("./controllers/lock.script.controller")
|
|
|
41
42
|
const menu_controller_1 = require("./controllers/menu.controller");
|
|
42
43
|
const module_controller_1 = require("./controllers/module.controller");
|
|
43
44
|
const module_menu_controller_1 = require("./controllers/module.menu.controller");
|
|
45
|
+
const oauth_as_controller_1 = require("./controllers/oauth.as.controller");
|
|
46
|
+
const oauth_discovery_controller_1 = require("./controllers/oauth.discovery.controller");
|
|
44
47
|
const overriding_script_controller_1 = require("./controllers/overriding.script.controller");
|
|
45
48
|
const scheduled_report_controller_1 = require("./controllers/scheduled.report.controller");
|
|
46
49
|
const scheduled_report_item_controller_1 = require("./controllers/scheduled.report.item.controller");
|
|
@@ -136,6 +139,8 @@ const date_range_filter_dto_1 = require("./dtos/date.range.filter.dto");
|
|
|
136
139
|
const db_find_dto_1 = require("./dtos/db.find.dto");
|
|
137
140
|
const db_find_options_dto_1 = require("./dtos/db.find.options.dto");
|
|
138
141
|
const developer_mode_set_listing_dto_1 = require("./dtos/developer.mode.set.listing.dto");
|
|
142
|
+
const device_decide_dto_1 = require("./dtos/device.decide.dto");
|
|
143
|
+
const device_poll_dto_1 = require("./dtos/device.poll.dto");
|
|
139
144
|
const download_log_attributes_dto_1 = require("./dtos/download.log.attributes.dto");
|
|
140
145
|
const download_log_list_filter_dto_1 = require("./dtos/download.log.list.filter.dto");
|
|
141
146
|
const edit_query_dto_1 = require("./dtos/edit.query.dto");
|
|
@@ -196,6 +201,8 @@ const module_attributes_dto_1 = require("./dtos/module.attributes.dto");
|
|
|
196
201
|
const module_menu_attributes_dto_1 = require("./dtos/module.menu.attributes.dto");
|
|
197
202
|
const notification_payload_dto_1 = require("./dtos/notification.payload.dto");
|
|
198
203
|
const number_range_filter_dto_1 = require("./dtos/number.range.filter.dto");
|
|
204
|
+
const oauth_consent_decide_dto_1 = require("./dtos/oauth.consent.decide.dto");
|
|
205
|
+
const oauth_register_dto_1 = require("./dtos/oauth.register.dto");
|
|
199
206
|
const onhold_document_attributes_dto_1 = require("./dtos/onhold.document.attributes.dto");
|
|
200
207
|
const overriding_script_attributes_dto_1 = require("./dtos/overriding.script.attributes.dto");
|
|
201
208
|
const overriding_script_list_filter_dto_1 = require("./dtos/overriding.script.list.filter.dto");
|
|
@@ -282,6 +289,7 @@ const custom_field_entity_1 = require("./entities/custom.field.entity");
|
|
|
282
289
|
const custom_report_entity_1 = require("./entities/custom.report.entity");
|
|
283
290
|
const dashboard_component_entity_1 = require("./entities/dashboard.component.entity");
|
|
284
291
|
const dashboard_entity_1 = require("./entities/dashboard.entity");
|
|
292
|
+
const device_code_entity_1 = require("./entities/device.code.entity");
|
|
285
293
|
const download_log_entity_1 = require("./entities/download.log.entity");
|
|
286
294
|
const email_attachment_entity_1 = require("./entities/email.attachment.entity");
|
|
287
295
|
const email_message_entity_1 = require("./entities/email.message.entity");
|
|
@@ -316,6 +324,8 @@ const menu_entity_1 = require("./entities/menu.entity");
|
|
|
316
324
|
const menu_role_entity_1 = require("./entities/menu.role.entity");
|
|
317
325
|
const module_entity_1 = require("./entities/module.entity");
|
|
318
326
|
const module_menu_entity_1 = require("./entities/module.menu.entity");
|
|
327
|
+
const oauth_authorization_entity_1 = require("./entities/oauth.authorization.entity");
|
|
328
|
+
const oauth_client_entity_1 = require("./entities/oauth.client.entity");
|
|
319
329
|
const onhold_document_entity_1 = require("./entities/onhold.document.entity");
|
|
320
330
|
const overriding_script_entity_1 = require("./entities/overriding.script.entity");
|
|
321
331
|
const preference_user_entity_1 = require("./entities/preference.user.entity");
|
|
@@ -476,6 +486,8 @@ const create_user_business_secret_1 = require("./libraries/create.user.business.
|
|
|
476
486
|
const date_fn_1 = require("./libraries/date.fn");
|
|
477
487
|
const evaluate_email_rule_1 = require("./libraries/evaluate.email.rule");
|
|
478
488
|
const execute_business_script_1 = require("./libraries/execute.business.script");
|
|
489
|
+
const extract_client_credentials_1 = require("./libraries/extract.client.credentials");
|
|
490
|
+
const oauth_pkce_1 = require("./libraries/oauth.pkce");
|
|
479
491
|
const process_amazon_integration_1 = require("./libraries/process.amazon.integration");
|
|
480
492
|
const process_api_account_data_1 = require("./libraries/process.api.account.data");
|
|
481
493
|
const process_api_account_list_1 = require("./libraries/process.api.account.list");
|
|
@@ -559,6 +571,7 @@ const process_user_notification_list_1 = require("./libraries/process.user.notif
|
|
|
559
571
|
const process_whatsapp_integration_1 = require("./libraries/process.whatsapp.integration");
|
|
560
572
|
const process_whatsapp_message_1 = require("./libraries/process.whatsapp.message");
|
|
561
573
|
const process_zoho_integration_1 = require("./libraries/process.zoho.integration");
|
|
574
|
+
const sanitize_email_addresses_1 = require("./libraries/sanitize.email.addresses");
|
|
562
575
|
const send_email_notification_1 = require("./libraries/send.email.notification");
|
|
563
576
|
const send_fcm_notification_1 = require("./libraries/send.fcm.notification");
|
|
564
577
|
const send_gchat_message_notification_1 = require("./libraries/send.gchat.message.notification");
|
|
@@ -572,6 +585,7 @@ const sync_business_user_role_1 = require("./libraries/sync.business.user.role")
|
|
|
572
585
|
const validate_custom_field_data_1 = require("./libraries/validate.custom.field.data");
|
|
573
586
|
const business_middleware_1 = require("./middlewares/business.middleware");
|
|
574
587
|
const external_access_middleware_1 = require("./middlewares/external.access.middleware");
|
|
588
|
+
const mcp_access_middleware_1 = require("./middlewares/mcp.access.middleware");
|
|
575
589
|
const user_business_access_middleware_1 = require("./middlewares/user.business.access.middleware");
|
|
576
590
|
const access_business_service_1 = require("./services/access.business.service");
|
|
577
591
|
const access_report_service_1 = require("./services/access.report.service");
|
|
@@ -583,8 +597,10 @@ const business_preference_service_1 = require("./services/business.preference.se
|
|
|
583
597
|
const business_property_service_1 = require("./services/business.property.service");
|
|
584
598
|
const business_script_service_1 = require("./services/business.script.service");
|
|
585
599
|
const business_user_role_service_1 = require("./services/business.user.role.service");
|
|
600
|
+
const credential_resolve_service_1 = require("./services/credential.resolve.service");
|
|
586
601
|
const currency_service_1 = require("./services/currency.service");
|
|
587
602
|
const custom_field_service_1 = require("./services/custom.field.service");
|
|
603
|
+
const device_auth_service_1 = require("./services/device.auth.service");
|
|
588
604
|
const es6_jobs_service_1 = require("./services/es6.jobs.service");
|
|
589
605
|
const es6_service_1 = require("./services/es6.service");
|
|
590
606
|
const gchat_service_1 = require("./services/gchat.service");
|
|
@@ -593,7 +609,9 @@ const gpt_service_1 = require("./services/gpt.service");
|
|
|
593
609
|
const listing_preference_service_1 = require("./services/listing.preference.service");
|
|
594
610
|
const listing_service_1 = require("./services/listing.service");
|
|
595
611
|
const load_entity_service_1 = require("./services/load.entity.service");
|
|
612
|
+
const lock_script_service_1 = require("./services/lock.script.service");
|
|
596
613
|
const notification_service_1 = require("./services/notification.service");
|
|
614
|
+
const oauth_as_service_1 = require("./services/oauth.as.service");
|
|
597
615
|
const overriding_script_service_1 = require("./services/overriding.script.service");
|
|
598
616
|
const platform_service_1 = require("./services/platform.service");
|
|
599
617
|
const request_log_service_1 = require("./services/request.log.service");
|
|
@@ -732,6 +750,7 @@ const es6Classes = {
|
|
|
732
750
|
dashboard_controller_1.DashboardController,
|
|
733
751
|
dashboard_report_controller_1.DashboardReportController,
|
|
734
752
|
developer_mode_controller_1.DeveloperModeController,
|
|
753
|
+
device_auth_controller_1.DeviceAuthController,
|
|
735
754
|
download_log_controller_1.DownloadLogController,
|
|
736
755
|
email_rule_controller_1.EmailRuleController,
|
|
737
756
|
event_trigger_controller_1.EventTriggerController,
|
|
@@ -747,6 +766,8 @@ const es6Classes = {
|
|
|
747
766
|
menu_controller_1.MenuController,
|
|
748
767
|
module_controller_1.ModuleController,
|
|
749
768
|
module_menu_controller_1.ModuleMenuController,
|
|
769
|
+
oauth_as_controller_1.OauthAsController,
|
|
770
|
+
oauth_discovery_controller_1.OauthDiscoveryController,
|
|
750
771
|
overriding_script_controller_1.OverridingScriptController,
|
|
751
772
|
scheduled_report_controller_1.ScheduledReportController,
|
|
752
773
|
scheduled_report_item_controller_1.ScheduledReportItemController,
|
|
@@ -844,6 +865,8 @@ const es6Classes = {
|
|
|
844
865
|
db_find_dto_1.DbFindDto,
|
|
845
866
|
db_find_options_dto_1.DbFindOptionsDto,
|
|
846
867
|
developer_mode_set_listing_dto_1.DeveloperModeSetListingDto,
|
|
868
|
+
device_decide_dto_1.DeviceDecideDto,
|
|
869
|
+
device_poll_dto_1.DevicePollDto,
|
|
847
870
|
download_log_attributes_dto_1.DownloadLogAttributesDto,
|
|
848
871
|
download_log_list_filter_dto_1.DownloadLogListFilterDto,
|
|
849
872
|
edit_query_dto_1.EditQueryDto,
|
|
@@ -904,6 +927,8 @@ const es6Classes = {
|
|
|
904
927
|
module_menu_attributes_dto_1.ModuleMenuAttributesDto,
|
|
905
928
|
notification_payload_dto_1.NotificationPayloadDto,
|
|
906
929
|
number_range_filter_dto_1.NumberRangeFilterDto,
|
|
930
|
+
oauth_consent_decide_dto_1.OauthConsentDecideDto,
|
|
931
|
+
oauth_register_dto_1.OauthRegisterDto,
|
|
907
932
|
onhold_document_attributes_dto_1.OnholdDocumentAttributesDto,
|
|
908
933
|
overriding_script_attributes_dto_1.OverridingScriptAttributesDto,
|
|
909
934
|
overriding_script_list_filter_dto_1.OverridingScriptListFilterDto,
|
|
@@ -992,6 +1017,7 @@ const es6Classes = {
|
|
|
992
1017
|
custom_report_entity_1.CustomReportEntity,
|
|
993
1018
|
dashboard_component_entity_1.DashboardComponentEntity,
|
|
994
1019
|
dashboard_entity_1.DashboardEntity,
|
|
1020
|
+
device_code_entity_1.DeviceCodeEntity,
|
|
995
1021
|
download_log_entity_1.DownloadLogEntity,
|
|
996
1022
|
email_attachment_entity_1.EmailAttachmentEntity,
|
|
997
1023
|
email_message_entity_1.EmailMessageEntity,
|
|
@@ -1026,6 +1052,8 @@ const es6Classes = {
|
|
|
1026
1052
|
menu_role_entity_1.MenuRoleEntity,
|
|
1027
1053
|
module_entity_1.ModuleEntity,
|
|
1028
1054
|
module_menu_entity_1.ModuleMenuEntity,
|
|
1055
|
+
oauth_authorization_entity_1.OauthAuthorizationEntity,
|
|
1056
|
+
oauth_client_entity_1.OauthClientEntity,
|
|
1029
1057
|
onhold_document_entity_1.OnholdDocumentEntity,
|
|
1030
1058
|
overriding_script_entity_1.OverridingScriptEntity,
|
|
1031
1059
|
preference_user_entity_1.PreferenceUserEntity,
|
|
@@ -1192,6 +1220,8 @@ const es6Classes = {
|
|
|
1192
1220
|
date_fn_1.DateFn,
|
|
1193
1221
|
evaluate_email_rule_1.EvaluateEmailRule,
|
|
1194
1222
|
execute_business_script_1.ExecuteBusinessScript,
|
|
1223
|
+
extract_client_credentials_1.ExtractClientCredentials,
|
|
1224
|
+
oauth_pkce_1.OauthPkce,
|
|
1195
1225
|
process_amazon_integration_1.ProcessAmazonIntegration,
|
|
1196
1226
|
process_api_account_data_1.ProcessApiAccountData,
|
|
1197
1227
|
process_api_account_list_1.ProcessApiAccountList,
|
|
@@ -1275,6 +1305,7 @@ const es6Classes = {
|
|
|
1275
1305
|
process_whatsapp_integration_1.ProcessWhatsappIntegration,
|
|
1276
1306
|
process_whatsapp_message_1.ProcessWhatsappMessage,
|
|
1277
1307
|
process_zoho_integration_1.ProcessZohoIntegration,
|
|
1308
|
+
sanitize_email_addresses_1.SanitizeEmailAddresses,
|
|
1278
1309
|
send_email_notification_1.SendEmailNotification,
|
|
1279
1310
|
send_fcm_notification_1.SendFcmNotification,
|
|
1280
1311
|
send_gchat_message_notification_1.SendGchatMessageNotification,
|
|
@@ -1287,7 +1318,7 @@ const es6Classes = {
|
|
|
1287
1318
|
sync_business_user_role_1.SyncBusinessUserRole,
|
|
1288
1319
|
validate_custom_field_data_1.ValidateCustomFieldData,
|
|
1289
1320
|
],
|
|
1290
|
-
middlewares: [business_middleware_1.BusinessMiddleware, external_access_middleware_1.ExternalAccessMiddleware, user_business_access_middleware_1.UserBusinessAccessMiddleware],
|
|
1321
|
+
middlewares: [business_middleware_1.BusinessMiddleware, external_access_middleware_1.ExternalAccessMiddleware, mcp_access_middleware_1.McpAccessMiddleware, user_business_access_middleware_1.UserBusinessAccessMiddleware],
|
|
1291
1322
|
services: [
|
|
1292
1323
|
access_business_service_1.AccessBusinessService,
|
|
1293
1324
|
access_report_service_1.AccessReportService,
|
|
@@ -1299,8 +1330,10 @@ const es6Classes = {
|
|
|
1299
1330
|
business_property_service_1.BusinessPropertyService,
|
|
1300
1331
|
business_script_service_1.BusinessScriptService,
|
|
1301
1332
|
business_user_role_service_1.BusinessUserRoleService,
|
|
1333
|
+
credential_resolve_service_1.CredentialResolveService,
|
|
1302
1334
|
currency_service_1.CurrencyService,
|
|
1303
1335
|
custom_field_service_1.CustomFieldService,
|
|
1336
|
+
device_auth_service_1.DeviceAuthService,
|
|
1304
1337
|
es6_jobs_service_1.Es6JobsService,
|
|
1305
1338
|
es6_service_1.Es6Service,
|
|
1306
1339
|
gchat_service_1.GchatService,
|
|
@@ -1309,7 +1342,9 @@ const es6Classes = {
|
|
|
1309
1342
|
listing_preference_service_1.ListingPreferenceService,
|
|
1310
1343
|
listing_service_1.ListingService,
|
|
1311
1344
|
load_entity_service_1.LoadEntityService,
|
|
1345
|
+
lock_script_service_1.LockScriptService,
|
|
1312
1346
|
notification_service_1.NotificationService,
|
|
1347
|
+
oauth_as_service_1.OauthAsService,
|
|
1313
1348
|
overriding_script_service_1.OverridingScriptService,
|
|
1314
1349
|
platform_service_1.PlatformService,
|
|
1315
1350
|
request_log_service_1.RequestLogService,
|
|
@@ -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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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evaluate.email.rule.js","sourceRoot":"","sources":["../../../src/access/libraries/evaluate.email.rule.ts"],"names":[],"mappings":";;;AAAA,oFAAuI;AAGvI,2EAAsE;AAEtE,qEAAgE;AAEhE,uCAAmC;AACnC,mCAAoC;AACpC,yEAAqE;AAIrE,MAAa,iBAAiB;IAC1B,YACqB,YAA0B,EAC1B,aAA4B,EAC5B,uBAAgD;QAFhD,iBAAY,GAAZ,YAAY,CAAc;QAC1B,kBAAa,GAAb,aAAa,CAAe;QAC5B,4BAAuB,GAAvB,uBAAuB,CAAyB;
|
|
1
|
+
{"version":3,"file":"evaluate.email.rule.js","sourceRoot":"","sources":["../../../src/access/libraries/evaluate.email.rule.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class ExtractClientCredentials {
|
|
2
|
+
static readonly PERSONAL_ACCESS_TOKEN_PREFIX = "fn_u_";
|
|
3
|
+
static formatPersonalAccessToken(clientId: string, clientSecret: string): string;
|
|
4
|
+
static fromHeaders(headers: Record<string, unknown> | undefined | null): {
|
|
5
|
+
clientId: string;
|
|
6
|
+
clientSecret: string;
|
|
7
|
+
} | null;
|
|
8
|
+
static parsePersonalAccessToken(token: string): {
|
|
9
|
+
clientId: string;
|
|
10
|
+
clientSecret: string;
|
|
11
|
+
} | null;
|
|
12
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExtractClientCredentials = void 0;
|
|
4
|
+
class ExtractClientCredentials {
|
|
5
|
+
static formatPersonalAccessToken(clientId, clientSecret) {
|
|
6
|
+
return `${ExtractClientCredentials.PERSONAL_ACCESS_TOKEN_PREFIX}${clientId}_${clientSecret}`;
|
|
7
|
+
}
|
|
8
|
+
static fromHeaders(headers) {
|
|
9
|
+
if (!headers)
|
|
10
|
+
return null;
|
|
11
|
+
const authz = headers.authorization ?? headers.Authorization;
|
|
12
|
+
if (typeof authz === 'string' && authz.toLowerCase().startsWith('bearer ')) {
|
|
13
|
+
const token = authz.slice(7).trim();
|
|
14
|
+
const fromBearer = ExtractClientCredentials.parsePersonalAccessToken(token);
|
|
15
|
+
if (fromBearer)
|
|
16
|
+
return fromBearer;
|
|
17
|
+
}
|
|
18
|
+
const clientId = headers['x-client-id'] ?? headers['X-Client-Id'];
|
|
19
|
+
const clientSecret = headers['x-client-secret'] ?? headers['X-Client-Secret'];
|
|
20
|
+
if (clientId && clientSecret) {
|
|
21
|
+
return { clientId: String(clientId), clientSecret: String(clientSecret) };
|
|
22
|
+
}
|
|
23
|
+
return null;
|
|
24
|
+
}
|
|
25
|
+
static parsePersonalAccessToken(token) {
|
|
26
|
+
if (!token?.startsWith(ExtractClientCredentials.PERSONAL_ACCESS_TOKEN_PREFIX))
|
|
27
|
+
return null;
|
|
28
|
+
const rest = token.slice(ExtractClientCredentials.PERSONAL_ACCESS_TOKEN_PREFIX.length);
|
|
29
|
+
const underscore = rest.indexOf('_');
|
|
30
|
+
if (underscore <= 0 || underscore === rest.length - 1)
|
|
31
|
+
return null;
|
|
32
|
+
const clientId = rest.slice(0, underscore);
|
|
33
|
+
const clientSecret = rest.slice(underscore + 1);
|
|
34
|
+
if (!clientId || !clientSecret)
|
|
35
|
+
return null;
|
|
36
|
+
return { clientId, clientSecret };
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.ExtractClientCredentials = ExtractClientCredentials;
|
|
40
|
+
ExtractClientCredentials.PERSONAL_ACCESS_TOKEN_PREFIX = 'fn_u_';
|
|
41
|
+
//# sourceMappingURL=extract.client.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extract.client.credentials.js","sourceRoot":"","sources":["../../../src/access/libraries/extract.client.credentials.ts"],"names":[],"mappings":";;;AAIA,MAAa,wBAAwB;IAOjC,MAAM,CAAC,yBAAyB,CAAC,QAAgB,EAAE,YAAoB;QACnE,OAAO,GAAG,wBAAwB,CAAC,4BAA4B,GAAG,QAAQ,IAAI,YAAY,EAAE,CAAC;IACjG,CAAC;IAMD,MAAM,CAAC,WAAW,CAAC,OAAmD;QAClE,IAAI,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC;QAE1B,MAAM,KAAK,GAAG,OAAO,CAAC,aAAa,IAAI,OAAO,CAAC,aAAa,CAAC;QAC7D,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;YACzE,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;YACpC,MAAM,UAAU,GAAG,wBAAwB,CAAC,wBAAwB,CAAC,KAAK,CAAC,CAAC;YAC5E,IAAI,UAAU;gBAAE,OAAO,UAAU,CAAC;QACtC,CAAC;QAED,MAAM,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,IAAI,OAAO,CAAC,aAAa,CAAC,CAAC;QAClE,MAAM,YAAY,GAAG,OAAO,CAAC,iBAAiB,CAAC,IAAI,OAAO,CAAC,iBAAiB,CAAC,CAAC;QAC9E,IAAI,QAAQ,IAAI,YAAY,EAAE,CAAC;YAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC,EAAE,YAAY,EAAE,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC;QAC9E,CAAC;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;IAKD,MAAM,CAAC,wBAAwB,CAAC,KAAa;QACzC,IAAI,CAAC,KAAK,EAAE,UAAU,CAAC,wBAAwB,CAAC,4BAA4B,CAAC;YAAE,OAAO,IAAI,CAAC;QAE3F,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,wBAAwB,CAAC,4BAA4B,CAAC,MAAM,CAAC,CAAC;QACvF,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QACrC,IAAI,UAAU,IAAI,CAAC,IAAI,UAAU,KAAK,IAAI,CAAC,MAAM,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC;QAEnE,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC;QAC3C,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,IAAI,CAAC,YAAY;YAAE,OAAO,IAAI,CAAC;QAE5C,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,CAAC;IACtC,CAAC;;AAjDL,4DAkDC;AAhDmB,qDAA4B,GAAG,OAAO,CAAC"}
|
|
@@ -4,6 +4,8 @@ export * from './create.user.business.secret';
|
|
|
4
4
|
export * from './date.fn';
|
|
5
5
|
export * from './evaluate.email.rule';
|
|
6
6
|
export * from './execute.business.script';
|
|
7
|
+
export * from './extract.client.credentials';
|
|
8
|
+
export * from './oauth.pkce';
|
|
7
9
|
export * from './process.amazon.integration';
|
|
8
10
|
export * from './process.api.account.data';
|
|
9
11
|
export * from './process.api.account.list';
|
|
@@ -20,6 +20,8 @@ __exportStar(require("./create.user.business.secret"), exports);
|
|
|
20
20
|
__exportStar(require("./date.fn"), exports);
|
|
21
21
|
__exportStar(require("./evaluate.email.rule"), exports);
|
|
22
22
|
__exportStar(require("./execute.business.script"), exports);
|
|
23
|
+
__exportStar(require("./extract.client.credentials"), exports);
|
|
24
|
+
__exportStar(require("./oauth.pkce"), exports);
|
|
23
25
|
__exportStar(require("./process.amazon.integration"), exports);
|
|
24
26
|
__exportStar(require("./process.api.account.data"), exports);
|
|
25
27
|
__exportStar(require("./process.api.account.list"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/access/libraries/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AAAA,4DAA0C;AAAA,gEAA8C;AAAA,4CAA0B;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,sEAAoD;AAAA,yEAAuD;AAAA,0FAAwE;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,uFAAqE;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uEAAqD;AAAA,+DAA6C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,kEAAgD;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,yDAAuC;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,qEAAmD;AAAA,oEAAkD;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,yDAAuC;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,gEAA8C;AAAA,4CAA0B;AAAA,wDAAsC;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,+CAA6B;AAAA,+DAA6C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,mEAAiD;AAAA,gEAA8C;AAAA,sEAAoD;AAAA,sEAAoD;AAAA,yEAAuD;AAAA,0FAAwE;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,iEAA+C;AAAA,iEAA+C;AAAA,qEAAmD;AAAA,uFAAqE;AAAA,sEAAoD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,gEAA8C;AAAA,gEAA8C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,uEAAqD;AAAA,+DAA6C;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,gEAA8C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,wDAAsC;AAAA,oDAAkC;AAAA,8DAA4C;AAAA,sEAAoD;AAAA,+DAA6C;AAAA,4DAA0C;AAAA,4DAA0C;AAAA,+DAA6C;AAAA,+DAA6C;AAAA,mEAAiD;AAAA,kEAAgD;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,8DAA4C;AAAA,kEAAgD;AAAA,4DAA0C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,kEAAgD;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,0DAAwC;AAAA,yDAAuC;AAAA,4DAA0C;AAAA,iEAA+C;AAAA,yDAAuC;AAAA,mEAAiD;AAAA,mEAAiD;AAAA,4DAA0C;AAAA,wDAAsC;AAAA,8DAA4C;AAAA,qEAAmD;AAAA,oEAAkD;AAAA,kEAAgD;AAAA,uEAAqD;AAAA,kEAAgD;AAAA,8DAA4C;AAAA,0DAAwC;AAAA,sDAAoC;AAAA,gEAA8C;AAAA,mEAAiD;AAAA,iEAA+C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,6DAA2C;AAAA,4DAA0C;AAAA,0DAAwC;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,oEAAkD;AAAA,qEAAmD;AAAA,yDAAuC;AAAA,uEAAqD;AAAA,kDAAgC;AAAA,4DAA0C;AAAA,+DAA4C"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OauthPkce = void 0;
|
|
4
|
+
const crypto_1 = require("crypto");
|
|
5
|
+
class OauthPkce {
|
|
6
|
+
static s256Base64Url(value) {
|
|
7
|
+
return (0, crypto_1.createHash)('sha256').update(value).digest('base64url');
|
|
8
|
+
}
|
|
9
|
+
static sha256Hex(value) {
|
|
10
|
+
return (0, crypto_1.createHash)('sha256').update(value).digest('hex');
|
|
11
|
+
}
|
|
12
|
+
static randomToken(bytes = 32) {
|
|
13
|
+
return (0, crypto_1.randomBytes)(bytes).toString('hex');
|
|
14
|
+
}
|
|
15
|
+
static safeRedirectHost(redirectUri) {
|
|
16
|
+
try {
|
|
17
|
+
return new URL(redirectUri).host;
|
|
18
|
+
}
|
|
19
|
+
catch {
|
|
20
|
+
return '';
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.OauthPkce = OauthPkce;
|
|
25
|
+
//# sourceMappingURL=oauth.pkce.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oauth.pkce.js","sourceRoot":"","sources":["../../../src/access/libraries/oauth.pkce.ts"],"names":[],"mappings":";;;AAAA,mCAAiD;AAGjD,MAAa,SAAS;IAElB,MAAM,CAAC,aAAa,CAAC,KAAa;QAC9B,OAAO,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAClE,CAAC;IAED,MAAM,CAAC,SAAS,CAAC,KAAa;QAC1B,OAAO,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED,MAAM,CAAC,WAAW,CAAC,KAAK,GAAG,EAAE;QACzB,OAAO,IAAA,oBAAW,EAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC9C,CAAC;IAGD,MAAM,CAAC,gBAAgB,CAAC,WAAmB;QACvC,IAAI,CAAC;YACD,OAAO,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC;QACrC,CAAC;QAAC,MAAM,CAAC;YACL,OAAO,EAAE,CAAC;QACd,CAAC;IACL,CAAC;CACJ;AAtBD,8BAsBC"}
|