@robylon/web-react-sdk 1.1.40-staging.5 → 1.1.40-staging.7

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.
Files changed (32) hide show
  1. package/dist/cjs/index.js +3 -1
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/core/config.d.ts +7 -0
  4. package/dist/cjs/types/types.d.ts +30 -1
  5. package/dist/cjs/types/utils/fetchData.d.ts +1 -1
  6. package/dist/cjs/types/utils/mockProactive.d.ts +2 -0
  7. package/dist/cjs/types/utils/proactive.d.ts +16 -1
  8. package/dist/cjs/types/utils/sanitize.d.ts +4 -0
  9. package/dist/cjs/types/utils/url.d.ts +8 -0
  10. package/dist/cjs/types/vanilla/components/ChatbotFloatingButton.d.ts +4 -0
  11. package/dist/esm/index.js +3 -1
  12. package/dist/esm/index.js.map +1 -1
  13. package/dist/esm/types/core/config.d.ts +7 -0
  14. package/dist/esm/types/types.d.ts +30 -1
  15. package/dist/esm/types/utils/fetchData.d.ts +1 -1
  16. package/dist/esm/types/utils/mockProactive.d.ts +2 -0
  17. package/dist/esm/types/utils/proactive.d.ts +16 -1
  18. package/dist/esm/types/utils/sanitize.d.ts +4 -0
  19. package/dist/esm/types/utils/url.d.ts +8 -0
  20. package/dist/esm/types/vanilla/components/ChatbotFloatingButton.d.ts +4 -0
  21. package/dist/index.d.ts +31 -2
  22. package/dist/umd/robylon-chatbot.js +1 -1
  23. package/dist/umd/robylon-chatbot.js.map +1 -1
  24. package/dist/umd/types/core/config.d.ts +7 -0
  25. package/dist/umd/types/types.d.ts +30 -1
  26. package/dist/umd/types/utils/fetchData.d.ts +1 -1
  27. package/dist/umd/types/utils/mockProactive.d.ts +2 -0
  28. package/dist/umd/types/utils/proactive.d.ts +16 -1
  29. package/dist/umd/types/utils/sanitize.d.ts +4 -0
  30. package/dist/umd/types/utils/url.d.ts +8 -0
  31. package/dist/umd/types/vanilla/components/ChatbotFloatingButton.d.ts +4 -0
  32. package/package.json +5 -3
@@ -1,4 +1,5 @@
1
1
  import { ChatbotConfig } from "../types";
2
+ import { ProactiveMessage } from "src/types";
2
3
  /**
3
4
  * Normalizes the configuration properties
4
5
  * @param props The configuration properties
@@ -32,3 +33,9 @@ export declare const initializeChatbotConfig: (props: {
32
33
  user_token?: string;
33
34
  user_profile?: Record<string, any>;
34
35
  }) => Promise<ChatbotConfig>;
36
+ /**
37
+ * Normalizes proactive messages from backend to an array form, preserving order.
38
+ * - Accepts undefined, single object, or array of objects
39
+ * - Migrates legacy `content` to `content_multiple`
40
+ */
41
+ export declare const normalizeProactiveMessages: (input: any) => ProactiveMessage[] | undefined;
@@ -44,7 +44,7 @@ export interface ChatbotConfig {
44
44
  url: string;
45
45
  };
46
46
  };
47
- proactive_message_obj?: ProactiveMessage | undefined;
47
+ proactive_message_obj?: ProactiveMessage[] | undefined;
48
48
  launcher_delay: {
49
49
  enabled: boolean;
50
50
  delay: number;
@@ -78,6 +78,29 @@ export declare enum ProactiveSendTimeType {
78
78
  WORKING_HOURS = "WORKING_HOURS",
79
79
  ALWAYS = "ALWAYS"
80
80
  }
81
+ export declare enum DisplayAttributesType {
82
+ "URL" = "URL"
83
+ }
84
+ export declare enum LogicalConditionType {
85
+ AND = "AND",
86
+ OR = "OR"
87
+ }
88
+ export declare enum ConditionType {
89
+ IS = "IS",
90
+ IS_NOT = "IS_NOT",
91
+ CONTAINS = "CONTAINS",
92
+ DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
93
+ STARTS_WITH = "STARTS_WITH",
94
+ ENDS_WITH = "ENDS_WITH"
95
+ }
96
+ export interface ContentDisplayAttribute {
97
+ type: DisplayAttributesType;
98
+ value: string;
99
+ condition: ConditionType;
100
+ }
101
+ export interface LogicalConditionAttribute {
102
+ logical_condition: LogicalConditionType;
103
+ }
81
104
  export interface ProactiveMessage {
82
105
  message_id: string;
83
106
  org_id: string;
@@ -88,5 +111,11 @@ export interface ProactiveMessage {
88
111
  updated_by_name?: string;
89
112
  updated_at?: string;
90
113
  created_at?: string;
114
+ delay?: number;
115
+ content_multiple?: {
116
+ message: string;
117
+ content_id?: string;
118
+ message_display_attributes: (ContentDisplayAttribute | LogicalConditionAttribute)[];
119
+ }[];
91
120
  }
92
121
  export {};
@@ -38,7 +38,7 @@ interface ChatbotResponse {
38
38
  url: string;
39
39
  };
40
40
  };
41
- proactive_message_obj?: ProactiveMessage;
41
+ proactive_message_obj?: ProactiveMessage | ProactiveMessage[];
42
42
  launcher_delay: {
43
43
  enabled: boolean;
44
44
  delay: number;
@@ -0,0 +1,2 @@
1
+ import { ProactiveMessage } from "src/types";
2
+ export declare const buildMockProactives: (orgId: string) => ProactiveMessage[];
@@ -1,4 +1,19 @@
1
1
  import { ProactiveMessage } from "src/types";
2
2
  export declare const hideProactiveForThisPage: () => void;
3
3
  export declare const isProactiveHiddenThisPage: () => boolean;
4
- export declare const shouldShowProactiveMessage: (message?: ProactiveMessage, now?: Date) => boolean;
4
+ export declare const setLastClickedProactive: (params: {
5
+ content_string: string | null;
6
+ message_id: string | null;
7
+ }) => void;
8
+ export declare const getAndClearLastClickedProactive: () => {
9
+ input_id: null;
10
+ content_string: string | null;
11
+ message_id: string | null;
12
+ } | null;
13
+ export interface VisibleContent {
14
+ messageId: string;
15
+ contentIndex: number;
16
+ html: string;
17
+ delayMs: number;
18
+ }
19
+ export declare const evaluateProactiveMessages: (messages?: ProactiveMessage[]) => VisibleContent[];
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Sanitizes HTML while preserving emojis and basic inline formatting.
3
+ */
4
+ export declare const sanitizeHtml: (html?: string) => string;
@@ -0,0 +1,8 @@
1
+ import { ConditionType, DisplayAttributesType } from "src/types";
2
+ type UrlChangeListener = (href: string) => void;
3
+ export declare const getCurrentHref: () => string;
4
+ export declare const buildLocationKey: () => string;
5
+ export declare const subscribeToUrlChanges: (cb: UrlChangeListener) => (() => void);
6
+ export declare const initUrlObserver: () => void;
7
+ export declare const matchCondition: (type: DisplayAttributesType, value: string, condition: ConditionType, href: string) => boolean;
8
+ export {};
@@ -26,6 +26,8 @@ export declare class ChatbotFloatingButton {
26
26
  private resizeObserver;
27
27
  private handleResizeFunction;
28
28
  private proactiveElement;
29
+ private urlUnsubscribe;
30
+ private delayTimers;
29
31
  /**
30
32
  * Creates a new ChatbotFloatingButton
31
33
  * @param config The button configuration
@@ -69,6 +71,8 @@ export declare class ChatbotFloatingButton {
69
71
  * Unmounts and destroys the button
70
72
  */
71
73
  destroy(): void;
74
+ private clearProactiveDelays;
75
+ private injectAnimationStyles;
72
76
  private renderProactiveIfNeeded;
73
77
  }
74
78
  export {};
package/dist/index.d.ts CHANGED
@@ -86,7 +86,7 @@ interface ChatbotConfig {
86
86
  url: string;
87
87
  };
88
88
  };
89
- proactive_message_obj?: ProactiveMessage | undefined;
89
+ proactive_message_obj?: ProactiveMessage[] | undefined;
90
90
  launcher_delay: {
91
91
  enabled: boolean;
92
92
  delay: number;
@@ -120,6 +120,29 @@ declare enum ProactiveSendTimeType {
120
120
  WORKING_HOURS = "WORKING_HOURS",
121
121
  ALWAYS = "ALWAYS"
122
122
  }
123
+ declare enum DisplayAttributesType {
124
+ "URL" = "URL"
125
+ }
126
+ declare enum LogicalConditionType {
127
+ AND = "AND",
128
+ OR = "OR"
129
+ }
130
+ declare enum ConditionType {
131
+ IS = "IS",
132
+ IS_NOT = "IS_NOT",
133
+ CONTAINS = "CONTAINS",
134
+ DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
135
+ STARTS_WITH = "STARTS_WITH",
136
+ ENDS_WITH = "ENDS_WITH"
137
+ }
138
+ interface ContentDisplayAttribute {
139
+ type: DisplayAttributesType;
140
+ value: string;
141
+ condition: ConditionType;
142
+ }
143
+ interface LogicalConditionAttribute {
144
+ logical_condition: LogicalConditionType;
145
+ }
123
146
  interface ProactiveMessage {
124
147
  message_id: string;
125
148
  org_id: string;
@@ -130,6 +153,12 @@ interface ProactiveMessage {
130
153
  updated_by_name?: string;
131
154
  updated_at?: string;
132
155
  created_at?: string;
156
+ delay?: number;
157
+ content_multiple?: {
158
+ message: string;
159
+ content_id?: string;
160
+ message_display_attributes: (ContentDisplayAttribute | LogicalConditionAttribute)[];
161
+ }[];
133
162
  }
134
163
 
135
164
  declare const useChatbot: (config: ChatbotConfig) => ChatbotState;
@@ -168,4 +197,4 @@ declare const _default: {
168
197
  getState: () => string;
169
198
  };
170
199
 
171
- export { MemoizedRobylonChatbot as Chatbot, type ChatbotConfig, ChatbotInterfaceType, type ChatbotRef, type ChatbotState, LauncherType, type ProactiveMessage, ProactiveSendTimeType, _default as RobylonChatbot, type WidgetInterfaceProperties, WidgetPositionEnums, useChatbot };
200
+ export { MemoizedRobylonChatbot as Chatbot, type ChatbotConfig, ChatbotInterfaceType, type ChatbotRef, type ChatbotState, ConditionType, type ContentDisplayAttribute, DisplayAttributesType, LauncherType, type LogicalConditionAttribute, LogicalConditionType, type ProactiveMessage, ProactiveSendTimeType, _default as RobylonChatbot, type WidgetInterfaceProperties, WidgetPositionEnums, useChatbot };
@@ -1,2 +1,2 @@
1
- !function(i,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((i="undefined"!=typeof globalThis?globalThis:i||self).RobylonChatbot={})}(this,(function(i){"use strict";var t,n,o,e,r=function(){return r=Object.assign||function(i){for(var t,n=1,o=arguments.length;o>n;n++)for(var e in t=arguments[n])({}).hasOwnProperty.call(t,e)&&(i[e]=t[e]);return i},r.apply(this,arguments)};function s(i,t,n,o){return new(n||(n=Promise))((function(e,r){function s(i){try{a(o.next(i))}catch(i){r(i)}}function d(i){try{a(o.throw(i))}catch(i){r(i)}}function a(i){var t;i.done?e(i.value):(t=i.value,t instanceof n?t:new n((function(i){i(t)}))).then(s,d)}a((o=o.apply(i,t||[])).next())}))}function d(i,t){var n,o,e,r={label:0,sent:function(){if(1&e[0])throw e[1];return e[1]},trys:[],ops:[]},s=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return s.next=d(0),s.throw=d(1),s.return=d(2),"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function d(d){return function(a){return function(d){if(n)throw new TypeError("Generator is already executing.");for(;s&&(s=0,d[0]&&(r=0)),r;)try{if(n=1,o&&(e=2&d[0]?o.return:d[0]?o.throw||((e=o.return)&&e.call(o),0):o.next)&&!(e=e.call(o,d[1])).done)return e;switch(o=0,e&&(d=[2&d[0],e.value]),d[0]){case 0:case 1:e=d;break;case 4:return r.label++,{value:d[1],done:!1};case 5:r.label++,o=d[1],d=[0];continue;case 7:d=r.ops.pop(),r.trys.pop();continue;default:if(!((e=(e=r.trys).length>0&&e[e.length-1])||6!==d[0]&&2!==d[0])){r=0;continue}if(3===d[0]&&(!e||d[1]>e[0]&&d[1]<e[3])){r.label=d[1];break}if(6===d[0]&&r.label<e[1]){r.label=e[1],e=d;break}if(e&&r.label<e[2]){r.label=e[2],r.ops.push(d);break}e[2]&&r.ops.pop(),r.trys.pop();continue}d=t.call(i,r)}catch(i){d=[6,i],o=0}finally{n=e=0}if(5&d[0])throw d[1];return{value:d[0]?d[1]:void 0,done:!0}}([d,a])}}}"function"==typeof SuppressedError&&SuppressedError,function(i){i.WIDGET="WIDGET",i.POPOVER="POPOVER",i.EMBED="EMBED"}(t||(t={})),function(i){i.RIGHT="Right",i.LEFT="Left"}(n||(n={})),function(i){i.TEXT="TEXT",i.IMAGE="IMAGE",i.TEXTUAL_IMAGE="TEXTUAL_IMAGE"}(o||(o={})),function(i){i.WORKING_HOURS="WORKING_HOURS",i.ALWAYS="ALWAYS"}(e||(e={}));var a=function(i,t){void 0===t&&(t=.5);var n,o,e,r,s=function(i){i=i.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(i,t,n,o){return t+t+n+n+o+o}));var t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(i);return t?{r:parseInt(t[1],16),g:parseInt(t[2],16),b:parseInt(t[3],16)}:{r:0,g:0,b:0}}(i);return(n=s.r,o=s.g,e=s.b,.2126*(r=[n,o,e].map((function(i){return(i/=255)>.03928?Math.pow((i+.055)/1.055,2.4):i/12.92})))[0]+.7152*r[1]+.0722*r[2])>t?"#0E0E0F":"#FFFFFF"},l={log:function(){},error:function(){for(var i=[],t=0;arguments.length>t;t++)i[t]=arguments[t];console.error.apply(console,i)},warn:function(){for(var i=[],t=0;arguments.length>t;t++)i[t]=arguments[t];console.warn.apply(console,i)},info:function(){}};l.log("Raw API_URL:","https://stage-api.robylon.ai");var u={copilotUrl:"https://staging.d2s3wsqyyond1h.amplifyapp.com",environment:"staging",apiUrl:"https://stage-api.robylon.ai"};l.log("CONFIG",u);var c,h,v=function(){return"undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement},f=function(){return{copilotUrl:u.copilotUrl||"https://app.robylon.ai",environment:u.environment||"production",apiUrl:u.apiUrl||"https://app.robylon.ai"}};!function(i){i.CHATBOT_BUTTON_LOADED="CHATBOT_BUTTON_LOADED",i.CHATBOT_BUTTON_CLICKED="CHATBOT_BUTTON_CLICKED",i.CHATBOT_OPENED="CHATBOT_OPENED",i.CHATBOT_CLOSED="CHATBOT_CLOSED",i.CHATBOT_APP_READY="CHATBOT_APP_READY",i.CHATBOT_LOADED="CHATBOT_LOADED",i.CHAT_INITIALIZED="CHAT_INITIALIZED",i.SESSION_REFRESHED="SESSION_REFRESHED",i.CHAT_INITIALIZATION_FAILED="CHAT_INITIALIZATION_FAILED",i.CHATBOT_READY="CHATBOT_READY"}(c||(c={})),function(i){i.CHAT_MOVED="CHAT_MOVED",i.CHATBOT_TOKEN_EXHAUSTED="CHATBOT_TOKEN_EXHAUSTED"}(h||(h={}));var p,m="system-ui, Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'",w="21px",b=!1,g=function(){b=!0};console.log("isProactiveHiddenThisPage",(function(){return b}));var x,I=((p={})[e.WORKING_HOURS]=function(i,t){var n=t.getHours(),o=t.getMinutes();return(n>10||10===n&&o>=0)&&(19>n||19===n&&0===o)},p[e.ALWAYS]=function(i,t){return!0},p),y=function(i,t){var n;if(void 0===t&&(t=new Date),console.log("proactiveHiddenThisPage shouldShowProactiveMessage",b),!(null===(n=null==i?void 0:i.content)||void 0===n?void 0:n.trim()))return!1;if(b)return!1;var o=(null==i?void 0:i.send_time_type)||"";if(!o)return!0;var e=I[o];return!!e&&e(i,t)},_=function(){function i(i){var t=this;this.resizeObserver=null,this.proactiveElement=null,this.config=i,this.buttonElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.render(),this.mount();try{this.buttonElement.style.opacity="0",this.buttonElement.style.transition="transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97), opacity 280ms ease",requestAnimationFrame((function(){t.buttonElement.style.opacity="1"}))}catch(i){}this.setupResizeListener(),this.renderProactiveIfNeeded()}return i.prototype.render=function(){var i=this;f().copilotUrl;var t=this.config,n=t.config,e={zIndex:"1000",display:"flex",flexDirection:"column-reverse",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px",transition:"transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97)",transform:t.isIframeVisible?"scale(0.85)":"scale(1)",fontFamily:m};n.launcher_type===o.IMAGE&&Object.assign(e,{width:"48px",height:"48px",borderRadius:"50%",backgroundColor:n.brand_colour}),this.applyResponsiveStyles(e),this.buttonElement.className="message-bubble-container",this.buttonElement.innerHTML="",this.buttonElement.appendChild(this.createLauncherElement()),this.buttonElement.onclick=function(){i.config.toggleIframe()},this.renderProactiveIfNeeded()},i.prototype.createLauncherElement=function(){var i,t,n=this.config,e=n.config,r=n.isIframeVisible,s=f().copilotUrl;switch(console.log("config in floating button",e),e.launcher_type){case o.TEXT:return this.createTextLauncher();case o.TEXTUAL_IMAGE:return this.createTextualImageLauncher();case o.IMAGE:default:if(r){var d=document.createElement("div");return d.innerHTML='\n <svg\n width="24"\n height="24"\n viewBox="0 0 24 24"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M19 9L12 16L5 9"\n stroke="currentColor"\n stroke-width="1.5"\n stroke-linecap="round"\n stroke-linejoin="round"\n />\n </svg>\n ',d}var a=document.createElement("img");return a.src=e.launcher_type?(null===(t=null===(i=e.images)||void 0===i?void 0:i.launcher_image_url)||void 0===t?void 0:t.url)||"".concat(s,"/chatbubble.png"):e.image_url||"".concat(s,"/chatbubble.png"),a.alt="Chat",Object.assign(a.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover",width:"100%",height:"100%",boxSizing:"border-box"}),a}},i.prototype.createTextLauncher=function(){var i=this.config.config,t=i.brand_colour,n=i.launcher_properties,o=document.createElement("div");Object.assign(o.style,{width:"fit-content",maxWidth:"160px",height:"40px",borderRadius:"9999px",backgroundColor:t,display:"flex",alignItems:"center",padding:"9px 20px",boxShadow:"0px 0px 16px 0px rgba(0, 0, 0, 0.24)",boxSizing:"border-box"});var e=document.createElement("div");Object.assign(e.style,{flex:"1",minWidth:"0"});var r=document.createElement("p");return Object.assign(r.style,{margin:"0",color:a(t),fontSize:"0.875rem",fontWeight:"600",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",lineHeight:w,fontFamily:m,WebkitFontSmoothing:"antialiased",textRendering:"optimizeLegibility",textSizeAdjust:"100%"}),r.textContent=(null==n?void 0:n.text)||"",e.appendChild(r),o.appendChild(e),o},i.prototype.createTextualImageLauncher=function(){var i,t,n,o,e,r,s=f().copilotUrl,d=this.config.config,l=d.brand_colour,u=d.launcher_properties,c=d.image_url,h=document.createElement("div");Object.assign(h.style,{maxWidth:"13rem",width:"fit-content",height:"40px",borderRadius:"9999px",backgroundColor:l,display:"flex",alignItems:"center",paddingLeft:"20px",paddingRight:"0",paddingTop:"9px",paddingBottom:"9px",boxShadow:"0px 0px 16px 0px rgba(0, 0, 0, 0.24)",gap:"8px",boxSizing:"border-box"});var v=document.createElement("div");Object.assign(v.style,{flex:"1",minWidth:"0"});var p=document.createElement("p");Object.assign(p.style,{margin:"0",color:a(l),fontSize:"0.875rem",fontWeight:"600",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",lineHeight:w,fontFamily:m,WebkitFontSmoothing:"antialiased",textRendering:"optimizeLegibility",textSizeAdjust:"100%"}),p.textContent=(null==u?void 0:u.text)||"";var b=document.createElement("div");Object.assign(b.style,{width:"40px",height:"40px",borderRadius:"9999px",overflow:"hidden",position:"relative",flexShrink:"0"});var g=document.createElement("img");return g.src=(null===(t=null===(i=null==this?void 0:this.config)||void 0===i?void 0:i.config)||void 0===t?void 0:t.launcher_type)?(null===(r=null===(e=null===(o=null===(n=null==this?void 0:this.config)||void 0===n?void 0:n.config)||void 0===o?void 0:o.images)||void 0===e?void 0:e.launcher_image_url)||void 0===r?void 0:r.url)||"".concat(s,"/chatbubble.png"):c||"".concat(s,"/chatbubble.png"),g.alt="Chat",Object.assign(g.style,{width:"100%",height:"100%",objectFit:"cover"}),v.appendChild(p),b.appendChild(g),h.appendChild(v),h.appendChild(b),h},i.prototype.applyResponsiveStyles=function(i){var t,n,o,e,s,d,a,l,u,c=560>(null===window||void 0===window?void 0:window.innerWidth),h=this.config.config,v=this.config.position||(null===(o=h.interface_properties)||void 0===o?void 0:o.position)||"Right",f=null!==(d=null!==(e=this.config.sideSpacing)&&void 0!==e?e:null===(s=h.interface_properties)||void 0===s?void 0:s.side_spacing)&&void 0!==d?d:20,p=null!==(u=null!==(a=this.config.bottomSpacing)&&void 0!==a?a:null===(l=h.interface_properties)||void 0===l?void 0:l.bottom_spacing)&&void 0!==u?u:20;this.buttonElement.style.position="",this.buttonElement.style.bottom="",this.buttonElement.style.right="",this.buttonElement.style.left="";var m=r(r({},i),c?((t={position:"fixed",bottom:"".concat(p,"px")})[v.toLowerCase()]="".concat(f,"px"),t):((n={bottom:"".concat(p,"px")})[v.toLowerCase()]="".concat(f,"px"),n));Object.assign(this.buttonElement.style,m)},i.prototype.handleResize=function(){var i={zIndex:"1000",display:"flex",flexDirection:"column-reverse",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px",borderRadius:this.config.config.launcher_type&&this.config.config.launcher_type!==o.IMAGE?"9999px":"50%",boxSizing:"border-box"};this.config.config.launcher_type===o.IMAGE&&Object.assign(i,{width:"48px",height:"48px",borderRadius:"50%",backgroundColor:this.config.config.brand_colour}),this.applyResponsiveStyles(i)},i.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},i.prototype.getElement=function(){return this.buttonElement},i.prototype.mount=function(){var i=this;requestAnimationFrame((function(){var t,n;null===(n=(t=i.config).onEvent)||void 0===n||n.call(t,{type:c.CHATBOT_BUTTON_LOADED,timestamp:Date.now()}),i.config.onInternalEvent(c.CHATBOT_BUTTON_LOADED)}))},i.prototype.update=function(i){this.config.isIframeVisible,this.config=r(r({},this.config),i),this.buttonElement.style.transform=this.config.isIframeVisible?"scale(0.85)":"scale(1)",this.render(),this.renderProactiveIfNeeded()},i.prototype.destroy=function(){this.resizeObserver?(this.resizeObserver.disconnect(),this.resizeObserver=null):window.removeEventListener("resize",this.handleResizeFunction),this.buttonElement&&this.buttonElement.parentNode&&this.buttonElement.parentNode.removeChild(this.buttonElement),this.proactiveElement&&this.proactiveElement.parentElement&&(this.proactiveElement.parentElement.removeChild(this.proactiveElement),this.proactiveElement=null)},i.prototype.renderProactiveIfNeeded=function(){var i,t,n,e,r,s,d,a,l,u=this,c=null===(t=null===(i=this.config)||void 0===i?void 0:i.config)||void 0===t?void 0:t.proactive_message_obj;if(!y(c)||this.config.isIframeVisible)return this.proactiveElement&&this.proactiveElement.parentElement&&this.proactiveElement.parentElement.removeChild(this.proactiveElement),void(this.proactiveElement=null);if(!this.proactiveElement){var h=document.createElement("div");h.style.position="fixed";var v=null!==(r=null!==(n=this.config.bottomSpacing)&&void 0!==n?n:null===(e=this.config.config.interface_properties)||void 0===e?void 0:e.bottom_spacing)&&void 0!==r?r:20,f=null!==(a=null!==(s=this.config.sideSpacing)&&void 0!==s?s:null===(d=this.config.config.interface_properties)||void 0===d?void 0:d.side_spacing)&&void 0!==a?a:20,p=this.config.position||(null===(l=this.config.config.interface_properties)||void 0===l?void 0:l.position)||"Right";h.style.bottom="".concat(v+(this.config.config.launcher_type===o.IMAGE?48:40)+8,"px"),"Right"===p?h.style.right="".concat(f,"px"):h.style.left="".concat(f,"px"),h.style.maxWidth="22.875rem",h.style.zIndex="2147483646";var b=document.createElement("div");b.style.background="#fff",b.style.color="#111",b.style.borderRadius="16px",b.style.boxShadow="0 0 40px 0 rgba(14, 14, 15, 0.24)",b.style.padding="16px",b.style.cursor="pointer",b.style.fontFamily=m,b.style.fontSize="14px",b.style.lineHeight=w+"",b.textContent=(null==c?void 0:c.content)||"",b.onclick=function(){u.config.toggleIframe(),g()};var x=document.createElement("div");x.style.position="absolute",x.style.top="-32px",x.style.width="24px",x.style.height="24px",x.style.borderRadius="50%",x.style.background="#fff",x.style.boxShadow="0 2.667px 2.667px 0 rgba(0, 0, 0, 0.25)",x.style.display="flex",x.style.alignItems="center",x.style.justifyContent="center",x.style.cursor="pointer","Right"===p?(x.style.right="0px",x.style.left="auto"):(x.style.left="0px",x.style.right="auto"),x.onclick=function(i){i.stopPropagation(),g(),u.proactiveElement&&u.proactiveElement.parentElement&&u.proactiveElement.parentElement.removeChild(u.proactiveElement),u.proactiveElement=null},x.innerHTML='\n <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">\n <path d="M10.3334 10.3334L7.00009 7.00009M7.00009 7.00009L3.66675 3.66675M7.00009 7.00009L10.3334 3.66675M7.00009 7.00009L3.66675 10.3334" stroke="#444547" stroke-width="0.816326" stroke-linecap="round" stroke-linejoin="round"/>\n </svg>\n ',h.appendChild(b),h.appendChild(x),document.body.appendChild(h),this.proactiveElement=h}},i}(),E=function(){var i;return(null===(i=navigator.userAgentData)||void 0===i?void 0:i.platform)||(/Windows|Mac|Linux|Android|iOS/.exec(navigator.userAgent)||["Unknown"])[0]},S=function(){var i;if(null===(i=navigator.userAgentData)||void 0===i?void 0:i.brands)for(var t=["Chrome","Firefox","Safari","Edge","Opera"],n=0,o=navigator.userAgentData.brands;n<o.length;n++){var e=o[n];if(t.includes(e.brand))return e.brand}return(/Chrome|Firefox|Safari|Edge|Opera/.exec(navigator.userAgent)||["Unknown"])[0]},T=function(){var i,t,n,o;return{width:(null===window||void 0===window?void 0:window.innerWidth)||(null===(i=null===document||void 0===document?void 0:document.documentElement)||void 0===i?void 0:i.clientWidth)||(null===(t=null===document||void 0===document?void 0:document.body)||void 0===t?void 0:t.clientWidth),height:(null===window||void 0===window?void 0:window.innerHeight)||(null===(n=null===document||void 0===document?void 0:document.documentElement)||void 0===n?void 0:n.clientHeight)||(null===(o=null===document||void 0===document?void 0:document.body)||void 0===o?void 0:o.clientHeight)}},A=function(){return{platform:"web",os:E(),browser:S(),sdk_version:"1.1.40-staging.5",device:(i=navigator.userAgent.toLowerCase(),/(tablet|ipad|playbook|silk)|(android(?!.*mobi))/i.test(i)?"tablet":/Mobile|Android|iP(hone|od)|IEMobile|BlackBerry|Kindle|Silk-Accelerated|(hpw|web)OS|Opera M(obi|ini)/.test(i)?"mobile":"desktop"),screen_size:T()};var i};!function(i){i.ERROR="ERROR",i.INFO="INFO"}(x||(x={}));var R,O=["@robylon/web-react-sdk","node_modules/@robylon/web-react-sdk/"],C=function(i){var t=i.filename,n=i.stack,o=i.message;return!!(t||n||o)&&O.some((function(i){return(null==t?void 0:t.includes(i))||(null==n?void 0:n.includes(i))||(null==o?void 0:o.includes(i))}))},k=function(){function i(){var i=this;this.apiKey="",this.userId=null,this.preInitQueue=[],this.isInitialized=!1,this.handleWindowError=function(t){var n,o={filename:t.filename,stack:null===(n=t.error)||void 0===n?void 0:n.stack,message:t.message};C(o)&&i.trackError(t.error||t.message,"GlobalErrorHandler",{filename:t.filename,lineNo:t.lineno,colNo:t.colno})},this.handleUnhandledRejection=function(t){var n,o,e={stack:null===(n=t.reason)||void 0===n?void 0:n.stack,message:(null===(o=t.reason)||void 0===o?void 0:o.message)||t.reason+""};C(e)&&i.trackError(t.reason||"Unhandled Promise Rejection","GlobalPromiseHandler",{reason:t.reason})},this.setupGlobalHandlers()}return i.prototype.setupGlobalHandlers=function(){v()&&(null===window||void 0===window||window.addEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.addEventListener("unhandledrejection",this.handleUnhandledRejection))},i.prototype.cleanup=function(){v()&&(null===window||void 0===window||window.removeEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.removeEventListener("unhandledrejection",this.handleUnhandledRejection))},i.getInstance=function(){return i.instance||(i.instance=new i),i.instance},i.prototype.initialize=function(i,t){void 0===t&&(t=null);try{if(this.preInitQueue.length>0){var n={org_id:"UNINITALIZED",event_data:{message:"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===i?"undefined":null===i?"null":""===i?"empty string":"invalid: ".concat(i)),componentName:"ErrorTrackingService",additionalInfo:{preInitError:!0,apiKey:i,userId:t,timestamp:Date.now()},timestamp:Date.now()},metadata:A(),event_type:x.ERROR,user_id:t};this.sendLog(n).catch(console.error)}this.apiKey=i,this.userId=t,this.isInitialized=!0,this.processPreInitQueue()}catch(n){l.error("Error during ErrorTrackingService initialization:",n),this.preInitQueue.push({error:n instanceof Error?n:Error(n+""),componentName:"ErrorTrackingService",additionalInfo:{apiKey:i,userId:t}})}},i.prototype.processPreInitQueue=function(){return s(this,void 0,void 0,(function(){var i,t,n;return d(this,(function(o){switch(o.label){case 0:if(!this.preInitQueue.length)return[2];l.info("Processing ".concat(this.preInitQueue.length," pre-initialization errors")),i=0,t=this.preInitQueue,o.label=1;case 1:return i<t.length?(n=t[i],[4,this.trackError(n.error,n.componentName,r(r({},n.additionalInfo),{preInitError:!0}))]):[3,4];case 2:o.sent(),o.label=3;case 3:return i++,[3,1];case 4:return this.preInitQueue=[],[2]}}))}))},i.prototype.sendLog=function(i){return s(this,void 0,void 0,(function(){var t,n,o,e,r,s;return d(this,(function(d){switch(d.label){case 0:return d.trys.push([0,4,,5]),t=f().apiUrl,[4,fetch("".concat(t,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)})];case 1:return(n=d.sent()).ok?[3,3]:(e=(o=l).error,r=["Failed to send error log:"],[4,n.text()]);case 2:e.apply(o,r.concat([d.sent()])),d.label=3;case 3:return[3,5];case 4:return s=d.sent(),l.error("Error sending log:",s),[3,5];case 5:return[2]}}))}))},i.prototype.trackError=function(i,t,n){return s(this,void 0,void 0,(function(){var o,e,s;return d(this,(function(d){switch(d.label){case 0:if(this.isInitialized)return[3,5];o={org_id:"UNINITALIZED",event_data:{message:i instanceof Error?i.message:i,stack:i instanceof Error?i.stack:void 0,componentName:t,additionalInfo:r(r({},n),{preInitError:!0,timestamp:Date.now()}),timestamp:Date.now()},metadata:A(),event_type:x.ERROR,user_id:this.userId},d.label=1;case 1:return d.trys.push([1,3,,4]),[4,this.sendLog(o)];case 2:return d.sent(),[3,4];case 3:return d.sent(),this.preInitQueue.push({error:i,componentName:t,additionalInfo:n}),l.warn("Error tracked before initialization, queuing:",i),[3,4];case 4:return[2];case 5:return e={message:i instanceof Error?i.message:i,stack:i instanceof Error?i.stack:void 0,componentName:t,additionalInfo:r(r({},n),{timestamp:Date.now()}),timestamp:Date.now()},s={org_id:this.apiKey||"UNINITALIZED",event_data:e,metadata:A(),event_type:x.ERROR,user_id:this.userId},[4,this.sendLog(s)];case 6:return d.sent(),[2]}}))}))},i.prototype.trackInfo=function(i,t,n){return s(this,void 0,void 0,(function(){var o,e;return d(this,(function(r){switch(r.label){case 0:return this.apiKey?(o={message:i,componentName:t,additionalInfo:n,timestamp:Date.now()},e={org_id:this.apiKey,event_data:o,metadata:A(),event_type:x.INFO,user_id:this.userId},[4,this.sendLog(e)]):(l.error("Error tracking not initialized"),[2]);case 1:return r.sent(),[2]}}))}))},i}(),D=k.getInstance(),j="MISSING_API_KEY",z="SDK_INIT_FAILED",M="ERROR_TRACKING_INIT_FAILED",N="API_REQUEST_FAILED",U="NETWORK_ERROR",F="INVALID_RESPONSE",L="IFRAME_LOAD_FAILED",P="INITIALIZATION_ERROR",W=((R={})[j]=function(i){return"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===i?"undefined":null===i?"null":""===i?"empty string":"invalid: ".concat(i),". A valid API key string is required to initialize the SDK.")},R.INVALID_API_KEY=function(i){return"SDK Initialization Failed: Provided API key '".concat(i,"' is invalid. API key must be a non-empty string in UUID format.")},R.CONFIG_FETCH_FAILED=function(i){return"Failed to fetch chatbot configuration: ".concat(i.statusCode?"Server responded with status ".concat(i.statusCode):"Could not reach server").concat(i.error?". Error: ".concat(i.error):"")},R[N]=function(i,t,n){return"API Request Failed: Server responded with status ".concat(i," for ").concat(n?"endpoint ".concat(n):"request"," - ").concat(t)},R[U]=function(i){return"Network Error: Failed to communicate with server".concat(i.url?" at ".concat(i.url):"").concat(i.error?" - ".concat(i.error):"")},R[L]=function(i){return"Failed to load chatbot interface".concat(i.src?" from ".concat(i.src):"").concat(i.error?". Error: ".concat(i.error):"")},R[F]=function(i){return"Invalid API Response: Missing required fields in response data: ".concat(i.join(", "))},R[M]=function(i){return"Error Tracking Service initialization failed".concat(i.apiKey?" for API key ".concat(i.apiKey):"").concat(i.error?". Error: ".concat(i.error):"")},R[z]=function(i){return"SDK Initialization Failed: ".concat(i.reason||"Could not initialize the chatbot SDK").concat(i.config?". Attempted initialization with config: ".concat(JSON.stringify(i.config,null,2)):"")},R.COOKIE_ACCESS_ERROR=function(i,t){return"Cookie Access Error: Failed to ".concat(i).concat(t?" cookie '".concat(t,"'"):" cookies",". This may affect user session persistence.")},R.COMPONENT_RENDER_ERROR=function(i){return"React Component Error: ".concat(i.component||"Unknown component"," failed to render. Error: ").concat(i.error).concat(i.stack?"\nComponent Stack: ".concat(i.stack):"")},R),H=function(){function i(i){var t=this;this.isInitialized=!1,this.hasRegistered=!1,this.handleMessage=function(i){var n,o,e,r,s,d,a,l,u,v,p,m,w,b,g,x=f().copilotUrl;if(i.origin===x){if("closeChatbot"===i.data)return void t.config.onClose();if("CHATBOT_TOKEN_EXHAUSTED"===(null===(n=i.data)||void 0===n?void 0:n.type))return void t.config.onInternalEvent(h.CHATBOT_TOKEN_EXHAUSTED);"CHATBOT_LOADED"===(null===(o=i.data)||void 0===o?void 0:o.type)&&(null===(r=(e=t.config).onEvent)||void 0===r||r.call(e,{type:c.CHATBOT_LOADED,timestamp:Date.now()}),t.config.onInternalEvent(c.CHATBOT_LOADED)),"CHAT_INITIALIZED"===(null===(s=i.data)||void 0===s?void 0:s.type)&&(null===(a=(d=t.config).onEvent)||void 0===a||a.call(d,{type:c.CHAT_INITIALIZED,timestamp:Date.now()}),t.config.onInternalEvent(c.CHAT_INITIALIZED)),"CHAT_INITIALIZATION_FAILED"===(null===(l=i.data)||void 0===l?void 0:l.type)&&(null===(v=(u=t.config).onEvent)||void 0===v||v.call(u,{type:c.CHAT_INITIALIZATION_FAILED,timestamp:Date.now()}),t.config.onInternalEvent(c.CHAT_INITIALIZATION_FAILED,{error:null===(p=i.data)||void 0===p?void 0:p.error})),"SESSION_REFRESHED"===(null===(m=i.data)||void 0===m?void 0:m.type)&&(null===(b=(w=t.config).onEvent)||void 0===b||b.call(w,{type:c.SESSION_REFRESHED,timestamp:Date.now()}),t.config.onInternalEvent(c.SESSION_REFRESHED)),"CHAT_MOVED"===(null===(g=i.data)||void 0===g?void 0:g.type)&&t.config.onInternalEvent(h.CHAT_MOVED,{from:i.data.from,to:i.data.to,trigger:i.data.trigger})}},this.config=i,this.iframeElement=document.createElement("iframe"),this.iframeElement.id="chat-iframe-rbyln",this.resizeHandler=this.applyResponsiveStyles.bind(this),this.render(),this.initialize(),this.setupEventListeners()}return i.prototype.getElement=function(){return this.iframeElement},i.prototype.render=function(){var i,t=this.config.position||(null===(i=this.config.config.interface_properties)||void 0===i?void 0:i.position)||"Right";Object.assign(this.iframeElement.style,{zIndex:"20000000",border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom ".concat(t.toLowerCase()),transition:"transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97), opacity 0.15s ease-out",transform:"scale(0.3) translate3d(0,40px,0)",opacity:"0",display:"none"}),this.applyResponsiveStyles()},i.prototype.applyResponsiveStyles=function(){var i,t,n,o,e,r;if(this.iframeElement){var s=this.config.position||(null===(n=this.config.config.interface_properties)||void 0===n?void 0:n.position)||"Right",d=null!==(r=null!==(o=this.config.bottomSpacing)&&void 0!==o?o:null===(e=this.config.config.interface_properties)||void 0===e?void 0:e.bottom_spacing)&&void 0!==r?r:20;560>window.innerWidth?Object.assign(this.iframeElement.style,((i={width:"100vw",minWidth:"300px"})[s.toLowerCase()]="0",i.bottom="0",i.height="100vh",i.flexDirection="column",i.flexGrow="1",i.borderRadius="0",i.top="0",i.maxHeight="100%",i.position="fixed",i)):Object.assign(this.iframeElement.style,((t={width:"26%",minWidth:"400px",height:"calc(100vh - 2rem - 10vh - ".concat(d,"px)"),borderRadius:"1rem",top:"calc(10vh - 32px)",maxHeight:"50rem",position:""})[s.toLowerCase()]=void 0,t))}},i.prototype.initialize=function(){var i=this;if(!this.isInitialized){var t=f().copilotUrl;this.iframeElement.src="".concat(t,"/chatbot-plugin?id=").concat(this.config.config.chatbotId),this.isInitialized=!0,this.iframeElement.addEventListener("load",(function(){var n,o,e=new URL(i.iframeElement.src).origin||t;null===(n=i.iframeElement.contentWindow)||void 0===n||n.postMessage({domain:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname,name:"checkDomain"},e)}))}},i.prototype.setupEventListeners=function(){var i=this;window.addEventListener("resize",this.resizeHandler),this.iframeElement.addEventListener("error",(function(){D.trackError(Error(W[L]({src:i.iframeElement.src,error:"Failed to load iframe"})),"ChatbotIframe",{errorCode:L,errorType:"RUNTIME_ERROR",context:{config:i.config.config,iframeUrl:i.iframeElement.src,timestamp:Date.now()}})})),window.addEventListener("message",this.handleMessage)},i.prototype.updateVisibility=function(i){var t,n,o,e,r,s,d,a,l,u=this;this.config.isVisible=i;var h=this.config.position||(null===(t=this.config.config.interface_properties)||void 0===t?void 0:t.position)||"Right";if(i?(this.iframeElement.style.display="block",this.iframeElement.getBoundingClientRect(),this.iframeElement.style.opacity="1",this.iframeElement.style.transform="scale(1) translate3d(0,0,0)"):(this.iframeElement.style.opacity="0",this.iframeElement.style.transform="scale(0.3) translate3d(".concat((h.toLowerCase(),"0"),",40px,0)"),setTimeout((function(){u.config.isVisible||(u.iframeElement.style.display="none")}),200)),this.iframeElement.contentWindow&&i){var v=f().copilotUrl,p=new URL(this.iframeElement.src).origin||v;this.iframeElement.contentWindow.postMessage({domain:null===(n=null===window||void 0===window?void 0:window.location)||void 0===n?void 0:n.hostname,name:"openFrame"},p),this.hasRegistered||(this.iframeElement.contentWindow.postMessage({domain:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname,action:"registerUserId",data:{userId:null===(e=this.config.config)||void 0===e?void 0:e.userId,token:null===(r=this.config.config)||void 0===r?void 0:r.token,userProfile:null===(s=this.config.config)||void 0===s?void 0:s.userProfile,isAnonymous:null===(d=this.config.config)||void 0===d?void 0:d.isAnonymous}},p),this.hasRegistered=!0),null===(l=(a=this.config).onEvent)||void 0===l||l.call(a,{type:c.CHATBOT_OPENED,timestamp:Date.now()}),this.config.onInternalEvent(c.CHATBOT_OPENED)}},i.prototype.update=function(i){var t=this.config.isVisible;if(this.config=r(r({},this.config),i),t!==this.config.isVisible&&this.updateVisibility(this.config.isVisible),this.iframeElement.contentWindow&&this.config.isVisible){var n=f().copilotUrl;this.iframeElement.contentWindow.postMessage({action:"updateUserProfile",user_profile:this.config.config.userProfile},n)}},i.prototype.destroy=function(){window.removeEventListener("resize",this.resizeHandler),window.removeEventListener("message",this.handleMessage),this.iframeElement&&this.iframeElement.parentNode&&this.iframeElement.parentNode.removeChild(this.iframeElement)},i}(),B=function(){function i(i,t,n,o){this.resizeObserver=null,this.containerElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.config={config:i,position:t,sideSpacing:n,bottomSpacing:o},this.render(),this.mount(),this.setupResizeListener()}return i.prototype.render=function(){this.applyStyles(),this.containerElement.className="robylon-chatbot-container"},i.prototype.applyStyles=function(){var i,t,n,o,e,s,d,a,l,u=560>(null===window||void 0===window?void 0:window.innerWidth),c=this.config.position||(null===(n=this.config.config.interface_properties)||void 0===n?void 0:n.position)||"Right",h=null!==(s=null!==(o=this.config.sideSpacing)&&void 0!==o?o:null===(e=this.config.config.interface_properties)||void 0===e?void 0:e.side_spacing)&&void 0!==s?s:20,v=null!==(l=null!==(d=this.config.bottomSpacing)&&void 0!==d?d:null===(a=this.config.config.interface_properties)||void 0===a?void 0:a.bottom_spacing)&&void 0!==l?l:20;this.containerElement.style.position="",this.containerElement.style.top="",this.containerElement.style.bottom="",this.containerElement.style.right="",this.containerElement.style.left="",this.containerElement.style.alignItems="";var f={position:"fixed",zIndex:"1000",display:"flex",flexDirection:"column"},p=r(r({},f),((i={bottom:"".concat(v,"px")})[c.toLowerCase()]="".concat(h,"px"),i.alignItems="Right"===c?"flex-end":"flex-start",i)),m=r(r({},f),((t={top:"0"})[c.toLowerCase()]="".concat(h,"px"),t.alignItems="center",t));Object.assign(this.containerElement.style,u?m:p)},i.prototype.handleResize=function(){this.applyStyles()},i.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},i.prototype.mount=function(){document.body.appendChild(this.containerElement)},i.prototype.getElement=function(){return this.containerElement},i.prototype.destroy=function(){this.resizeObserver?(this.resizeObserver.disconnect(),this.resizeObserver=null):window.removeEventListener("resize",this.handleResizeFunction),this.containerElement&&this.containerElement.parentNode&&this.containerElement.parentNode.removeChild(this.containerElement)},i}(),J=function(i){var t=i?"USER_DATA=%7B%22attributes%22%3A%5B%7B%22key%22%3A%22USER_ATTRIBUTE_USER_EMAIL%22%2C%22value%22%3A%22dinesh.goel%40robylon.ai%22%7D%2C%7B%22key%22%3A%22USER_ATTRIBUTE_UNIQUE_ID%22%2C%22value%22%3A%2266011f2c28d1787d13c6c796%22%7D%5D%2C%22subscribedToOldSdk%22%3Afalse%2C%22deviceUuid%22%3A%2226c02feb-2664-451d-8469-9cf1378547c6%22%2C%22deviceAdded%22%3Atrue%7D; _ga_3YS9P6ZDWX=GS1.1.1715252584.3.1.1715258696.39.0.0; _ga_V4J24F7YF9=GS1.1.1715273274.2.0.1715273274.0.0.0; city_name=Bengaluru; lang_code=en-in; cookieConcent=A; _gcl_au=1.1.343275043.1717154298; _clck=43guwd%7C2%7Cfmi%7C0%7C1561; _gid=GA1.2.1423066649.1718210058; moe_uuid=26c02feb-2664-451d-8469-9cf1378547c6; _ga_6RM65PWEZY=GS1.1.1718210058.18.1.1718211647.60.0.0; _ga=GA1.1.689213983.1712737672; AMP_MKTG_fe4beb374f=JTdCJTIycmVmZXJyZXIlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmFjY291bnRzLnRlYWNobWludC5jb20lMkYlMjIlMkMlMjJyZWZlcnJpbmdfZG9tYWluJTIyJTNBJTIyYWNjb3VudHMudGVhY2htaW50LmNvbSUyMiU3RA==; AMP_fe4beb374f=JTdCJTIyZGV2aWNlSWQlMjIlM0ElMjI0MWMxMTljZC03YzVjLTRiYTctYTUzZS1mYTgzMjRlYjc0OWUlMjIlMkMlMjJ1c2VySWQlMjIlM0ElMjIxZjI2ODAwOC01OGYxLTQwYTItYjQ0Ni1mYmQ5N2E0NDQyYTAlMjIlMkMlMjJzZXNzaW9uSWQlMjIlM0ExNzE4MjEzMzEwOTc3JTJDJTIyb3B0T3V0JTIyJTNBZmFsc2UlMkMlMjJsYXN0RXZlbnRUaW1lJTIyJTNBMTcxODIxMzMxMDk4MSUyQyUyMmxhc3RFdmVudElkJTIyJTNBMTQlN0Q=; _ga_3YS9P6ZDWX=GS1.1.1718211637.26.1.1718213441.60.0.0; SESSION=%7B%22sessionKey%22%3A%22e4d76f52-9053-4277-99a4-f1ba667fd5f2%22%2C%22sessionStartTime%22%3A%222024-06-12T16%3A34%3A19.047Z%22%2C%22sessionMaxTime%22%3A1800%2C%22customIdentifiersToTrack%22%3A%5B%5D%2C%22sessionExpiryTime%22%3A1718215247464%2C%22numberOfSessions%22%3A17%7D":document.cookie;return t=t.split(";").map((function(i){var t=i.split("="),n=t[0],o=t.slice(1).join("=").trim();return{name:n=n.trim(),value:o?decodeURIComponent(o):""}})),t},Y=function(){var i,t=navigator.userAgent;if(null===(i=navigator.userAgentData)||void 0===i?void 0:i.brands){var n=navigator.userAgentData.brands.find((function(i){return"Google Chrome"===i.brand}));if(null==n?void 0:n.version)return n.version}var o=t.match(/(Chrome|Firefox|Safari|Edge|Opera)\/(\d+\.\d+)/);return o?o[2]:"Unknown"},Z=function(){var i,t,n=A();return{current_page_url:(null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.href)||"",browser_language:(null===navigator||void 0===navigator?void 0:navigator.language)||(null===(t=null===navigator||void 0===navigator?void 0:navigator.languages)||void 0===t?void 0:t[0])||"en",browser_version:Y(),os:null==n?void 0:n.os,referral_url:(null===document||void 0===document?void 0:document.referrer)||""}},G=function(i,t,n){return s(void 0,void 0,void 0,(function(){var o,e,r,s,a,u,c,h;return d(this,(function(d){switch(d.label){case 0:return d.trys.push([0,5,,6]),o=f().apiUrl,l.log("endpointUrl",e="".concat(o,"/chat/chatbot/get/")),r={client_user_id:t||null,org_id:i,token:n||void 0,extra_info:{},launcher_info:Z()},[4,fetch(e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})];case 1:return(s=d.sent()).ok?[3,3]:[4,s.text()];case 2:throw a=d.sent(),Error(W[N](s.status,a));case 3:return[4,s.json()];case 4:if(u=d.sent(),!(null===(h=null==u?void 0:u.user)||void 0===h?void 0:h.org_info))throw Error(W[F](["user","org_info"]));return[2,u];case 5:throw c=d.sent(),D.trackError(c instanceof Error?c:Error(W[U]({error:c+""})),"fetchChatbotConfig",{errorCode:c instanceof Error&&c.message.includes("API Request Failed")?N:U,errorType:"API_ERROR",context:{apiKey:i,userId:t,timestamp:Date.now()}}),c;case 6:return[2]}}))}))},K=function(i){return s(void 0,void 0,void 0,(function(){var e,s,a,l,u,c,h,v,f,p,m,w,b,g,x,I,y,_,E,S,T,R,O,C,k,D,j,z,M,N,U,F,L,P;return d(this,(function(d){switch(d.label){case 0:return e=function(i){return{api_key:(i.api_key||"")+"",user_id:i.user_id?i.user_id+"":null,user_token:i.user_token?i.user_token+"":void 0,user_profile:i.user_profile||{}}}(i),s=e.user_id||void 0,a=!1,s||(s=function(){var i,t="; ".concat(document.cookie).split("; rblyn_anon=");if(2===t.length)return null===(i=t.pop())||void 0===i?void 0:i.split(";").shift()}()||"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(i){var t=16*Math.random()|0;return("x"===i?t:3&t|8).toString(16)})),H=s,(B=new Date).setTime(B.getTime()+31536e6),document.cookie="".concat("rblyn_anon","=").concat(H,";expires=").concat(B.toUTCString(),";path=/"),a=!0),[4,G(e.api_key,s,e.user_token)];case 1:return l=d.sent(),u=A(),c=Z(),W=e.user_profile,h=W?Object.fromEntries(Object.entries(W).map((function(i){var t=i[0],n=i[1];return"boolean"==typeof n||"number"==typeof n?[t,n]:[t,n+""]}))):{},v=r(r(r({},u),{__INT_SYS_INFO__:r(r({},u),c)}),h),[2,{chatbotId:e.api_key,userId:s,token:e.user_token,isAnonymous:a,domain:"",show_launcher:null===(p=null===(f=l.user.org_info)||void 0===f?void 0:f.show_launcher)||void 0===p||p,brand_colour:(null===(w=null===(m=l.user.org_info.brand_config)||void 0===m?void 0:m.colors)||void 0===w?void 0:w.brand_color)||"",image_url:(null===(g=null===(b=l.user.org_info)||void 0===b?void 0:b.brand_config)||void 0===g?void 0:g.launcher_logo_url)||"",userProfile:v,chat_interface_config:{chat_bubble_prompts:[],display_name:(null===(x=l.user.org_info.brand_config)||void 0===x?void 0:x.display_name)||"",welcome_message:(null===(I=l.user.org_info.brand_config)||void 0===I?void 0:I.welcome_message)||"Hey! What can we help you with today?",redirect_url:(null===(y=l.user.org_info.brand_config)||void 0===y?void 0:y.redirect_url)||""},launcher_type:(null===(_=l.user.org_info.brand_config)||void 0===_?void 0:_.launcher_type)||o.IMAGE,launcher_properties:{text:(null===(S=null===(E=l.user.org_info.brand_config)||void 0===E?void 0:E.launcher_properties)||void 0===S?void 0:S.text)||""},images:{launcher_image_url:{url:(null===(O=null===(R=null===(T=l.user.org_info.brand_config)||void 0===T?void 0:T.images)||void 0===R?void 0:R.launcher_image_url)||void 0===O?void 0:O.url)||""}},proactive_message_obj:(null===(D=null===(k=null===(C=null==l?void 0:l.user)||void 0===C?void 0:C.org_info)||void 0===k?void 0:k.brand_config)||void 0===D?void 0:D.proactive_message_obj)||void 0,interface_properties:{position:(null===(z=null===(j=l.user.org_info.brand_config)||void 0===j?void 0:j.interface_properties)||void 0===z?void 0:z.position)||n.RIGHT,side_spacing:(null===(N=null===(M=l.user.org_info.brand_config)||void 0===M?void 0:M.interface_properties)||void 0===N?void 0:N.side_spacing)||20,bottom_spacing:(null===(F=null===(U=l.user.org_info.brand_config)||void 0===U?void 0:U.interface_properties)||void 0===F?void 0:F.bottom_spacing)||20},interface_type:(null===(L=l.user.org_info.brand_config)||void 0===L?void 0:L.interface_type)||t.WIDGET,launcher_delay:(null===(P=l.user.org_info.brand_config)||void 0===P?void 0:P.launcher_delay)||{enabled:!1,delay:0}}]}var W,H,B}))}))},V=function(){function i(i){this.logoContainer=null,this.iframe=null,this.bubblePromptContainer=null,this.chatBtnImage=null,this.config=i,this.validateDomain()&&this.init(),null===window||void 0===window||window.addEventListener("message",this.onCloseListener.bind(this),!1)}return i.prototype.onCloseListener=function(i){i.origin===this.config.domain&&"closeChatbot"===i.data&&this.closeIframe()},i.prototype.validateDomain=function(){var i,t=this.config.domain,n=null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.origin;return l.log("expectedDomain, to current domain",t,n,t===n),t===n},i.prototype.createChatBubblContainer=function(){var i,t=this,n=document.createElement("div");n.id="chatbase-message-bubbles",Object.assign(n.style,{position:"fixed",bottom:"80px",borderRadius:"10px",fontFamily:"sans-serif",fontSize:"16px",zIndex:"2147483644",cursor:"pointer",flexDirection:"column",gap:"50px",maxWidth:"70vw",display:"block",right:"1rem",left:"unset"});var o=document.createElement("div");o.classList.add("close-btn"),o.textContent="✕",Object.assign(o.style,{position:"absolute",top:"-7px",right:"-7px",fontWeight:"bold",display:"none",justifyContent:"center",alignItems:"center",zIndex:"2147483643",width:"22px",height:"22px",borderRadius:"50%",textAlign:"center",fontSize:"12px",cursor:"pointer",backgroundColor:"rgb(224, 224, 224)",color:"black",boxShadow:"rgba(150, 150, 150, 0.15) 0px 6px 24px 0px, rgba(150, 150, 150, 0.15) 0px 0px 0px 1px"}),((null===(i=this.config.chat_interface_config)||void 0===i?void 0:i.chat_bubble_prompts)||[]).forEach((function(i){var o=t.createMessageBubble(i);n.appendChild(o)})),n.appendChild(o),document.body.appendChild(n)},i.prototype.createMessageBubble=function(i){var t=document.createElement("div");this.bubblePromptContainer=t,Object.assign(t.style,{display:"flex",position:"relative",justifyContent:"flex-end"});var n=document.createElement("div");n.classList.add("message"),n.textContent=i,Object.assign(n.style,{backgroundColor:"white",color:"black",boxShadow:"rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px",borderRadius:"10px",padding:"8px 5px",margin:"8px",fontSize:"14px",opacity:"1",transform:"scale(1)",transition:"opacity 0.5s ease 0s, transform 0.5s ease 0s"});var o=document.createElement("button");return o.innerHTML="&times;",Object.assign(o.style,{position:"absolute",top:"1px",left:"-3px",width:"20px",height:"20px",borderRadius:"50%",backgroundColor:"#fff",color:"#000",border:"none",cursor:"pointer",display:"flex",alignItems:"center",justifyContent:"center",boxShadow:"0 2px 5px rgba(0,0,0,0.2)",fontSize:"14px",lineHeight:"1",padding:"0",zIndex:"100"}),o.addEventListener("click",(function(){t.remove()})),t.appendChild(o),t.appendChild(n),t},i.prototype.createFloatingButton=function(){var i=document.createElement("div");i.classList.add("message-bubble-container"),Object.assign(i.style,{position:"fixed",bottom:"1.5rem",right:"1.5rem",zIndex:"1000",width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:this.config.brand_colour,color:a(this.config.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden"}),document.body.appendChild(i),this.logoContainer=i,this.loadImage(this.logoContainer),this.createChatBubblContainer(),this.logoContainer.addEventListener("click",this.toggleIframe.bind(this))},i.prototype.loadImage=function(i){var t,n,o=document.createElement("img");o.src=this.config.launcher_type?(null===(n=null===(t=this.config.images)||void 0===t?void 0:t.launcher_image_url)||void 0===n?void 0:n.url)||"".concat(this.config.domain,"/chatbubble.png"):this.config.image_url||"".concat(this.config.domain,"/chatbubble.png"),o.alt="Chat",Object.assign(o.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover"}),this.chatBtnImage=o,i.innerHTML="",i.appendChild(o)},i.prototype.createIframe=function(){var i=this;l.log("RobylonConfig?.domain====>",this.config.domain);var t=document.createElement("iframe");Object.assign(t.style,{position:"fixed",right:"32px",bottom:"86px",minWidth:"400px",width:"26%",maxWidth:"800px",top:"calc(10vh - 32px)",maxHeight:"45rem",height:"calc(100vh - 3rem - 10vh)",zIndex:"20000000",border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom right",transition:"transform 0.3s ease-out",borderRadius:"1rem",display:"none"}),t.src="".concat(this.config.domain,"/chatbot-plugin?id=").concat(this.config.chatbotId),l.log("iframe.src====>",t.src),document.body.appendChild(t),this.iframe=t;var n=function(){560>(null===window||void 0===window?void 0:window.innerWidth)?Object.assign(t.style,{width:"100vw",minWidth:"300px",right:"0",bottom:"0",height:"100vh",flexDirection:"column",flexGrow:"1",borderRadius:"0",top:"0",maxHeight:"100%"}):Object.assign(t.style,{width:"26%",minWidth:"400px",right:"32px",bottom:"86px",height:"calc(100vh - 3rem - 10vh)",borderRadius:"1rem",top:"calc(10vh - 32px)",maxHeight:"45rem"})};n(),null===window||void 0===window||window.addEventListener("resize",n),t.addEventListener("load",(function(){var n,o,e,r;if(i.iframe){var s=new URL(i.iframe.src).origin||i.config.domain;null===(n=t.contentWindow)||void 0===n||n.postMessage({domain:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname,name:"checkDomain"},s),null===(e=t.contentWindow)||void 0===e||e.postMessage({domain:null===(r=null===window||void 0===window?void 0:window.location)||void 0===r?void 0:r.hostname,action:"registerUserId",data:{userId:i.config.userId,token:i.config.token,userProfile:i.config.userProfile}},s)}})),null===window||void 0===window||window.addEventListener("message",(function(n){var o,e;if(n.origin===i.config.domain){if("captureSessionData"===n.data){var r="66b33d16-5b38-4693-8772-1a1bd7dd412d"===i.config.chatbotId,s={cookies:J(r),localStorage:JSON.stringify(localStorage),sessionStorage:JSON.stringify(sessionStorage),action:"capturedSessionData",domain_name:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname};null===(e=t.contentWindow)||void 0===e||e.postMessage(s,i.config.domain||"*")}"expand"===n.data&&(i.adjustIframeWidth(),t.style.height="calc(100vh - 120px)",t.style.bottom="86px"),"collapse"===n.data&&Object.assign(t.style,{width:"26%",height:"calc(100vh - 32px - 10vh)",bottom:"86px",top:"calc(32px + 10vh)"})}}))},i.prototype.adjustIframeWidth=function(){if(this.iframe){var i=null===window||void 0===window?void 0:window.innerWidth;l.log("screenWidth",i),this.iframe.style.width=832>i?"".concat(i-64,"px"):"800px"}},i.prototype.loadSvgInline=function(i){var t=document.createElement("div");t.innerHTML='\n<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n <g id="Chevron_Down">\n <path id="Vector" d="M19 9L12 16L5 9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n </g>\n</svg>\n';var n=t.querySelector("svg");i.innerHTML="",n&&i.appendChild(n)},i.prototype.toggleIcon=function(i,t){"block"===t.style.display?this.loadSvgInline(i):this.loadImage(i)},i.prototype.toggleIframe=function(){var i;if(l.log("toggleIframe",this.iframe,this.logoContainer,this.chatBtnImage),this.iframe&&this.logoContainer&&this.chatBtnImage){var t=new URL(this.iframe.src).origin||this.config.domain;l.log("toggleIframe"),null===(i=this.iframe.contentWindow)||void 0===i||i.postMessage({domain:null===window||void 0===window?void 0:window.location.hostname,name:"none"===this.iframe.style.display?"openFrame":"closeFrame"},t),this.iframe.style.display="none"===this.iframe.style.display?"block":"none",this.toggleIcon(this.logoContainer,this.iframe),this.chatBtnImage.style.objectFit="block"===this.iframe.style.display?"none":"cover",this.bubblePromptContainer&&(this.bubblePromptContainer.style.display="none"),l.log("this.bubblePromptContainer",this.bubblePromptContainer)}},i.prototype.closeIframe=function(){this.iframe&&this.logoContainer&&this.chatBtnImage&&(this.iframe.style.display="none",this.toggleIcon(this.logoContainer,this.iframe),this.chatBtnImage.style.objectFit="cover")},i.prototype.init=function(){this.createIframe(),this.createFloatingButton()},i}(),Q=function(i){var t={isInitialized:!1,isInitializing:!1,error:null,chatbotConfig:null,isIframeVisible:!1},n=[],o=function(i){t=r(r({},t),i),n.forEach((function(i){return i(t)}))};return{getState:function(){return t},initialize:function(){return s(void 0,void 0,void 0,(function(){var t,n,e;return d(this,(function(r){switch(r.label){case 0:if(!i.api_key)return D.trackError(Error(W[j](i.api_key)),"ChatbotStateManager",{errorCode:j,errorType:P,context:{timestamp:Date.now()}}),[2];o({isInitializing:!0}),r.label=1;case 1:return r.trys.push([1,4,5,6]),[4,K(i)];case 2:return t=r.sent(),[4,new Promise((function(i,n){!function(n,e,r){if(n.chatbotId&&n.userId)try{new V(n),o({isInitialized:!0,chatbotConfig:t}),i(),l.log("Robylon SDK initialized successfully.")}catch(i){r(i instanceof Error?i.message:"Failed to initialize SDK")}else r("Incomplete configuration for SDK initialization.")}(t,0,(function(i){n(i)}))}))];case 3:return r.sent(),[3,6];case 4:return n=r.sent(),e=n instanceof Error?n.message:"Failed to initialize chatbot",o({error:e}),D.trackError(n instanceof Error?n:Error(e),"ChatbotStateManager",{errorCode:z,errorType:P,context:{timestamp:Date.now()}}),[3,6];case 5:return o({isInitializing:!1}),[7];case 6:return[2]}}))}))},toggleIframeVisibility:function(){o({isIframeVisible:!t.isIframeVisible})},closeIframe:function(){o({isIframeVisible:!1})},updateState:o,subscribe:function(i){return n.push(i),function(){var t=n.indexOf(i);t>-1&&n.splice(t,1)}},unsubscribe:function(i){var t=n.indexOf(i);t>-1&&n.splice(t,1)}}},q=function(i){i.api_key,i.user_profile;var t=i.onEvent;return i.chatbotConfig,{emit:function(i,n){var o={type:i,timestamp:Date.now(),data:n};null==t||t(o)},onInternalEvent:function(i,t){}}},X=function(){function i(i){var t=this;this.container=null,this.floatingButton=null,this.launcherDelayTimeout=null,this.iframe=null,this.isDestroyed=!1,this.handleStateChange=function(i){var n,o,e,r,s;if(!t.isDestroyed){var d=i.isInitialized,a=i.error,l=i.chatbotConfig,u=i.isIframeVisible;if(!a&&l&&d){if(t.eventEmitter=q({api_key:t.config.api_key,user_profile:t.config.user_profile,onEvent:t.config.onEvent,chatbotConfig:{isAnonymous:l.isAnonymous,userId:l.userId}}),t.container||(t.container=new B(l,t.config.position,t.config.sideSpacing,t.config.bottomSpacing)),t.iframe)t.iframe.update({config:l,isVisible:u,position:t.config.position,bottomSpacing:t.config.bottomSpacing});else if(t.iframe=new H({config:l,isVisible:u,onClose:t.handleClose,onEvent:t.config.onEvent,onInternalEvent:t.eventEmitter.onInternalEvent,position:t.config.position,bottomSpacing:t.config.bottomSpacing}),t.iframe.getElement&&"function"==typeof t.iframe.getElement){var c=t.iframe.getElement();c&&t.container&&t.container.getElement().prepend(c)}var h=!0===(null==l?void 0:l.show_launcher),v=!0===(null===(n=null==l?void 0:l.launcher_delay)||void 0===n?void 0:n.enabled),f=null!==(s=null!==(e=null===(o=null==l?void 0:l.launcher_delay)||void 0===o?void 0:o.seconds)&&void 0!==e?e:null===(r=null==l?void 0:l.launcher_delay)||void 0===r?void 0:r.delay)&&void 0!==s?s:0,p=function(){if(t.floatingButton)t.floatingButton.update({config:l,isIframeVisible:u,position:t.config.position,sideSpacing:t.config.sideSpacing,bottomSpacing:t.config.bottomSpacing});else if(t.floatingButton=new _({config:l,toggleIframe:t.toggleIframe,isIframeVisible:u,onEvent:t.config.onEvent,onInternalEvent:t.eventEmitter.onInternalEvent,position:t.config.position,sideSpacing:t.config.sideSpacing,bottomSpacing:t.config.bottomSpacing}),t.floatingButton.getElement&&"function"==typeof t.floatingButton.getElement){var i=t.floatingButton.getElement();i&&t.container&&t.container.getElement().appendChild(i)}};t.launcherDelayTimeout&&(clearTimeout(t.launcherDelayTimeout),t.launcherDelayTimeout=null),h?v&&+f>0&&!t.floatingButton?t.launcherDelayTimeout=window.setTimeout((function(){p(),t.launcherDelayTimeout=null}),1e3*+f):p():t.floatingButton&&(t.floatingButton.destroy(),t.floatingButton=null)}}},this.toggleIframe=function(){var i=t.stateManager.getState();t.stateManager.toggleIframeVisibility(),t.eventEmitter.emit(i.isIframeVisible?c.CHATBOT_CLOSED:c.CHATBOT_BUTTON_CLICKED)},this.handleClose=function(){t.stateManager.closeIframe(),t.eventEmitter.emit(c.CHATBOT_CLOSED)};var n=r(r({},i),{position:"string"==typeof i.position?"left"===i.position.toLowerCase()?"Left":"right"===i.position.toLowerCase()?"Right":void 0:void 0,sideSpacing:"string"==typeof i.sideSpacing?""===i.sideSpacing||isNaN(+i.sideSpacing)?void 0:+i.sideSpacing:i.sideSpacing,bottomSpacing:"string"==typeof i.bottomSpacing?""===i.bottomSpacing||isNaN(+i.bottomSpacing)?void 0:+i.bottomSpacing:i.bottomSpacing});if(this.config=n,!i.api_key)throw D.trackError(Error(W[j](i.api_key)),"RobylonChatbot",{errorCode:j,errorType:P,context:{timestamp:Date.now()}}),Error("API key is required");try{D.initialize(i.api_key,i.user_id)}catch(i){D.trackError(i instanceof Error?i:Error(i+""),"RobylonChatbot",{errorCode:M,errorType:P,context:{timestamp:Date.now()}})}this.stateManager=Q({api_key:i.api_key,user_id:i.user_id,user_token:i.user_token,user_profile:i.user_profile}),this.eventEmitter=q({api_key:i.api_key,user_profile:i.user_profile,onEvent:i.onEvent,chatbotConfig:null}),window.RobylonShouldShowProactive=y,window.RobylonHideProactive=g,this.initialize()}return i.prototype.initialize=function(){return s(this,void 0,void 0,(function(){var i;return d(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,this.stateManager.initialize()];case 1:return t.sent(),this.stateManager.subscribe(this.handleStateChange),this.handleStateChange(this.stateManager.getState()),[3,3];case 2:return i=t.sent(),D.trackError(i instanceof Error?i:Error(i+""),"RobylonChatbot.initialize",{errorCode:z,errorType:P,context:{timestamp:Date.now()}}),[3,3];case 3:return[2]}}))}))},i.prototype.show=function(){this.stateManager.getState().isIframeVisible||(this.stateManager.toggleIframeVisibility(),this.eventEmitter.emit(c.CHATBOT_BUTTON_CLICKED))},i.prototype.hide=function(){this.stateManager.getState().isIframeVisible&&(this.stateManager.closeIframe(),this.eventEmitter.emit(c.CHATBOT_CLOSED))},i.prototype.toggle=function(){this.toggleIframe()},i.prototype.destroy=function(){this.isDestroyed=!0,this.floatingButton&&(this.floatingButton.destroy(),this.floatingButton=null),this.launcherDelayTimeout&&(clearTimeout(this.launcherDelayTimeout),this.launcherDelayTimeout=null),this.iframe&&(this.iframe.destroy(),this.iframe=null),this.container&&(this.container.destroy(),this.container=null),this.stateManager.unsubscribe(this.handleStateChange)},i.prototype.getState=function(){return this.stateManager.getState().isInitialized?"initialized":"uninitialized"},i}();function $(i){return new X(i)}"undefined"!=typeof window&&function(){if("undefined"!=typeof window){var i=window.RobylonChatbot;if(i&&Array.isArray(i.q)){var t=null;i.q.forEach((function(i){var n=i[0];if("init"===n){var o=i[1]||{};t=$(o)}else t&&"function"==typeof t[n]&&t[n]()})),window.RobylonChatbot=function(i){var n=[].slice.call(arguments,1);return"init"===i?t=$(n[0]||{}):t&&"function"==typeof t[i]?t[i].apply(t,n):void 0},window.RobylonChatbot.getState=function(){return"initialized"}}}}();var ii={create:$,getState:function(){return"initialized"}};i.create=$,i.default=ii,Object.defineProperty(i,"i",{value:!0})}));
1
+ !function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i((t="undefined"!=typeof globalThis?globalThis:t||self).RobylonChatbot={})}(this,(function(t){"use strict";var i,n,e,o,r,a,l,s=function(){return s=Object.assign||function(t){for(var i,n=1,e=arguments.length;e>n;n++)for(var o in i=arguments[n])({}).hasOwnProperty.call(i,o)&&(t[o]=i[o]);return t},s.apply(this,arguments)};function u(t,i,n,e){return new(n||(n=Promise))((function(o,r){function a(t){try{s(e.next(t))}catch(t){r(t)}}function l(t){try{s(e.throw(t))}catch(t){r(t)}}function s(t){var i;t.done?o(t.value):(i=t.value,i instanceof n?i:new n((function(t){t(i)}))).then(a,l)}s((e=e.apply(t,i||[])).next())}))}function d(t,i){var n,e,o,r={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=l(0),a.throw=l(1),a.return=l(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function l(l){return function(s){return function(l){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,l[0]&&(r=0)),r;)try{if(n=1,e&&(o=2&l[0]?e.return:l[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,l[1])).done)return o;switch(e=0,o&&(l=[2&l[0],o.value]),l[0]){case 0:case 1:o=l;break;case 4:return r.label++,{value:l[1],done:!1};case 5:r.label++,e=l[1],l=[0];continue;case 7:l=r.ops.pop(),r.trys.pop();continue;default:if(!((o=(o=r.trys).length>0&&o[o.length-1])||6!==l[0]&&2!==l[0])){r=0;continue}if(3===l[0]&&(!o||l[1]>o[0]&&l[1]<o[3])){r.label=l[1];break}if(6===l[0]&&r.label<o[1]){r.label=o[1],o=l;break}if(o&&r.label<o[2]){r.label=o[2],r.ops.push(l);break}o[2]&&r.ops.pop(),r.trys.pop();continue}l=i.call(t,r)}catch(t){l=[6,t],e=0}finally{n=o=0}if(5&l[0])throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}([l,s])}}}"function"==typeof SuppressedError&&SuppressedError,function(t){t.WIDGET="WIDGET",t.POPOVER="POPOVER",t.EMBED="EMBED"}(i||(i={})),function(t){t.RIGHT="Right",t.LEFT="Left"}(n||(n={})),function(t){t.TEXT="TEXT",t.IMAGE="IMAGE",t.TEXTUAL_IMAGE="TEXTUAL_IMAGE"}(e||(e={})),function(t){t.WORKING_HOURS="WORKING_HOURS",t.ALWAYS="ALWAYS"}(o||(o={})),function(t){t.URL="URL"}(r||(r={})),function(t){t.AND="AND",t.OR="OR"}(a||(a={})),function(t){t.IS="IS",t.IS_NOT="IS_NOT",t.CONTAINS="CONTAINS",t.DOES_NOT_CONTAIN="DOES_NOT_CONTAIN",t.STARTS_WITH="STARTS_WITH",t.ENDS_WITH="ENDS_WITH"}(l||(l={}));var c=function(t,i){void 0===i&&(i=.5);var n,e,o,r,a=function(t){t=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(t,i,n,e){return i+i+n+n+e+e}));var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:{r:0,g:0,b:0}}(t);return(n=a.r,e=a.g,o=a.b,.2126*(r=[n,e,o].map((function(t){return(t/=255)>.03928?Math.pow((t+.055)/1.055,2.4):t/12.92})))[0]+.7152*r[1]+.0722*r[2])>i?"#0E0E0F":"#FFFFFF"},f={log:function(){for(var t=[],i=0;arguments.length>i;i++)t[i]=arguments[i];console.log.apply(console,t)},error:function(){for(var t=[],i=0;arguments.length>i;i++)t[i]=arguments[i];console.error.apply(console,t)},warn:function(){for(var t=[],i=0;arguments.length>i;i++)t[i]=arguments[i];console.warn.apply(console,t)},info:function(){}};f.log("Raw API_URL:","https://stage-api.robylon.ai");var h={copilotUrl:"https://staging.d2s3wsqyyond1h.amplifyapp.com",environment:"staging",apiUrl:"https://stage-api.robylon.ai"};f.log("CONFIG",h);var p,v,m=function(){return"undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement},g=function(){return{copilotUrl:h.copilotUrl||"https://app.robylon.ai",environment:h.environment||"production",apiUrl:h.apiUrl||"https://app.robylon.ai"}};!function(t){t.CHATBOT_BUTTON_LOADED="CHATBOT_BUTTON_LOADED",t.CHATBOT_BUTTON_CLICKED="CHATBOT_BUTTON_CLICKED",t.CHATBOT_OPENED="CHATBOT_OPENED",t.CHATBOT_CLOSED="CHATBOT_CLOSED",t.CHATBOT_APP_READY="CHATBOT_APP_READY",t.CHATBOT_LOADED="CHATBOT_LOADED",t.CHAT_INITIALIZED="CHAT_INITIALIZED",t.SESSION_REFRESHED="SESSION_REFRESHED",t.CHAT_INITIALIZATION_FAILED="CHAT_INITIALIZATION_FAILED",t.CHATBOT_READY="CHATBOT_READY"}(p||(p={})),function(t){t.CHAT_MOVED="CHAT_MOVED",t.CHATBOT_TOKEN_EXHAUSTED="CHATBOT_TOKEN_EXHAUSTED"}(v||(v={}));var b,w="system-ui, Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'",y="21px",x="",_=[],I=!1,T=function(){return"undefined"==typeof window?"":window.location.href},E=function(){return T()},S=function(){var t=T();t!==x&&(x=t,_.forEach((function(i){return i(t)})))},A=function(t,i,n,e){var o=i||"",r=T(),a=e||r,s=function(t,i){if(/^https?:\/\//i.test(t)||/(^|\.)[\w-]+\.[a-z]{2,}(\/|$)/i.test(t)||/www\./i.test(t))return-1!==i.indexOf(t);try{var n=new URL(i);return-1!=="".concat(n.pathname).concat(n.search).concat(n.hash).indexOf(t)}catch(n){return-1!==i.indexOf(t)}}(o,a);switch(n){case l.IS:return a===o;case l.IS_NOT:return a!==o;case l.CONTAINS:return s;case l.DOES_NOT_CONTAIN:return!s;case l.STARTS_WITH:return a.startsWith(o);case l.ENDS_WITH:return a.endsWith(o);default:return!1}},k=null,R=null,O=function(){k=E()},D=function(){return k===E()},C=function(){return!0},z=((b={})[o.WORKING_HOURS]=function(t,i){var n=i.getHours(),e=i.getMinutes();return(n>10||10===n&&e>=0)&&(19>n||19===n&&0===e)},b[o.ALWAYS]=C,b);const{entries:M,setPrototypeOf:N,isFrozen:L,getPrototypeOf:j,getOwnPropertyDescriptor:F}=Object;let{freeze:U,seal:P,create:W}=Object,{apply:B,construct:H}="undefined"!=typeof Reflect&&Reflect;U||(U=function(t){return t}),P||(P=function(t){return t}),B||(B=function(t,i){for(var n=arguments.length,e=Array(n>2?n-2:0),o=2;n>o;o++)e[o-2]=arguments[o];return t.apply(i,e)}),H||(H=function(t){for(var i=arguments.length,n=Array(i>1?i-1:0),e=1;i>e;e++)n[e-1]=arguments[e];return new t(...n)});const Y=rt([].forEach),X=rt([].lastIndexOf),G=rt([].pop),J=rt([].push),K=rt([].splice),V=rt("".toLowerCase),Z=rt("".toString),q=rt("".match),Q=rt("".replace),$=rt("".indexOf),tt=rt("".trim),it=rt({}.hasOwnProperty),nt=rt(/t/.test),et=(ot=TypeError,function(){for(var t=arguments.length,i=Array(t),n=0;t>n;n++)i[n]=arguments[n];return H(ot,i)});var ot;function rt(t){return function(i){i instanceof RegExp&&(i.lastIndex=0);for(var n=arguments.length,e=Array(n>1?n-1:0),o=1;n>o;o++)e[o-1]=arguments[o];return B(t,i,e)}}function at(t,i){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:V;N&&N(t,null);let e=i.length;for(;e--;){let o=i[e];if("string"==typeof o){const t=n(o);t!==o&&(L(i)||(i[e]=t),o=t)}t[o]=!0}return t}function lt(t){for(let i=0;i<t.length;i++)it(t,i)||(t[i]=null);return t}function st(t){const i=W(null);for(const[n,e]of M(t))it(t,n)&&(Array.isArray(e)?i[n]=lt(e):e&&"object"==typeof e&&e.constructor===Object?i[n]=st(e):i[n]=e);return i}function ut(t,i){for(;null!==t;){const n=F(t,i);if(n){if(n.get)return rt(n.get);if("function"==typeof n.value)return rt(n.value)}t=j(t)}return function(){return null}}const dt=U(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),ct=U(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),ft=U(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),ht=U(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),pt=U(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),vt=U(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),mt=U(["#text"]),gt=U(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),bt=U(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),wt=U(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),yt=U(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),xt=P(/\{\{[\w\W]*|[\w\W]*\}\}/gm),_t=P(/<%[\w\W]*|[\w\W]*%>/gm),It=P(/\$\{[\w\W]*/gm),Tt=P(/^data-[\-\w.\u00B7-\uFFFF]+$/),Et=P(/^aria-[\-\w]+$/),St=P(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),At=P(/^(?:\w+script|data):/i),kt=P(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Rt=P(/^html$/i),Ot=P(/^[a-z][.\w]*(-[.\w]+)+$/i);var Dt=Object.freeze({__proto__:null,ARIA_ATTR:Et,ATTR_WHITESPACE:kt,CUSTOM_ELEMENT:Ot,DATA_ATTR:Tt,DOCTYPE_NAME:Rt,ERB_EXPR:_t,IS_ALLOWED_URI:St,IS_SCRIPT_OR_DATA:At,MUSTACHE_EXPR:xt,TMPLIT_EXPR:It});const Ct=function(){return"undefined"==typeof window?null:window};var zt,Mt=function t(){let i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ct();const n=i=>t(i);if(n.version="3.3.0",n.removed=[],!i||!i.document||9!==i.document.nodeType||!i.Element)return n.isSupported=!1,n;let{document:e}=i;const o=e,r=o.currentScript,{DocumentFragment:a,HTMLTemplateElement:l,Node:s,Element:u,NodeFilter:d,NamedNodeMap:c=i.NamedNodeMap||i.MozNamedAttrMap,HTMLFormElement:f,DOMParser:h,trustedTypes:p}=i,v=u.prototype,m=ut(v,"cloneNode"),g=ut(v,"remove"),b=ut(v,"nextSibling"),w=ut(v,"childNodes"),y=ut(v,"parentNode");if("function"==typeof l){const t=e.createElement("template");t.content&&t.content.ownerDocument&&(e=t.content.ownerDocument)}let x,_="";const{implementation:I,createNodeIterator:T,createDocumentFragment:E,getElementsByTagName:S}=e,{importNode:A}=o;let k={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]};n.isSupported="function"==typeof M&&"function"==typeof y&&I&&void 0!==I.createHTMLDocument;const{MUSTACHE_EXPR:R,ERB_EXPR:O,TMPLIT_EXPR:D,DATA_ATTR:C,ARIA_ATTR:z,IS_SCRIPT_OR_DATA:N,ATTR_WHITESPACE:L,CUSTOM_ELEMENT:j}=Dt;let{IS_ALLOWED_URI:F}=Dt,P=null;const B=at({},[...dt,...ct,...ft,...pt,...mt]);let H=null;const ot=at({},[...gt,...bt,...wt,...yt]);let rt=Object.seal(W(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),lt=null,xt=null;const _t=Object.seal(W(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let It=!0,Tt=!0,Et=!1,At=!0,kt=!1,Ot=!0,zt=!1,Mt=!1,Nt=!1,Lt=!1,jt=!1,Ft=!1,Ut=!0,Pt=!1,Wt=!0,Bt=!1,Ht={},Yt=null;const Xt=at({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let Gt=null;const Jt=at({},["audio","video","img","source","image","track"]);let Kt=null;const Vt=at({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Zt="http://www.w3.org/1998/Math/MathML",qt="http://www.w3.org/2000/svg",Qt="http://www.w3.org/1999/xhtml";let $t=Qt,ti=!1,ii=null;const ni=at({},[Zt,qt,Qt],Z);let ei=at({},["mi","mo","mn","ms","mtext"]),oi=at({},["annotation-xml"]);const ri=at({},["title","style","font","a","script"]);let ai=null;const li=["application/xhtml+xml","text/html"];let si=null,ui=null;const di=e.createElement("form"),ci=function(t){return t instanceof RegExp||t instanceof Function},fi=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!ui||ui!==t){if(t&&"object"==typeof t||(t={}),t=st(t),ai=-1===li.indexOf(t.PARSER_MEDIA_TYPE)?"text/html":t.PARSER_MEDIA_TYPE,si="application/xhtml+xml"===ai?Z:V,P=it(t,"ALLOWED_TAGS")?at({},t.ALLOWED_TAGS,si):B,H=it(t,"ALLOWED_ATTR")?at({},t.ALLOWED_ATTR,si):ot,ii=it(t,"ALLOWED_NAMESPACES")?at({},t.ALLOWED_NAMESPACES,Z):ni,Kt=it(t,"ADD_URI_SAFE_ATTR")?at(st(Vt),t.ADD_URI_SAFE_ATTR,si):Vt,Gt=it(t,"ADD_DATA_URI_TAGS")?at(st(Jt),t.ADD_DATA_URI_TAGS,si):Jt,Yt=it(t,"FORBID_CONTENTS")?at({},t.FORBID_CONTENTS,si):Xt,lt=it(t,"FORBID_TAGS")?at({},t.FORBID_TAGS,si):st({}),xt=it(t,"FORBID_ATTR")?at({},t.FORBID_ATTR,si):st({}),Ht=!!it(t,"USE_PROFILES")&&t.USE_PROFILES,It=!1!==t.ALLOW_ARIA_ATTR,Tt=!1!==t.ALLOW_DATA_ATTR,Et=t.ALLOW_UNKNOWN_PROTOCOLS||!1,At=!1!==t.ALLOW_SELF_CLOSE_IN_ATTR,kt=t.SAFE_FOR_TEMPLATES||!1,Ot=!1!==t.SAFE_FOR_XML,zt=t.WHOLE_DOCUMENT||!1,Lt=t.RETURN_DOM||!1,jt=t.RETURN_DOM_FRAGMENT||!1,Ft=t.RETURN_TRUSTED_TYPE||!1,Nt=t.FORCE_BODY||!1,Ut=!1!==t.SANITIZE_DOM,Pt=t.SANITIZE_NAMED_PROPS||!1,Wt=!1!==t.KEEP_CONTENT,Bt=t.IN_PLACE||!1,F=t.ALLOWED_URI_REGEXP||St,$t=t.NAMESPACE||Qt,ei=t.MATHML_TEXT_INTEGRATION_POINTS||ei,oi=t.HTML_INTEGRATION_POINTS||oi,rt=t.CUSTOM_ELEMENT_HANDLING||{},t.CUSTOM_ELEMENT_HANDLING&&ci(t.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(rt.tagNameCheck=t.CUSTOM_ELEMENT_HANDLING.tagNameCheck),t.CUSTOM_ELEMENT_HANDLING&&ci(t.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(rt.attributeNameCheck=t.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),t.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof t.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(rt.allowCustomizedBuiltInElements=t.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),kt&&(Tt=!1),jt&&(Lt=!0),Ht&&(P=at({},mt),H=[],!0===Ht.html&&(at(P,dt),at(H,gt)),!0===Ht.svg&&(at(P,ct),at(H,bt),at(H,yt)),!0===Ht.svgFilters&&(at(P,ft),at(H,bt),at(H,yt)),!0===Ht.mathMl&&(at(P,pt),at(H,wt),at(H,yt))),t.ADD_TAGS&&("function"==typeof t.ADD_TAGS?_t.tagCheck=t.ADD_TAGS:(P===B&&(P=st(P)),at(P,t.ADD_TAGS,si))),t.ADD_ATTR&&("function"==typeof t.ADD_ATTR?_t.attributeCheck=t.ADD_ATTR:(H===ot&&(H=st(H)),at(H,t.ADD_ATTR,si))),t.ADD_URI_SAFE_ATTR&&at(Kt,t.ADD_URI_SAFE_ATTR,si),t.FORBID_CONTENTS&&(Yt===Xt&&(Yt=st(Yt)),at(Yt,t.FORBID_CONTENTS,si)),Wt&&(P["#text"]=!0),zt&&at(P,["html","head","body"]),P.table&&(at(P,["tbody"]),delete lt.tbody),t.TRUSTED_TYPES_POLICY){if("function"!=typeof t.TRUSTED_TYPES_POLICY.createHTML)throw et('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof t.TRUSTED_TYPES_POLICY.createScriptURL)throw et('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');x=t.TRUSTED_TYPES_POLICY,_=x.createHTML("")}else void 0===x&&(x=function(t,i){if("object"!=typeof t||"function"!=typeof t.createPolicy)return null;let n=null;const e="data-tt-policy-suffix";i&&i.hasAttribute(e)&&(n=i.getAttribute(e));const o="dompurify"+(n?"#"+n:"");try{return t.createPolicy(o,{createHTML:t=>t,createScriptURL:t=>t})}catch(t){return console.warn("TrustedTypes policy "+o+" could not be created."),null}}(p,r)),null!==x&&"string"==typeof _&&(_=x.createHTML(""));U&&U(t),ui=t}},hi=at({},[...ct,...ft,...ht]),pi=at({},[...pt,...vt]),vi=function(t){J(n.removed,{element:t});try{y(t).removeChild(t)}catch(i){g(t)}},mi=function(t,i){try{J(n.removed,{attribute:i.getAttributeNode(t),from:i})}catch(t){J(n.removed,{attribute:null,from:i})}if(i.removeAttribute(t),"is"===t)if(Lt||jt)try{vi(i)}catch(t){}else try{i.setAttribute(t,"")}catch(t){}},gi=function(t){let i=null,n=null;if(Nt)t="<remove></remove>"+t;else{const i=q(t,/^[\r\n\t ]+/);n=i&&i[0]}"application/xhtml+xml"===ai&&$t===Qt&&(t='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+t+"</body></html>");const o=x?x.createHTML(t):t;if($t===Qt)try{i=(new h).parseFromString(o,ai)}catch(t){}if(!i||!i.documentElement){i=I.createDocument($t,"template",null);try{i.documentElement.innerHTML=ti?_:o}catch(t){}}const r=i.body||i.documentElement;return t&&n&&r.insertBefore(e.createTextNode(n),r.childNodes[0]||null),$t===Qt?S.call(i,zt?"html":"body")[0]:zt?i.documentElement:r},bi=function(t){return T.call(t.ownerDocument||t,t,d.SHOW_ELEMENT|d.SHOW_COMMENT|d.SHOW_TEXT|d.SHOW_PROCESSING_INSTRUCTION|d.SHOW_CDATA_SECTION,null)},wi=function(t){return t instanceof f&&("string"!=typeof t.nodeName||"string"!=typeof t.textContent||"function"!=typeof t.removeChild||!(t.attributes instanceof c)||"function"!=typeof t.removeAttribute||"function"!=typeof t.setAttribute||"string"!=typeof t.namespaceURI||"function"!=typeof t.insertBefore||"function"!=typeof t.hasChildNodes)},yi=function(t){return"function"==typeof s&&t instanceof s};function xi(t,i,e){Y(t,(t=>{t.call(n,i,e,ui)}))}const _i=function(t){let i=null;if(xi(k.beforeSanitizeElements,t,null),wi(t))return vi(t),!0;const e=si(t.nodeName);if(xi(k.uponSanitizeElement,t,{tagName:e,allowedTags:P}),Ot&&t.hasChildNodes()&&!yi(t.firstElementChild)&&nt(/<[/\w!]/g,t.innerHTML)&&nt(/<[/\w!]/g,t.textContent))return vi(t),!0;if(7===t.nodeType)return vi(t),!0;if(Ot&&8===t.nodeType&&nt(/<[/\w]/g,t.data))return vi(t),!0;if(!(_t.tagCheck instanceof Function&&_t.tagCheck(e))&&(!P[e]||lt[e])){if(!lt[e]&&Ti(e)){if(rt.tagNameCheck instanceof RegExp&&nt(rt.tagNameCheck,e))return!1;if(rt.tagNameCheck instanceof Function&&rt.tagNameCheck(e))return!1}if(Wt&&!Yt[e]){const i=y(t)||t.parentNode,n=w(t)||t.childNodes;if(n&&i)for(let e=n.length-1;e>=0;--e){const o=m(n[e],!0);o.t=(t.t||0)+1,i.insertBefore(o,b(t))}}return vi(t),!0}return t instanceof u&&!function(t){let i=y(t);i&&i.tagName||(i={namespaceURI:$t,tagName:"template"});const n=V(t.tagName),e=V(i.tagName);return!!ii[t.namespaceURI]&&(t.namespaceURI===qt?i.namespaceURI===Qt?"svg"===n:i.namespaceURI===Zt?"svg"===n&&("annotation-xml"===e||ei[e]):!!hi[n]:t.namespaceURI===Zt?i.namespaceURI===Qt?"math"===n:i.namespaceURI===qt?"math"===n&&oi[e]:!!pi[n]:t.namespaceURI===Qt?!(i.namespaceURI===qt&&!oi[e])&&!(i.namespaceURI===Zt&&!ei[e])&&!pi[n]&&(ri[n]||!hi[n]):!("application/xhtml+xml"!==ai||!ii[t.namespaceURI]))}(t)?(vi(t),!0):"noscript"!==e&&"noembed"!==e&&"noframes"!==e||!nt(/<\/no(script|embed|frames)/i,t.innerHTML)?(kt&&3===t.nodeType&&(i=t.textContent,Y([R,O,D],(t=>{i=Q(i,t," ")})),t.textContent!==i&&(J(n.removed,{element:t.cloneNode()}),t.textContent=i)),xi(k.afterSanitizeElements,t,null),!1):(vi(t),!0)},Ii=function(t,i,n){if(Ut&&("id"===i||"name"===i)&&(n in e||n in di))return!1;if(Tt&&!xt[i]&&nt(C,i));else if(It&&nt(z,i));else if(_t.attributeCheck instanceof Function&&_t.attributeCheck(i,t));else if(!H[i]||xt[i]){if(!(Ti(t)&&(rt.tagNameCheck instanceof RegExp&&nt(rt.tagNameCheck,t)||rt.tagNameCheck instanceof Function&&rt.tagNameCheck(t))&&(rt.attributeNameCheck instanceof RegExp&&nt(rt.attributeNameCheck,i)||rt.attributeNameCheck instanceof Function&&rt.attributeNameCheck(i,t))||"is"===i&&rt.allowCustomizedBuiltInElements&&(rt.tagNameCheck instanceof RegExp&&nt(rt.tagNameCheck,n)||rt.tagNameCheck instanceof Function&&rt.tagNameCheck(n))))return!1}else if(Kt[i]);else if(nt(F,Q(n,L,"")));else if("src"!==i&&"xlink:href"!==i&&"href"!==i||"script"===t||0!==$(n,"data:")||!Gt[t])if(Et&&!nt(N,Q(n,L,"")));else if(n)return!1;return!0},Ti=function(t){return"annotation-xml"!==t&&q(t,j)},Ei=function(t){xi(k.beforeSanitizeAttributes,t,null);const{attributes:i}=t;if(!i||wi(t))return;const e={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:H,forceKeepAttr:void 0};let o=i.length;for(;o--;){const r=i[o],{name:a,namespaceURI:l,value:s}=r,u=si(a),d=s;let c="value"===a?d:tt(d);if(e.attrName=u,e.attrValue=c,e.keepAttr=!0,e.forceKeepAttr=void 0,xi(k.uponSanitizeAttribute,t,e),c=e.attrValue,!Pt||"id"!==u&&"name"!==u||(mi(a,t),c="user-content-"+c),Ot&&nt(/((--!?|])>)|<\/(style|title|textarea)/i,c)){mi(a,t);continue}if("attributename"===u&&q(c,"href")){mi(a,t);continue}if(e.forceKeepAttr)continue;if(!e.keepAttr){mi(a,t);continue}if(!At&&nt(/\/>/i,c)){mi(a,t);continue}kt&&Y([R,O,D],(t=>{c=Q(c,t," ")}));const f=si(t.nodeName);if(Ii(f,u,c)){if(x&&"object"==typeof p&&"function"==typeof p.getAttributeType)if(l);else switch(p.getAttributeType(f,u)){case"TrustedHTML":c=x.createHTML(c);break;case"TrustedScriptURL":c=x.createScriptURL(c)}if(c!==d)try{l?t.setAttributeNS(l,a,c):t.setAttribute(a,c),wi(t)?vi(t):G(n.removed)}catch(i){mi(a,t)}}else mi(a,t)}xi(k.afterSanitizeAttributes,t,null)},Si=function t(i){let n=null;const e=bi(i);for(xi(k.beforeSanitizeShadowDOM,i,null);n=e.nextNode();)xi(k.uponSanitizeShadowNode,n,null),_i(n),Ei(n),n.content instanceof a&&t(n.content);xi(k.afterSanitizeShadowDOM,i,null)};return n.sanitize=function(t){let i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},e=null,r=null,l=null,u=null;if(ti=!t,ti&&(t="\x3c!--\x3e"),"string"!=typeof t&&!yi(t)){if("function"!=typeof t.toString)throw et("toString is not a function");if("string"!=typeof(t=t.toString()))throw et("dirty is not a string, aborting")}if(!n.isSupported)return t;if(Mt||fi(i),n.removed=[],"string"==typeof t&&(Bt=!1),Bt){if(t.nodeName){const i=si(t.nodeName);if(!P[i]||lt[i])throw et("root node is forbidden and cannot be sanitized in-place")}}else if(t instanceof s)e=gi("\x3c!----\x3e"),r=e.ownerDocument.importNode(t,!0),1===r.nodeType&&"BODY"===r.nodeName||"HTML"===r.nodeName?e=r:e.appendChild(r);else{if(!Lt&&!kt&&!zt&&-1===t.indexOf("<"))return x&&Ft?x.createHTML(t):t;if(e=gi(t),!e)return Lt?null:Ft?_:""}e&&Nt&&vi(e.firstChild);const d=bi(Bt?t:e);for(;l=d.nextNode();)_i(l),Ei(l),l.content instanceof a&&Si(l.content);if(Bt)return t;if(Lt){if(jt)for(u=E.call(e.ownerDocument);e.firstChild;)u.appendChild(e.firstChild);else u=e;return(H.shadowroot||H.shadowrootmode)&&(u=A.call(o,u,!0)),u}let c=zt?e.outerHTML:e.innerHTML;return zt&&P["!doctype"]&&e.ownerDocument&&e.ownerDocument.doctype&&e.ownerDocument.doctype.name&&nt(Rt,e.ownerDocument.doctype.name)&&(c="<!DOCTYPE "+e.ownerDocument.doctype.name+">\n"+c),kt&&Y([R,O,D],(t=>{c=Q(c,t," ")})),x&&Ft?x.createHTML(c):c},n.setConfig=function(){fi(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),Mt=!0},n.clearConfig=function(){ui=null,Mt=!1},n.isValidAttribute=function(t,i,n){ui||fi({});const e=si(t),o=si(i);return Ii(e,o,n)},n.addHook=function(t,i){"function"==typeof i&&J(k[t],i)},n.removeHook=function(t,i){if(void 0!==i){const n=X(k[t],i);return-1===n?void 0:K(k[t],n,1)[0]}return G(k[t])},n.removeHooks=function(t){k[t]=[]},n.removeAllHooks=function(){k={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},n}(),Nt=function(){function t(t){var i,n=this;this.resizeObserver=null,this.proactiveElement=null,this.urlUnsubscribe=null,this.delayTimers=[],this.config=t,this.buttonElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.render(),this.mount();try{this.buttonElement.style.opacity="0",this.buttonElement.style.transition="transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97), opacity 280ms ease",requestAnimationFrame((function(){n.buttonElement.style.opacity="1"}))}catch(t){}this.setupResizeListener(),this.renderProactiveIfNeeded(),this.urlUnsubscribe=(i=function(){n.clearProactiveDelays(),n.renderProactiveIfNeeded(!0)},I||function(){if(!I&&"undefined"!=typeof window){I=!0,x=T();var t=function(t){var i=history[t];return function(){for(var t=[],n=0;arguments.length>n;n++)t[n]=arguments[n];var e=i.apply(this,t);return setTimeout(S,0),e}};try{history.pushState=t("pushState"),history.replaceState=t("replaceState")}catch(t){}window.addEventListener("popstate",S),window.addEventListener("hashchange",S);var i=setInterval((function(){S()}),1e3);setInterval((function(){0===_.length&&(clearInterval(i),window.removeEventListener("popstate",S),window.removeEventListener("hashchange",S),I=!1)}),5e3)}}(),_.push(i),i(T()),function(){var t=_.indexOf(i);t>-1&&_.splice(t,1)})}return t.prototype.render=function(){var t=this;g().copilotUrl;var i=this.config,n=i.config,o={zIndex:"1000",display:"flex",flexDirection:"column-reverse",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px",transition:"transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97)",transform:i.isIframeVisible?"scale(0.85)":"scale(1)",fontFamily:w};n.launcher_type===e.IMAGE&&Object.assign(o,{width:"48px",height:"48px",borderRadius:"50%",backgroundColor:n.brand_colour}),this.applyResponsiveStyles(o),this.buttonElement.className="message-bubble-container",this.buttonElement.innerHTML="",this.buttonElement.appendChild(this.createLauncherElement()),this.buttonElement.onclick=function(){t.config.toggleIframe()},this.renderProactiveIfNeeded()},t.prototype.createLauncherElement=function(){var t,i,n=this.config,o=n.config,r=n.isIframeVisible,a=g().copilotUrl;switch(console.log("config in floating button",o),o.launcher_type){case e.TEXT:return this.createTextLauncher();case e.TEXTUAL_IMAGE:return this.createTextualImageLauncher();case e.IMAGE:default:if(r){var l=document.createElement("div");return l.innerHTML='\n <svg\n width="24"\n height="24"\n viewBox="0 0 24 24"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M19 9L12 16L5 9"\n stroke="currentColor"\n stroke-width="1.5"\n stroke-linecap="round"\n stroke-linejoin="round"\n />\n </svg>\n ',l}var s=document.createElement("img");return s.src=o.launcher_type?(null===(i=null===(t=o.images)||void 0===t?void 0:t.launcher_image_url)||void 0===i?void 0:i.url)||"".concat(a,"/chatbubble.png"):o.image_url||"".concat(a,"/chatbubble.png"),s.alt="Chat",Object.assign(s.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover",width:"100%",height:"100%",boxSizing:"border-box"}),s}},t.prototype.createTextLauncher=function(){var t=this.config.config,i=t.brand_colour,n=t.launcher_properties,e=document.createElement("div");Object.assign(e.style,{width:"fit-content",maxWidth:"160px",height:"40px",borderRadius:"9999px",backgroundColor:i,display:"flex",alignItems:"center",padding:"9px 20px",boxShadow:"0px 0px 16px 0px rgba(0, 0, 0, 0.24)",boxSizing:"border-box"});var o=document.createElement("div");Object.assign(o.style,{flex:"1",minWidth:"0"});var r=document.createElement("p");return Object.assign(r.style,{margin:"0",color:c(i),fontSize:"0.875rem",fontWeight:"600",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",lineHeight:y,fontFamily:w,WebkitFontSmoothing:"antialiased",textRendering:"optimizeLegibility",textSizeAdjust:"100%"}),r.textContent=(null==n?void 0:n.text)||"",o.appendChild(r),e.appendChild(o),e},t.prototype.createTextualImageLauncher=function(){var t,i,n,e,o,r,a=g().copilotUrl,l=this.config.config,s=l.brand_colour,u=l.launcher_properties,d=l.image_url,f=document.createElement("div");Object.assign(f.style,{maxWidth:"13rem",width:"fit-content",height:"40px",borderRadius:"9999px",backgroundColor:s,display:"flex",alignItems:"center",paddingLeft:"20px",paddingRight:"0",paddingTop:"9px",paddingBottom:"9px",boxShadow:"0px 0px 16px 0px rgba(0, 0, 0, 0.24)",gap:"8px",boxSizing:"border-box"});var h=document.createElement("div");Object.assign(h.style,{flex:"1",minWidth:"0"});var p=document.createElement("p");Object.assign(p.style,{margin:"0",color:c(s),fontSize:"0.875rem",fontWeight:"600",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",lineHeight:y,fontFamily:w,WebkitFontSmoothing:"antialiased",textRendering:"optimizeLegibility",textSizeAdjust:"100%"}),p.textContent=(null==u?void 0:u.text)||"";var v=document.createElement("div");Object.assign(v.style,{width:"40px",height:"40px",borderRadius:"9999px",overflow:"hidden",position:"relative",flexShrink:"0"});var m=document.createElement("img");return m.src=(null===(i=null===(t=null==this?void 0:this.config)||void 0===t?void 0:t.config)||void 0===i?void 0:i.launcher_type)?(null===(r=null===(o=null===(e=null===(n=null==this?void 0:this.config)||void 0===n?void 0:n.config)||void 0===e?void 0:e.images)||void 0===o?void 0:o.launcher_image_url)||void 0===r?void 0:r.url)||"".concat(a,"/chatbubble.png"):d||"".concat(a,"/chatbubble.png"),m.alt="Chat",Object.assign(m.style,{width:"100%",height:"100%",objectFit:"cover"}),h.appendChild(p),v.appendChild(m),f.appendChild(h),f.appendChild(v),f},t.prototype.applyResponsiveStyles=function(t){var i,n,e,o,r,a,l,u,d,c=560>(null===window||void 0===window?void 0:window.innerWidth),f=this.config.config,h=this.config.position||(null===(e=f.interface_properties)||void 0===e?void 0:e.position)||"Right",p=null!==(a=null!==(o=this.config.sideSpacing)&&void 0!==o?o:null===(r=f.interface_properties)||void 0===r?void 0:r.side_spacing)&&void 0!==a?a:20,v=null!==(d=null!==(l=this.config.bottomSpacing)&&void 0!==l?l:null===(u=f.interface_properties)||void 0===u?void 0:u.bottom_spacing)&&void 0!==d?d:20;this.buttonElement.style.position="",this.buttonElement.style.bottom="",this.buttonElement.style.right="",this.buttonElement.style.left="";var m=s(s({},t),c?((i={position:"fixed",bottom:"".concat(v,"px")})[h.toLowerCase()]="".concat(p,"px"),i):((n={bottom:"".concat(v,"px")})[h.toLowerCase()]="".concat(p,"px"),n));Object.assign(this.buttonElement.style,m)},t.prototype.handleResize=function(){var t={zIndex:"1000",display:"flex",flexDirection:"column-reverse",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px",borderRadius:this.config.config.launcher_type&&this.config.config.launcher_type!==e.IMAGE?"9999px":"50%",boxSizing:"border-box"};this.config.config.launcher_type===e.IMAGE&&Object.assign(t,{width:"48px",height:"48px",borderRadius:"50%",backgroundColor:this.config.config.brand_colour}),this.applyResponsiveStyles(t)},t.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},t.prototype.getElement=function(){return this.buttonElement},t.prototype.mount=function(){var t=this;requestAnimationFrame((function(){var i,n;null===(n=(i=t.config).onEvent)||void 0===n||n.call(i,{type:p.CHATBOT_BUTTON_LOADED,timestamp:Date.now()}),t.config.onInternalEvent(p.CHATBOT_BUTTON_LOADED)}))},t.prototype.update=function(t){this.config.isIframeVisible,this.config=s(s({},this.config),t),this.buttonElement.style.transform=this.config.isIframeVisible?"scale(0.85)":"scale(1)",this.render(),this.renderProactiveIfNeeded()},t.prototype.destroy=function(){this.resizeObserver?(this.resizeObserver.disconnect(),this.resizeObserver=null):window.removeEventListener("resize",this.handleResizeFunction),this.buttonElement&&this.buttonElement.parentNode&&this.buttonElement.parentNode.removeChild(this.buttonElement),this.proactiveElement&&this.proactiveElement.parentElement&&(this.proactiveElement.parentElement.removeChild(this.proactiveElement),this.proactiveElement=null),this.clearProactiveDelays(),this.urlUnsubscribe&&(this.urlUnsubscribe(),this.urlUnsubscribe=null)},t.prototype.clearProactiveDelays=function(){this.delayTimers.forEach((function(t){return clearTimeout(t)})),this.delayTimers=[]},t.prototype.injectAnimationStyles=function(){if(!document.getElementById("rblyn-proactive-animations")){var t=document.createElement("style");t.id="rblyn-proactive-animations",t.textContent="\n @keyframes slideInFromRight {\n 0% {\n transform: translateX(120%) scale(0.95);\n opacity: 0;\n }\n 85% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n 92% {\n transform: translateX(-1px) scale(1.002);\n }\n 100% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n }\n @keyframes slideInFromLeft {\n 0% {\n transform: translateX(-120%) scale(0.95);\n opacity: 0;\n }\n 85% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n 92% {\n transform: translateX(1px) scale(1.002);\n }\n 100% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n }\n @keyframes slideOutRight {\n 0% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n 100% {\n transform: translateX(120%) scale(0.9);\n opacity: 0;\n }\n }\n @keyframes slideOutLeft {\n 0% {\n transform: translateX(0) scale(1);\n opacity: 1;\n }\n 100% {\n transform: translateX(-120%) scale(0.9);\n opacity: 0;\n }\n }\n .rblyn-proactive-enter-right {\n animation: slideInFromRight 1.2s cubic-bezier(0.5, 0.8, 0.3, 1.1) forwards;\n }\n .rblyn-proactive-enter-left {\n animation: slideInFromLeft 1.2s cubic-bezier(0.5, 0.8, 0.3, 1.1) forwards;\n }\n .rblyn-proactive-exit-right {\n animation: slideOutRight 0.4s ease-in forwards;\n }\n .rblyn-proactive-exit-left {\n animation: slideOutLeft 0.4s ease-in forwards;\n }\n .rblyn-proactive-close-enter-right {\n animation: slideInFromRight 1.2s cubic-bezier(0.5, 0.8, 0.3, 1.1) forwards;\n }\n .rblyn-proactive-close-enter-left {\n animation: slideInFromLeft 1.2s cubic-bezier(0.5, 0.8, 0.3, 1.1) forwards;\n }\n ",document.head.appendChild(t)}},t.prototype.renderProactiveIfNeeded=function(t){var i,n,o,r,l,u,d,c,f,h,p,v,m=this,g=null===(n=null===(i=this.config)||void 0===i?void 0:i.config)||void 0===n?void 0:n.proactive_message_obj;if(!Array.isArray(g)||this.config.isIframeVisible||D())if(this.proactiveElement&&this.proactiveElement.parentElement){var b=this.proactiveElement.children[0],x="Right"===(this.config.position||(null===(o=this.config.config.interface_properties)||void 0===o?void 0:o.position)||"Right");Array.from(b.children).forEach((function(t){t.className=x?"rblyn-proactive-exit-right":"rblyn-proactive-exit-left"})),setTimeout((function(){m.proactiveElement&&m.proactiveElement.parentElement&&m.proactiveElement.parentElement.removeChild(m.proactiveElement),m.proactiveElement=null,m.clearProactiveDelays()}),400)}else this.proactiveElement=null,this.clearProactiveDelays();else{if(this.injectAnimationStyles(),!this.proactiveElement){var _=document.createElement("div");_.style.position="fixed";var I=null!==(u=null!==(r=this.config.bottomSpacing)&&void 0!==r?r:null===(l=this.config.config.interface_properties)||void 0===l?void 0:l.bottom_spacing)&&void 0!==u?u:20,E=null!==(f=null!==(d=this.config.sideSpacing)&&void 0!==d?d:null===(c=this.config.config.interface_properties)||void 0===c?void 0:c.side_spacing)&&void 0!==f?f:20,S=this.config.position||(null===(h=this.config.config.interface_properties)||void 0===h?void 0:h.position)||"Right";_.style.bottom="".concat(I+(this.config.config.launcher_type===e.IMAGE?48:40)+8,"px"),"Right"===S?_.style.right="".concat(E,"px"):_.style.left="".concat(E,"px"),_.style.maxWidth="22.875rem",_.style.zIndex="2147483646";var k=document.createElement("div");k.style.display="flex",k.style.flexDirection="column",k.style.alignItems="Right"===S?"flex-end":"flex-start";var M=document.createElement("div");M.style.position="absolute",M.style.top="-32px",M.style.width="24px",M.style.height="24px",M.style.borderRadius="50%",M.style.background="#fff",M.style.boxShadow="0 2.667px 2.667px 0 rgba(0, 0, 0, 0.25)",M.style.display="flex",M.style.alignItems="center",M.style.justifyContent="center",M.style.cursor="pointer","Right"===(this.config.position||(null===(p=this.config.config.interface_properties)||void 0===p?void 0:p.position)||"Right")?(M.style.right="0px",M.style.left="auto"):(M.style.left="0px",M.style.right="auto"),M.onclick=function(t){var i;t.stopPropagation(),O();var n=null===(i=m.proactiveElement)||void 0===i?void 0:i.children[0];if(n){var e="Right"===S;Array.from(n.children).forEach((function(t){t.className=e?"rblyn-proactive-exit-right":"rblyn-proactive-exit-left"})),setTimeout((function(){m.proactiveElement&&m.proactiveElement.parentElement&&m.proactiveElement.parentElement.removeChild(m.proactiveElement),m.proactiveElement=null,m.clearProactiveDelays()}),400)}else m.clearProactiveDelays()},M.innerHTML='\n <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">\n <path d="M10.3334 10.3334L7.00009 7.00009M7.00009 7.00009L3.66675 3.66675M7.00009 7.00009L10.3334 3.66675M7.00009 7.00009L3.66675 10.3334" stroke="#444547" stroke-width="0.816326" stroke-linecap="round" stroke-linejoin="round"/>\n </svg>\n ',_.appendChild(k),_.appendChild(M),document.body.appendChild(_),this.proactiveElement=_}var N=this.proactiveElement.children[0];N.innerHTML="";var L="Right"===(this.config.position||(null===(v=this.config.config.interface_properties)||void 0===v?void 0:v.position)||"Right");N.style.display="flex",N.style.flexDirection="column",N.style.alignItems=L?"flex-end":"flex-start",this.clearProactiveDelays();var j=function(t){if(!t||D())return[];var i=T(),n=new Date,e=[];return t.forEach((function(t){e.push.apply(e,function(t,i,n){var e=(null==t?void 0:t.send_time_type)||"",o=e?z[e]:C;if(!o||!o(t,n))return[];for(var r=(null==t?void 0:t.content_multiple)||[],l=Math.max(0,1e3*+((null==t?void 0:t.delay)||0)),s=[],u=0;u<r.length;u++){for(var d=r[u],c=(null==d?void 0:d.message_display_attributes)||[],f=null,h=a.OR,p=0,v=c;p<v.length;p++){var m=v[p];if(null==m?void 0:m.logical_condition)h=m.logical_condition;else{var g=m,b=A(null==g||g.type,(null==g?void 0:g.value)||"",null==g?void 0:g.condition,i);f=null===f?b:h===a.AND?f&&b:f||b}}(null===f||f)&&(null==d?void 0:d.message)&&s.push({messageId:(null==t?void 0:t.message_id)||u+"",contentIndex:u,html:d.message+"",delayMs:l})}return s}(t,i,n))})),e}(g),F=this.proactiveElement.children[1];if(F&&j.length>0){var U=10*(j.length-1);F.className=L?"rblyn-proactive-close-enter-right":"rblyn-proactive-close-enter-left",F.style.animationDelay="".concat(U,"ms"),F.style.opacity="0",F.style.transform=L?"translateX(120%) scale(0.95)":"translateX(-120%) scale(0.95)"}j.forEach((function(t,i){var n=window.setTimeout((function(){var n=document.createElement("div");n.style.background="#fff",n.style.color="#111",n.style.borderRadius="12px",n.style.boxShadow="0 2px 2px 0 rgba(0, 0, 0, 0.08)",n.style.padding="16px",n.style.border="1px solid #F1F2F4",n.style.cursor="pointer",n.style.fontFamily=w,n.style.fontSize="14px",n.style.lineHeight=y+"",n.style.width="fit-content",n.style.maxWidth="100%",i<j.length-1&&(n.style.marginBottom="16px");var e=10*(j.length-1-i);n.className=L?"rblyn-proactive-enter-right":"rblyn-proactive-enter-left",n.style.animationDelay="".concat(e,"ms"),n.style.opacity="0",n.style.transform=L?"translateX(120%) scale(0.95)":"translateX(-120%) scale(0.95)",n.innerHTML=function(t){return t?Mt.sanitize(t,{ALLOWED_TAGS:["b","strong","i","em","u","br","span","a","p"],ALLOWED_ATTR:["href","target","rel","style"],ALLOW_ARIA_ATTR:!1,ALLOW_DATA_ATTR:!1,RETURN_TRUSTED_TYPE:!1}):""}(t.html),n.onclick=function(){var i,n;n={message_id:t.messageId,content_string:t.html||null},R=s({input_id:null},n),m.config.toggleIframe(),O();var e=null===(i=m.proactiveElement)||void 0===i?void 0:i.children[0];e?(Array.from(e.children).forEach((function(t){t.className=L?"rblyn-proactive-exit-right":"rblyn-proactive-exit-left"})),setTimeout((function(){m.proactiveElement&&m.proactiveElement.parentElement&&m.proactiveElement.parentElement.removeChild(m.proactiveElement),m.proactiveElement=null,m.clearProactiveDelays()}),300)):m.clearProactiveDelays();try{window.dispatchEvent(new CustomEvent("rblyn:proactiveClick",{detail:{message_id:t.messageId,content_string:t.html||null}}))}catch(t){}},N.appendChild(n)}),t.delayMs);m.delayTimers.push(n)}))}},t}(),Lt=function(){var t;return(null===(t=navigator.userAgentData)||void 0===t?void 0:t.platform)||(/Windows|Mac|Linux|Android|iOS/.exec(navigator.userAgent)||["Unknown"])[0]},jt=function(){var t;if(null===(t=navigator.userAgentData)||void 0===t?void 0:t.brands)for(var i=["Chrome","Firefox","Safari","Edge","Opera"],n=0,e=navigator.userAgentData.brands;n<e.length;n++){var o=e[n];if(i.includes(o.brand))return o.brand}return(/Chrome|Firefox|Safari|Edge|Opera/.exec(navigator.userAgent)||["Unknown"])[0]},Ft=function(){var t,i,n,e;return{width:(null===window||void 0===window?void 0:window.innerWidth)||(null===(t=null===document||void 0===document?void 0:document.documentElement)||void 0===t?void 0:t.clientWidth)||(null===(i=null===document||void 0===document?void 0:document.body)||void 0===i?void 0:i.clientWidth),height:(null===window||void 0===window?void 0:window.innerHeight)||(null===(n=null===document||void 0===document?void 0:document.documentElement)||void 0===n?void 0:n.clientHeight)||(null===(e=null===document||void 0===document?void 0:document.body)||void 0===e?void 0:e.clientHeight)}},Ut=function(){return{platform:"web",os:Lt(),browser:jt(),sdk_version:"1.1.40-staging.7",device:(t=navigator.userAgent.toLowerCase(),/(tablet|ipad|playbook|silk)|(android(?!.*mobi))/i.test(t)?"tablet":/Mobile|Android|iP(hone|od)|IEMobile|BlackBerry|Kindle|Silk-Accelerated|(hpw|web)OS|Opera M(obi|ini)/.test(t)?"mobile":"desktop"),screen_size:Ft()};var t};!function(t){t.ERROR="ERROR",t.INFO="INFO"}(zt||(zt={}));var Pt,Wt=["@robylon/web-react-sdk","node_modules/@robylon/web-react-sdk/"],Bt=function(t){var i=t.filename,n=t.stack,e=t.message;return!!(i||n||e)&&Wt.some((function(t){return(null==i?void 0:i.includes(t))||(null==n?void 0:n.includes(t))||(null==e?void 0:e.includes(t))}))},Ht=function(){function t(){var t=this;this.apiKey="",this.userId=null,this.preInitQueue=[],this.isInitialized=!1,this.handleWindowError=function(i){var n,e={filename:i.filename,stack:null===(n=i.error)||void 0===n?void 0:n.stack,message:i.message};Bt(e)&&t.trackError(i.error||i.message,"GlobalErrorHandler",{filename:i.filename,lineNo:i.lineno,colNo:i.colno})},this.handleUnhandledRejection=function(i){var n,e,o={stack:null===(n=i.reason)||void 0===n?void 0:n.stack,message:(null===(e=i.reason)||void 0===e?void 0:e.message)||i.reason+""};Bt(o)&&t.trackError(i.reason||"Unhandled Promise Rejection","GlobalPromiseHandler",{reason:i.reason})},this.setupGlobalHandlers()}return t.prototype.setupGlobalHandlers=function(){m()&&(null===window||void 0===window||window.addEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.addEventListener("unhandledrejection",this.handleUnhandledRejection))},t.prototype.cleanup=function(){m()&&(null===window||void 0===window||window.removeEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.removeEventListener("unhandledrejection",this.handleUnhandledRejection))},t.getInstance=function(){return t.instance||(t.instance=new t),t.instance},t.prototype.initialize=function(t,i){void 0===i&&(i=null);try{if(this.preInitQueue.length>0){var n={org_id:"UNINITALIZED",event_data:{message:"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===t?"undefined":null===t?"null":""===t?"empty string":"invalid: ".concat(t)),componentName:"ErrorTrackingService",additionalInfo:{preInitError:!0,apiKey:t,userId:i,timestamp:Date.now()},timestamp:Date.now()},metadata:Ut(),event_type:zt.ERROR,user_id:i};this.sendLog(n).catch(console.error)}this.apiKey=t,this.userId=i,this.isInitialized=!0,this.processPreInitQueue()}catch(n){f.error("Error during ErrorTrackingService initialization:",n),this.preInitQueue.push({error:n instanceof Error?n:Error(n+""),componentName:"ErrorTrackingService",additionalInfo:{apiKey:t,userId:i}})}},t.prototype.processPreInitQueue=function(){return u(this,void 0,void 0,(function(){var t,i,n;return d(this,(function(e){switch(e.label){case 0:if(!this.preInitQueue.length)return[2];f.info("Processing ".concat(this.preInitQueue.length," pre-initialization errors")),t=0,i=this.preInitQueue,e.label=1;case 1:return t<i.length?(n=i[t],[4,this.trackError(n.error,n.componentName,s(s({},n.additionalInfo),{preInitError:!0}))]):[3,4];case 2:e.sent(),e.label=3;case 3:return t++,[3,1];case 4:return this.preInitQueue=[],[2]}}))}))},t.prototype.sendLog=function(t){return u(this,void 0,void 0,(function(){var i,n,e,o,r,a;return d(this,(function(l){switch(l.label){case 0:return l.trys.push([0,4,,5]),i=g().apiUrl,[4,fetch("".concat(i,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})];case 1:return(n=l.sent()).ok?[3,3]:(o=(e=f).error,r=["Failed to send error log:"],[4,n.text()]);case 2:o.apply(e,r.concat([l.sent()])),l.label=3;case 3:return[3,5];case 4:return a=l.sent(),f.error("Error sending log:",a),[3,5];case 5:return[2]}}))}))},t.prototype.trackError=function(t,i,n){return u(this,void 0,void 0,(function(){var e,o,r;return d(this,(function(a){switch(a.label){case 0:if(this.isInitialized)return[3,5];e={org_id:"UNINITALIZED",event_data:{message:t instanceof Error?t.message:t,stack:t instanceof Error?t.stack:void 0,componentName:i,additionalInfo:s(s({},n),{preInitError:!0,timestamp:Date.now()}),timestamp:Date.now()},metadata:Ut(),event_type:zt.ERROR,user_id:this.userId},a.label=1;case 1:return a.trys.push([1,3,,4]),[4,this.sendLog(e)];case 2:return a.sent(),[3,4];case 3:return a.sent(),this.preInitQueue.push({error:t,componentName:i,additionalInfo:n}),f.warn("Error tracked before initialization, queuing:",t),[3,4];case 4:return[2];case 5:return o={message:t instanceof Error?t.message:t,stack:t instanceof Error?t.stack:void 0,componentName:i,additionalInfo:s(s({},n),{timestamp:Date.now()}),timestamp:Date.now()},r={org_id:this.apiKey||"UNINITALIZED",event_data:o,metadata:Ut(),event_type:zt.ERROR,user_id:this.userId},[4,this.sendLog(r)];case 6:return a.sent(),[2]}}))}))},t.prototype.trackInfo=function(t,i,n){return u(this,void 0,void 0,(function(){var e,o;return d(this,(function(r){switch(r.label){case 0:return this.apiKey?(e={message:t,componentName:i,additionalInfo:n,timestamp:Date.now()},o={org_id:this.apiKey,event_data:e,metadata:Ut(),event_type:zt.INFO,user_id:this.userId},[4,this.sendLog(o)]):(f.error("Error tracking not initialized"),[2]);case 1:return r.sent(),[2]}}))}))},t}(),Yt=Ht.getInstance(),Xt="MISSING_API_KEY",Gt="SDK_INIT_FAILED",Jt="ERROR_TRACKING_INIT_FAILED",Kt="API_REQUEST_FAILED",Vt="NETWORK_ERROR",Zt="INVALID_RESPONSE",qt="IFRAME_LOAD_FAILED",Qt="INITIALIZATION_ERROR",$t=((Pt={})[Xt]=function(t){return"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===t?"undefined":null===t?"null":""===t?"empty string":"invalid: ".concat(t),". A valid API key string is required to initialize the SDK.")},Pt.INVALID_API_KEY=function(t){return"SDK Initialization Failed: Provided API key '".concat(t,"' is invalid. API key must be a non-empty string in UUID format.")},Pt.CONFIG_FETCH_FAILED=function(t){return"Failed to fetch chatbot configuration: ".concat(t.statusCode?"Server responded with status ".concat(t.statusCode):"Could not reach server").concat(t.error?". Error: ".concat(t.error):"")},Pt[Kt]=function(t,i,n){return"API Request Failed: Server responded with status ".concat(t," for ").concat(n?"endpoint ".concat(n):"request"," - ").concat(i)},Pt[Vt]=function(t){return"Network Error: Failed to communicate with server".concat(t.url?" at ".concat(t.url):"").concat(t.error?" - ".concat(t.error):"")},Pt[qt]=function(t){return"Failed to load chatbot interface".concat(t.src?" from ".concat(t.src):"").concat(t.error?". Error: ".concat(t.error):"")},Pt[Zt]=function(t){return"Invalid API Response: Missing required fields in response data: ".concat(t.join(", "))},Pt[Jt]=function(t){return"Error Tracking Service initialization failed".concat(t.apiKey?" for API key ".concat(t.apiKey):"").concat(t.error?". Error: ".concat(t.error):"")},Pt[Gt]=function(t){return"SDK Initialization Failed: ".concat(t.reason||"Could not initialize the chatbot SDK").concat(t.config?". Attempted initialization with config: ".concat(JSON.stringify(t.config,null,2)):"")},Pt.COOKIE_ACCESS_ERROR=function(t,i){return"Cookie Access Error: Failed to ".concat(t).concat(i?" cookie '".concat(i,"'"):" cookies",". This may affect user session persistence.")},Pt.COMPONENT_RENDER_ERROR=function(t){return"React Component Error: ".concat(t.component||"Unknown component"," failed to render. Error: ").concat(t.error).concat(t.stack?"\nComponent Stack: ".concat(t.stack):"")},Pt),ti=function(){function t(t){var i=this;this.isInitialized=!1,this.hasRegistered=!1,this.handleMessage=function(t){var n,e,o,r,a,l,s,u,d,c,f,h,m,b,w,y=g().copilotUrl;if(t.origin===y){if("closeChatbot"===t.data)return void i.config.onClose();if("CHATBOT_TOKEN_EXHAUSTED"===(null===(n=t.data)||void 0===n?void 0:n.type))return void i.config.onInternalEvent(v.CHATBOT_TOKEN_EXHAUSTED);"CHATBOT_LOADED"===(null===(e=t.data)||void 0===e?void 0:e.type)&&(null===(r=(o=i.config).onEvent)||void 0===r||r.call(o,{type:p.CHATBOT_LOADED,timestamp:Date.now()}),i.config.onInternalEvent(p.CHATBOT_LOADED)),"CHAT_INITIALIZED"===(null===(a=t.data)||void 0===a?void 0:a.type)&&(null===(s=(l=i.config).onEvent)||void 0===s||s.call(l,{type:p.CHAT_INITIALIZED,timestamp:Date.now()}),i.config.onInternalEvent(p.CHAT_INITIALIZED)),"CHAT_INITIALIZATION_FAILED"===(null===(u=t.data)||void 0===u?void 0:u.type)&&(null===(c=(d=i.config).onEvent)||void 0===c||c.call(d,{type:p.CHAT_INITIALIZATION_FAILED,timestamp:Date.now()}),i.config.onInternalEvent(p.CHAT_INITIALIZATION_FAILED,{error:null===(f=t.data)||void 0===f?void 0:f.error})),"SESSION_REFRESHED"===(null===(h=t.data)||void 0===h?void 0:h.type)&&(null===(b=(m=i.config).onEvent)||void 0===b||b.call(m,{type:p.SESSION_REFRESHED,timestamp:Date.now()}),i.config.onInternalEvent(p.SESSION_REFRESHED)),"CHAT_MOVED"===(null===(w=t.data)||void 0===w?void 0:w.type)&&i.config.onInternalEvent(v.CHAT_MOVED,{from:t.data.from,to:t.data.to,trigger:t.data.trigger})}},this.config=t,this.iframeElement=document.createElement("iframe"),this.iframeElement.id="chat-iframe-rbyln",this.resizeHandler=this.applyResponsiveStyles.bind(this),this.render(),this.initialize(),this.setupEventListeners()}return t.prototype.getElement=function(){return this.iframeElement},t.prototype.render=function(){var t,i=this.config.position||(null===(t=this.config.config.interface_properties)||void 0===t?void 0:t.position)||"Right";Object.assign(this.iframeElement.style,{zIndex:"20000000",border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom ".concat(i.toLowerCase()),transition:"transform 0.2s cubic-bezier(0.2, 1.27, 0.29, 0.97), opacity 0.15s ease-out",transform:"scale(0.3) translate3d(0,40px,0)",opacity:"0",display:"none"}),this.applyResponsiveStyles()},t.prototype.applyResponsiveStyles=function(){var t,i,n,e,o,r;if(this.iframeElement){var a=this.config.position||(null===(n=this.config.config.interface_properties)||void 0===n?void 0:n.position)||"Right",l=null!==(r=null!==(e=this.config.bottomSpacing)&&void 0!==e?e:null===(o=this.config.config.interface_properties)||void 0===o?void 0:o.bottom_spacing)&&void 0!==r?r:20;560>window.innerWidth?Object.assign(this.iframeElement.style,((t={width:"100vw",minWidth:"300px"})[a.toLowerCase()]="0",t.bottom="0",t.height="100vh",t.flexDirection="column",t.flexGrow="1",t.borderRadius="0",t.top="0",t.maxHeight="100%",t.position="fixed",t)):Object.assign(this.iframeElement.style,((i={width:"26%",minWidth:"400px",height:"calc(100vh - 2rem - 10vh - ".concat(l,"px)"),borderRadius:"1rem",top:"calc(10vh - 32px)",maxHeight:"50rem",position:""})[a.toLowerCase()]=void 0,i))}},t.prototype.initialize=function(){var t=this;if(!this.isInitialized){var i=g().copilotUrl;this.iframeElement.src="".concat(i,"/chatbot-plugin?id=").concat(this.config.config.chatbotId),this.isInitialized=!0,this.iframeElement.addEventListener("load",(function(){var n,e,o=new URL(t.iframeElement.src).origin||i;null===(n=t.iframeElement.contentWindow)||void 0===n||n.postMessage({domain:null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.hostname,name:"checkDomain"},o)}))}},t.prototype.setupEventListeners=function(){var t=this;window.addEventListener("resize",this.resizeHandler),this.iframeElement.addEventListener("error",(function(){Yt.trackError(Error($t[qt]({src:t.iframeElement.src,error:"Failed to load iframe"})),"ChatbotIframe",{errorCode:qt,errorType:"RUNTIME_ERROR",context:{config:t.config.config,iframeUrl:t.iframeElement.src,timestamp:Date.now()}})})),window.addEventListener("message",this.handleMessage),window.addEventListener("rblyn:proactiveClick",(function(i){var n,e,o,r,a,l;if(t.hasRegistered){var s=(null==i?void 0:i.detail)||{},u=g().copilotUrl,d=new URL(t.iframeElement.src).origin||u;null===(n=t.iframeElement.contentWindow)||void 0===n||n.postMessage({domain:null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.hostname,action:"proactiveClick",data:{userId:null===(o=t.config.config)||void 0===o?void 0:o.userId,token:null===(r=t.config.config)||void 0===r?void 0:r.token,userProfile:null===(a=t.config.config)||void 0===a?void 0:a.userProfile,isAnonymous:null===(l=t.config.config)||void 0===l?void 0:l.isAnonymous,proactiveData:{input_id:null,message_id:(null==s?void 0:s.message_id)||null,content_string:(null==s?void 0:s.content_string)||null}}},d)}}))},t.prototype.updateVisibility=function(t){var i,n,e,o,r,a,l,u,d,c=this;this.config.isVisible=t;var f,h=this.config.position||(null===(i=this.config.config.interface_properties)||void 0===i?void 0:i.position)||"Right";if(t?(this.iframeElement.style.display="block",this.iframeElement.getBoundingClientRect(),this.iframeElement.style.opacity="1",this.iframeElement.style.transform="scale(1) translate3d(0,0,0)"):(this.iframeElement.style.opacity="0",this.iframeElement.style.transform="scale(0.3) translate3d(".concat((h.toLowerCase(),"0"),",40px,0)"),setTimeout((function(){c.config.isVisible||(c.iframeElement.style.display="none")}),200)),this.iframeElement.contentWindow&&t){var v=g().copilotUrl,m=new URL(this.iframeElement.src).origin||v;if(this.iframeElement.contentWindow.postMessage({domain:null===(n=null===window||void 0===window?void 0:window.location)||void 0===n?void 0:n.hostname,name:"openFrame"},m),!this.hasRegistered){var b=(f=R,R=null,f);this.iframeElement.contentWindow.postMessage({domain:null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.hostname,action:"registerUserId",data:s({userId:null===(o=this.config.config)||void 0===o?void 0:o.userId,token:null===(r=this.config.config)||void 0===r?void 0:r.token,userProfile:null===(a=this.config.config)||void 0===a?void 0:a.userProfile,isAnonymous:null===(l=this.config.config)||void 0===l?void 0:l.isAnonymous},b?{proactiveData:b}:{})},m),this.hasRegistered=!0}null===(d=(u=this.config).onEvent)||void 0===d||d.call(u,{type:p.CHATBOT_OPENED,timestamp:Date.now()}),this.config.onInternalEvent(p.CHATBOT_OPENED)}},t.prototype.update=function(t){var i=this.config.isVisible;if(this.config=s(s({},this.config),t),i!==this.config.isVisible&&this.updateVisibility(this.config.isVisible),this.iframeElement.contentWindow&&this.config.isVisible){var n=g().copilotUrl;this.iframeElement.contentWindow.postMessage({action:"updateUserProfile",user_profile:this.config.config.userProfile},n)}},t.prototype.destroy=function(){window.removeEventListener("resize",this.resizeHandler),window.removeEventListener("message",this.handleMessage),this.iframeElement&&this.iframeElement.parentNode&&this.iframeElement.parentNode.removeChild(this.iframeElement)},t}(),ii=function(){function t(t,i,n,e){this.resizeObserver=null,this.containerElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.config={config:t,position:i,sideSpacing:n,bottomSpacing:e},this.render(),this.mount(),this.setupResizeListener()}return t.prototype.render=function(){this.applyStyles(),this.containerElement.className="robylon-chatbot-container"},t.prototype.applyStyles=function(){var t,i,n,e,o,r,a,l,u,d=560>(null===window||void 0===window?void 0:window.innerWidth),c=this.config.position||(null===(n=this.config.config.interface_properties)||void 0===n?void 0:n.position)||"Right",f=null!==(r=null!==(e=this.config.sideSpacing)&&void 0!==e?e:null===(o=this.config.config.interface_properties)||void 0===o?void 0:o.side_spacing)&&void 0!==r?r:20,h=null!==(u=null!==(a=this.config.bottomSpacing)&&void 0!==a?a:null===(l=this.config.config.interface_properties)||void 0===l?void 0:l.bottom_spacing)&&void 0!==u?u:20;this.containerElement.style.position="",this.containerElement.style.top="",this.containerElement.style.bottom="",this.containerElement.style.right="",this.containerElement.style.left="",this.containerElement.style.alignItems="";var p={position:"fixed",zIndex:"1000",display:"flex",flexDirection:"column"},v=s(s({},p),((t={bottom:"".concat(h,"px")})[c.toLowerCase()]="".concat(f,"px"),t.alignItems="Right"===c?"flex-end":"flex-start",t)),m=s(s({},p),((i={top:"0"})[c.toLowerCase()]="".concat(f,"px"),i.alignItems="center",i));Object.assign(this.containerElement.style,d?m:v)},t.prototype.handleResize=function(){this.applyStyles()},t.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},t.prototype.mount=function(){document.body.appendChild(this.containerElement)},t.prototype.getElement=function(){return this.containerElement},t.prototype.destroy=function(){this.resizeObserver?(this.resizeObserver.disconnect(),this.resizeObserver=null):window.removeEventListener("resize",this.handleResizeFunction),this.containerElement&&this.containerElement.parentNode&&this.containerElement.parentNode.removeChild(this.containerElement)},t}(),ni=function(t){var i=t?"USER_DATA=%7B%22attributes%22%3A%5B%7B%22key%22%3A%22USER_ATTRIBUTE_USER_EMAIL%22%2C%22value%22%3A%22dinesh.goel%40robylon.ai%22%7D%2C%7B%22key%22%3A%22USER_ATTRIBUTE_UNIQUE_ID%22%2C%22value%22%3A%2266011f2c28d1787d13c6c796%22%7D%5D%2C%22subscribedToOldSdk%22%3Afalse%2C%22deviceUuid%22%3A%2226c02feb-2664-451d-8469-9cf1378547c6%22%2C%22deviceAdded%22%3Atrue%7D; _ga_3YS9P6ZDWX=GS1.1.1715252584.3.1.1715258696.39.0.0; _ga_V4J24F7YF9=GS1.1.1715273274.2.0.1715273274.0.0.0; city_name=Bengaluru; lang_code=en-in; cookieConcent=A; _gcl_au=1.1.343275043.1717154298; _clck=43guwd%7C2%7Cfmi%7C0%7C1561; _gid=GA1.2.1423066649.1718210058; moe_uuid=26c02feb-2664-451d-8469-9cf1378547c6; _ga_6RM65PWEZY=GS1.1.1718210058.18.1.1718211647.60.0.0; _ga=GA1.1.689213983.1712737672; AMP_MKTG_fe4beb374f=JTdCJTIycmVmZXJyZXIlMjIlM0ElMjJodHRwcyUzQSUyRiUyRmFjY291bnRzLnRlYWNobWludC5jb20lMkYlMjIlMkMlMjJyZWZlcnJpbmdfZG9tYWluJTIyJTNBJTIyYWNjb3VudHMudGVhY2htaW50LmNvbSUyMiU3RA==; AMP_fe4beb374f=JTdCJTIyZGV2aWNlSWQlMjIlM0ElMjI0MWMxMTljZC03YzVjLTRiYTctYTUzZS1mYTgzMjRlYjc0OWUlMjIlMkMlMjJ1c2VySWQlMjIlM0ElMjIxZjI2ODAwOC01OGYxLTQwYTItYjQ0Ni1mYmQ5N2E0NDQyYTAlMjIlMkMlMjJzZXNzaW9uSWQlMjIlM0ExNzE4MjEzMzEwOTc3JTJDJTIyb3B0T3V0JTIyJTNBZmFsc2UlMkMlMjJsYXN0RXZlbnRUaW1lJTIyJTNBMTcxODIxMzMxMDk4MSUyQyUyMmxhc3RFdmVudElkJTIyJTNBMTQlN0Q=; _ga_3YS9P6ZDWX=GS1.1.1718211637.26.1.1718213441.60.0.0; SESSION=%7B%22sessionKey%22%3A%22e4d76f52-9053-4277-99a4-f1ba667fd5f2%22%2C%22sessionStartTime%22%3A%222024-06-12T16%3A34%3A19.047Z%22%2C%22sessionMaxTime%22%3A1800%2C%22customIdentifiersToTrack%22%3A%5B%5D%2C%22sessionExpiryTime%22%3A1718215247464%2C%22numberOfSessions%22%3A17%7D":document.cookie;return i=i.split(";").map((function(t){var i=t.split("="),n=i[0],e=i.slice(1).join("=").trim();return{name:n=n.trim(),value:e?decodeURIComponent(e):""}})),i},ei=function(){var t,i=navigator.userAgent;if(null===(t=navigator.userAgentData)||void 0===t?void 0:t.brands){var n=navigator.userAgentData.brands.find((function(t){return"Google Chrome"===t.brand}));if(null==n?void 0:n.version)return n.version}var e=i.match(/(Chrome|Firefox|Safari|Edge|Opera)\/(\d+\.\d+)/);return e?e[2]:"Unknown"},oi=function(){var t,i,n=Ut();return{current_page_url:(null===(t=null===window||void 0===window?void 0:window.location)||void 0===t?void 0:t.href)||"",browser_language:(null===navigator||void 0===navigator?void 0:navigator.language)||(null===(i=null===navigator||void 0===navigator?void 0:navigator.languages)||void 0===i?void 0:i[0])||"en",browser_version:ei(),os:null==n?void 0:n.os,referral_url:(null===document||void 0===document?void 0:document.referrer)||""}},ri=function(t,i,n){return u(void 0,void 0,void 0,(function(){var e,o,r,a,l,s,u,c;return d(this,(function(d){switch(d.label){case 0:return d.trys.push([0,5,,6]),e=g().apiUrl,f.log("endpointUrl",o="".concat(e,"/chat/chatbot/get/")),r={client_user_id:i||null,org_id:t,token:n||void 0,extra_info:{},launcher_info:oi()},[4,fetch(o,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})];case 1:return(a=d.sent()).ok?[3,3]:[4,a.text()];case 2:throw l=d.sent(),Error($t[Kt](a.status,l));case 3:return[4,a.json()];case 4:if(s=d.sent(),!(null===(c=null==s?void 0:s.user)||void 0===c?void 0:c.org_info))throw Error($t[Zt](["user","org_info"]));return[2,s];case 5:throw u=d.sent(),Yt.trackError(u instanceof Error?u:Error($t[Vt]({error:u+""})),"fetchChatbotConfig",{errorCode:u instanceof Error&&u.message.includes("API Request Failed")?Kt:Vt,errorType:"API_ERROR",context:{apiKey:t,userId:i,timestamp:Date.now()}}),u;case 6:return[2]}}))}))},ai=function(){return Math.random().toString(36).slice(2)},li=function(t){return u(void 0,void 0,void 0,(function(){var o,u,c,h,p,v,m,g,b,w,y,x,_,I,T,E,S,A,k,R,O,D,C,z,M,N,L,j,F,U,P,W,B,H,Y,X,G,J;return d(this,(function(d){switch(d.label){case 0:return o=function(t){return{api_key:(t.api_key||"")+"",user_id:t.user_id?t.user_id+"":null,user_token:t.user_token?t.user_token+"":void 0,user_profile:t.user_profile||{}}}(t),u=o.user_id||void 0,c=!1,u||(u=function(){var t,i="; ".concat(document.cookie).split("; rblyn_anon=");if(2===i.length)return null===(t=i.pop())||void 0===t?void 0:t.split(";").shift()}()||"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(t){var i=16*Math.random()|0;return("x"===t?i:3&i|8).toString(16)})),V=u,(Z=new Date).setTime(Z.getTime()+31536e6),document.cookie="".concat("rblyn_anon","=").concat(V,";expires=").concat(Z.toUTCString(),";path=/"),c=!0),[4,ri(o.api_key,u,o.user_token)];case 1:h=d.sent();try{p=o.api_key,v=function(t){var i,n,e="undefined"!=typeof window&&(null===(i=window.location)||void 0===i?void 0:i.host)||"example.com",o="undefined"!=typeof window&&(null===(n=window.location)||void 0===n?void 0:n.origin)||"https://".concat(e);return[{message_id:"mock-".concat(ai()),org_id:(t||"mock-org")+"",name:"Mock Promo Set",send_time_type:"ALWAYS",delay:2,content_multiple:[{message:"🎉 <b>Big sale</b> today! Check out our <a href='/sale' target='_blank' rel='noopener noreferrer'>offers</a>.",message_display_attributes:[{type:r.URL,value:"/home/",condition:l.CONTAINS},{logical_condition:a.OR},{type:r.URL,value:"${origin}/account/profile",condition:l.IS},{logical_condition:a.AND},{type:r.URL,value:"jobin",condition:l.CONTAINS}]},{message:"😊 Need help? <span>We are here!</span>",message_display_attributes:[]}]},{message_id:"mock-".concat(ai()),org_id:(t||"mock-org")+"",name:"Billing Nudges",send_time_type:"ALWAYS",delay:5,content_multiple:[{message:"💳 Billing tips: <em>update your payment method</em> if expired.",message_display_attributes:[{type:r.URL,value:"".concat(o,"/account"),condition:l.CONTAINS}]}]},{message_id:"mock-".concat(ai()),org_id:(t||"mock-org")+"",name:"Docs Hints",send_time_type:"ALWAYS",delay:1,content_multiple:[{message:"📚 Viewing docs? Try the <u>Getting Started</u> guide.",message_display_attributes:[{type:r.URL,value:"/docs",condition:l.STARTS_WITH}]}]}]}(p),(null===(x=null===(y=null==h?void 0:h.user)||void 0===y?void 0:y.org_info)||void 0===x?void 0:x.brand_config)&&(h.user.org_info.brand_config.proactive_message_obj=v)}catch(t){f.warn("Failed to inject mock proactive messages",t)}return m=Ut(),g=oi(),K=o.user_profile,b=K?Object.fromEntries(Object.entries(K).map((function(t){var i=t[0],n=t[1];return"boolean"==typeof n||"number"==typeof n?[i,n]:[i,n+""]}))):{},w=s(s(s({},m),{__INT_SYS_INFO__:s(s({},m),g)}),b),[2,{chatbotId:o.api_key,userId:u,token:o.user_token,isAnonymous:c,domain:"",show_launcher:null===(I=null===(_=h.user.org_info)||void 0===_?void 0:_.show_launcher)||void 0===I||I,brand_colour:(null===(E=null===(T=h.user.org_info.brand_config)||void 0===T?void 0:T.colors)||void 0===E?void 0:E.brand_color)||"",image_url:(null===(A=null===(S=h.user.org_info)||void 0===S?void 0:S.brand_config)||void 0===A?void 0:A.launcher_logo_url)||"",userProfile:w,chat_interface_config:{chat_bubble_prompts:[],display_name:(null===(k=h.user.org_info.brand_config)||void 0===k?void 0:k.display_name)||"",welcome_message:(null===(R=h.user.org_info.brand_config)||void 0===R?void 0:R.welcome_message)||"Hey! What can we help you with today?",redirect_url:(null===(O=h.user.org_info.brand_config)||void 0===O?void 0:O.redirect_url)||""},launcher_type:(null===(D=h.user.org_info.brand_config)||void 0===D?void 0:D.launcher_type)||e.IMAGE,launcher_properties:{text:(null===(z=null===(C=h.user.org_info.brand_config)||void 0===C?void 0:C.launcher_properties)||void 0===z?void 0:z.text)||""},images:{launcher_image_url:{url:(null===(L=null===(N=null===(M=h.user.org_info.brand_config)||void 0===M?void 0:M.images)||void 0===N?void 0:N.launcher_image_url)||void 0===L?void 0:L.url)||""}},proactive_message_obj:si(null===(U=null===(F=null===(j=null==h?void 0:h.user)||void 0===j?void 0:j.org_info)||void 0===F?void 0:F.brand_config)||void 0===U?void 0:U.proactive_message_obj),interface_properties:{position:(null===(W=null===(P=h.user.org_info.brand_config)||void 0===P?void 0:P.interface_properties)||void 0===W?void 0:W.position)||n.RIGHT,side_spacing:(null===(H=null===(B=h.user.org_info.brand_config)||void 0===B?void 0:B.interface_properties)||void 0===H?void 0:H.side_spacing)||20,bottom_spacing:(null===(X=null===(Y=h.user.org_info.brand_config)||void 0===Y?void 0:Y.interface_properties)||void 0===X?void 0:X.bottom_spacing)||20},interface_type:(null===(G=h.user.org_info.brand_config)||void 0===G?void 0:G.interface_type)||i.WIDGET,launcher_delay:(null===(J=h.user.org_info.brand_config)||void 0===J?void 0:J.launcher_delay)||{enabled:!1,delay:0}}]}var K,V,Z}))}))},si=function(t){if(t){var i=(Array.isArray(t)?t:[t]).filter(Boolean).map((function(t){var i,n,e={message_id:(null!==(i=null==t?void 0:t.message_id)&&void 0!==i?i:"")+"",org_id:(null!==(n=null==t?void 0:t.org_id)&&void 0!==n?n:"")+"",name:null==t?void 0:t.name,content:null==t?void 0:t.content,send_time_type:null==t?void 0:t.send_time_type,created_by_name:null==t?void 0:t.created_by_name,updated_by_name:null==t?void 0:t.updated_by_name,updated_at:null==t?void 0:t.updated_at,created_at:null==t?void 0:t.created_at,delay:"number"==typeof(null==t?void 0:t.delay)?t.delay:void 0,content_multiple:Array.isArray(null==t?void 0:t.content_multiple)?t.content_multiple:(null==t?void 0:t.content)?[{message:t.content+"",message_display_attributes:[]}]:[]};return(null==t?void 0:t.content)&&!(null==t?void 0:t.content_multiple)&&f.warn("[Robylon SDK] proactive_message.content is deprecated; use content_multiple[].message instead."),e}));return i.length?i:void 0}},ui=function(){function t(t){this.logoContainer=null,this.iframe=null,this.bubblePromptContainer=null,this.chatBtnImage=null,this.config=t,this.validateDomain()&&this.init(),null===window||void 0===window||window.addEventListener("message",this.onCloseListener.bind(this),!1)}return t.prototype.onCloseListener=function(t){t.origin===this.config.domain&&"closeChatbot"===t.data&&this.closeIframe()},t.prototype.validateDomain=function(){var t,i=this.config.domain,n=null===(t=null===window||void 0===window?void 0:window.location)||void 0===t?void 0:t.origin;return f.log("expectedDomain, to current domain",i,n,i===n),i===n},t.prototype.createChatBubblContainer=function(){var t,i=this,n=document.createElement("div");n.id="chatbase-message-bubbles",Object.assign(n.style,{position:"fixed",bottom:"80px",borderRadius:"10px",fontFamily:"sans-serif",fontSize:"16px",zIndex:"2147483644",cursor:"pointer",flexDirection:"column",gap:"50px",maxWidth:"70vw",display:"block",right:"1rem",left:"unset"});var e=document.createElement("div");e.classList.add("close-btn"),e.textContent="✕",Object.assign(e.style,{position:"absolute",top:"-7px",right:"-7px",fontWeight:"bold",display:"none",justifyContent:"center",alignItems:"center",zIndex:"2147483643",width:"22px",height:"22px",borderRadius:"50%",textAlign:"center",fontSize:"12px",cursor:"pointer",backgroundColor:"rgb(224, 224, 224)",color:"black",boxShadow:"rgba(150, 150, 150, 0.15) 0px 6px 24px 0px, rgba(150, 150, 150, 0.15) 0px 0px 0px 1px"}),((null===(t=this.config.chat_interface_config)||void 0===t?void 0:t.chat_bubble_prompts)||[]).forEach((function(t){var e=i.createMessageBubble(t);n.appendChild(e)})),n.appendChild(e),document.body.appendChild(n)},t.prototype.createMessageBubble=function(t){var i=document.createElement("div");this.bubblePromptContainer=i,Object.assign(i.style,{display:"flex",position:"relative",justifyContent:"flex-end"});var n=document.createElement("div");n.classList.add("message"),n.textContent=t,Object.assign(n.style,{backgroundColor:"white",color:"black",boxShadow:"rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px",borderRadius:"10px",padding:"8px 5px",margin:"8px",fontSize:"14px",opacity:"1",transform:"scale(1)",transition:"opacity 0.5s ease 0s, transform 0.5s ease 0s"});var e=document.createElement("button");return e.innerHTML="&times;",Object.assign(e.style,{position:"absolute",top:"1px",left:"-3px",width:"20px",height:"20px",borderRadius:"50%",backgroundColor:"#fff",color:"#000",border:"none",cursor:"pointer",display:"flex",alignItems:"center",justifyContent:"center",boxShadow:"0 2px 5px rgba(0,0,0,0.2)",fontSize:"14px",lineHeight:"1",padding:"0",zIndex:"100"}),e.addEventListener("click",(function(){i.remove()})),i.appendChild(e),i.appendChild(n),i},t.prototype.createFloatingButton=function(){var t=document.createElement("div");t.classList.add("message-bubble-container"),Object.assign(t.style,{position:"fixed",bottom:"1.5rem",right:"1.5rem",zIndex:"1000",width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:this.config.brand_colour,color:c(this.config.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden"}),document.body.appendChild(t),this.logoContainer=t,this.loadImage(this.logoContainer),this.createChatBubblContainer(),this.logoContainer.addEventListener("click",this.toggleIframe.bind(this))},t.prototype.loadImage=function(t){var i,n,e=document.createElement("img");e.src=this.config.launcher_type?(null===(n=null===(i=this.config.images)||void 0===i?void 0:i.launcher_image_url)||void 0===n?void 0:n.url)||"".concat(this.config.domain,"/chatbubble.png"):this.config.image_url||"".concat(this.config.domain,"/chatbubble.png"),e.alt="Chat",Object.assign(e.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover"}),this.chatBtnImage=e,t.innerHTML="",t.appendChild(e)},t.prototype.createIframe=function(){var t=this;f.log("RobylonConfig?.domain====>",this.config.domain);var i=document.createElement("iframe");Object.assign(i.style,{position:"fixed",right:"32px",bottom:"86px",minWidth:"400px",width:"26%",maxWidth:"800px",top:"calc(10vh - 32px)",maxHeight:"45rem",height:"calc(100vh - 3rem - 10vh)",zIndex:"20000000",border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom right",transition:"transform 0.3s ease-out",borderRadius:"1rem",display:"none"}),i.src="".concat(this.config.domain,"/chatbot-plugin?id=").concat(this.config.chatbotId),f.log("iframe.src====>",i.src),document.body.appendChild(i),this.iframe=i;var n=function(){560>(null===window||void 0===window?void 0:window.innerWidth)?Object.assign(i.style,{width:"100vw",minWidth:"300px",right:"0",bottom:"0",height:"100vh",flexDirection:"column",flexGrow:"1",borderRadius:"0",top:"0",maxHeight:"100%"}):Object.assign(i.style,{width:"26%",minWidth:"400px",right:"32px",bottom:"86px",height:"calc(100vh - 3rem - 10vh)",borderRadius:"1rem",top:"calc(10vh - 32px)",maxHeight:"45rem"})};n(),null===window||void 0===window||window.addEventListener("resize",n),i.addEventListener("load",(function(){var n,e,o,r;if(t.iframe){var a=new URL(t.iframe.src).origin||t.config.domain;null===(n=i.contentWindow)||void 0===n||n.postMessage({domain:null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.hostname,name:"checkDomain"},a),null===(o=i.contentWindow)||void 0===o||o.postMessage({domain:null===(r=null===window||void 0===window?void 0:window.location)||void 0===r?void 0:r.hostname,action:"registerUserId",data:{userId:t.config.userId,token:t.config.token,userProfile:t.config.userProfile}},a)}})),null===window||void 0===window||window.addEventListener("message",(function(n){var e,o;if(n.origin===t.config.domain){if("captureSessionData"===n.data){var r="66b33d16-5b38-4693-8772-1a1bd7dd412d"===t.config.chatbotId,a={cookies:ni(r),localStorage:JSON.stringify(localStorage),sessionStorage:JSON.stringify(sessionStorage),action:"capturedSessionData",domain_name:null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.hostname};null===(o=i.contentWindow)||void 0===o||o.postMessage(a,t.config.domain||"*")}"expand"===n.data&&(t.adjustIframeWidth(),i.style.height="calc(100vh - 120px)",i.style.bottom="86px"),"collapse"===n.data&&Object.assign(i.style,{width:"26%",height:"calc(100vh - 32px - 10vh)",bottom:"86px",top:"calc(32px + 10vh)"})}}))},t.prototype.adjustIframeWidth=function(){if(this.iframe){var t=null===window||void 0===window?void 0:window.innerWidth;f.log("screenWidth",t),this.iframe.style.width=832>t?"".concat(t-64,"px"):"800px"}},t.prototype.loadSvgInline=function(t){var i=document.createElement("div");i.innerHTML='\n<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n <g id="Chevron_Down">\n <path id="Vector" d="M19 9L12 16L5 9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n </g>\n</svg>\n';var n=i.querySelector("svg");t.innerHTML="",n&&t.appendChild(n)},t.prototype.toggleIcon=function(t,i){"block"===i.style.display?this.loadSvgInline(t):this.loadImage(t)},t.prototype.toggleIframe=function(){var t;if(f.log("toggleIframe",this.iframe,this.logoContainer,this.chatBtnImage),this.iframe&&this.logoContainer&&this.chatBtnImage){var i=new URL(this.iframe.src).origin||this.config.domain;f.log("toggleIframe"),null===(t=this.iframe.contentWindow)||void 0===t||t.postMessage({domain:null===window||void 0===window?void 0:window.location.hostname,name:"none"===this.iframe.style.display?"openFrame":"closeFrame"},i),this.iframe.style.display="none"===this.iframe.style.display?"block":"none",this.toggleIcon(this.logoContainer,this.iframe),this.chatBtnImage.style.objectFit="block"===this.iframe.style.display?"none":"cover",this.bubblePromptContainer&&(this.bubblePromptContainer.style.display="none"),f.log("this.bubblePromptContainer",this.bubblePromptContainer)}},t.prototype.closeIframe=function(){this.iframe&&this.logoContainer&&this.chatBtnImage&&(this.iframe.style.display="none",this.toggleIcon(this.logoContainer,this.iframe),this.chatBtnImage.style.objectFit="cover")},t.prototype.init=function(){this.createIframe(),this.createFloatingButton()},t}(),di=function(t){var i={isInitialized:!1,isInitializing:!1,error:null,chatbotConfig:null,isIframeVisible:!1},n=[],e=function(t){i=s(s({},i),t),n.forEach((function(t){return t(i)}))};return{getState:function(){return i},initialize:function(){return u(void 0,void 0,void 0,(function(){var i,n,o;return d(this,(function(r){switch(r.label){case 0:if(!t.api_key)return Yt.trackError(Error($t[Xt](t.api_key)),"ChatbotStateManager",{errorCode:Xt,errorType:Qt,context:{timestamp:Date.now()}}),[2];e({isInitializing:!0}),r.label=1;case 1:return r.trys.push([1,4,5,6]),[4,li(t)];case 2:return i=r.sent(),[4,new Promise((function(t,n){!function(n,o,r){if(n.chatbotId&&n.userId)try{new ui(n),e({isInitialized:!0,chatbotConfig:i}),t(),f.log("Robylon SDK initialized successfully.")}catch(t){r(t instanceof Error?t.message:"Failed to initialize SDK")}else r("Incomplete configuration for SDK initialization.")}(i,0,(function(t){n(t)}))}))];case 3:return r.sent(),[3,6];case 4:return n=r.sent(),o=n instanceof Error?n.message:"Failed to initialize chatbot",e({error:o}),Yt.trackError(n instanceof Error?n:Error(o),"ChatbotStateManager",{errorCode:Gt,errorType:Qt,context:{timestamp:Date.now()}}),[3,6];case 5:return e({isInitializing:!1}),[7];case 6:return[2]}}))}))},toggleIframeVisibility:function(){e({isIframeVisible:!i.isIframeVisible})},closeIframe:function(){e({isIframeVisible:!1})},updateState:e,subscribe:function(t){return n.push(t),function(){var i=n.indexOf(t);i>-1&&n.splice(i,1)}},unsubscribe:function(t){var i=n.indexOf(t);i>-1&&n.splice(i,1)}}},ci=function(t){t.api_key,t.user_profile;var i=t.onEvent;return t.chatbotConfig,{emit:function(t,n){var e={type:t,timestamp:Date.now(),data:n};null==i||i(e)},onInternalEvent:function(t,i){}}},fi=function(){function t(t){var i=this;this.container=null,this.floatingButton=null,this.launcherDelayTimeout=null,this.iframe=null,this.isDestroyed=!1,this.handleStateChange=function(t){var n,e,o,r,a;if(!i.isDestroyed){var l=t.isInitialized,s=t.error,u=t.chatbotConfig,d=t.isIframeVisible;if(!s&&u&&l){if(i.eventEmitter=ci({api_key:i.config.api_key,user_profile:i.config.user_profile,onEvent:i.config.onEvent,chatbotConfig:{isAnonymous:u.isAnonymous,userId:u.userId}}),i.container||(i.container=new ii(u,i.config.position,i.config.sideSpacing,i.config.bottomSpacing)),i.iframe)i.iframe.update({config:u,isVisible:d,position:i.config.position,bottomSpacing:i.config.bottomSpacing});else if(i.iframe=new ti({config:u,isVisible:d,onClose:i.handleClose,onEvent:i.config.onEvent,onInternalEvent:i.eventEmitter.onInternalEvent,position:i.config.position,bottomSpacing:i.config.bottomSpacing}),i.iframe.getElement&&"function"==typeof i.iframe.getElement){var c=i.iframe.getElement();c&&i.container&&i.container.getElement().prepend(c)}var f=!0===(null==u?void 0:u.show_launcher),h=!0===(null===(n=null==u?void 0:u.launcher_delay)||void 0===n?void 0:n.enabled),p=null!==(a=null!==(o=null===(e=null==u?void 0:u.launcher_delay)||void 0===e?void 0:e.seconds)&&void 0!==o?o:null===(r=null==u?void 0:u.launcher_delay)||void 0===r?void 0:r.delay)&&void 0!==a?a:0,v=function(){if(i.floatingButton)i.floatingButton.update({config:u,isIframeVisible:d,position:i.config.position,sideSpacing:i.config.sideSpacing,bottomSpacing:i.config.bottomSpacing});else if(i.floatingButton=new Nt({config:u,toggleIframe:i.toggleIframe,isIframeVisible:d,onEvent:i.config.onEvent,onInternalEvent:i.eventEmitter.onInternalEvent,position:i.config.position,sideSpacing:i.config.sideSpacing,bottomSpacing:i.config.bottomSpacing}),i.floatingButton.getElement&&"function"==typeof i.floatingButton.getElement){var t=i.floatingButton.getElement();t&&i.container&&i.container.getElement().appendChild(t)}};i.launcherDelayTimeout&&(clearTimeout(i.launcherDelayTimeout),i.launcherDelayTimeout=null),f?h&&+p>0&&!i.floatingButton?i.launcherDelayTimeout=window.setTimeout((function(){v(),i.launcherDelayTimeout=null}),1e3*+p):v():i.floatingButton&&(i.floatingButton.destroy(),i.floatingButton=null)}}},this.toggleIframe=function(){var t=i.stateManager.getState();i.stateManager.toggleIframeVisibility(),i.eventEmitter.emit(t.isIframeVisible?p.CHATBOT_CLOSED:p.CHATBOT_BUTTON_CLICKED)},this.handleClose=function(){i.stateManager.closeIframe(),i.eventEmitter.emit(p.CHATBOT_CLOSED)};var n=s(s({},t),{position:"string"==typeof t.position?"left"===t.position.toLowerCase()?"Left":"right"===t.position.toLowerCase()?"Right":void 0:void 0,sideSpacing:"string"==typeof t.sideSpacing?""===t.sideSpacing||isNaN(+t.sideSpacing)?void 0:+t.sideSpacing:t.sideSpacing,bottomSpacing:"string"==typeof t.bottomSpacing?""===t.bottomSpacing||isNaN(+t.bottomSpacing)?void 0:+t.bottomSpacing:t.bottomSpacing});if(this.config=n,!t.api_key)throw Yt.trackError(Error($t[Xt](t.api_key)),"RobylonChatbot",{errorCode:Xt,errorType:Qt,context:{timestamp:Date.now()}}),Error("API key is required");try{Yt.initialize(t.api_key,t.user_id)}catch(t){Yt.trackError(t instanceof Error?t:Error(t+""),"RobylonChatbot",{errorCode:Jt,errorType:Qt,context:{timestamp:Date.now()}})}this.stateManager=di({api_key:t.api_key,user_id:t.user_id,user_token:t.user_token,user_profile:t.user_profile}),this.eventEmitter=ci({api_key:t.api_key,user_profile:t.user_profile,onEvent:t.onEvent,chatbotConfig:null}),this.initialize()}return t.prototype.initialize=function(){return u(this,void 0,void 0,(function(){var t;return d(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,,3]),[4,this.stateManager.initialize()];case 1:return i.sent(),this.stateManager.subscribe(this.handleStateChange),this.handleStateChange(this.stateManager.getState()),[3,3];case 2:return t=i.sent(),Yt.trackError(t instanceof Error?t:Error(t+""),"RobylonChatbot.initialize",{errorCode:Gt,errorType:Qt,context:{timestamp:Date.now()}}),[3,3];case 3:return[2]}}))}))},t.prototype.show=function(){this.stateManager.getState().isIframeVisible||(this.stateManager.toggleIframeVisibility(),this.eventEmitter.emit(p.CHATBOT_BUTTON_CLICKED))},t.prototype.hide=function(){this.stateManager.getState().isIframeVisible&&(this.stateManager.closeIframe(),this.eventEmitter.emit(p.CHATBOT_CLOSED))},t.prototype.toggle=function(){this.toggleIframe()},t.prototype.destroy=function(){this.isDestroyed=!0,this.floatingButton&&(this.floatingButton.destroy(),this.floatingButton=null),this.launcherDelayTimeout&&(clearTimeout(this.launcherDelayTimeout),this.launcherDelayTimeout=null),this.iframe&&(this.iframe.destroy(),this.iframe=null),this.container&&(this.container.destroy(),this.container=null),this.stateManager.unsubscribe(this.handleStateChange)},t.prototype.getState=function(){return this.stateManager.getState().isInitialized?"initialized":"uninitialized"},t}();function hi(t){return new fi(t)}"undefined"!=typeof window&&function(){if("undefined"!=typeof window){var t=window.RobylonChatbot;if(t&&Array.isArray(t.q)){var i=null;t.q.forEach((function(t){var n=t[0];if("init"===n){var e=t[1]||{};i=hi(e)}else i&&"function"==typeof i[n]&&i[n]()})),window.RobylonChatbot=function(t){var n=[].slice.call(arguments,1);return"init"===t?i=hi(n[0]||{}):i&&"function"==typeof i[t]?i[t].apply(i,n):void 0},window.RobylonChatbot.getState=function(){return"initialized"}}}}();var pi={create:hi,getState:function(){return"initialized"}};t.create=hi,t.default=pi,Object.defineProperty(t,"i",{value:!0})}));
2
2
  //# sourceMappingURL=robylon-chatbot.js.map