{"version":3,"sources":["src/app/models/communication-provider.ts","src/app/models/notifications.ts"],"sourcesContent":["export interface CommunicationProviderProfileBase {\n id: string;\n name: string;\n}\n\nexport enum CommunicationProviderType {\n UNDEFINED = 'UNDEFINED',\n SLACK_APP = 'SLACK_APP',\n DISCORD_APP = 'DISCORD_APP',\n TEAMS = 'TEAMS',\n MAIL = 'MAIL',\n FCM = 'FCM',\n}\n\nexport interface SlackAppProviderProfileConfiguration {\n teamName: string;\n}\n\nexport interface DiscordAppProviderProfileConfiguration {\n guildName: string;\n}\n\nexport interface TeamsProviderProfileConfiguration {\n teamName: string;\n}\n\nexport type CommunicationProviderProfile = CommunicationProviderProfileBase &\n (\n | {\n type: CommunicationProviderType.SLACK_APP;\n configuration: SlackAppProviderProfileConfiguration;\n }\n | {\n type: CommunicationProviderType.DISCORD_APP;\n configuration: DiscordAppProviderProfileConfiguration;\n }\n | {\n type: CommunicationProviderType.TEAMS;\n configuration: TeamsProviderProfileConfiguration;\n }\n );\n\nexport interface ProviderProfileConfigFieldMapping {\n fieldName: string;\n configName: keyof T;\n}\n","import { CommunicationProviderType } from './communication-provider';\n\nexport interface NotificationProviderBinding {\n providerName: string;\n isActive: boolean;\n configuration: string;\n createdAt: Date;\n}\n\nexport interface Recipient {\n id: string;\n preferredLocale: string;\n endpoints: RecipientEndpoint[];\n}\n\nexport interface RecipientEndpoint {\n id: string;\n providerType: CommunicationProviderType;\n providerProfileId: string;\n config: RecipientEndpointConfig;\n doiConfirmed: boolean;\n doiConfirmedAt: Date;\n deletable: boolean;\n image?: string;\n}\n\nexport type RecipientEndpointConfig =\n | ProviderChannelMetadata\n | ProviderAddressMetadata;\n\nexport interface ProviderChannelMetadata {\n id: string;\n name: string;\n}\n\nexport function hasProviderChannelMetadata(\n endpoint: RecipientEndpoint\n): boolean {\n switch (endpoint.providerType) {\n case CommunicationProviderType.DISCORD_APP:\n return true;\n case CommunicationProviderType.SLACK_APP:\n return true;\n case CommunicationProviderType.TEAMS:\n return true;\n }\n return false;\n}\n\nexport interface ProviderAddressMetadata {\n address: string;\n}\n\nexport function hasProviderAddressMetadata(\n endpoint: RecipientEndpoint\n): boolean {\n switch (endpoint.providerType) {\n case CommunicationProviderType.MAIL:\n return true;\n case CommunicationProviderType.FCM:\n return true;\n }\n return false;\n}\n\nexport interface RecipientEndpointSpec {\n slackApp?: ChannelEndpointSpec;\n discordApp?: ChannelEndpointSpec;\n teams?: ChannelEndpointSpec;\n fcm?: FCMEndpointSpec;\n}\n\nexport interface ChannelEndpointSpec {\n channelId?: string;\n channelName?: string;\n}\n\nexport interface FCMEndpointSpec {\n token: string;\n identifier: string;\n}\n"],"names":["CommunicationProviderType","hasProviderChannelMetadata","endpoint","providerType","CommunicationProviderType","DISCORD_APP","SLACK_APP","TEAMS","hasProviderAddressMetadata","MAIL","FCM"],"mappings":";;AAKA,IAAYA,EAAZ,SAAYA,EAAyB,CACnCA,OAAAA,EAAA,UAAA,YACAA,EAAA,UAAA,YACAA,EAAA,YAAA,cACAA,EAAA,MAAA,QACAA,EAAA,KAAA,OACAA,EAAA,IAAA,MANUA,CAOZ,EAPYA,GAAyB,CAAA,CAAA,EC8B/B,SAAUC,EACdC,EAA2B,CAE3B,OAAQA,EAASC,aAAY,CAC3B,KAAKC,EAA0BC,YAC7B,MAAO,GACT,KAAKD,EAA0BE,UAC7B,MAAO,GACT,KAAKF,EAA0BG,MAC7B,MAAO,EACX,CACA,MAAO,EACT,CAMM,SAAUC,EACdN,EAA2B,CAE3B,OAAQA,EAASC,aAAY,CAC3B,KAAKC,EAA0BK,KAC7B,MAAO,GACT,KAAKL,EAA0BM,IAC7B,MAAO,EACX,CACA,MAAO,EACT","debug_id":"07dd8cd8-8f35-5b9c-b9e7-b8376ac16c71"}