plugin updates

This commit is contained in:
Tony Volpe
2024-06-17 15:33:26 -04:00
parent 3751a5a1a6
commit e4e274a9a7
2674 changed files with 0 additions and 507851 deletions

View File

@@ -1,11 +0,0 @@
export const CoreMessages = {
HandshakeReceive: 'INTEGRATED_APP_EMBEDDER_HANDSHAKE_RECEIVED',
SendRefreshToken: 'INTEGRATED_APP_EMBEDDER_SEND_REFRESH_TOKEN',
ReloadParentFrame: 'INTEGRATED_APP_EMBEDDER_RELOAD_PARENT_FRAME',
RedirectParentFrame: 'INTEGRATED_APP_EMBEDDER_REDIRECT_PARENT_FRAME',
SendLocale: 'INTEGRATED_APP_EMBEDDER_SEND_LOCALE',
SendDeviceId: 'INTEGRATED_APP_EMBEDDER_SEND_DEVICE_ID',
SendIntegratedAppConfig: 'INTEGRATED_APP_EMBEDDER_CONFIG',
} as const;
export type CoreMessageType = typeof CoreMessages[keyof typeof CoreMessages];

View File

@@ -1,5 +0,0 @@
export const FormMessages = {
CreateFormAppNavigation: 'CREATE_FORM_APP_NAVIGATION',
} as const;
export type FormMessageType = typeof FormMessages[keyof typeof FormMessages];

View File

@@ -1,18 +0,0 @@
import * as Core from './core/CoreMessages';
import * as Forms from './forms/FormsMessages';
import * as LiveChat from './livechat/LiveChatMessages';
import * as Plugin from './plugin/PluginMessages';
import * as Proxy from './proxy/ProxyMessages';
export type MessageType =
| Core.CoreMessageType
| Forms.FormMessageType
| LiveChat.LiveChatMessageType
| Plugin.PluginMessageType
| Proxy.ProxyMessageType;
export * from './core/CoreMessages';
export * from './forms/FormsMessages';
export * from './livechat/LiveChatMessages';
export * from './plugin/PluginMessages';
export * from './proxy/ProxyMessages';

View File

@@ -1,5 +0,0 @@
export const LiveChatMessages = {
CreateLiveChatAppNavigation: 'CREATE_LIVE_CHAT_APP_NAVIGATION',
} as const;
export type LiveChatMessageType = typeof LiveChatMessages[keyof typeof LiveChatMessages];

View File

@@ -1,27 +0,0 @@
export const PluginMessages = {
PluginSettingsNavigation: 'PLUGIN_SETTINGS_NAVIGATION',
PluginLeadinConfig: 'PLUGIN_LEADIN_CONFIG',
TrackConsent: 'INTEGRATED_APP_EMBEDDER_TRACK_CONSENT',
InternalTrackingFetchRequest: 'INTEGRATED_TRACKING_FETCH_REQUEST',
InternalTrackingFetchResponse: 'INTEGRATED_TRACKING_FETCH_RESPONSE',
InternalTrackingFetchError: 'INTEGRATED_TRACKING_FETCH_ERROR',
InternalTrackingChangeRequest: 'INTEGRATED_TRACKING_CHANGE_REQUEST',
InternalTrackingChangeError: 'INTEGRATED_TRACKING_CHANGE_ERROR',
BusinessUnitFetchRequest: 'BUSINESS_UNIT_FETCH_REQUEST',
BusinessUnitFetchResponse: 'BUSINESS_UNIT_FETCH_FETCH_RESPONSE',
BusinessUnitFetchError: 'BUSINESS_UNIT_FETCH_FETCH_ERROR',
BusinessUnitChangeRequest: 'BUSINESS_UNIT_CHANGE_REQUEST',
BusinessUnitChangeError: 'BUSINESS_UNIT_CHANGE_ERROR',
SkipReviewRequest: 'SKIP_REVIEW_REQUEST',
SkipReviewResponse: 'SKIP_REVIEW_RESPONSE',
SkipReviewError: 'SKIP_REVIEW_ERROR',
RemoveParentQueryParam: 'REMOVE_PARENT_QUERY_PARAM',
ContentEmbedInstallRequest: 'CONTENT_EMBED_INSTALL_REQUEST',
ContentEmbedInstallResponse: 'CONTENT_EMBED_INSTALL_RESPONSE',
ContentEmbedInstallError: 'CONTENT_EMBED_INSTALL_ERROR',
ContentEmbedActivationRequest: 'CONTENT_EMBED_ACTIVATION_REQUEST',
ContentEmbedActivationResponse: 'CONTENT_EMBED_ACTIVATION_RESPONSE',
ContentEmbedActivationError: 'CONTENT_EMBED_ACTIVATION_ERROR',
} as const;
export type PluginMessageType = typeof PluginMessages[keyof typeof PluginMessages];

View File

@@ -1,21 +0,0 @@
export const ProxyMessages = {
FetchForms: 'FETCH_FORMS',
FetchForm: 'FETCH_FORM',
CreateFormFromTemplate: 'CREATE_FORM_FROM_TEMPLATE',
FetchAuth: 'FETCH_AUTH',
FetchMeetingsAndUsers: 'FETCH_MEETINGS_AND_USERS',
FetchContactsCreateSinceActivation: 'FETCH_CONTACTS_CREATED_SINCE_ACTIVATION',
FetchOrCreateMeetingUser: 'FETCH_OR_CREATE_MEETING_USER',
ConnectMeetingsCalendar: 'CONNECT_MEETINGS_CALENDAR',
TrackFormPreviewRender: 'TRACK_FORM_PREVIEW_RENDER',
TrackFormCreatedFromTemplate: 'TRACK_FORM_CREATED_FROM_TEMPLATE',
TrackFormCreationFailed: 'TRACK_FORM_CREATION_FAILED',
TrackMeetingPreviewRender: 'TRACK_MEETING_PREVIEW_RENDER',
TrackSidebarMetaChange: 'TRACK_SIDEBAR_META_CHANGE',
TrackReviewBannerRender: 'TRACK_REVIEW_BANNER_RENDER',
TrackReviewBannerInteraction: 'TRACK_REVIEW_BANNER_INTERACTION',
TrackReviewBannerDismissed: 'TRACK_REVIEW_BANNER_DISMISSED',
TrackPluginDeactivation: 'TRACK_PLUGIN_DEACTIVATION',
} as const;
export type ProxyMessageType = typeof ProxyMessages[keyof typeof ProxyMessages];