@@ -86,6 +93,7 @@ import { DateMixin, LoadKeycloakRolesMixin, NrAffiliationMixin, UpdateUserMixin
import axios from 'axios'
// dialogs and other components
+import { GenesysWebMessage } from '@bcrs-shared-components/genesys-web-message'
import { WebChat as ChatPopup } from '@bcrs-shared-components/web-chat'
import {
AffiliationErrorDialog, CancelDialog, ConditionsDialog, ErrorDialog, ExitDialog, HelpMeChooseDialog,
@@ -112,6 +120,7 @@ import { PAYMENT_REQUIRED } from 'http-status-codes'
ErrorDialog,
ExitDialog,
ExitIncompletePaymentDialog,
+ GenesysWebMessage,
HelpMeChooseDialog,
LocationInfoDialog,
MrasSearchInfoDialog,
diff --git a/src/plugins/getConfig.ts b/src/plugins/getConfig.ts
index 93458a895..07d14b5d1 100644
--- a/src/plugins/getConfig.ts
+++ b/src/plugins/getConfig.ts
@@ -78,6 +78,15 @@ export async function getConfig (): Promise
{
const quickSearchPublicSecret: string = response.data['QUICK_SEARCH_PUBLIC_SECRET'];
(window).quickSearchPublicSecret = quickSearchPublicSecret
+ const genesysEnv: string = response.data.GENESYS_ENV;
+ (window).genesysEnv = genesysEnv
+
+ const genesysId: string = response.data.GENESYS_ID;
+ (window).genesysId = genesysId
+
+ const genesysUrl: string = response.data.GENESYS_URL;
+ (window).genesysUrl = genesysUrl
+
const webChatUrl: string = response.data['WEBCHAT_URL'];
(window).webChatUrl = webChatUrl