@robylon/web-react-sdk 1.1.26-staging.7 → 1.1.27

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 (73) hide show
  1. package/README.md +389 -104
  2. package/dist/cjs/index.js +1 -1
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/components/ChatbotContainer/ChatbotContainer.d.ts +10 -0
  5. package/dist/cjs/types/components/ChatbotContainer/index.d.ts +1 -0
  6. package/dist/cjs/types/core/api.d.ts +8 -0
  7. package/dist/cjs/types/core/config.d.ts +34 -0
  8. package/dist/cjs/types/core/events.d.ts +22 -0
  9. package/dist/cjs/types/core/index.d.ts +4 -0
  10. package/dist/cjs/types/core/state.d.ts +34 -0
  11. package/dist/cjs/types/index.d.ts +2 -0
  12. package/dist/cjs/types/types.d.ts +3 -0
  13. package/dist/cjs/types/vanilla/components/ChatbotContainer.d.ts +43 -0
  14. package/dist/cjs/types/vanilla/components/ChatbotFloatingButton.d.ts +66 -0
  15. package/dist/cjs/types/vanilla/components/ChatbotIframe.d.ts +71 -0
  16. package/dist/cjs/types/vanilla/index.d.ts +32 -0
  17. package/dist/esm/index.js +1 -1
  18. package/dist/esm/index.js.map +1 -1
  19. package/dist/esm/types/components/ChatbotContainer/ChatbotContainer.d.ts +10 -0
  20. package/dist/esm/types/components/ChatbotContainer/index.d.ts +1 -0
  21. package/dist/esm/types/core/api.d.ts +8 -0
  22. package/dist/esm/types/core/config.d.ts +34 -0
  23. package/dist/esm/types/core/events.d.ts +22 -0
  24. package/dist/esm/types/core/index.d.ts +4 -0
  25. package/dist/esm/types/core/state.d.ts +34 -0
  26. package/dist/esm/types/index.d.ts +2 -0
  27. package/dist/esm/types/types.d.ts +3 -0
  28. package/dist/esm/types/vanilla/components/ChatbotContainer.d.ts +43 -0
  29. package/dist/esm/types/vanilla/components/ChatbotFloatingButton.d.ts +66 -0
  30. package/dist/esm/types/vanilla/components/ChatbotIframe.d.ts +71 -0
  31. package/dist/esm/types/vanilla/index.d.ts +32 -0
  32. package/dist/index.d.ts +35 -1
  33. package/dist/umd/robylon-chatbot.js +2 -0
  34. package/dist/umd/robylon-chatbot.js.map +1 -0
  35. package/dist/umd/types/components/ChatbotContainer/ChatbotContainer.d.ts +10 -0
  36. package/dist/umd/types/components/ChatbotContainer/index.d.ts +1 -0
  37. package/dist/umd/types/components/ChatbotFloatingButton.d.ts +12 -0
  38. package/dist/umd/types/components/ChatbotIframe.d.ts +12 -0
  39. package/dist/umd/types/components/ErrorBoundary.d.ts +15 -0
  40. package/dist/umd/types/components/RobylonChatbot.d.ts +11 -0
  41. package/dist/umd/types/config.d.ts +5 -0
  42. package/dist/umd/types/constants/errorConstants.d.ts +60 -0
  43. package/dist/umd/types/core/api.d.ts +8 -0
  44. package/dist/umd/types/core/config.d.ts +34 -0
  45. package/dist/umd/types/core/events.d.ts +22 -0
  46. package/dist/umd/types/core/index.d.ts +4 -0
  47. package/dist/umd/types/core/state.d.ts +34 -0
  48. package/dist/umd/types/hooks/useChatbot.d.ts +2 -0
  49. package/dist/umd/types/hooks/useChatbotEvents.d.ts +12 -0
  50. package/dist/umd/types/hooks/useChatbotState.d.ts +16 -0
  51. package/dist/umd/types/hooks/useWhyDidYouUpdate.d.ts +5 -0
  52. package/dist/umd/types/index.d.ts +5 -0
  53. package/dist/umd/types/services/ErrorTrackingService.d.ts +38 -0
  54. package/dist/umd/types/types/config.d.ts +33 -0
  55. package/dist/umd/types/types/events.d.ts +22 -0
  56. package/dist/umd/types/types/index.d.ts +16 -0
  57. package/dist/umd/types/types/state.d.ts +5 -0
  58. package/dist/umd/types/types.d.ts +41 -0
  59. package/dist/umd/types/utils/chatbotSdk.d.ts +23 -0
  60. package/dist/umd/types/utils/colorUtils.d.ts +1 -0
  61. package/dist/umd/types/utils/cookieUtils.d.ts +6 -0
  62. package/dist/umd/types/utils/environment.d.ts +12 -0
  63. package/dist/umd/types/utils/fetchData.d.ts +30 -0
  64. package/dist/umd/types/utils/logger.d.ts +6 -0
  65. package/dist/umd/types/utils/misc.d.ts +1 -0
  66. package/dist/umd/types/utils/originalFetchDataFile.d.ts +1 -0
  67. package/dist/umd/types/utils/systemInfo.d.ts +13 -0
  68. package/dist/umd/types/utils/version.d.ts +1 -0
  69. package/dist/umd/types/vanilla/components/ChatbotContainer.d.ts +43 -0
  70. package/dist/umd/types/vanilla/components/ChatbotFloatingButton.d.ts +66 -0
  71. package/dist/umd/types/vanilla/components/ChatbotIframe.d.ts +71 -0
  72. package/dist/umd/types/vanilla/index.d.ts +32 -0
  73. package/package.json +28 -9
@@ -0,0 +1,71 @@
1
+ import { ChatbotConfig } from "../../types";
2
+ import { ChatbotEventType, AllEventTypes } from "../../types/events";
3
+ /**
4
+ * Interface for the ChatbotIframe configuration
5
+ */
6
+ interface ChatbotIframeConfig {
7
+ config: ChatbotConfig;
8
+ isVisible: boolean;
9
+ onClose: () => void;
10
+ onEvent?: (event: {
11
+ type: ChatbotEventType;
12
+ timestamp: number;
13
+ data?: any;
14
+ }) => void;
15
+ onInternalEvent: (eventType: AllEventTypes, additionalData?: Record<string, any>) => void;
16
+ }
17
+ /**
18
+ * Class representing the ChatbotIframe component
19
+ */
20
+ export declare class ChatbotIframe {
21
+ private iframeElement;
22
+ private config;
23
+ private isInitialized;
24
+ private hasRegistered;
25
+ private resizeHandler;
26
+ /**
27
+ * Creates a new ChatbotIframe
28
+ * @param config The iframe configuration
29
+ */
30
+ constructor(config: ChatbotIframeConfig);
31
+ /**
32
+ * Gets the iframe element
33
+ * @returns The iframe element
34
+ */
35
+ getElement(): HTMLIFrameElement;
36
+ /**
37
+ * Renders the iframe element
38
+ */
39
+ private render;
40
+ /**
41
+ * Applies responsive styles based on window width
42
+ */
43
+ private applyResponsiveStyles;
44
+ /**
45
+ * Initializes the iframe
46
+ */
47
+ private initialize;
48
+ /**
49
+ * Sets up event listeners
50
+ */
51
+ private setupEventListeners;
52
+ /**
53
+ * Handles messages from the iframe
54
+ */
55
+ private handleMessage;
56
+ /**
57
+ * Updates the iframe visibility
58
+ * @param isVisible Whether the iframe should be visible
59
+ */
60
+ updateVisibility(isVisible: boolean): void;
61
+ /**
62
+ * Updates the iframe with new configuration
63
+ * @param config The new configuration
64
+ */
65
+ update(config: Partial<ChatbotIframeConfig>): void;
66
+ /**
67
+ * Unmounts and destroys the iframe
68
+ */
69
+ destroy(): void;
70
+ }
71
+ export {};
@@ -0,0 +1,32 @@
1
+ import { ChatbotEvent } from "../types/events";
2
+ /**
3
+ * Interface for the RobylonChatbot configuration
4
+ */
5
+ export interface RobylonChatbotConfig {
6
+ api_key: string;
7
+ user_id?: string | null | number;
8
+ user_token?: string;
9
+ user_profile?: Record<string, any>;
10
+ onEvent?: (event: ChatbotEvent) => void;
11
+ }
12
+ /**
13
+ * RobylonChatbot instance interface
14
+ */
15
+ export interface RobylonChatbotInstance {
16
+ show: () => void;
17
+ hide: () => void;
18
+ toggle: () => void;
19
+ destroy: () => void;
20
+ getState: () => string;
21
+ }
22
+ /**
23
+ * Creates a new RobylonChatbot instance
24
+ * @param config The chatbot configuration
25
+ * @returns A RobylonChatbot instance
26
+ */
27
+ export declare function create(config: RobylonChatbotConfig): RobylonChatbotInstance;
28
+ declare const _default: {
29
+ create: typeof create;
30
+ getState: () => string;
31
+ };
32
+ export default _default;
package/dist/esm/index.js CHANGED
@@ -1,2 +1,2 @@
1
- import e,{memo as n,useRef as t,useEffect as o,useCallback as i,Component as r,useMemo as a,useState as s}from"react";var l=function(e,n){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,n){e.__proto__=n}||function(e,n){for(var t in n)Object.prototype.hasOwnProperty.call(n,t)&&(e[t]=n[t])},l(e,n)};var c=function(){return c=Object.assign||function(e){for(var n,t=1,o=arguments.length;t<o;t++)for(var i in n=arguments[t])Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i]);return e},c.apply(this,arguments)};function d(e,n,t,o){return new(t||(t=Promise))((function(i,r){function a(e){try{l(o.next(e))}catch(e){r(e)}}function s(e){try{l(o.throw(e))}catch(e){r(e)}}function l(e){var n;e.done?i(e.value):(n=e.value,n instanceof t?n:new t((function(e){e(n)}))).then(a,s)}l((o=o.apply(e,n||[])).next())}))}function u(e,n){var t,o,i,r={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(l){return function(s){if(t)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(r=0)),r;)try{if(t=1,o&&(i=2&s[0]?o.return:s[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,s[1])).done)return i;switch(o=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return r.label++,{value:s[1],done:!1};case 5:r.label++,o=s[1],s=[0];continue;case 7:s=r.ops.pop(),r.trys.pop();continue;default:if(!(i=r.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){r=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){r.label=s[1];break}if(6===s[0]&&r.label<i[1]){r.label=i[1],i=s;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(s);break}i[2]&&r.ops.pop(),r.trys.pop();continue}s=n.call(e,r)}catch(e){s=[6,e],o=0}finally{t=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,l])}}}"function"==typeof SuppressedError&&SuppressedError;var f=function(e,n){void 0===n&&(n=.5);var t=function(e){e=e.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(e,n,t,o){return n+n+t+t+o+o}));var n=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return n?{r:parseInt(n[1],16),g:parseInt(n[2],16),b:parseInt(n[3],16)}:{r:0,g:0,b:0}}(e),o=function(e,n,t){var o=[e,n,t].map((function(e){return(e/=255)<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4)}));return.2126*o[0]+.7152*o[1]+.0722*o[2]}(t.r,t.g,t.b);return o>n?"#0E0E0F":"#FFFFFF"},p={log:function(){},error:function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n]},warn:function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n]},info:function(){}};p.log("Raw API_URL:","https://stage-api.robylon.ai");var m={copilotUrl:"https://staging.d2s3wsqyyond1h.amplifyapp.com",environment:"staging",apiUrl:"https://stage-api.robylon.ai"};p.log("CONFIG",m);var h,v,g=function(){return"undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement},w=function(){return{copilotUrl:m.copilotUrl||"https://app.robylon.ai",environment:m.environment||"production",apiUrl:m.apiUrl||"https://app.robylon.ai"}};!function(e){e.CHATBOT_BUTTON_LOADED="CHATBOT_BUTTON_LOADED",e.CHATBOT_BUTTON_CLICKED="CHATBOT_BUTTON_CLICKED",e.CHATBOT_OPENED="CHATBOT_OPENED",e.CHATBOT_CLOSED="CHATBOT_CLOSED",e.CHATBOT_APP_READY="CHATBOT_APP_READY",e.CHATBOT_LOADED="CHATBOT_LOADED",e.CHAT_INITIALIZED="CHAT_INITIALIZED",e.SESSION_REFRESHED="SESSION_REFRESHED",e.CHAT_INITIALIZATION_FAILED="CHAT_INITIALIZATION_FAILED"}(h||(h={})),function(e){e.CHAT_MOVED="CHAT_MOVED",e.CHATBOT_TOKEN_EXHAUSTED="CHATBOT_TOKEN_EXHAUSTED"}(v||(v={}));var b,y=n((function(n){var i=n.config,r=n.toggleIframe,a=n.isIframeVisible,s=n.onEvent,l=n.onInternalEvent,c=t(null),d=w().copilotUrl;o((function(){c.current&&requestAnimationFrame((function(){null==s||s({type:h.CHATBOT_BUTTON_LOADED,timestamp:Date.now()}),l(h.CHATBOT_BUTTON_LOADED)}))}),[s,l]);return p.log("config chabotfloatingbutton",i),e.createElement("div",{ref:c,className:"message-bubble-container",style:{position:"fixed",bottom:"1.5rem",right:"1.5rem",zIndex:1e3,width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:i.brand_colour,color:f(i.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden"},onClick:r},a?e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("g",{id:"Chevron_Down"},e.createElement("path",{id:"Vector",d:"M19 9L12 16L5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}))):e.createElement("img",{src:i.image_url||"".concat(d,"/chatbubble.png"),alt:"Chat",style:{zIndex:1e3,cursor:"pointer",borderRadius:"50%",objectFit:"cover",width:"100%",height:"100%"}}))})),I=function(){var e;return(null===(e=navigator.userAgentData)||void 0===e?void 0:e.platform)||(/Windows|Mac|Linux|Android|iOS/.exec(navigator.userAgent)||["Unknown"])[0]},_=function(){var e;if(null===(e=navigator.userAgentData)||void 0===e?void 0:e.brands)for(var n=["Chrome","Firefox","Safari","Edge","Opera"],t=0,o=navigator.userAgentData.brands;t<o.length;t++){var i=o[t];if(n.includes(i.brand))return i.brand}return(/Chrome|Firefox|Safari|Edge|Opera/.exec(navigator.userAgent)||["Unknown"])[0]},E=function(){var e,n,t,o;return{width:(null===window||void 0===window?void 0:window.innerWidth)||(null===(e=null===document||void 0===document?void 0:document.documentElement)||void 0===e?void 0:e.clientWidth)||(null===(n=null===document||void 0===document?void 0:document.body)||void 0===n?void 0:n.clientWidth),height:(null===window||void 0===window?void 0:window.innerHeight)||(null===(t=null===document||void 0===document?void 0:document.documentElement)||void 0===t?void 0:t.clientHeight)||(null===(o=null===document||void 0===document?void 0:document.body)||void 0===o?void 0:o.clientHeight)}},T=function(){return{platform:"web",os:I(),browser:_(),sdk_version:"1.1.26-staging.7",device:(e=navigator.userAgent.toLowerCase(),/(tablet|ipad|playbook|silk)|(android(?!.*mobi))/i.test(e)?"tablet":/Mobile|Android|iP(hone|od)|IEMobile|BlackBerry|Kindle|Silk-Accelerated|(hpw|web)OS|Opera M(obi|ini)/.test(e)?"mobile":"desktop"),screen_size:E()};var e};!function(e){e.ERROR="ERROR",e.INFO="INFO"}(b||(b={}));var x,C=["@robylon/web-react-sdk","node_modules/@robylon/web-react-sdk/"],A=function(e){var n=e.filename,t=e.stack,o=e.message;return!!(n||t||o)&&C.some((function(e){return(null==n?void 0:n.includes(e))||(null==t?void 0:t.includes(e))||(null==o?void 0:o.includes(e))}))},O=function(){function e(){var e=this;this.apiKey="",this.userId=null,this.preInitQueue=[],this.isInitialized=!1,this.handleWindowError=function(n){var t,o={filename:n.filename,stack:null===(t=n.error)||void 0===t?void 0:t.stack,message:n.message};A(o)&&e.trackError(n.error||n.message,"GlobalErrorHandler",{filename:n.filename,lineNo:n.lineno,colNo:n.colno})},this.handleUnhandledRejection=function(n){var t,o,i={stack:null===(t=n.reason)||void 0===t?void 0:t.stack,message:(null===(o=n.reason)||void 0===o?void 0:o.message)||String(n.reason)};A(i)&&e.trackError(n.reason||"Unhandled Promise Rejection","GlobalPromiseHandler",{reason:n.reason})},this.setupGlobalHandlers()}return e.prototype.setupGlobalHandlers=function(){g()&&(null===window||void 0===window||window.addEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.addEventListener("unhandledrejection",this.handleUnhandledRejection))},e.prototype.cleanup=function(){g()&&(null===window||void 0===window||window.removeEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.removeEventListener("unhandledrejection",this.handleUnhandledRejection))},e.getInstance=function(){return e.instance||(e.instance=new e),e.instance},e.prototype.initialize=function(e,n){void 0===n&&(n=null);try{if(this.preInitQueue.length>0){var t={org_id:"UNINITALIZED",event_data:{message:"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===e?"undefined":null===e?"null":""===e?"empty string":"invalid: ".concat(e)),componentName:"ErrorTrackingService",additionalInfo:{preInitError:!0,apiKey:e,userId:n,timestamp:Date.now()},timestamp:Date.now()},metadata:T(),event_type:b.ERROR,user_id:n};this.sendLog(t).catch(console.error)}this.apiKey=e,this.userId=n,this.isInitialized=!0,this.processPreInitQueue()}catch(t){p.error("Error during ErrorTrackingService initialization:",t),this.preInitQueue.push({error:t instanceof Error?t:new Error(String(t)),componentName:"ErrorTrackingService",additionalInfo:{apiKey:e,userId:n}})}},e.prototype.processPreInitQueue=function(){return d(this,void 0,void 0,(function(){var e,n,t;return u(this,(function(o){switch(o.label){case 0:if(!this.preInitQueue.length)return[2];p.info("Processing ".concat(this.preInitQueue.length," pre-initialization errors")),e=0,n=this.preInitQueue,o.label=1;case 1:return e<n.length?(t=n[e],[4,this.trackError(t.error,t.componentName,c(c({},t.additionalInfo),{preInitError:!0}))]):[3,4];case 2:o.sent(),o.label=3;case 3:return e++,[3,1];case 4:return this.preInitQueue=[],[2]}}))}))},e.prototype.sendLog=function(e){return d(this,void 0,void 0,(function(){var n,t,o,i,r,a;return u(this,(function(s){switch(s.label){case 0:return s.trys.push([0,4,,5]),n=w().apiUrl,[4,fetch("".concat(n,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)})];case 1:return(t=s.sent()).ok?[3,3]:(i=(o=p).error,r=["Failed to send error log:"],[4,t.text()]);case 2:i.apply(o,r.concat([s.sent()])),s.label=3;case 3:return[3,5];case 4:return a=s.sent(),p.error("Error sending log:",a),[3,5];case 5:return[2]}}))}))},e.prototype.trackError=function(e,n,t){return d(this,void 0,void 0,(function(){var o,i,r;return u(this,(function(a){switch(a.label){case 0:if(this.isInitialized)return[3,5];o={org_id:"UNINITALIZED",event_data:{message:e instanceof Error?e.message:e,stack:e instanceof Error?e.stack:void 0,componentName:n,additionalInfo:c(c({},t),{preInitError:!0,timestamp:Date.now()}),timestamp:Date.now()},metadata:T(),event_type:b.ERROR,user_id:this.userId},a.label=1;case 1:return a.trys.push([1,3,,4]),[4,this.sendLog(o)];case 2:return a.sent(),[3,4];case 3:return a.sent(),this.preInitQueue.push({error:e,componentName:n,additionalInfo:t}),p.warn("Error tracked before initialization, queuing:",e),[3,4];case 4:return[2];case 5:return i={message:e instanceof Error?e.message:e,stack:e instanceof Error?e.stack:void 0,componentName:n,additionalInfo:c(c({},t),{timestamp:Date.now()}),timestamp:Date.now()},r={org_id:this.apiKey||"UNINITALIZED",event_data:i,metadata:T(),event_type:b.ERROR,user_id:this.userId},[4,this.sendLog(r)];case 6:return a.sent(),[2]}}))}))},e.prototype.trackInfo=function(e,n,t){return d(this,void 0,void 0,(function(){var o,i;return u(this,(function(r){switch(r.label){case 0:return this.apiKey?(o={message:e,componentName:n,additionalInfo:t,timestamp:Date.now()},i={org_id:this.apiKey,event_data:o,metadata:T(),event_type:b.INFO,user_id:this.userId},[4,this.sendLog(i)]):(p.error("Error tracking not initialized"),[2]);case 1:return r.sent(),[2]}}))}))},e}(),k=O.getInstance(),D="MISSING_API_KEY",S="INVALID_API_KEY",R="CONFIG_FETCH_FAILED",N="SDK_INIT_FAILED",L="ERROR_TRACKING_INIT_FAILED",M="API_REQUEST_FAILED",H="NETWORK_ERROR",U="INVALID_RESPONSE",B="IFRAME_LOAD_FAILED",j="COOKIE_ACCESS_ERROR",F="COMPONENT_RENDER_ERROR",P="INITIALIZATION_ERROR",z="API_ERROR",W="RUNTIME_ERROR",K="COMPONENT_ERROR",J=((x={})[D]=function(e){return"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===e?"undefined":null===e?"null":""===e?"empty string":"invalid: ".concat(e),". A valid API key string is required to initialize the SDK.")},x[S]=function(e){return"SDK Initialization Failed: Provided API key '".concat(e,"' is invalid. API key must be a non-empty string in UUID format.")},x[R]=function(e){return"Failed to fetch chatbot configuration: ".concat(e.statusCode?"Server responded with status ".concat(e.statusCode):"Could not reach server").concat(e.error?". Error: ".concat(e.error):"")},x[M]=function(e,n,t){return"API Request Failed: Server responded with status ".concat(e," for ").concat(t?"endpoint ".concat(t):"request"," - ").concat(n)},x[H]=function(e){return"Network Error: Failed to communicate with server".concat(e.url?" at ".concat(e.url):"").concat(e.error?" - ".concat(e.error):"")},x[B]=function(e){return"Failed to load chatbot interface".concat(e.src?" from ".concat(e.src):"").concat(e.error?". Error: ".concat(e.error):"")},x[U]=function(e){return"Invalid API Response: Missing required fields in response data: ".concat(e.join(", "))},x[L]=function(e){return"Error Tracking Service initialization failed".concat(e.apiKey?" for API key ".concat(e.apiKey):"").concat(e.error?". Error: ".concat(e.error):"")},x[N]=function(e){return"SDK Initialization Failed: ".concat(e.reason||"Could not initialize the chatbot SDK").concat(e.config?". Attempted initialization with config: ".concat(JSON.stringify(e.config,null,2)):"")},x[j]=function(e,n){return"Cookie Access Error: Failed to ".concat(e).concat(n?" cookie '".concat(n,"'"):" cookies",". This may affect user session persistence.")},x[F]=function(e){return"React Component Error: ".concat(e.component||"Unknown component"," failed to render. Error: ").concat(e.error).concat(e.stack?"\nComponent Stack: ".concat(e.stack):"")},x),Z=n((function(n){var r=n.config,a=n.isVisible,s=n.onClose,l=n.onEvent,c=n.onInternalEvent,d=t(null),u=t(!1),f=t(!1),p=i((function(){var e=d.current;e&&((null===window||void 0===window?void 0:window.innerWidth)<560?(e.style.width="100vw",e.style.minWidth="300px",e.style.right="0",e.style.bottom="0",e.style.height="100vh",e.style.flexDirection="column",e.style.flexGrow="1",e.style.borderRadius="0",e.style.top="0",e.style.maxHeight="100%"):(e.style.width="26%",e.style.minWidth="400px",e.style.maxWidth="560px",e.style.right="32px",e.style.bottom="86px",e.style.height="calc(100vh - 3rem - 10vh)",e.style.borderRadius="1rem",e.style.top="auto",e.style.maxHeight="45rem"))}),[c]);return o((function(){return null===window||void 0===window||window.addEventListener("resize",p),p(),function(){return null===window||void 0===window?void 0:window.removeEventListener("resize",p)}}),[p]),o((function(){var e=d.current;if(e&&!u.current){var n=w().copilotUrl;e.src="".concat(n,"/chatbot-plugin?id=").concat(r.chatbotId),u.current=!0;var t=function(){var t,o,i=new URL(e.src).origin||n;null===(t=e.contentWindow)||void 0===t||t.postMessage({domain:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname,name:"checkDomain"},i)};return e.addEventListener("load",t),function(){return e.removeEventListener("load",t)}}}),[r.chatbotId]),o((function(){var e,n,t,o,i=d.current;if(i&&u.current){var s=w().copilotUrl;if(i.style.display=a?"block":"none",i.contentWindow&&a){var l=new URL(i.src).origin||s;null===(e=null==i?void 0:i.contentWindow)||void 0===e||e.postMessage({domain:null===(n=null===window||void 0===window?void 0:window.location)||void 0===n?void 0:n.hostname,name:"openFrame"},l),(null==f?void 0:f.current)||(null===(t=i.contentWindow)||void 0===t||t.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==r?void 0:r.userId,token:null==r?void 0:r.token,userProfile:null==r?void 0:r.userProfile,isAnonymous:null==r?void 0:r.isAnonymous}},l),f.current=!0)}}}),[a,r.userId,r.token,r.userProfile]),o((function(){if(d.current&&u.current){var e=w().copilotUrl;a&&(null==l||l({type:h.CHATBOT_OPENED,timestamp:Date.now()}),c(h.CHATBOT_OPENED));var n=function(n){var t,o,i,r,a,d,u;if(n.origin===e){if("closeChatbot"===n.data)return void s();if("CHATBOT_TOKEN_EXHAUSTED"===(null===(t=n.data)||void 0===t?void 0:t.type))return void c(v.CHATBOT_TOKEN_EXHAUSTED);"CHATBOT_LOADED"===(null===(o=n.data)||void 0===o?void 0:o.type)&&(null==l||l({type:h.CHATBOT_LOADED,timestamp:Date.now()}),c(h.CHATBOT_LOADED)),"CHAT_INITIALIZED"===(null===(i=n.data)||void 0===i?void 0:i.type)&&(null==l||l({type:h.CHAT_INITIALIZED,timestamp:Date.now()}),c(h.CHAT_INITIALIZED)),"CHAT_INITIALIZATION_FAILED"===(null===(r=n.data)||void 0===r?void 0:r.type)&&(null==l||l({type:h.CHAT_INITIALIZATION_FAILED,timestamp:Date.now()}),c(h.CHAT_INITIALIZATION_FAILED,{error:null===(a=n.data)||void 0===a?void 0:a.error})),"SESSION_REFRESHED"===(null===(d=n.data)||void 0===d?void 0:d.type)&&(null==l||l({type:h.SESSION_REFRESHED,timestamp:Date.now()}),c(h.SESSION_REFRESHED)),"CHAT_MOVED"===(null===(u=n.data)||void 0===u?void 0:u.type)&&c(v.CHAT_MOVED,{from:n.data.from,to:n.data.to,trigger:n.data.trigger})}};return null===window||void 0===window||window.addEventListener("message",n),function(){return null===window||void 0===window?void 0:window.removeEventListener("message",n)}}}),[s,l,c,r.chatbotId,a]),o((function(){var e=d.current;if(e&&u.current){var n=function(){k.trackError(new Error(J[B]({src:e.src,error:"Failed to load iframe"})),"ChatbotIframe",{errorCode:B,errorType:W,context:{config:r,iframeUrl:e.src,timestamp:Date.now()}})};return e.addEventListener("error",n),function(){return e.removeEventListener("error",n)}}}),[r]),o((function(){var e;if(d.current&&r&&a){var n=d.current,t=w().copilotUrl;null===(e=n.contentWindow)||void 0===e||e.postMessage({action:"updateUserProfile",user_profile:r.userProfile},t)}}),[r.userProfile,a]),e.createElement("iframe",{ref:d,id:"chat-iframe-rbyln",style:{position:"fixed",zIndex:2e7,border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom right",transition:"transform 0.3s ease-out",display:a?"block":"none"}})})),V=function(e){function n(){var n=null!==e&&e.apply(this,arguments)||this;return n.state={hasError:!1},n}return function(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function t(){this.constructor=e}l(e,n),e.prototype=null===n?Object.create(n):(t.prototype=n.prototype,new t)}(n,e),n.getDerivedStateFromError=function(e){return{hasError:!0}},n.prototype.componentDidCatch=function(e,n){k.trackError(new Error(J[F]({component:this.props.componentName||void 0,error:e.message,stack:n.componentStack})),this.props.componentName||void 0,{errorCode:F,errorType:K,context:{originalError:e,componentStack:n.componentStack,timestamp:Date.now()}})},n.prototype.render=function(){return this.state.hasError?null:this.props.children},n}(r),Y=function(e,n,t){return d(void 0,void 0,void 0,(function(){var o,i,r,a,s,l,c,d;return u(this,(function(u){switch(u.label){case 0:o=w().apiUrl,i="".concat(o,"/chat/chatbot/get/"),p.log("endpointUrl",i),r={client_user_id:n,org_id:e,token:t||void 0,extra_info:{}},u.label=1;case 1:return u.trys.push([1,6,,7]),[4,fetch(i,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})];case 2:return(a=u.sent()).ok?[3,4]:[4,a.text()];case 3:throw s=u.sent(),new Error(J[M](a.status,s));case 4:return[4,a.json()];case 5:if(l=u.sent(),!(null===(d=null==l?void 0:l.user)||void 0===d?void 0:d.org_info))throw new Error(J[U](["user","org_info"]));return[2,l];case 6:throw c=u.sent(),k.trackError(c instanceof Error?c:new Error(J[H]({error:String(c)})),"fetchChatbotConfig",{errorCode:c instanceof Error&&c.message.includes("API Request Failed")?M:H,errorType:z,context:{chatbotId:e,userId:n,apiUrl:o,statusCode:c instanceof Response?c.status:void 0,timestamp:Date.now(),requestPayload:{client_user_id:n,org_id:e}}}),c;case 7:return[2]}}))}))},Q=function(e){var n=e?"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 n=n.split(";").map((function(e){var n=e.split("="),t=n[0],o=n.slice(1).join("=").trim();return{name:t=t.trim(),value:o?decodeURIComponent(o):""}})),n},G=function(){function e(e){this.logoContainer=null,this.iframe=null,this.bubblePromptContainer=null,this.chatBtnImage=null,this.config=e,this.validateDomain()&&this.init(),null===window||void 0===window||window.addEventListener("message",this.onCloseListener.bind(this),!1)}return e.prototype.onCloseListener=function(e){e.origin===this.config.domain&&"closeChatbot"===e.data&&this.closeIframe()},e.prototype.validateDomain=function(){var e,n=this.config.domain,t=null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.origin;return p.log("expectedDomain, to current domain",n,t,n===t),n===t},e.prototype.createChatBubblContainer=function(){var e,n=this,t=document.createElement("div");t.id="chatbase-message-bubbles",Object.assign(t.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===(e=this.config.chat_interface_config)||void 0===e?void 0:e.chat_bubble_prompts)||[]).forEach((function(e){var o=n.createMessageBubble(e);t.appendChild(o)})),t.appendChild(o),document.body.appendChild(t)},e.prototype.createMessageBubble=function(e){var n=document.createElement("div");this.bubblePromptContainer=n,Object.assign(n.style,{display:"flex",position:"relative",justifyContent:"flex-end"});var t=document.createElement("div");t.classList.add("message"),t.textContent=e,Object.assign(t.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(){n.remove()})),n.appendChild(o),n.appendChild(t),n},e.prototype.createFloatingButton=function(){var e=document.createElement("div");e.classList.add("message-bubble-container"),Object.assign(e.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:f(this.config.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden"}),document.body.appendChild(e),this.logoContainer=e,this.loadImage(this.logoContainer),this.createChatBubblContainer(),this.logoContainer.addEventListener("click",this.toggleIframe.bind(this))},e.prototype.loadImage=function(e){var n=document.createElement("img");n.src=this.config.image_url||"".concat(this.config.domain,"/chatbubble.png"),n.alt="Chat",Object.assign(n.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover"}),this.chatBtnImage=n,e.innerHTML="",e.appendChild(n)},e.prototype.createIframe=function(){var e=this,n=document.createElement("iframe");Object.assign(n.style,{position:"fixed",right:"32px",bottom:"86px",minWidth:"400px",width:"26%",maxWidth:"560px",top:"auto",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"}),n.src="".concat(this.config.domain,"/chatbot-plugin?id=").concat(this.config.chatbotId),p.log("iframe.src====>",n.src),document.body.appendChild(n),this.iframe=n;var t=function(){(null===window||void 0===window?void 0:window.innerWidth)<560?Object.assign(n.style,{width:"100vw",minWidth:"300px",right:"0",bottom:"0",height:"100vh",flexDirection:"column",flexGrow:"1",borderRadius:"0",top:"0",maxHeight:"100%"}):Object.assign(n.style,{width:"26%",maxWidth:"560px",minWidth:"400px",right:"32px",bottom:"86px",height:"calc(100vh - 3rem - 10vh)",borderRadius:"1rem",top:"auto",maxHeight:"45rem"})};t(),null===window||void 0===window||window.addEventListener("resize",t),n.addEventListener("load",(function(){var t,o,i,r;if(e.iframe){var a=new URL(e.iframe.src).origin||e.config.domain;null===(t=n.contentWindow)||void 0===t||t.postMessage({domain:null===(o=null===window||void 0===window?void 0:window.location)||void 0===o?void 0:o.hostname,name:"checkDomain"},a),null===(i=n.contentWindow)||void 0===i||i.postMessage({domain:null===(r=null===window||void 0===window?void 0:window.location)||void 0===r?void 0:r.hostname,action:"registerUserId",data:{userId:e.config.userId,token:e.config.token,userProfile:e.config.userProfile}},a)}})),null===window||void 0===window||window.addEventListener("message",(function(t){var o,i;if(t.origin===e.config.domain){if("captureSessionData"===t.data){var r="66b33d16-5b38-4693-8772-1a1bd7dd412d"===e.config.chatbotId,a={cookies:Q(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===(i=n.contentWindow)||void 0===i||i.postMessage(a,e.config.domain||"*")}"expand"===t.data&&(e.adjustIframeWidth(),n.style.height="calc(100vh - 120px)",n.style.bottom="86px"),"collapse"===t.data&&Object.assign(n.style,{width:"26%",maxWidth:"560px",height:"calc(100vh - 32px - 10vh)",bottom:"86px",top:"auto"})}}))},e.prototype.adjustIframeWidth=function(){if(this.iframe){var e=null===window||void 0===window?void 0:window.innerWidth;p.log("screenWidth",e),this.iframe.style.width=e<832?"".concat(e-64,"px"):"800px"}},e.prototype.loadSvgInline=function(e){var n=document.createElement("div");n.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 t=n.querySelector("svg");e.innerHTML="",t&&e.appendChild(t)},e.prototype.toggleIcon=function(e,n){"block"===n.style.display?this.loadSvgInline(e):this.loadImage(e)},e.prototype.toggleIframe=function(){var e;if(p.log("toggleIframe",this.iframe,this.logoContainer,this.chatBtnImage),this.iframe&&this.logoContainer&&this.chatBtnImage){var n=new URL(this.iframe.src).origin||this.config.domain;p.log("toggleIframe"),null===(e=this.iframe.contentWindow)||void 0===e||e.postMessage({domain:null===window||void 0===window?void 0:window.location.hostname,name:"none"===this.iframe.style.display?"openFrame":"closeFrame"},n),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"),p.log("this.bubblePromptContainer",this.bubblePromptContainer)}},e.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")},e.prototype.init=function(){this.createIframe(),this.createFloatingButton()},e}(),q=function(e,n,t){if(e.chatbotId&&e.userId)try{new G(e);n(!0),p.log("Robylon SDK initialized successfully.")}catch(e){t(e instanceof Error?e.message:"Failed to initialize SDK")}else t("Incomplete configuration for SDK initialization.")},X=function(e){var n=a((function(){return function(e){return{api_key:String(e.api_key||""),user_id:e.user_id?String(e.user_id):null,user_token:e.user_token?String(e.user_token):void 0,user_profile:e.user_profile||{}}}(e)}),[e.api_key,e.user_id,e.user_token,JSON.stringify(e.user_profile)]),t=s({isInitialized:!1,isInitializing:!1,error:null,chatbotConfig:null,isIframeVisible:!1}),r=t[0],l=t[1],f=a((function(){var e=["email","name","mobile","platform","OS","browser","sdk_version","device","screen_size","is_test_user"];return n.user_profile?Object.fromEntries(Object.entries(n.user_profile).filter((function(n){var t=n[0];return e.includes(t)})).map((function(e){var n=e[0],t=e[1];return"boolean"==typeof t||"number"==typeof t?[n,t]:[n,String(t)]}))):{}}),[JSON.stringify(n.user_profile)]),p=i((function(e){l((function(n){return c(c({},n),e)}))}),[]),m=i((function(){return d(void 0,void 0,void 0,(function(){var e,t,o,i,r,a,s,l,d,m,h,v,g,w,b;return u(this,(function(u){switch(u.label){case 0:if(!n.api_key)return k.trackError(new Error(J[D](n.api_key)),"useChatbotState",{errorCode:D,errorType:P,context:{timestamp:Date.now()}}),[2];p({isInitializing:!0}),u.label=1;case 1:return u.trys.push([1,4,5,6]),e=n.user_id||void 0,t=!1,e||(e=function(e){var n,t="; ".concat(document.cookie).split("; ".concat(e,"="));if(2===t.length)return null===(n=t.pop())||void 0===n?void 0:n.split(";").shift()}("rblyn_anon")||"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var n=16*Math.random()|0;return("x"===e?n:3&n|8).toString(16)})),y="rblyn_anon",I=e,_=365,(E=new Date).setTime(E.getTime()+24*_*60*60*1e3),document.cookie="".concat(y,"=").concat(I,";expires=").concat(E.toUTCString(),";path=/"),t=!0),[4,Y(n.api_key,e,n.user_token)];case 2:return o=u.sent(),i=T(),r=c(c({},i),f),a={chatbotId:n.api_key,userId:e,token:n.user_token,isAnonymous:t,domain:"",brand_colour:(null===(m=null===(d=o.user.org_info.brand_config)||void 0===d?void 0:d.colors)||void 0===m?void 0:m.brand_color)||"",image_url:(null===(v=null===(h=o.user.org_info)||void 0===h?void 0:h.brand_config)||void 0===v?void 0:v.launcher_logo_url)||"",userProfile:r,chat_interface_config:{chat_bubble_prompts:[],display_name:(null===(g=o.user.org_info.brand_config)||void 0===g?void 0:g.display_name)||"",welcome_message:(null===(w=o.user.org_info.brand_config)||void 0===w?void 0:w.welcome_message)||"Hey! What can we help you with today?",redirect_url:(null===(b=o.user.org_info.brand_config)||void 0===b?void 0:b.redirect_url)||""}},[4,new Promise((function(e,n){q(a,(function(){p({isInitialized:!0,chatbotConfig:a}),e()}),(function(e){n(e)}))}))];case 3:return u.sent(),[3,6];case 4:return s=u.sent(),l=s instanceof Error?s.message:"Failed to initialize chatbot",p({error:l}),k.trackError(s instanceof Error?s:new Error(l),"useChatbotState",{errorCode:N,errorType:P,context:{timestamp:Date.now()}}),[3,6];case 5:return p({isInitializing:!1}),[7];case 6:return[2]}var y,I,_,E}))}))}),[n.api_key,n.user_id,n.user_token]);o((function(){n.api_key&&m()}),[m]),o((function(){r.chatbotConfig&&l((function(e){return c(c({},e),{chatbotConfig:c(c({},e.chatbotConfig),{userProfile:c(c({},T()),f)})})}))}),[f]);var h=i((function(){l((function(e){return c(c({},e),{isIframeVisible:!e.isIframeVisible})}))}),[]),v=i((function(){p({isIframeVisible:!1})}),[]);return c(c({},r),{toggleIframeVisibility:h,closeIframe:v})},$=function(e){var n=e.api_key,t=e.chatbotConfig,o=e.user_profile,r=e.onEvent,s=a((function(){return{isAnonymous:(null==t?void 0:t.isAnonymous)||!1,userId:(null==t?void 0:t.userId)||""}}),[null==t?void 0:t.isAnonymous,null==t?void 0:t.userId]),l=a((function(){return o||{}}),[JSON.stringify(o)]),f=i((function(e){for(var t=[],o=1;o<arguments.length;o++)t[o-1]=arguments[o];return d(void 0,function(e,n,t){if(t||2===arguments.length)for(var o,i=0,r=n.length;i<r;i++)!o&&i in n||(o||(o=Array.prototype.slice.call(n,0,i)),o[i]=n[i]);return e.concat(o||Array.prototype.slice.call(n))}([e],t,!0),void 0,(function(e,t){var o,i,r,a,d,f,m;return void 0===t&&(t={}),u(this,(function(u){switch(u.label){case 0:if(!n)return[2];u.label=1;case 1:return u.trys.push([1,3,,4]),o=w().apiUrl,i=T(),r=c({trigger_time:Date.now(),channel:"CHATBOT",launch_url:(null===(m=null===window||void 0===window?void 0:window.location)||void 0===m?void 0:m.href)||"",org_id:n,client_user_id:s.isAnonymous?"Anonymous":String(s.userId),event_type:e,user_profile:l},t),a={org_id:n,event_data:r,metadata:c({timestamp:Date.now()},i),event_type:"INFO",user_id:s.userId},[4,fetch("".concat(o,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(a)})];case 2:if(!(d=u.sent()).ok)throw new Error("Failed to send internal event: ".concat(d.statusText));return[3,4];case 3:return f=u.sent(),p.error("Failed to send internal event:",f),[3,4];case 4:return[2]}}))}))}),[n,s]);return{emitEvent:i((function(e,n){var t=Date.now();e!==h.CHATBOT_BUTTON_CLICKED&&e!==h.CHATBOT_CLOSED&&e!==h.CHATBOT_OPENED||(r&&r({type:e,timestamp:t,data:n}),f(e,{timestamp:t}))}),[r,f]),onInternalEvent:f}},ee=n((function(n){var t=n.api_key,r=n.user_id,s=n.user_token,l=n.user_profile,d=n.onEvent;o((function(){}));var u=a((function(){return{api_key:t,user_id:r,user_token:s,user_profile:l}}),[t,r,s,l]),f=i((function(e){null==d||d(e)}),[d]),p=X(u),m=p.isInitialized,v=p.error,g=p.chatbotConfig,w=p.isIframeVisible,b=p.toggleIframeVisibility,I=p.closeIframe,_=a((function(){return{api_key:t,user_profile:u.user_profile,onEvent:f,chatbotConfig:g?{isAnonymous:g.isAnonymous,userId:g.userId}:null}}),[t,u.user_profile,f,null==g?void 0:g.isAnonymous,null==g?void 0:g.userId]),E=$(c({},_)),T=E.emitEvent,x=E.onInternalEvent;o((function(){if(t)try{k.initialize(t,r)}catch(e){k.trackError(e instanceof Error?e:new Error(String(e)),"RobylonChatbot",{errorCode:L,errorType:P,context:{timestamp:Date.now()}})}else k.trackError(new Error(J[D](t)),"RobylonChatbot",{errorCode:D,errorType:P,context:{timestamp:Date.now()}})}),[t,r]);var C=i((function(){I(),T(h.CHATBOT_CLOSED)}),[I,T]),A=i((function(){b(),T(w?h.CHATBOT_CLOSED:h.CHATBOT_BUTTON_CLICKED)}),[b,T,w]),O=a((function(){return{config:g,toggleIframe:A,isIframeVisible:w,onEvent:f,onInternalEvent:x}}),[g,A,w,f,x]),S=a((function(){return{config:g,isVisible:w,onClose:C,onEvent:f,onInternalEvent:x}}),[g,w,C,f,x]);return t&&!v&&g?e.createElement(V,{componentName:"RobylonChatbot"},m?e.createElement(e.Fragment,null,e.createElement(V,{componentName:"ChatbotFloatingButton"},e.createElement(y,c({},O))),e.createElement(V,{componentName:"ChatbotIframe"},e.createElement(Z,c({},S)))):null):null}),(function(e,n){return e.api_key===n.api_key&&e.user_id===n.user_id&&e.user_token===n.user_token&&JSON.stringify(e.user_profile)===JSON.stringify(n.user_profile)&&!0})),ne=function(e){var n=s({isLoading:!0,isInitialized:!1,error:null}),t=n[0],i=n[1],r=function(e){i((function(n){return c(c({},n),{isInitialized:e})}))},a=function(e){i((function(n){return c(c({},n),{error:e})}))};return o((function(){!function(){try{q(e,r,a)}catch(e){i((function(n){return c(c({},n),{error:e instanceof Error?e.message:"Failed to initialize SDK",isLoading:!1})}))}}()}),[e.chatbotId,e.userId]),t};export{ee as Chatbot,ne as useChatbot};
1
+ import e,{memo as t,useRef as n,useState as i,useEffect as o,useCallback as r,Component as a,useMemo as s}from"react";var l=function(e,t){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},l(e,t)};var c=function(){return c=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},c.apply(this,arguments)};function d(e,t,n,i){return new(n||(n=Promise))((function(o,r){function a(e){try{l(i.next(e))}catch(e){r(e)}}function s(e){try{l(i.throw(e))}catch(e){r(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((i=i.apply(e,t||[])).next())}))}function u(e,t){var n,i,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=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(l){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(r=0)),r;)try{if(n=1,i&&(o=2&s[0]?i.return:s[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,s[1])).done)return o;switch(i=0,o&&(s=[2&s[0],o.value]),s[0]){case 0:case 1:o=s;break;case 4:return r.label++,{value:s[1],done:!1};case 5:r.label++,i=s[1],s=[0];continue;case 7:s=r.ops.pop(),r.trys.pop();continue;default:if(!(o=r.trys,(o=o.length>0&&o[o.length-1])||6!==s[0]&&2!==s[0])){r=0;continue}if(3===s[0]&&(!o||s[1]>o[0]&&s[1]<o[3])){r.label=s[1];break}if(6===s[0]&&r.label<o[1]){r.label=o[1],o=s;break}if(o&&r.label<o[2]){r.label=o[2],r.ops.push(s);break}o[2]&&r.ops.pop(),r.trys.pop();continue}s=t.call(e,r)}catch(e){s=[6,e],i=0}finally{n=o=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,l])}}}"function"==typeof SuppressedError&&SuppressedError;var f=function(e,t){void 0===t&&(t=.5);var n=function(e){e=e.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(e,t,n,i){return t+t+n+n+i+i}));var t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return t?{r:parseInt(t[1],16),g:parseInt(t[2],16),b:parseInt(t[3],16)}:{r:0,g:0,b:0}}(e),i=function(e,t,n){var i=[e,t,n].map((function(e){return(e/=255)<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4)}));return.2126*i[0]+.7152*i[1]+.0722*i[2]}(n.r,n.g,n.b);return i>t?"#0E0E0F":"#FFFFFF"},p={log:function(){},error:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]},warn:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]},info:function(){}};p.log("Raw API_URL:","https://api.robylon.ai");var h={copilotUrl:"https://chatbot.robylon.ai",environment:"production",apiUrl:"https://api.robylon.ai"};p.log("CONFIG",h);var m,v,g=function(){return"undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement},b=function(){return{copilotUrl:h.copilotUrl||"https://app.robylon.ai",environment:h.environment||"production",apiUrl:h.apiUrl||"https://app.robylon.ai"}};!function(e){e.CHATBOT_BUTTON_LOADED="CHATBOT_BUTTON_LOADED",e.CHATBOT_BUTTON_CLICKED="CHATBOT_BUTTON_CLICKED",e.CHATBOT_OPENED="CHATBOT_OPENED",e.CHATBOT_CLOSED="CHATBOT_CLOSED",e.CHATBOT_APP_READY="CHATBOT_APP_READY",e.CHATBOT_LOADED="CHATBOT_LOADED",e.CHAT_INITIALIZED="CHAT_INITIALIZED",e.SESSION_REFRESHED="SESSION_REFRESHED",e.CHAT_INITIALIZATION_FAILED="CHAT_INITIALIZATION_FAILED"}(m||(m={})),function(e){e.CHAT_MOVED="CHAT_MOVED",e.CHATBOT_TOKEN_EXHAUSTED="CHATBOT_TOKEN_EXHAUSTED"}(v||(v={}));var w,y=t((function(t){var r=t.config,a=t.toggleIframe,s=t.isIframeVisible,l=t.onEvent,d=t.onInternalEvent,u=n(null),h=b().copilotUrl,v=i(!1),g=v[0],w=v[1];o((function(){var e=function(){var e=(null===window||void 0===window?void 0:window.innerWidth)<560;w(e)};return e(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e)}}),[]),o((function(){u.current&&requestAnimationFrame((function(){null==l||l({type:m.CHATBOT_BUTTON_LOADED,timestamp:Date.now()}),d(m.CHATBOT_BUTTON_LOADED)}))}),[l,d]);var y={zIndex:1e3,width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:r.brand_colour,color:f(r.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px"},E=c(c({},y),{position:void 0,bottom:"0",right:"0"}),I=c(c({},y),{position:"fixed",bottom:"20px",right:"20px"}),_=g?I:E;return o((function(){p.log("Screen width changed, isMobile:",g,"Style:",_)}),[g,_]),e.createElement("div",{ref:u,className:"message-bubble-container",style:_,onClick:a},s?e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("g",{id:"Chevron_Down"},e.createElement("path",{id:"Vector",d:"M19 9L12 16L5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"}))):e.createElement("img",{src:r.image_url||"".concat(h,"/chatbubble.png"),alt:"Chat",style:{zIndex:1e3,cursor:"pointer",borderRadius:"50%",objectFit:"cover",width:"100%",height:"100%"}}))})),E=function(){var e;return(null===(e=navigator.userAgentData)||void 0===e?void 0:e.platform)||(/Windows|Mac|Linux|Android|iOS/.exec(navigator.userAgent)||["Unknown"])[0]},I=function(){var e;if(null===(e=navigator.userAgentData)||void 0===e?void 0:e.brands)for(var t=["Chrome","Firefox","Safari","Edge","Opera"],n=0,i=navigator.userAgentData.brands;n<i.length;n++){var o=i[n];if(t.includes(o.brand))return o.brand}return(/Chrome|Firefox|Safari|Edge|Opera/.exec(navigator.userAgent)||["Unknown"])[0]},_=function(){var e,t,n,i;return{width:(null===window||void 0===window?void 0:window.innerWidth)||(null===(e=null===document||void 0===document?void 0:document.documentElement)||void 0===e?void 0:e.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===(i=null===document||void 0===document?void 0:document.body)||void 0===i?void 0:i.clientHeight)}},T=function(){return{platform:"web",os:E(),browser:I(),sdk_version:"1.1.27",device:(e=navigator.userAgent.toLowerCase(),/(tablet|ipad|playbook|silk)|(android(?!.*mobi))/i.test(e)?"tablet":/Mobile|Android|iP(hone|od)|IEMobile|BlackBerry|Kindle|Silk-Accelerated|(hpw|web)OS|Opera M(obi|ini)/.test(e)?"mobile":"desktop"),screen_size:_()};var e};!function(e){e.ERROR="ERROR",e.INFO="INFO"}(w||(w={}));var C,x=["@robylon/web-react-sdk","node_modules/@robylon/web-react-sdk/"],O=function(e){var t=e.filename,n=e.stack,i=e.message;return!!(t||n||i)&&x.some((function(e){return(null==t?void 0:t.includes(e))||(null==n?void 0:n.includes(e))||(null==i?void 0:i.includes(e))}))},A=function(){function e(){var e=this;this.apiKey="",this.userId=null,this.preInitQueue=[],this.isInitialized=!1,this.handleWindowError=function(t){var n,i={filename:t.filename,stack:null===(n=t.error)||void 0===n?void 0:n.stack,message:t.message};O(i)&&e.trackError(t.error||t.message,"GlobalErrorHandler",{filename:t.filename,lineNo:t.lineno,colNo:t.colno})},this.handleUnhandledRejection=function(t){var n,i,o={stack:null===(n=t.reason)||void 0===n?void 0:n.stack,message:(null===(i=t.reason)||void 0===i?void 0:i.message)||String(t.reason)};O(o)&&e.trackError(t.reason||"Unhandled Promise Rejection","GlobalPromiseHandler",{reason:t.reason})},this.setupGlobalHandlers()}return e.prototype.setupGlobalHandlers=function(){g()&&(null===window||void 0===window||window.addEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.addEventListener("unhandledrejection",this.handleUnhandledRejection))},e.prototype.cleanup=function(){g()&&(null===window||void 0===window||window.removeEventListener("error",null==this?void 0:this.handleWindowError),null===window||void 0===window||window.removeEventListener("unhandledrejection",this.handleUnhandledRejection))},e.getInstance=function(){return e.instance||(e.instance=new e),e.instance},e.prototype.initialize=function(e,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===e?"undefined":null===e?"null":""===e?"empty string":"invalid: ".concat(e)),componentName:"ErrorTrackingService",additionalInfo:{preInitError:!0,apiKey:e,userId:t,timestamp:Date.now()},timestamp:Date.now()},metadata:T(),event_type:w.ERROR,user_id:t};this.sendLog(n).catch(console.error)}this.apiKey=e,this.userId=t,this.isInitialized=!0,this.processPreInitQueue()}catch(n){p.error("Error during ErrorTrackingService initialization:",n),this.preInitQueue.push({error:n instanceof Error?n:new Error(String(n)),componentName:"ErrorTrackingService",additionalInfo:{apiKey:e,userId:t}})}},e.prototype.processPreInitQueue=function(){return d(this,void 0,void 0,(function(){var e,t,n;return u(this,(function(i){switch(i.label){case 0:if(!this.preInitQueue.length)return[2];p.info("Processing ".concat(this.preInitQueue.length," pre-initialization errors")),e=0,t=this.preInitQueue,i.label=1;case 1:return e<t.length?(n=t[e],[4,this.trackError(n.error,n.componentName,c(c({},n.additionalInfo),{preInitError:!0}))]):[3,4];case 2:i.sent(),i.label=3;case 3:return e++,[3,1];case 4:return this.preInitQueue=[],[2]}}))}))},e.prototype.sendLog=function(e){return d(this,void 0,void 0,(function(){var t,n,i,o,r,a;return u(this,(function(s){switch(s.label){case 0:return s.trys.push([0,4,,5]),t=b().apiUrl,[4,fetch("".concat(t,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)})];case 1:return(n=s.sent()).ok?[3,3]:(o=(i=p).error,r=["Failed to send error log:"],[4,n.text()]);case 2:o.apply(i,r.concat([s.sent()])),s.label=3;case 3:return[3,5];case 4:return a=s.sent(),p.error("Error sending log:",a),[3,5];case 5:return[2]}}))}))},e.prototype.trackError=function(e,t,n){return d(this,void 0,void 0,(function(){var i,o,r;return u(this,(function(a){switch(a.label){case 0:if(this.isInitialized)return[3,5];i={org_id:"UNINITALIZED",event_data:{message:e instanceof Error?e.message:e,stack:e instanceof Error?e.stack:void 0,componentName:t,additionalInfo:c(c({},n),{preInitError:!0,timestamp:Date.now()}),timestamp:Date.now()},metadata:T(),event_type:w.ERROR,user_id:this.userId},a.label=1;case 1:return a.trys.push([1,3,,4]),[4,this.sendLog(i)];case 2:return a.sent(),[3,4];case 3:return a.sent(),this.preInitQueue.push({error:e,componentName:t,additionalInfo:n}),p.warn("Error tracked before initialization, queuing:",e),[3,4];case 4:return[2];case 5:return o={message:e instanceof Error?e.message:e,stack:e instanceof Error?e.stack:void 0,componentName:t,additionalInfo:c(c({},n),{timestamp:Date.now()}),timestamp:Date.now()},r={org_id:this.apiKey||"UNINITALIZED",event_data:o,metadata:T(),event_type:w.ERROR,user_id:this.userId},[4,this.sendLog(r)];case 6:return a.sent(),[2]}}))}))},e.prototype.trackInfo=function(e,t,n){return d(this,void 0,void 0,(function(){var i,o;return u(this,(function(r){switch(r.label){case 0:return this.apiKey?(i={message:e,componentName:t,additionalInfo:n,timestamp:Date.now()},o={org_id:this.apiKey,event_data:i,metadata:T(),event_type:w.INFO,user_id:this.userId},[4,this.sendLog(o)]):(p.error("Error tracking not initialized"),[2]);case 1:return r.sent(),[2]}}))}))},e}(),D=A.getInstance(),S="MISSING_API_KEY",k="INVALID_API_KEY",R="CONFIG_FETCH_FAILED",L="SDK_INIT_FAILED",N="ERROR_TRACKING_INIT_FAILED",z="API_REQUEST_FAILED",H="NETWORK_ERROR",M="INVALID_RESPONSE",B="IFRAME_LOAD_FAILED",U="COOKIE_ACCESS_ERROR",F="COMPONENT_RENDER_ERROR",j="INITIALIZATION_ERROR",P="API_ERROR",W="RUNTIME_ERROR",V="COMPONENT_ERROR",K=((C={})[S]=function(e){return"SDK Initialization Failed: Required parameter 'api_key' is ".concat(void 0===e?"undefined":null===e?"null":""===e?"empty string":"invalid: ".concat(e),". A valid API key string is required to initialize the SDK.")},C[k]=function(e){return"SDK Initialization Failed: Provided API key '".concat(e,"' is invalid. API key must be a non-empty string in UUID format.")},C[R]=function(e){return"Failed to fetch chatbot configuration: ".concat(e.statusCode?"Server responded with status ".concat(e.statusCode):"Could not reach server").concat(e.error?". Error: ".concat(e.error):"")},C[z]=function(e,t,n){return"API Request Failed: Server responded with status ".concat(e," for ").concat(n?"endpoint ".concat(n):"request"," - ").concat(t)},C[H]=function(e){return"Network Error: Failed to communicate with server".concat(e.url?" at ".concat(e.url):"").concat(e.error?" - ".concat(e.error):"")},C[B]=function(e){return"Failed to load chatbot interface".concat(e.src?" from ".concat(e.src):"").concat(e.error?". Error: ".concat(e.error):"")},C[M]=function(e){return"Invalid API Response: Missing required fields in response data: ".concat(e.join(", "))},C[N]=function(e){return"Error Tracking Service initialization failed".concat(e.apiKey?" for API key ".concat(e.apiKey):"").concat(e.error?". Error: ".concat(e.error):"")},C[L]=function(e){return"SDK Initialization Failed: ".concat(e.reason||"Could not initialize the chatbot SDK").concat(e.config?". Attempted initialization with config: ".concat(JSON.stringify(e.config,null,2)):"")},C[U]=function(e,t){return"Cookie Access Error: Failed to ".concat(e).concat(t?" cookie '".concat(t,"'"):" cookies",". This may affect user session persistence.")},C[F]=function(e){return"React Component Error: ".concat(e.component||"Unknown component"," failed to render. Error: ").concat(e.error).concat(e.stack?"\nComponent Stack: ".concat(e.stack):"")},C),J=t((function(t){var i=t.config,a=t.isVisible,s=t.onClose,l=t.onEvent,c=t.onInternalEvent,d=n(null),u=n(!1),f=n(!1),p=r((function(){var e=d.current;e&&((null===window||void 0===window?void 0:window.innerWidth)<560?(e.style.width="100vw",e.style.minWidth="300px",e.style.right="0",e.style.bottom="0",e.style.height="100vh",e.style.flexDirection="column",e.style.flexGrow="1",e.style.borderRadius="0",e.style.top="0",e.style.maxHeight="100%",e.style.position="fixed"):(e.style.width="26%",e.style.minWidth="400px",e.style.height="calc(100vh - 3rem - 10vh)",e.style.borderRadius="1rem",e.style.top="calc(10vh - 32px)",e.style.maxHeight="50rem",e.style.position=""))}),[c]);return o((function(){return null===window||void 0===window||window.addEventListener("resize",p),p(),function(){return null===window||void 0===window?void 0:window.removeEventListener("resize",p)}}),[p]),o((function(){var e=d.current;if(e&&!u.current){var t=b().copilotUrl;e.src="".concat(t,"/chatbot-plugin?id=").concat(i.chatbotId),u.current=!0;var n=function(){var n,i,o=new URL(e.src).origin||t;null===(n=e.contentWindow)||void 0===n||n.postMessage({domain:null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.hostname,name:"checkDomain"},o)};return e.addEventListener("load",n),function(){return e.removeEventListener("load",n)}}}),[i.chatbotId]),o((function(){var e,t,n,o,r=d.current;if(r&&u.current){var s=b().copilotUrl;if(r.style.display=a?"block":"none",r.contentWindow&&a){var l=new URL(r.src).origin||s;null===(e=null==r?void 0:r.contentWindow)||void 0===e||e.postMessage({domain:null===(t=null===window||void 0===window?void 0:window.location)||void 0===t?void 0:t.hostname,name:"openFrame"},l),(null==f?void 0:f.current)||(null===(n=r.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,action:"registerUserId",data:{userId:null==i?void 0:i.userId,token:null==i?void 0:i.token,userProfile:null==i?void 0:i.userProfile,isAnonymous:null==i?void 0:i.isAnonymous}},l),f.current=!0)}}}),[a,i.userId,i.token,i.userProfile]),o((function(){if(d.current&&u.current){var e=b().copilotUrl;a&&(null==l||l({type:m.CHATBOT_OPENED,timestamp:Date.now()}),c(m.CHATBOT_OPENED));var t=function(t){var n,i,o,r,a,d,u;if(t.origin===e){if("closeChatbot"===t.data)return void s();if("CHATBOT_TOKEN_EXHAUSTED"===(null===(n=t.data)||void 0===n?void 0:n.type))return void c(v.CHATBOT_TOKEN_EXHAUSTED);"CHATBOT_LOADED"===(null===(i=t.data)||void 0===i?void 0:i.type)&&(null==l||l({type:m.CHATBOT_LOADED,timestamp:Date.now()}),c(m.CHATBOT_LOADED)),"CHAT_INITIALIZED"===(null===(o=t.data)||void 0===o?void 0:o.type)&&(null==l||l({type:m.CHAT_INITIALIZED,timestamp:Date.now()}),c(m.CHAT_INITIALIZED)),"CHAT_INITIALIZATION_FAILED"===(null===(r=t.data)||void 0===r?void 0:r.type)&&(null==l||l({type:m.CHAT_INITIALIZATION_FAILED,timestamp:Date.now()}),c(m.CHAT_INITIALIZATION_FAILED,{error:null===(a=t.data)||void 0===a?void 0:a.error})),"SESSION_REFRESHED"===(null===(d=t.data)||void 0===d?void 0:d.type)&&(null==l||l({type:m.SESSION_REFRESHED,timestamp:Date.now()}),c(m.SESSION_REFRESHED)),"CHAT_MOVED"===(null===(u=t.data)||void 0===u?void 0:u.type)&&c(v.CHAT_MOVED,{from:t.data.from,to:t.data.to,trigger:t.data.trigger})}};return null===window||void 0===window||window.addEventListener("message",t),function(){return null===window||void 0===window?void 0:window.removeEventListener("message",t)}}}),[s,l,c,i.chatbotId,a]),o((function(){var e=d.current;if(e&&u.current){var t=function(){D.trackError(new Error(K[B]({src:e.src,error:"Failed to load iframe"})),"ChatbotIframe",{errorCode:B,errorType:W,context:{config:i,iframeUrl:e.src,timestamp:Date.now()}})};return e.addEventListener("error",t),function(){return e.removeEventListener("error",t)}}}),[i]),o((function(){var e;if(d.current&&i&&a){var t=d.current,n=b().copilotUrl;null===(e=t.contentWindow)||void 0===e||e.postMessage({action:"updateUserProfile",user_profile:i.userProfile},n)}}),[i.userProfile,a]),e.createElement("iframe",{ref:d,id:"chat-iframe-rbyln",style:{zIndex:2e7,border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom right",transition:"transform 0.3s ease-out",display:a?"block":"none"}})})),Z=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={hasError:!1},t}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}l(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}(t,e),t.getDerivedStateFromError=function(e){return{hasError:!0}},t.prototype.componentDidCatch=function(e,t){D.trackError(new Error(K[F]({component:this.props.componentName||void 0,error:e.message,stack:t.componentStack})),this.props.componentName||void 0,{errorCode:F,errorType:V,context:{originalError:e,componentStack:t.componentStack,timestamp:Date.now()}})},t.prototype.render=function(){return this.state.hasError?null:this.props.children},t}(a),Y=function(e,t,n){return d(void 0,void 0,void 0,(function(){var i,o,r,a,s,l,c,d;return u(this,(function(u){switch(u.label){case 0:i=b().apiUrl,o="".concat(i,"/chat/chatbot/get/"),p.log("endpointUrl",o),r={client_user_id:t,org_id:e,token:n||void 0,extra_info:{}},u.label=1;case 1:return u.trys.push([1,6,,7]),[4,fetch(o,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})];case 2:return(a=u.sent()).ok?[3,4]:[4,a.text()];case 3:throw s=u.sent(),new Error(K[z](a.status,s));case 4:return[4,a.json()];case 5:if(l=u.sent(),!(null===(d=null==l?void 0:l.user)||void 0===d?void 0:d.org_info))throw new Error(K[M](["user","org_info"]));return[2,l];case 6:throw c=u.sent(),D.trackError(c instanceof Error?c:new Error(K[H]({error:String(c)})),"fetchChatbotConfig",{errorCode:c instanceof Error&&c.message.includes("API Request Failed")?z:H,errorType:P,context:{chatbotId:e,userId:t,apiUrl:i,statusCode:c instanceof Response?c.status:void 0,timestamp:Date.now(),requestPayload:{client_user_id:t,org_id:e}}}),c;case 7:return[2]}}))}))},G=function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)}))},Q=function(e){var t,n="; ".concat(document.cookie).split("; ".concat(e,"="));if(2===n.length)return null===(t=n.pop())||void 0===t?void 0:t.split(";").shift()},q=function(e,t,n){var i=new Date;i.setTime(i.getTime()+24*n*60*60*1e3),document.cookie="".concat(e,"=").concat(t,";expires=").concat(i.toUTCString(),";path=/")},X=function(e){var t=e?"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(e){var t=e.split("="),n=t[0],i=t.slice(1).join("=").trim();return{name:n=n.trim(),value:i?decodeURIComponent(i):""}})),t},$=function(){function e(e){this.logoContainer=null,this.iframe=null,this.bubblePromptContainer=null,this.chatBtnImage=null,this.config=e,this.validateDomain()&&this.init(),null===window||void 0===window||window.addEventListener("message",this.onCloseListener.bind(this),!1)}return e.prototype.onCloseListener=function(e){e.origin===this.config.domain&&"closeChatbot"===e.data&&this.closeIframe()},e.prototype.validateDomain=function(){var e,t=this.config.domain,n=null===(e=null===window||void 0===window?void 0:window.location)||void 0===e?void 0:e.origin;return p.log("expectedDomain, to current domain",t,n,t===n),t===n},e.prototype.createChatBubblContainer=function(){var e,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 i=document.createElement("div");i.classList.add("close-btn"),i.textContent="✕",Object.assign(i.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===(e=this.config.chat_interface_config)||void 0===e?void 0:e.chat_bubble_prompts)||[]).forEach((function(e){var i=t.createMessageBubble(e);n.appendChild(i)})),n.appendChild(i),document.body.appendChild(n)},e.prototype.createMessageBubble=function(e){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=e,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 i=document.createElement("button");return i.innerHTML="&times;",Object.assign(i.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"}),i.addEventListener("click",(function(){t.remove()})),t.appendChild(i),t.appendChild(n),t},e.prototype.createFloatingButton=function(){var e=document.createElement("div");e.classList.add("message-bubble-container"),Object.assign(e.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:f(this.config.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden"}),document.body.appendChild(e),this.logoContainer=e,this.loadImage(this.logoContainer),this.createChatBubblContainer(),this.logoContainer.addEventListener("click",this.toggleIframe.bind(this))},e.prototype.loadImage=function(e){var t=document.createElement("img");t.src=this.config.image_url||"".concat(this.config.domain,"/chatbubble.png"),t.alt="Chat",Object.assign(t.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover"}),this.chatBtnImage=t,e.innerHTML="",e.appendChild(t)},e.prototype.createIframe=function(){var e=this;p.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),p.log("iframe.src====>",t.src),document.body.appendChild(t),this.iframe=t;var n=function(){(null===window||void 0===window?void 0:window.innerWidth)<560?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,i,o,r;if(e.iframe){var a=new URL(e.iframe.src).origin||e.config.domain;null===(n=t.contentWindow)||void 0===n||n.postMessage({domain:null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.hostname,name:"checkDomain"},a),null===(o=t.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:e.config.userId,token:e.config.token,userProfile:e.config.userProfile}},a)}})),null===window||void 0===window||window.addEventListener("message",(function(n){var i,o;if(n.origin===e.config.domain){if("captureSessionData"===n.data){var r="66b33d16-5b38-4693-8772-1a1bd7dd412d"===e.config.chatbotId,a={cookies:X(r),localStorage:JSON.stringify(localStorage),sessionStorage:JSON.stringify(sessionStorage),action:"capturedSessionData",domain_name:null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.hostname};null===(o=t.contentWindow)||void 0===o||o.postMessage(a,e.config.domain||"*")}"expand"===n.data&&(e.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)"})}}))},e.prototype.adjustIframeWidth=function(){if(this.iframe){var e=null===window||void 0===window?void 0:window.innerWidth;p.log("screenWidth",e),this.iframe.style.width=e<832?"".concat(e-64,"px"):"800px"}},e.prototype.loadSvgInline=function(e){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");e.innerHTML="",n&&e.appendChild(n)},e.prototype.toggleIcon=function(e,t){"block"===t.style.display?this.loadSvgInline(e):this.loadImage(e)},e.prototype.toggleIframe=function(){var e;if(p.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;p.log("toggleIframe"),null===(e=this.iframe.contentWindow)||void 0===e||e.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"),p.log("this.bubblePromptContainer",this.bubblePromptContainer)}},e.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")},e.prototype.init=function(){this.createIframe(),this.createFloatingButton()},e}(),ee=function(e,t,n){if(e.chatbotId&&e.userId)try{new $(e);t(!0),p.log("Robylon SDK initialized successfully.")}catch(e){n(e instanceof Error?e.message:"Failed to initialize SDK")}else n("Incomplete configuration for SDK initialization.")},te=function(e){var t=s((function(){return function(e){return{api_key:String(e.api_key||""),user_id:e.user_id?String(e.user_id):null,user_token:e.user_token?String(e.user_token):void 0,user_profile:e.user_profile||{}}}(e)}),[e.api_key,e.user_id,e.user_token,JSON.stringify(e.user_profile)]),n=i({isInitialized:!1,isInitializing:!1,error:null,chatbotConfig:null,isIframeVisible:!1}),a=n[0],l=n[1],f=s((function(){var e=["email","name","mobile","platform","OS","browser","sdk_version","device","screen_size","is_test_user"];return t.user_profile?Object.fromEntries(Object.entries(t.user_profile).filter((function(t){var n=t[0];return e.includes(n)})).map((function(e){var t=e[0],n=e[1];return"boolean"==typeof n||"number"==typeof n?[t,n]:[t,String(n)]}))):{}}),[JSON.stringify(t.user_profile)]),p=r((function(e){l((function(t){return c(c({},t),e)}))}),[]),h=r((function(){return d(void 0,void 0,void 0,(function(){var e,n,i,o,r,a,s,l,d,h,m,v,g,b,w;return u(this,(function(u){switch(u.label){case 0:if(!t.api_key)return D.trackError(new Error(K[S](t.api_key)),"useChatbotState",{errorCode:S,errorType:j,context:{timestamp:Date.now()}}),[2];p({isInitializing:!0}),u.label=1;case 1:return u.trys.push([1,4,5,6]),e=t.user_id||void 0,n=!1,e||(e=Q("rblyn_anon")||G(),q("rblyn_anon",e,365),n=!0),[4,Y(t.api_key,e,t.user_token)];case 2:return i=u.sent(),o=T(),r=c(c({},o),f),a={chatbotId:t.api_key,userId:e,token:t.user_token,isAnonymous:n,domain:"",brand_colour:(null===(h=null===(d=i.user.org_info.brand_config)||void 0===d?void 0:d.colors)||void 0===h?void 0:h.brand_color)||"",image_url:(null===(v=null===(m=i.user.org_info)||void 0===m?void 0:m.brand_config)||void 0===v?void 0:v.launcher_logo_url)||"",userProfile:r,chat_interface_config:{chat_bubble_prompts:[],display_name:(null===(g=i.user.org_info.brand_config)||void 0===g?void 0:g.display_name)||"",welcome_message:(null===(b=i.user.org_info.brand_config)||void 0===b?void 0:b.welcome_message)||"Hey! What can we help you with today?",redirect_url:(null===(w=i.user.org_info.brand_config)||void 0===w?void 0:w.redirect_url)||""}},[4,new Promise((function(e,t){ee(a,(function(){p({isInitialized:!0,chatbotConfig:a}),e()}),(function(e){t(e)}))}))];case 3:return u.sent(),[3,6];case 4:return s=u.sent(),l=s instanceof Error?s.message:"Failed to initialize chatbot",p({error:l}),D.trackError(s instanceof Error?s:new Error(l),"useChatbotState",{errorCode:L,errorType:j,context:{timestamp:Date.now()}}),[3,6];case 5:return p({isInitializing:!1}),[7];case 6:return[2]}}))}))}),[t.api_key,t.user_id,t.user_token]);o((function(){t.api_key&&h()}),[h]),o((function(){a.chatbotConfig&&l((function(e){return c(c({},e),{chatbotConfig:c(c({},e.chatbotConfig),{userProfile:c(c({},T()),f)})})}))}),[f]);var m=r((function(){l((function(e){return c(c({},e),{isIframeVisible:!e.isIframeVisible})}))}),[]),v=r((function(){p({isIframeVisible:!1})}),[]);return c(c({},a),{toggleIframeVisibility:m,closeIframe:v})},ne=function(e){var t=e.api_key,n=e.chatbotConfig,i=e.user_profile,o=e.onEvent,a=s((function(){return{isAnonymous:(null==n?void 0:n.isAnonymous)||!1,userId:(null==n?void 0:n.userId)||""}}),[null==n?void 0:n.isAnonymous,null==n?void 0:n.userId]),l=s((function(){return i||{}}),[JSON.stringify(i)]),f=r((function(e){for(var n=[],i=1;i<arguments.length;i++)n[i-1]=arguments[i];return d(void 0,function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))}([e],n,!0),void 0,(function(e,n){var i,o,r,s,d,f,h;return void 0===n&&(n={}),u(this,(function(u){switch(u.label){case 0:if(!t)return[2];u.label=1;case 1:return u.trys.push([1,3,,4]),i=b().apiUrl,o=T(),r=c({trigger_time:Date.now(),channel:"CHATBOT",launch_url:(null===(h=null===window||void 0===window?void 0:window.location)||void 0===h?void 0:h.href)||"",org_id:t,client_user_id:a.isAnonymous?"Anonymous":String(a.userId),event_type:e,user_profile:l},n),s={org_id:t,event_data:r,metadata:c({timestamp:Date.now()},o),event_type:"INFO",user_id:a.userId},[4,fetch("".concat(i,"/users/sdk/record-logs/"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)})];case 2:if(!(d=u.sent()).ok)throw new Error("Failed to send internal event: ".concat(d.statusText));return[3,4];case 3:return f=u.sent(),p.error("Failed to send internal event:",f),[3,4];case 4:return[2]}}))}))}),[t,a]);return{emitEvent:r((function(e,t){var n=Date.now();e!==m.CHATBOT_BUTTON_CLICKED&&e!==m.CHATBOT_CLOSED&&e!==m.CHATBOT_OPENED||(o&&o({type:e,timestamp:n,data:t}),f(e,{timestamp:n}))}),[o,f]),onInternalEvent:f}},ie=function(t){var n=t.children,r=i(!1),a=r[0],s=r[1];o((function(){var e=function(){var e=(null===window||void 0===window?void 0:window.innerWidth)<560;s(e)};return e(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e)}}),[]);var l={position:"fixed",zIndex:1e3,display:"flex",flexDirection:"column"},d=c(c({},l),{bottom:"20px",right:"20px",alignItems:"flex-end",top:void 0,left:void 0}),u=c(c({},l),{top:0,right:"20px",alignItems:"center",bottom:void 0}),f=a?u:d;return o((function(){}),[a,f]),e.createElement("div",{className:"robylon-chatbot-container",style:f},n)},oe=t((function(t){var n=t.api_key,i=t.user_id,a=t.user_token,l=t.user_profile,d=t.onEvent;o((function(){}));var u=s((function(){return{api_key:n,user_id:i,user_token:a,user_profile:l}}),[n,i,a,l]),f=r((function(e){null==d||d(e)}),[d]),p=te(u),h=p.isInitialized,v=p.error,g=p.chatbotConfig,b=p.isIframeVisible,w=p.toggleIframeVisibility,E=p.closeIframe,I=s((function(){return{api_key:n,user_profile:u.user_profile,onEvent:f,chatbotConfig:g?{isAnonymous:g.isAnonymous,userId:g.userId}:null}}),[n,u.user_profile,f,null==g?void 0:g.isAnonymous,null==g?void 0:g.userId]),_=ne(c({},I)),T=_.emitEvent,C=_.onInternalEvent;o((function(){if(n)try{D.initialize(n,i)}catch(e){D.trackError(e instanceof Error?e:new Error(String(e)),"RobylonChatbot",{errorCode:N,errorType:j,context:{timestamp:Date.now()}})}else D.trackError(new Error(K[S](n)),"RobylonChatbot",{errorCode:S,errorType:j,context:{timestamp:Date.now()}})}),[n,i]);var x=r((function(){E(),T(m.CHATBOT_CLOSED)}),[E,T]),O=r((function(){w(),T(b?m.CHATBOT_CLOSED:m.CHATBOT_BUTTON_CLICKED)}),[w,T,b]),A=s((function(){return{config:g,toggleIframe:O,isIframeVisible:b,onEvent:f,onInternalEvent:C}}),[g,O,b,f,C]),k=s((function(){return{config:g,isVisible:b,onClose:x,onEvent:f,onInternalEvent:C}}),[g,b,x,f,C]);return n&&!v&&g?e.createElement(Z,{componentName:"RobylonChatbot"},h?e.createElement(ie,null,e.createElement(Z,{componentName:"ChatbotIframe"},e.createElement(J,c({},k))),e.createElement(Z,{componentName:"ChatbotFloatingButton"},e.createElement(y,c({},A)))):null):null}),(function(e,t){return e.api_key===t.api_key&&e.user_id===t.user_id&&e.user_token===t.user_token&&JSON.stringify(e.user_profile)===JSON.stringify(t.user_profile)&&!0})),re=function(e){var t=i({isLoading:!0,isInitialized:!1,error:null}),n=t[0],r=t[1],a=function(e){r((function(t){return c(c({},t),{isInitialized:e})}))},s=function(e){r((function(t){return c(c({},t),{error:e})}))};return o((function(){!function(){try{ee(e,a,s)}catch(e){r((function(t){return c(c({},t),{error:e instanceof Error?e.message:"Failed to initialize SDK",isLoading:!1})}))}}()}),[e.chatbotId,e.userId]),n},ae=function(){function e(e){this.resizeObserver=null,this.config=e,this.buttonElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.render(),this.mount(),this.setupResizeListener()}return e.prototype.render=function(){var e=this,t=b().copilotUrl,n=this.config,i=n.config,o=n.isIframeVisible,r={zIndex:"1000",width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:i.brand_colour,color:f(i.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px"};if(this.applyResponsiveStyles(r),this.buttonElement.className="message-bubble-container",o)this.buttonElement.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 <g id="Chevron_Down">\n <path\n id="Vector"\n d="M19 9L12 16L5 9"\n stroke="currentColor"\n stroke-width="1.5"\n stroke-linecap="round"\n stroke-linejoin="round"\n />\n </g>\n </svg>\n ';else{var a=document.createElement("img");a.src=i.image_url||"".concat(t,"/chatbubble.png"),a.alt="Chat",Object.assign(a.style,{zIndex:"1000",cursor:"pointer",borderRadius:"50%",objectFit:"cover",width:"100%",height:"100%"}),this.buttonElement.innerHTML="",this.buttonElement.appendChild(a)}this.buttonElement.onclick=function(){e.config.toggleIframe()}},e.prototype.applyResponsiveStyles=function(e){var t=(null===window||void 0===window?void 0:window.innerWidth)<560;this.buttonElement.style.position="",this.buttonElement.style.bottom="",this.buttonElement.style.right="";var n=c(c({},e),{bottom:"0",right:"0"}),i=c(c({},e),{position:"fixed",bottom:"20px",right:"20px"});Object.assign(this.buttonElement.style,t?i:n)},e.prototype.handleResize=function(){var e={zIndex:"1000",width:"48px",height:"48px",display:"flex",flexDirection:"column-reverse",backgroundColor:this.config.config.brand_colour,color:f(this.config.config.brand_colour),borderRadius:"50%",alignItems:"center",justifyContent:"center",cursor:"pointer",overflow:"hidden",marginTop:"16px"};this.applyResponsiveStyles(e)},e.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},e.prototype.getElement=function(){return this.buttonElement},e.prototype.mount=function(){var e=this;requestAnimationFrame((function(){var t,n;null===(n=(t=e.config).onEvent)||void 0===n||n.call(t,{type:m.CHATBOT_BUTTON_LOADED,timestamp:Date.now()}),e.config.onInternalEvent(m.CHATBOT_BUTTON_LOADED)}))},e.prototype.update=function(e){this.config=c(c({},this.config),e),this.render()},e.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)},e}(),se=function(){function e(e){var t=this;this.isInitialized=!1,this.hasRegistered=!1,this.handleMessage=function(e){var n,i,o,r,a,s,l,c,d,u,f,p,h,g,w,y=b().copilotUrl;if(e.origin===y){if("closeChatbot"===e.data)return void t.config.onClose();if("CHATBOT_TOKEN_EXHAUSTED"===(null===(n=e.data)||void 0===n?void 0:n.type))return void t.config.onInternalEvent(v.CHATBOT_TOKEN_EXHAUSTED);"CHATBOT_LOADED"===(null===(i=e.data)||void 0===i?void 0:i.type)&&(null===(r=(o=t.config).onEvent)||void 0===r||r.call(o,{type:m.CHATBOT_LOADED,timestamp:Date.now()}),t.config.onInternalEvent(m.CHATBOT_LOADED)),"CHAT_INITIALIZED"===(null===(a=e.data)||void 0===a?void 0:a.type)&&(null===(l=(s=t.config).onEvent)||void 0===l||l.call(s,{type:m.CHAT_INITIALIZED,timestamp:Date.now()}),t.config.onInternalEvent(m.CHAT_INITIALIZED)),"CHAT_INITIALIZATION_FAILED"===(null===(c=e.data)||void 0===c?void 0:c.type)&&(null===(u=(d=t.config).onEvent)||void 0===u||u.call(d,{type:m.CHAT_INITIALIZATION_FAILED,timestamp:Date.now()}),t.config.onInternalEvent(m.CHAT_INITIALIZATION_FAILED,{error:null===(f=e.data)||void 0===f?void 0:f.error})),"SESSION_REFRESHED"===(null===(p=e.data)||void 0===p?void 0:p.type)&&(null===(g=(h=t.config).onEvent)||void 0===g||g.call(h,{type:m.SESSION_REFRESHED,timestamp:Date.now()}),t.config.onInternalEvent(m.SESSION_REFRESHED)),"CHAT_MOVED"===(null===(w=e.data)||void 0===w?void 0:w.type)&&t.config.onInternalEvent(v.CHAT_MOVED,{from:e.data.from,to:e.data.to,trigger:e.data.trigger})}},this.config=e,this.iframeElement=document.createElement("iframe"),this.iframeElement.id="chat-iframe-rbyln",this.resizeHandler=this.applyResponsiveStyles.bind(this),this.render(),this.initialize(),this.setupEventListeners()}return e.prototype.getElement=function(){return this.iframeElement},e.prototype.render=function(){Object.assign(this.iframeElement.style,{zIndex:"20000000",border:"none",boxShadow:"0px 0px 40px 0px rgba(14, 14, 15, 0.24)",transformOrigin:"bottom right",transition:"transform 0.3s ease-out",display:this.config.isVisible?"block":"none"}),this.applyResponsiveStyles()},e.prototype.applyResponsiveStyles=function(){this.iframeElement&&(window.innerWidth<560?Object.assign(this.iframeElement.style,{width:"100vw",minWidth:"300px",right:"0",bottom:"0",height:"100vh",flexDirection:"column",flexGrow:"1",borderRadius:"0",top:"0",maxHeight:"100%",position:"fixed"}):Object.assign(this.iframeElement.style,{width:"26%",minWidth:"400px",height:"calc(100vh - 3rem - 10vh)",borderRadius:"1rem",top:"auto",maxHeight:"50rem",position:""}))},e.prototype.initialize=function(){var e=this;if(!this.isInitialized){var t=b().copilotUrl;this.iframeElement.src="".concat(t,"/chatbot-plugin?id=").concat(this.config.config.chatbotId),this.isInitialized=!0,this.iframeElement.addEventListener("load",(function(){var n,i,o=new URL(e.iframeElement.src).origin||t;null===(n=e.iframeElement.contentWindow)||void 0===n||n.postMessage({domain:null===(i=null===window||void 0===window?void 0:window.location)||void 0===i?void 0:i.hostname,name:"checkDomain"},o)}))}},e.prototype.setupEventListeners=function(){var e=this;window.addEventListener("resize",this.resizeHandler),this.iframeElement.addEventListener("error",(function(){D.trackError(new Error(K[B]({src:e.iframeElement.src,error:"Failed to load iframe"})),"ChatbotIframe",{errorCode:B,errorType:W,context:{config:e.config.config,iframeUrl:e.iframeElement.src,timestamp:Date.now()}})})),window.addEventListener("message",this.handleMessage)},e.prototype.updateVisibility=function(e){var t,n,i,o,r,a,s,l;if(this.config.isVisible=e,this.iframeElement.style.display=e?"block":"none",this.iframeElement.contentWindow&&e){var c=b().copilotUrl,d=new URL(this.iframeElement.src).origin||c;this.iframeElement.contentWindow.postMessage({domain:null===(t=null===window||void 0===window?void 0:window.location)||void 0===t?void 0:t.hostname,name:"openFrame"},d),this.hasRegistered||(this.iframeElement.contentWindow.postMessage({domain:null===(n=null===window||void 0===window?void 0:window.location)||void 0===n?void 0:n.hostname,action:"registerUserId",data:{userId:null===(i=this.config.config)||void 0===i?void 0:i.userId,token:null===(o=this.config.config)||void 0===o?void 0:o.token,userProfile:null===(r=this.config.config)||void 0===r?void 0:r.userProfile,isAnonymous:null===(a=this.config.config)||void 0===a?void 0:a.isAnonymous}},d),this.hasRegistered=!0),null===(l=(s=this.config).onEvent)||void 0===l||l.call(s,{type:m.CHATBOT_OPENED,timestamp:Date.now()}),this.config.onInternalEvent(m.CHATBOT_OPENED)}},e.prototype.update=function(e){var t=this.config.isVisible;if(this.config=c(c({},this.config),e),t!==this.config.isVisible&&this.updateVisibility(this.config.isVisible),this.iframeElement.contentWindow&&this.config.isVisible){var n=b().copilotUrl;this.iframeElement.contentWindow.postMessage({action:"updateUserProfile",user_profile:this.config.config.userProfile},n)}},e.prototype.destroy=function(){window.removeEventListener("resize",this.resizeHandler),window.removeEventListener("message",this.handleMessage),this.iframeElement&&this.iframeElement.parentNode&&this.iframeElement.parentNode.removeChild(this.iframeElement)},e}(),le=function(){function e(){this.resizeObserver=null,this.containerElement=document.createElement("div"),this.handleResizeFunction=this.handleResize.bind(this),this.render(),this.mount(),this.setupResizeListener()}return e.prototype.render=function(){this.applyStyles(),this.containerElement.className="robylon-chatbot-container"},e.prototype.applyStyles=function(){var e=(null===window||void 0===window?void 0:window.innerWidth)<560;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 t={position:"fixed",zIndex:"1000",display:"flex",flexDirection:"column",alignItems:"flex-end"},n=c(c({},t),{bottom:"20px",right:"20px"}),i=c(c({},t),{top:"0",right:"20px",alignItems:"center"});Object.assign(this.containerElement.style,e?i:n)},e.prototype.handleResize=function(){this.applyStyles()},e.prototype.setupResizeListener=function(){"undefined"!=typeof ResizeObserver?(this.resizeObserver=new ResizeObserver(this.handleResizeFunction),this.resizeObserver.observe(document.body)):window.addEventListener("resize",this.handleResizeFunction)},e.prototype.mount=function(){document.body.appendChild(this.containerElement)},e.prototype.getElement=function(){return this.containerElement},e.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)},e}(),ce=function(e,t,n){return d(void 0,void 0,void 0,(function(){var i,o,r,a,s,l,c,d;return u(this,(function(u){switch(u.label){case 0:return u.trys.push([0,5,,6]),i=b().apiUrl,o="".concat(i,"/chat/chatbot/get/"),p.log("endpointUrl",o),r={client_user_id:t||null,org_id:e,token:n||void 0,extra_info:{}},[4,fetch(o,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})];case 1:return(a=u.sent()).ok?[3,3]:[4,a.text()];case 2:throw s=u.sent(),new Error(K[z](a.status,s));case 3:return[4,a.json()];case 4:if(l=u.sent(),!(null===(d=null==l?void 0:l.user)||void 0===d?void 0:d.org_info))throw new Error(K[M](["user","org_info"]));return[2,l];case 5:throw c=u.sent(),D.trackError(c instanceof Error?c:new Error(K[H]({error:String(c)})),"fetchChatbotConfig",{errorCode:c instanceof Error&&c.message.includes("API Request Failed")?z:H,errorType:P,context:{apiKey:e,userId:t,timestamp:Date.now()}}),c;case 6:return[2]}}))}))},de=function(e){return d(void 0,void 0,void 0,(function(){var t,n,i,o,r,a,s,l,d,f,p,h,m,v;return u(this,(function(u){switch(u.label){case 0:return t=function(e){return{api_key:String(e.api_key||""),user_id:e.user_id?String(e.user_id):null,user_token:e.user_token?String(e.user_token):void 0,user_profile:e.user_profile||{}}}(e),n=t.user_id||void 0,i=!1,n||(n=Q("rblyn_anon")||G(),q("rblyn_anon",n,365),i=!0),[4,ce(t.api_key,n,t.user_token)];case 1:return o=u.sent(),r=T(),g=t.user_profile,b=["email","name","mobile","platform","OS","browser","sdk_version","device","screen_size","is_test_user"],a=g?Object.fromEntries(Object.entries(g).filter((function(e){var t=e[0];return b.includes(t)})).map((function(e){var t=e[0],n=e[1];return"boolean"==typeof n||"number"==typeof n?[t,n]:[t,String(n)]}))):{},s=c(c({},r),a),[2,{chatbotId:t.api_key,userId:n,token:t.user_token,isAnonymous:i,domain:"",brand_colour:(null===(d=null===(l=o.user.org_info.brand_config)||void 0===l?void 0:l.colors)||void 0===d?void 0:d.brand_color)||"",image_url:(null===(p=null===(f=o.user.org_info)||void 0===f?void 0:f.brand_config)||void 0===p?void 0:p.launcher_logo_url)||"",userProfile:s,chat_interface_config:{chat_bubble_prompts:[],display_name:(null===(h=o.user.org_info.brand_config)||void 0===h?void 0:h.display_name)||"",welcome_message:(null===(m=o.user.org_info.brand_config)||void 0===m?void 0:m.welcome_message)||"Hey! What can we help you with today?",redirect_url:(null===(v=o.user.org_info.brand_config)||void 0===v?void 0:v.redirect_url)||""}}]}var g,b}))}))},ue=function(e){e.api_key,e.user_profile;var t=e.onEvent;e.chatbotConfig;return{emit:function(e,n){var i={type:e,timestamp:Date.now(),data:n};null==t||t(i)},onInternalEvent:function(e,t){}}},fe=function(){function e(e){var t,n,i,o,r=this;if(this.container=null,this.floatingButton=null,this.iframe=null,this.isDestroyed=!1,this.handleStateChange=function(e){if(!r.isDestroyed){var t=e.isInitialized,n=e.error,i=e.chatbotConfig,o=e.isIframeVisible;if(!n&&i&&t){if(r.eventEmitter=ue({api_key:r.config.api_key,user_profile:r.config.user_profile,onEvent:r.config.onEvent,chatbotConfig:{isAnonymous:i.isAnonymous,userId:i.userId}}),r.container||(r.container=new le),r.iframe)r.iframe.update({config:i,isVisible:o});else if(r.iframe=new se({config:i,isVisible:o,onClose:r.handleClose,onEvent:r.config.onEvent,onInternalEvent:r.eventEmitter.onInternalEvent}),r.iframe.getElement&&"function"==typeof r.iframe.getElement){var a=r.iframe.getElement();a&&r.container&&r.container.getElement().prepend(a)}if(r.floatingButton)r.floatingButton.update({config:i,isIframeVisible:o});else if(r.floatingButton=new ae({config:i,toggleIframe:r.toggleIframe,isIframeVisible:o,onEvent:r.config.onEvent,onInternalEvent:r.eventEmitter.onInternalEvent}),r.floatingButton.getElement&&"function"==typeof r.floatingButton.getElement){var s=r.floatingButton.getElement();s&&r.container&&r.container.getElement().appendChild(s)}}}},this.toggleIframe=function(){var e=r.stateManager.getState();r.stateManager.toggleIframeVisibility(),r.eventEmitter.emit(e.isIframeVisible?m.CHATBOT_CLOSED:m.CHATBOT_BUTTON_CLICKED)},this.handleClose=function(){r.stateManager.closeIframe(),r.eventEmitter.emit(m.CHATBOT_CLOSED)},this.config=e,!e.api_key)throw D.trackError(new Error(K[S](e.api_key)),"RobylonChatbot",{errorCode:S,errorType:j,context:{timestamp:Date.now()}}),new Error("API key is required");try{D.initialize(e.api_key,e.user_id)}catch(e){D.trackError(e instanceof Error?e:new Error(String(e)),"RobylonChatbot",{errorCode:N,errorType:j,context:{timestamp:Date.now()}})}this.stateManager=(t={api_key:e.api_key,user_id:e.user_id,user_token:e.user_token,user_profile:e.user_profile},n={isInitialized:!1,isInitializing:!1,error:null,chatbotConfig:null,isIframeVisible:!1},i=[],{getState:function(){return n},initialize:function(){return d(void 0,void 0,void 0,(function(){var e,n,i;return u(this,(function(r){switch(r.label){case 0:if(!t.api_key)return D.trackError(new Error(K[S](t.api_key)),"ChatbotStateManager",{errorCode:S,errorType:j,context:{timestamp:Date.now()}}),[2];o({isInitializing:!0}),r.label=1;case 1:return r.trys.push([1,4,5,6]),[4,de(t)];case 2:return e=r.sent(),[4,new Promise((function(t,n){ee(e,(function(){o({isInitialized:!0,chatbotConfig:e}),t()}),(function(e){n(e)}))}))];case 3:return r.sent(),[3,6];case 4:return n=r.sent(),i=n instanceof Error?n.message:"Failed to initialize chatbot",o({error:i}),D.trackError(n instanceof Error?n:new Error(i),"ChatbotStateManager",{errorCode:L,errorType:j,context:{timestamp:Date.now()}}),[3,6];case 5:return o({isInitializing:!1}),[7];case 6:return[2]}}))}))},toggleIframeVisibility:function(){o({isIframeVisible:!n.isIframeVisible})},closeIframe:function(){o({isIframeVisible:!1})},updateState:o=function(e){n=c(c({},n),e),i.forEach((function(e){return e(n)}))},subscribe:function(e){return i.push(e),function(){var t=i.indexOf(e);t>-1&&i.splice(t,1)}},unsubscribe:function(e){var t=i.indexOf(e);t>-1&&i.splice(t,1)}}),this.eventEmitter=ue({api_key:e.api_key,user_profile:e.user_profile,onEvent:e.onEvent,chatbotConfig:null}),this.initialize()}return e.prototype.initialize=function(){return d(this,void 0,void 0,(function(){var e;return u(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 e=t.sent(),D.trackError(e instanceof Error?e:new Error(String(e)),"RobylonChatbot.initialize",{errorCode:L,errorType:j,context:{timestamp:Date.now()}}),[3,3];case 3:return[2]}}))}))},e.prototype.show=function(){this.stateManager.getState().isIframeVisible||(this.stateManager.toggleIframeVisibility(),this.eventEmitter.emit(m.CHATBOT_BUTTON_CLICKED))},e.prototype.hide=function(){this.stateManager.getState().isIframeVisible&&(this.stateManager.closeIframe(),this.eventEmitter.emit(m.CHATBOT_CLOSED))},e.prototype.toggle=function(){this.toggleIframe()},e.prototype.destroy=function(){this.isDestroyed=!0,this.floatingButton&&(this.floatingButton.destroy(),this.floatingButton=null),this.iframe&&(this.iframe.destroy(),this.iframe=null),this.container&&(this.container.destroy(),this.container=null),this.stateManager.unsubscribe(this.handleStateChange)},e.prototype.getState=function(){return this.stateManager.getState().isInitialized?"initialized":"uninitialized"},e}();function pe(e){return new fe(e)}"undefined"!=typeof window&&function(){if("undefined"!=typeof window){var e=window.RobylonChatbot;if(e&&Array.isArray(e.q)){var t=null;e.q.forEach((function(e){var n=e[0];if("init"===n){var i=e[1]||{};t=pe(i)}else t&&"function"==typeof t[n]&&t[n]()})),window.RobylonChatbot=function(e){for(var n,i=[],o=1;o<arguments.length;o++)i[o-1]=arguments[o];return"init"===e?t=pe(i[0]||{}):t&&"function"==typeof t[e]?(n=t)[e].apply(n,i):void 0},window.RobylonChatbot.getState=function(){return"initialized"}}}}();var he={create:pe,getState:function(){return"initialized"}};export{oe as Chatbot,he as RobylonChatbot,re as useChatbot};
2
2
  //# sourceMappingURL=index.js.map