@robylon/react-native-sdk 2.1.4 → 2.2.0

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.
@@ -19,7 +19,18 @@
19
19
  "Bash(git rm *)",
20
20
  "Bash(git check-ignore *)",
21
21
  "Bash(node -e \"console.log\\('postinstall:', require\\('./package.json'\\).scripts.postinstall\\)\")",
22
- "Bash(node scripts/setup-git-hooks.js)"
22
+ "Bash(node scripts/setup-git-hooks.js)",
23
+ "Bash(echo \"TSC:$?\")",
24
+ "Bash(node -e \"const s=require\\('./package.json'\\).scripts;['publish:production','publish:staging','publish:hotfix','build:production'].forEach\\(k=>console.log\\(k+':\\\\n '+s[k]+'\\\\n'\\)\\)\")",
25
+ "Bash(node scripts/stamp-readme-versions.js --dry-run)",
26
+ "Bash(node scripts/stamp-readme-versions.js --check)",
27
+ "Bash(echo \"check exit: $?\")",
28
+ "Bash(node -e \"const s=require\\('./package.json'\\).scripts;['stamp:docs','check:docs','publish:production','publish:hotfix','publish:staging'].forEach\\(k=>console.log\\(k+':\\\\n '+s[k]+'\\\\n'\\)\\)\")",
29
+ "Bash(node -e \"const p=require\\('./package.json'\\);console.log\\('version:',p.version,'| postinstall:',p.scripts.postinstall\\)\")",
30
+ "Bash(node -p \"require\\('./package.json'\\).version\")",
31
+ "Bash(echo \"package.json: $\\(node -p \"require\\('./package.json'\\).version\"\\)\")",
32
+ "Bash(npm view *)",
33
+ "Bash(echo \"npm latest: $\\(npm view @robylon/react-native-sdk version 2>/dev/null\\)\")"
23
34
  ]
24
35
  }
25
36
  }
package/README.md CHANGED
@@ -114,6 +114,7 @@ export default App;
114
114
  | `user_profile` | { email?: string; name?: string; mobile?: string; is_test_user?: boolean; [key:string \| number]: any } | User profile information |
115
115
  | `session_id` | string | Session to resume. Read when the chat initializes — see [Session Management](#session-management) |
116
116
  | `session_context` | Record<string, any> | Opaque value echoed back as the second argument to `onSession`. Never read by the SDK |
117
+ | `discrete` | boolean | Defaults to `false`. When `true`, signals to Robylon that this chatbot should be treated as discrete. Read at initialization |
117
118
  | `onSession` | (session_id: string, session_context?: Record<string, any>) => void | Called whenever the active session id changes |
118
119
  | `onEvent` | ChatbotEventHandler | Callback for chatbot events |
119
120
  | `onOpen` | () => void | Callback when chatbot opens |
@@ -196,6 +197,8 @@ const App = () => {
196
197
 
197
198
  ## Session Management
198
199
 
200
+ > **Requires SDK ≥ 2.2.0**
201
+
199
202
  Each conversation has a session id. The SDK hands it to you as it changes, and
200
203
  accepts one back so a returning user can continue an earlier conversation.
201
204
 
@@ -370,8 +373,6 @@ export async function clearSessions(): Promise<void> {
370
373
  export default function OrdersScreen({ orders, userId }) {
371
374
  const chatbotRef = useRef<ChatbotRef>(null);
372
375
  const [activeOrderId, setActiveOrderId] = useState<string | undefined>();
373
- const [readyOrderId, setReadyOrderId] = useState<string | undefined>();
374
- const pendingOpenRef = useRef<string | undefined>(undefined);
375
376
 
376
377
  const activeOrder = useMemo(
377
378
  () => orders.find((o) => o.id === activeOrderId),
@@ -385,20 +386,11 @@ export default function OrdersScreen({ orders, userId }) {
385
386
  return;
386
387
  }
387
388
  // A different order: remount so its stored session_id is read at init
388
- pendingOpenRef.current = order.id;
389
389
  setActiveOrderId(order.id);
390
390
  },
391
391
  [activeOrderId],
392
392
  );
393
393
 
394
- // Open from an effect, not from inside onReady — see below
395
- useEffect(() => {
396
- if (readyOrderId && pendingOpenRef.current === readyOrderId) {
397
- pendingOpenRef.current = undefined;
398
- chatbotRef.current?.open();
399
- }
400
- }, [readyOrderId]);
401
-
402
394
  return (
403
395
  <View style={{ flex: 1 }}>
404
396
  <FlatList
@@ -426,7 +418,7 @@ export default function OrdersScreen({ orders, userId }) {
426
418
  order_status: activeOrder.status,
427
419
  }}
428
420
  onSession={persistSession}
429
- onReady={() => setReadyOrderId(activeOrder.id)}
421
+ onReady={() => chatbotRef.current?.open()}
430
422
  />
431
423
  ) : null}
432
424
  </View>
@@ -435,33 +427,23 @@ export default function OrdersScreen({ orders, userId }) {
435
427
  }
436
428
  ```
437
429
 
438
- #### Four things that look removable but aren't
430
+ #### Implementation notes
439
431
 
440
432
  **`key={activeOrder.id}` is what makes resume work.** `session_id` is read once,
441
- at initialization. Changing it while the chat is mounted does nothing.
442
- Remounting through a changing `key` forces a fresh initialization that picks up
443
- the new order's stored session. Without it, every order after the first reuses
444
- the first order's conversation.
445
-
446
- **Open from an effect, not from inside `onReady`.** Calling
447
- `chatbotRef.current?.open()` directly inside `onReady` does nothing. `onReady`
448
- fires in the same pass that the SDK marks itself initialized, and `open()` is
449
- gated on that flag through a ref handle that is only rebuilt on the following
450
- render so the handle in hand is still the un-initialized one. The symptom if
451
- you skip this: the first tap appears to do nothing, and the second tap works.
452
-
453
- **The `absoluteFill` wrapper.** The SDK draws its chat window inside whatever
454
- box the host gives the component, not against the screen. Rendered as an
455
- ordinary child of a flex column it can collapse to zero height — the chat
456
- "opens" and the conversation genuinely starts, but nothing is visible.
457
- `pointerEvents="box-none"` on the wrapper keeps the order list tappable while
458
- the chat is closed.
459
-
460
- > Requires SDK 2.2.0 or newer. Earlier versions left the SDK's own root view
461
- > hit-testable while closed, so it swallowed taps meant for your UI and
462
- > `box-none` on your wrapper was not enough to prevent it. If you are pinned to
463
- > an older version, gate the wrapper with
464
- > `pointerEvents={isChatOpen ? "auto" : "none"}` driven by `onOpen` / `onClose`.
433
+ at initialization, so changing it on a mounted chat has no effect. A changing
434
+ `key` remounts the component, which is what triggers the fresh initialization
435
+ that picks up the new order's stored session. Without it, every order after the
436
+ first would continue the first order's conversation.
437
+
438
+ **Opening from `onReady`.** The component only mounts once an order has been
439
+ tapped, so `onReady` is the natural place to open the chat. Calling `open()`
440
+ again while the chat is already open has no effect.
441
+
442
+ **The `absoluteFill` wrapper.** The chat renders within the bounds of its
443
+ container, so give `<Chatbot>` a full-screen container of its own. As an
444
+ ordinary child of a flex column it may be left with no room to draw into. Set
445
+ `pointerEvents="box-none"` on that container so the order list stays tappable
446
+ while the chat is closed.
465
447
 
466
448
  **`session_context` rather than a closure.** `persistSession` lives outside the
467
449
  component, so it cannot see which order is active. If your handler is defined
@@ -476,13 +458,10 @@ all — `onSession={(sessionId) => save(order.id, sessionId)}` carries it.
476
458
  - [ ] `<Chatbot>` wrapped in a full-screen container
477
459
  - [ ] Verified: open a chat, close it, then tap another order's button — the
478
460
  screen must still respond
479
- - [ ] `open()` called from an effect after ready, not inside `onReady`
461
+ - [ ] `open()` called from `onReady`
480
462
  - [ ] `session_context` carries the order id, and `onSession` reads it
481
463
  - [ ] Stored sessions cleared when the signed-in user changes
482
464
 
483
- The full worked example, including styles and the complete behaviour matrix, is
484
- in [`usage/ecommerce-order-session-example.md`](usage/ecommerce-order-session-example.md).
485
-
486
465
  ## Advanced Usage Examples
487
466
 
488
467
  ### Custom UI Integration
@@ -1,12 +1,12 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.WidgetPositionEnums=exports.LauncherType=exports.ChatbotInterfaceType=void 0;var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _reactNativeWebview=require("react-native-webview");var _FloatingButton=_interopRequireDefault(require("./FloatingButton"));var _constants=require("./constants");var _systemInfo=require("./utils/systemInfo");var _useChatbotEvents2=require("./hooks/useChatbotEvents");var _events=require("./types/events");var _logger=require("./utils/logger");var _debugConfig=require("./utils/debugConfig");var _DebugButton=_interopRequireDefault(require("./components/DebugButton"));var _ErrorBoundary=require("./components/ErrorBoundary");var _errorConstants=require("./constants/errorConstants");var _ErrorTrackingService=require("./services/ErrorTrackingService");var _cookieUtils=require("./utils/cookieUtils");var _webViewStorage=require("./utils/webViewStorage");var _animations=require("./utils/animations");var _fileDownload=require("./utils/fileDownload");var _session=require("./utils/session");var _jsxRuntime=require("react/jsx-runtime");var _this=this,_jsxFileName="/Users/jobinabraham/Developer/professional/Mobile sdks/robylon-react-native-sdk/src/Chatbotsdk.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var ChatbotInterfaceType=exports.ChatbotInterfaceType=function(ChatbotInterfaceType){ChatbotInterfaceType["WIDGET"]="WIDGET";ChatbotInterfaceType["POPOVER"]="POPOVER";ChatbotInterfaceType["EMBED"]="EMBED";return ChatbotInterfaceType;}({});var WidgetPositionEnums=exports.WidgetPositionEnums=function(WidgetPositionEnums){WidgetPositionEnums["RIGHT"]="Right";WidgetPositionEnums["LEFT"]="Left";return WidgetPositionEnums;}({});var LauncherType=exports.LauncherType=function(LauncherType){LauncherType["TEXT"]="TEXT";LauncherType["IMAGE"]="IMAGE";LauncherType["TEXTUAL_IMAGE"]="TEXTUAL_IMAGE";return LauncherType;}({});var Chatbot=(0,_react.forwardRef)(function(_ref,ref){var _chatbotConfig$interf,_chatbotConfig$interf2,_chatbotConfig$interf3,_chatbotConfig$interf4,_chatbotConfig$interf5;var api_key=_ref.api_key,user_id=_ref.user_id,user_token=_ref.user_token,_ref$show_floating_bu=_ref.show_floating_button,show_floating_button=_ref$show_floating_bu===void 0?true:_ref$show_floating_bu,onEvent=_ref.onEvent,onMessage=_ref.onMessage,_ref$isFullScreen=_ref.isFullScreen,isFullScreen=_ref$isFullScreen===void 0?true:_ref$isFullScreen,_ref$enableAnimation=_ref.enableAnimation,enableAnimation=_ref$enableAnimation===void 0?true:_ref$enableAnimation,externalOnOpen=_ref.onOpen,externalOnClose=_ref.onClose,onReady=_ref.onReady,user_profile=_ref.user_profile,session_id=_ref.session_id,session_context=_ref.session_context,onSession=_ref.onSession;var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isWebViewVisible=_useState2[0],setIsWebViewVisible=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),chatbotConfig=_useState4[0],setChatbotConfig=_useState4[1];var _useState5=(0,_react.useState)(true),_useState6=(0,_slicedToArray2.default)(_useState5,2),loading=_useState6[0],setLoading=_useState6[1];var _useState7=(0,_react.useState)(false),_useState8=(0,_slicedToArray2.default)(_useState7,2),isInitialized=_useState8[0],setIsInitialized=_useState8[1];var webViewRef=(0,_react.useRef)(null);var isFirstLoadRef=(0,_react.useRef)(true);var _useState9=(0,_react.useState)(false),_useState10=(0,_slicedToArray2.default)(_useState9,2),toastVisible=_useState10[0],setToastVisible=_useState10[1];var _useState11=(0,_react.useState)(""),_useState12=(0,_slicedToArray2.default)(_useState11,2),toastMessage=_useState12[0],setToastMessage=_useState12[1];var _useState13=(0,_react.useState)(),_useState14=(0,_slicedToArray2.default)(_useState13,2),effectiveUserId=_useState14[0],setEffectiveUserId=_useState14[1];var _useState15=(0,_react.useState)(false),_useState16=(0,_slicedToArray2.default)(_useState15,2),isStorageReady=_useState16[0],setIsStorageReady=_useState16[1];var pendingStorageOps=(0,_react.useRef)([]);var memoryCache=(0,_react.useRef)({});var _useState17=(0,_react.useState)({os:"",browser:""}),_useState18=(0,_slicedToArray2.default)(_useState17,2),systemInfo=_useState18[0],setSystemInfo=_useState18[1];var systemInfoRef=(0,_react.useRef)({os:"",browser:""});var sessionIdRef=(0,_react.useRef)(undefined);var onSessionRef=(0,_react.useRef)(onSession);var sessionContextRef=(0,_react.useRef)(session_context);var resumeSessionRef=(0,_react.useRef)(session_id);onSessionRef.current=onSession;sessionContextRef.current=session_context;resumeSessionRef.current=session_id;var animatedValues=(0,_react.useRef)({scale:new _reactNative.Animated.Value(1),translateY:new _reactNative.Animated.Value(0),opacity:new _reactNative.Animated.Value(1)}).current;var chatbotConfigForEvents=(0,_react.useMemo)(function(){return{userId:effectiveUserId,isAnonymous:!user_id&&user_id!==0};},[effectiveUserId,user_id]);var _useChatbotEvents=(0,_useChatbotEvents2.useChatbotEvents)({api_key:api_key,chatbotConfig:chatbotConfigForEvents!=null?chatbotConfigForEvents:{},user_profile:user_profile,onEvent:onEvent,systemInfo:systemInfo!=null?systemInfo:{os:"",browser:""}}),emitEvent=_useChatbotEvents.emitEvent,onInternalEvent=_useChatbotEvents.onInternalEvent;(0,_react.useImperativeHandle)(ref,function(){return{open:function open(){if(isInitialized){openWebView();}},close:function close(){if(isInitialized){closeWebView();}},toggle:function toggle(){if(isInitialized){if(isWebViewVisible){closeWebView();}else{openWebView();}}},isReady:function isReady(){return isInitialized;},getSessionId:function getSessionId(){return sessionIdRef.current;}};},[isInitialized,isWebViewVisible]);var emitSession=(0,_react.useCallback)(function(data){var sessionId=(0,_session.extractSessionId)(data);if(!sessionId||sessionId===sessionIdRef.current)return;sessionIdRef.current=sessionId;try{var _sessionContextRef$cu;onSessionRef.current==null?void 0:onSessionRef.current(sessionId,(_sessionContextRef$cu=sessionContextRef.current)!=null?_sessionContextRef$cu:{});}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("onSession handler threw an error"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{source:_session.SESSION_UPDATED_MESSAGE_TYPE}});}},[]);var triggerAppInit=function triggerAppInit(){if(webViewRef.current){var _webViewRef$current;(_webViewRef$current=webViewRef.current)==null?void 0:_webViewRef$current.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());webViewRef.current.injectJavaScript(`
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.WidgetPositionEnums=exports.LauncherType=exports.ChatbotInterfaceType=void 0;var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _reactNativeWebview=require("react-native-webview");var _FloatingButton=_interopRequireDefault(require("./FloatingButton"));var _constants=require("./constants");var _systemInfo=require("./utils/systemInfo");var _useChatbotEvents2=require("./hooks/useChatbotEvents");var _events=require("./types/events");var _logger=require("./utils/logger");var _debugConfig=require("./utils/debugConfig");var _DebugButton=_interopRequireDefault(require("./components/DebugButton"));var _ErrorBoundary=require("./components/ErrorBoundary");var _errorConstants=require("./constants/errorConstants");var _ErrorTrackingService=require("./services/ErrorTrackingService");var _cookieUtils=require("./utils/cookieUtils");var _webViewStorage=require("./utils/webViewStorage");var _animations=require("./utils/animations");var _fileDownload=require("./utils/fileDownload");var _session=require("./utils/session");var _jsxRuntime=require("react/jsx-runtime");var _this=this,_jsxFileName="/Users/jobinabraham/Developer/professional/Mobile sdks/robylon-react-native-sdk/src/Chatbotsdk.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var ChatbotInterfaceType=exports.ChatbotInterfaceType=function(ChatbotInterfaceType){ChatbotInterfaceType["WIDGET"]="WIDGET";ChatbotInterfaceType["POPOVER"]="POPOVER";ChatbotInterfaceType["EMBED"]="EMBED";return ChatbotInterfaceType;}({});var WidgetPositionEnums=exports.WidgetPositionEnums=function(WidgetPositionEnums){WidgetPositionEnums["RIGHT"]="Right";WidgetPositionEnums["LEFT"]="Left";return WidgetPositionEnums;}({});var LauncherType=exports.LauncherType=function(LauncherType){LauncherType["TEXT"]="TEXT";LauncherType["IMAGE"]="IMAGE";LauncherType["TEXTUAL_IMAGE"]="TEXTUAL_IMAGE";return LauncherType;}({});var Chatbot=(0,_react.forwardRef)(function(_ref,ref){var _chatbotConfig$interf,_chatbotConfig$interf2,_chatbotConfig$interf3,_chatbotConfig$interf4,_chatbotConfig$interf5;var api_key=_ref.api_key,user_id=_ref.user_id,user_token=_ref.user_token,_ref$show_floating_bu=_ref.show_floating_button,show_floating_button=_ref$show_floating_bu===void 0?true:_ref$show_floating_bu,onEvent=_ref.onEvent,onMessage=_ref.onMessage,_ref$isFullScreen=_ref.isFullScreen,isFullScreen=_ref$isFullScreen===void 0?true:_ref$isFullScreen,_ref$enableAnimation=_ref.enableAnimation,enableAnimation=_ref$enableAnimation===void 0?true:_ref$enableAnimation,externalOnOpen=_ref.onOpen,externalOnClose=_ref.onClose,onReady=_ref.onReady,user_profile=_ref.user_profile,session_id=_ref.session_id,session_context=_ref.session_context,_ref$discrete=_ref.discrete,discrete=_ref$discrete===void 0?false:_ref$discrete,onSession=_ref.onSession;var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isWebViewVisible=_useState2[0],setIsWebViewVisible=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),chatbotConfig=_useState4[0],setChatbotConfig=_useState4[1];var _useState5=(0,_react.useState)(true),_useState6=(0,_slicedToArray2.default)(_useState5,2),loading=_useState6[0],setLoading=_useState6[1];var _useState7=(0,_react.useState)(false),_useState8=(0,_slicedToArray2.default)(_useState7,2),isInitialized=_useState8[0],setIsInitialized=_useState8[1];var webViewRef=(0,_react.useRef)(null);var isFirstLoadRef=(0,_react.useRef)(true);var _useState9=(0,_react.useState)(false),_useState10=(0,_slicedToArray2.default)(_useState9,2),toastVisible=_useState10[0],setToastVisible=_useState10[1];var _useState11=(0,_react.useState)(""),_useState12=(0,_slicedToArray2.default)(_useState11,2),toastMessage=_useState12[0],setToastMessage=_useState12[1];var _useState13=(0,_react.useState)(),_useState14=(0,_slicedToArray2.default)(_useState13,2),effectiveUserId=_useState14[0],setEffectiveUserId=_useState14[1];var _useState15=(0,_react.useState)(false),_useState16=(0,_slicedToArray2.default)(_useState15,2),isStorageReady=_useState16[0],setIsStorageReady=_useState16[1];var pendingStorageOps=(0,_react.useRef)([]);var memoryCache=(0,_react.useRef)({});var _useState17=(0,_react.useState)({os:"",browser:""}),_useState18=(0,_slicedToArray2.default)(_useState17,2),systemInfo=_useState18[0],setSystemInfo=_useState18[1];var systemInfoRef=(0,_react.useRef)({os:"",browser:""});var isInitializedRef=(0,_react.useRef)(false);var isWebViewVisibleRef=(0,_react.useRef)(false);var sessionIdRef=(0,_react.useRef)(undefined);var onSessionRef=(0,_react.useRef)(onSession);var sessionContextRef=(0,_react.useRef)(session_context);var resumeSessionRef=(0,_react.useRef)(session_id);var discreteRef=(0,_react.useRef)(discrete);onSessionRef.current=onSession;sessionContextRef.current=session_context;resumeSessionRef.current=session_id;discreteRef.current=discrete;var animatedValues=(0,_react.useRef)({scale:new _reactNative.Animated.Value(1),translateY:new _reactNative.Animated.Value(0),opacity:new _reactNative.Animated.Value(1)}).current;var chatbotConfigForEvents=(0,_react.useMemo)(function(){return{userId:effectiveUserId,isAnonymous:!user_id&&user_id!==0};},[effectiveUserId,user_id]);var _useChatbotEvents=(0,_useChatbotEvents2.useChatbotEvents)({api_key:api_key,chatbotConfig:chatbotConfigForEvents!=null?chatbotConfigForEvents:{},user_profile:user_profile,onEvent:onEvent,systemInfo:systemInfo!=null?systemInfo:{os:"",browser:""}}),emitEvent=_useChatbotEvents.emitEvent,onInternalEvent=_useChatbotEvents.onInternalEvent;(0,_react.useImperativeHandle)(ref,function(){return{open:function open(){if(isInitializedRef.current){openWebView();}},close:function close(){if(isInitializedRef.current){closeWebView();}},toggle:function toggle(){if(isInitializedRef.current){if(isWebViewVisibleRef.current){closeWebView();}else{openWebView();}}},isReady:function isReady(){return isInitializedRef.current;},getSessionId:function getSessionId(){return sessionIdRef.current;}};},[isInitialized,isWebViewVisible]);var emitSession=(0,_react.useCallback)(function(data){var sessionId=(0,_session.extractSessionId)(data);if(!sessionId||sessionId===sessionIdRef.current)return;sessionIdRef.current=sessionId;try{var _sessionContextRef$cu;onSessionRef.current==null?void 0:onSessionRef.current(sessionId,(_sessionContextRef$cu=sessionContextRef.current)!=null?_sessionContextRef$cu:{});}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("onSession handler threw an error"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{source:_session.SESSION_UPDATED_MESSAGE_TYPE}});}},[]);var triggerAppInit=function triggerAppInit(){if(webViewRef.current){var _webViewRef$current;(_webViewRef$current=webViewRef.current)==null?void 0:_webViewRef$current.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());webViewRef.current.injectJavaScript(`
2
2
  // Trigger APP_READY equivalent
3
3
  window.ReactNativeWebView.postMessage(JSON.stringify({ type: 'APP_READY' }));
4
4
  true;
5
- `);}};var executeStorageOp=(0,_react.useCallback)(function(operation){if(isStorageReady){operation();}else{pendingStorageOps.current.push(operation);}},[isStorageReady]);var handleMessage=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(event){var _webViewRef$current2;var data=event.nativeEvent.data;try{var parsedData=JSON.parse(data);if(Object.values(_webViewStorage.StorageMessageType).includes(parsedData.type)){var storageMessage=parsedData;switch(storageMessage.type){case _webViewStorage.StorageMessageType.STORAGE_READY:setIsStorageReady(true);pendingStorageOps.current.forEach(function(op){return op();});pendingStorageOps.current=[];(_webViewRef$current2=webViewRef.current)==null?void 0:_webViewRef$current2.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));break;case _webViewStorage.StorageMessageType.STORAGE_RESPONSE:if(storageMessage.key&&storageMessage.value){memoryCache.current[storageMessage.key]=storageMessage.value;if(storageMessage.key==="rblyn_anon"){setEffectiveUserId(storageMessage.value);}}break;case _webViewStorage.StorageMessageType.STORAGE_ERROR:_logger.logger.error("WebView storage error:",storageMessage.error);break;}return;}if(__DEV__){if((parsedData==null?void 0:parsedData.type)==="CONSOLE"){console.log(`WebView ${parsedData==null?void 0:parsedData.level}:`,parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="ERROR"){console.error("WebView Error:",parsedData==null?void 0:parsedData.data);return;}}if((parsedData==null?void 0:parsedData.type)==="SYSTEM_INFO"){var _parsedData$data;setSystemInfo((_parsedData$data=parsedData==null?void 0:parsedData.data)!=null?_parsedData$data:{os:"",browser:""});systemInfoRef.current=parsedData==null?void 0:parsedData.data;return;}if((parsedData==null?void 0:parsedData.type)===_session.SESSION_UPDATED_MESSAGE_TYPE){emitSession(parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="APP_READY"){emitEvent(_events.ChatbotEventType.CHATBOT_APP_READY);if(webViewRef.current&&isWebViewVisible){var _webViewRef$current3,_webViewRef$current4;(_webViewRef$current3=webViewRef.current)==null?void 0:_webViewRef$current3.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());var messageData={name:"registerUserId",action:"registerUserId",data:(0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)({userId:effectiveUserId},_session.RESUME_SESSION_KEY,resumeSessionRef.current||undefined),"token",user_token?`${user_token}`:undefined),"userProfile",Object.assign({},user_profile,(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current),{__INT_SYS_INFO__:Object.assign({},(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current))}))};_logger.logger.debug("messageData====>",JSON.stringify(Object.assign({},messageData,{data:Object.assign({},messageData.data,(0,_defineProperty2.default)({},_session.RESUME_SESSION_KEY,resumeSessionRef.current?"[redacted]":undefined))})));(_webViewRef$current4=webViewRef.current)==null?void 0:_webViewRef$current4.injectJavaScript(`
5
+ `);}};var executeStorageOp=(0,_react.useCallback)(function(operation){if(isStorageReady){operation();}else{pendingStorageOps.current.push(operation);}},[isStorageReady]);var handleMessage=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(event){var _webViewRef$current2;var data=event.nativeEvent.data;try{var parsedData=JSON.parse(data);if(Object.values(_webViewStorage.StorageMessageType).includes(parsedData.type)){var storageMessage=parsedData;switch(storageMessage.type){case _webViewStorage.StorageMessageType.STORAGE_READY:setIsStorageReady(true);pendingStorageOps.current.forEach(function(op){return op();});pendingStorageOps.current=[];(_webViewRef$current2=webViewRef.current)==null?void 0:_webViewRef$current2.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));break;case _webViewStorage.StorageMessageType.STORAGE_RESPONSE:if(storageMessage.key&&storageMessage.value){memoryCache.current[storageMessage.key]=storageMessage.value;if(storageMessage.key==="rblyn_anon"){setEffectiveUserId(storageMessage.value);}}break;case _webViewStorage.StorageMessageType.STORAGE_ERROR:_logger.logger.error("WebView storage error:",storageMessage.error);break;}return;}if(__DEV__){if((parsedData==null?void 0:parsedData.type)==="CONSOLE"){console.log(`WebView ${parsedData==null?void 0:parsedData.level}:`,parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="ERROR"){console.error("WebView Error:",parsedData==null?void 0:parsedData.data);return;}}if((parsedData==null?void 0:parsedData.type)==="SYSTEM_INFO"){var _parsedData$data;setSystemInfo((_parsedData$data=parsedData==null?void 0:parsedData.data)!=null?_parsedData$data:{os:"",browser:""});systemInfoRef.current=parsedData==null?void 0:parsedData.data;return;}if((parsedData==null?void 0:parsedData.type)===_session.SESSION_UPDATED_MESSAGE_TYPE){emitSession(parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="APP_READY"){emitEvent(_events.ChatbotEventType.CHATBOT_APP_READY);if(webViewRef.current&&isWebViewVisible){var _webViewRef$current3,_webViewRef$current4;(_webViewRef$current3=webViewRef.current)==null?void 0:_webViewRef$current3.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());var messageData={name:"registerUserId",action:"registerUserId",data:(0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)({userId:effectiveUserId},_session.RESUME_SESSION_KEY,resumeSessionRef.current||undefined),"discrete",discreteRef.current?true:undefined),"token",user_token?`${user_token}`:undefined),"userProfile",Object.assign({},user_profile,(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current),{__INT_SYS_INFO__:Object.assign({},(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current))}))};_logger.logger.debug("messageData====>",JSON.stringify(Object.assign({},messageData,{data:Object.assign({},messageData.data,(0,_defineProperty2.default)({},_session.RESUME_SESSION_KEY,resumeSessionRef.current?"[redacted]":undefined))})));(_webViewRef$current4=webViewRef.current)==null?void 0:_webViewRef$current4.injectJavaScript(`
6
6
  window.postMessage(${JSON.stringify({name:"openFrame",domain:"app-domain.com"})}, '*');
7
7
  window.postMessage(${JSON.stringify(messageData)}, '*');
8
8
  `);}}switch(parsedData==null?void 0:parsedData.type){case"close_chatbot":closeWebView();break;case"download_file":if(parsedData!=null&&parsedData.data||parsedData!=null&&parsedData.url&&parsedData!=null&&parsedData.filename){var downloadData=(parsedData==null?void 0:parsedData.data)||{url:parsedData==null?void 0:parsedData.url,filename:parsedData==null?void 0:parsedData.filename,inPlace:parsedData==null?void 0:parsedData.inPlace};(0,_fileDownload.handleDownloadRequest)(downloadData);}break;case"CHATBOT_LOADED":emitEvent(_events.ChatbotEventType.CHATBOT_LOADED,parsedData==null?void 0:parsedData.data);break;case"CHAT_INITIALIZED":emitEvent(_events.ChatbotEventType.CHAT_INITIALIZED,parsedData==null?void 0:parsedData.data);break;case"SESSION_REFRESHED":emitEvent(_events.ChatbotEventType.SESSION_REFRESHED,parsedData==null?void 0:parsedData.data);break;case"CHAT_INITIALIZATION_FAILED":emitEvent(_events.ChatbotEventType.CHAT_INITIALIZATION_FAILED,parsedData==null?void 0:parsedData.data);break;case"REQUEST_MIC_PERMISSION":var granted=yield requestAndroidMicPermission();if(webViewRef.current&&isWebViewVisible){var _webViewRef$current5;var _messageData={name:"requestMicPermission",action:"requestMicPermission",type:granted?"MIC_PERMISSION_GRANTED":"MIC_PERMISSION_DENIED"};(_webViewRef$current5=webViewRef.current)==null?void 0:_webViewRef$current5.injectJavaScript(`
9
- window.postMessage(${JSON.stringify(_messageData)}, '*');`);}break;default:if(onMessage)onMessage(parsedData!=null?parsedData:{});}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to parse WebView message"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{messageData:data}});}});return function(_x){return _ref2.apply(this,arguments);};}(),[emitEvent,emitSession,isWebViewVisible,onMessage,systemInfo,effectiveUserId,user_token,user_profile]);(0,_react.useEffect)(function(){var initializeUserId=function(){var _ref3=(0,_asyncToGenerator2.default)(function*(){var userId=user_id?String(user_id):undefined;if(!userId){userId=memoryCache.current["rblyn_anon"];if(!userId){userId=(0,_cookieUtils.generateUUID)();executeStorageOp(function(){var _webViewRef$current6;(_webViewRef$current6=webViewRef.current)==null?void 0:_webViewRef$current6.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.SET_STORAGE,"rblyn_anon",userId));});}}setEffectiveUserId(userId);});return function initializeUserId(){return _ref3.apply(this,arguments);};}();initializeUserId();},[user_id,executeStorageOp]);(0,_react.useEffect)(function(){if(webViewRef.current){webViewRef.current.injectJavaScript((0,_webViewStorage.getStorageScript)());executeStorageOp(function(){var _webViewRef$current7;(_webViewRef$current7=webViewRef.current)==null?void 0:_webViewRef$current7.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));});}},[]);(0,_react.useEffect)(function(){var fetchChatbotConfig=function(){var _ref4=(0,_asyncToGenerator2.default)(function*(){try{var _data$user;var endpointUrl=`${_constants.API_URL}/chat/chatbot/get/`;var payload={client_user_id:effectiveUserId,resumable_session_id:resumeSessionRef.current||undefined,org_id:api_key,token:user_token,extra_info:{}};var response=yield fetch(endpointUrl,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(payload)});if(!response.ok){throw new Error("Failed to fetch chatbot configuration");}var data=yield response.json();var orgInfo=data==null?void 0:(_data$user=data.user)==null?void 0:_data$user.org_info;if(orgInfo){var _orgInfo$brand_config,_orgInfo$brand_config2,_orgInfo$brand_config3,_orgInfo$brand_config4,_orgInfo$brand_config5,_orgInfo$brand_config6,_orgInfo$brand_config7,_orgInfo$brand_config8,_orgInfo$brand_config9,_orgInfo$brand_config10,_orgInfo$brand_config11,_orgInfo$brand_config12,_orgInfo$brand_config13,_orgInfo$brand_config14,_orgInfo$brand_config15,_orgInfo$brand_config16,_orgInfo$brand_config17,_orgInfo$brand_config18,_orgInfo$brand_config19,_orgInfo$brand_config20,_orgInfo$brand_config21,_orgInfo$brand_config22;var config={brand_colour:((_orgInfo$brand_config=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config2=_orgInfo$brand_config.colors)==null?void 0:_orgInfo$brand_config2.brand_color)||"",image_url:((_orgInfo$brand_config3=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config3.launcher_logo_url)||"",chat_interface_config:{chat_bubble_prompts:[],display_name:((_orgInfo$brand_config4=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config4.display_name)||"",welcome_message:((_orgInfo$brand_config5=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config5.welcome_message)||"Hey! What can we help you with today?",redirect_url:((_orgInfo$brand_config6=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config6.redirect_url)||""},interface_properties:{position:((_orgInfo$brand_config7=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config8=_orgInfo$brand_config7.interface_properties)==null?void 0:_orgInfo$brand_config8.position)||WidgetPositionEnums.RIGHT,side_spacing:(_orgInfo$brand_config9=(_orgInfo$brand_config10=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config11=_orgInfo$brand_config10.interface_properties)==null?void 0:_orgInfo$brand_config11.side_spacing)!=null?_orgInfo$brand_config9:20,bottom_spacing:(_orgInfo$brand_config12=(_orgInfo$brand_config13=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config14=_orgInfo$brand_config13.interface_properties)==null?void 0:_orgInfo$brand_config14.bottom_spacing)!=null?_orgInfo$brand_config12:20},interface_type:((_orgInfo$brand_config15=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config15.interface_type)||ChatbotInterfaceType.WIDGET,launcher_type:((_orgInfo$brand_config16=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config16.launcher_type)||LauncherType.IMAGE,launcher_properties:{text:((_orgInfo$brand_config17=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config18=_orgInfo$brand_config17.launcher_properties)==null?void 0:_orgInfo$brand_config18.text)||""},images:{launcher_image_url:{url:((_orgInfo$brand_config19=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config20=_orgInfo$brand_config19.images)==null?void 0:(_orgInfo$brand_config21=_orgInfo$brand_config20.launcher_image_url)==null?void 0:_orgInfo$brand_config21.url)||_constants.DEFAULT_LAUNCHER_IMAGE}},chat_iframe_url:((_orgInfo$brand_config22=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config22.chat_iframe_url)||""};setChatbotConfig(config);}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to fetch chatbot configuration"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.NETWORK_ERROR,context:{api_key:api_key,user_id:user_id}});}finally{setLoading(false);}});return function fetchChatbotConfig(){return _ref4.apply(this,arguments);};}();if(api_key&&effectiveUserId){fetchChatbotConfig();}},[api_key,effectiveUserId,user_token]);function constructUrl(){if(!effectiveUserId)return"";var params=new URLSearchParams({id:api_key});return`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;}var openWebView=(0,_react.useCallback)(function(){setIsWebViewVisible(true);if(enableAnimation){(0,_animations.animateWebViewOpen)(animatedValues,function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}else{requestAnimationFrame(function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}},[enableAnimation,animatedValues,externalOnOpen,emitEvent]);var closeWebView=(0,_react.useCallback)(function(){if(webViewRef.current){webViewRef.current.postMessage(JSON.stringify({name:"closeFrame",domain:"app-domain.com"}));}if(enableAnimation){(0,_animations.animateWebViewClose)(animatedValues,function(){setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);});}else{setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);}},[enableAnimation,animatedValues,externalOnClose,emitEvent]);(0,_react.useEffect)(function(){if(show_floating_button&&chatbotConfig){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_LOADED);}},[show_floating_button,chatbotConfig,emitEvent]);(0,_react.useEffect)(function(){if(!loading&&chatbotConfig&&effectiveUserId&&!isInitialized){setIsInitialized(true);onReady==null?void 0:onReady();}},[loading,chatbotConfig,effectiveUserId,isInitialized,onReady]);var getScreenDimensions=function getScreenDimensions(){var windowHeight=_reactNative.Dimensions.get("window").height;var windowWidth=_reactNative.Dimensions.get("window").width;var statusBarHeight=_reactNative.Platform.OS==="ios"?0:_reactNative.StatusBar.currentHeight||0;return{height:windowHeight-statusBarHeight,width:windowWidth};};var requestAndroidMicPermission=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){try{if(_reactNative.Platform.OS==="ios"){return true;}var alreadyGranted=yield _reactNative.PermissionsAndroid.check(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO);if(alreadyGranted){return true;}var result=yield _reactNative.PermissionsAndroid.request(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,{title:"Microphone permission",message:"This app uses your microphone for voice features.",buttonPositive:"Allow",buttonNegative:"Deny"});var granted=result===_reactNative.PermissionsAndroid.RESULTS.GRANTED;if(!granted){_reactNative.Alert.alert("Microphone required","Voice features will not work unless you allow microphone access.");}return granted;}catch(err){console.warn("Error requesting mic permission",err);return false;}}),[]);var screenDimensions=getScreenDimensions();(0,_react.useEffect)(function(){if(__DEV__){(0,_debugConfig.enableNetworkDebug)();}},[]);var position=(chatbotConfig==null?void 0:(_chatbotConfig$interf=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf.position)||"Right";var sideSpacing=(_chatbotConfig$interf2=chatbotConfig==null?void 0:(_chatbotConfig$interf3=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf3.side_spacing)!=null?_chatbotConfig$interf2:20;var bottomSpacing=(_chatbotConfig$interf4=chatbotConfig==null?void 0:(_chatbotConfig$interf5=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf5.bottom_spacing)!=null?_chatbotConfig$interf4:20;return(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotSDK",children:(0,_jsxRuntime.jsxs)(_reactNative.View,{style:styles==null?void 0:styles.mainContainer,pointerEvents:isWebViewVisible?"auto":"box-none",children:[!loading&&(0,_jsxRuntime.jsxs)(_jsxRuntime.Fragment,{children:[(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"FloatingButton",children:show_floating_button&&api_key&&chatbotConfig&&(0,_jsxRuntime.jsx)(_FloatingButton.default,{chatbotConfig:chatbotConfig,isWebViewVisible:isWebViewVisible,onPress:function onPress(){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_CLICKED);openWebView();},brandColor:chatbotConfig.brand_colour,imageUrl:chatbotConfig.image_url})}),(0,_jsxRuntime.jsx)(_reactNative.View,{style:[styles.webViewWrapper,{height:isWebViewVisible?"100%":0}],pointerEvents:isWebViewVisible?"auto":"none",children:(0,_jsxRuntime.jsx)(_reactNative.Animated.View,{style:[styles.fullScreenContainer,{opacity:animatedValues.opacity,transform:[{scale:animatedValues.scale},{translateY:animatedValues.translateY}]}],children:(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotWebView",children:(0,_jsxRuntime.jsx)(_reactNativeWebview.WebView,{mediaCapturePermissionGrantType:"grant",webviewDebuggingEnabled:true,ref:webViewRef,source:{uri:constructUrl()},onMessage:handleMessage,style:styles.webview,containerStyle:isFullScreen?{width:screenDimensions.width,height:screenDimensions.height-40}:undefined,allowsInlineMediaPlayback:true,mediaPlaybackRequiresUserAction:false,allowFileAccess:false,geolocationEnabled:false,javaScriptEnabled:true,domStorageEnabled:true,cacheEnabled:true,scrollEnabled:true,bounces:false,onShouldStartLoadWithRequest:function onShouldStartLoadWithRequest(request){return request.url.startsWith(_constants.BASE_CHATBOT_URL)||request.url.startsWith((chatbotConfig==null?void 0:chatbotConfig.chat_iframe_url)||"");},startInLoadingState:isFirstLoadRef.current,onLoadEnd:function onLoadEnd(){var _webViewRef$current8;if(__DEV__){(0,_debugConfig.enableWebViewDebug)(webViewRef);}(_webViewRef$current8=webViewRef.current)==null?void 0:_webViewRef$current8.injectJavaScript(`
9
+ window.postMessage(${JSON.stringify(_messageData)}, '*');`);}break;default:if(onMessage)onMessage(parsedData!=null?parsedData:{});}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to parse WebView message"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{messageData:data}});}});return function(_x){return _ref2.apply(this,arguments);};}(),[emitEvent,emitSession,isWebViewVisible,onMessage,systemInfo,effectiveUserId,user_token,user_profile]);(0,_react.useEffect)(function(){var initializeUserId=function(){var _ref3=(0,_asyncToGenerator2.default)(function*(){var userId=user_id?String(user_id):undefined;if(!userId){userId=memoryCache.current["rblyn_anon"];if(!userId){userId=(0,_cookieUtils.generateUUID)();executeStorageOp(function(){var _webViewRef$current6;(_webViewRef$current6=webViewRef.current)==null?void 0:_webViewRef$current6.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.SET_STORAGE,"rblyn_anon",userId));});}}setEffectiveUserId(userId);});return function initializeUserId(){return _ref3.apply(this,arguments);};}();initializeUserId();},[user_id,executeStorageOp]);(0,_react.useEffect)(function(){if(webViewRef.current){webViewRef.current.injectJavaScript((0,_webViewStorage.getStorageScript)());executeStorageOp(function(){var _webViewRef$current7;(_webViewRef$current7=webViewRef.current)==null?void 0:_webViewRef$current7.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));});}},[]);(0,_react.useEffect)(function(){var fetchChatbotConfig=function(){var _ref4=(0,_asyncToGenerator2.default)(function*(){try{var _data$user;var endpointUrl=`${_constants.API_URL}/chat/chatbot/get/`;var payload={client_user_id:effectiveUserId,resumable_session_id:resumeSessionRef.current||undefined,discrete:discreteRef.current?true:undefined,org_id:api_key,token:user_token,extra_info:{}};var response=yield fetch(endpointUrl,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(payload)});if(!response.ok){throw new Error("Failed to fetch chatbot configuration");}var data=yield response.json();var orgInfo=data==null?void 0:(_data$user=data.user)==null?void 0:_data$user.org_info;if(orgInfo){var _orgInfo$brand_config,_orgInfo$brand_config2,_orgInfo$brand_config3,_orgInfo$brand_config4,_orgInfo$brand_config5,_orgInfo$brand_config6,_orgInfo$brand_config7,_orgInfo$brand_config8,_orgInfo$brand_config9,_orgInfo$brand_config10,_orgInfo$brand_config11,_orgInfo$brand_config12,_orgInfo$brand_config13,_orgInfo$brand_config14,_orgInfo$brand_config15,_orgInfo$brand_config16,_orgInfo$brand_config17,_orgInfo$brand_config18,_orgInfo$brand_config19,_orgInfo$brand_config20,_orgInfo$brand_config21,_orgInfo$brand_config22;var config={brand_colour:((_orgInfo$brand_config=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config2=_orgInfo$brand_config.colors)==null?void 0:_orgInfo$brand_config2.brand_color)||"",image_url:((_orgInfo$brand_config3=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config3.launcher_logo_url)||"",chat_interface_config:{chat_bubble_prompts:[],display_name:((_orgInfo$brand_config4=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config4.display_name)||"",welcome_message:((_orgInfo$brand_config5=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config5.welcome_message)||"Hey! What can we help you with today?",redirect_url:((_orgInfo$brand_config6=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config6.redirect_url)||""},interface_properties:{position:((_orgInfo$brand_config7=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config8=_orgInfo$brand_config7.interface_properties)==null?void 0:_orgInfo$brand_config8.position)||WidgetPositionEnums.RIGHT,side_spacing:(_orgInfo$brand_config9=(_orgInfo$brand_config10=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config11=_orgInfo$brand_config10.interface_properties)==null?void 0:_orgInfo$brand_config11.side_spacing)!=null?_orgInfo$brand_config9:20,bottom_spacing:(_orgInfo$brand_config12=(_orgInfo$brand_config13=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config14=_orgInfo$brand_config13.interface_properties)==null?void 0:_orgInfo$brand_config14.bottom_spacing)!=null?_orgInfo$brand_config12:20},interface_type:((_orgInfo$brand_config15=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config15.interface_type)||ChatbotInterfaceType.WIDGET,launcher_type:((_orgInfo$brand_config16=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config16.launcher_type)||LauncherType.IMAGE,launcher_properties:{text:((_orgInfo$brand_config17=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config18=_orgInfo$brand_config17.launcher_properties)==null?void 0:_orgInfo$brand_config18.text)||""},images:{launcher_image_url:{url:((_orgInfo$brand_config19=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config20=_orgInfo$brand_config19.images)==null?void 0:(_orgInfo$brand_config21=_orgInfo$brand_config20.launcher_image_url)==null?void 0:_orgInfo$brand_config21.url)||_constants.DEFAULT_LAUNCHER_IMAGE}},chat_iframe_url:((_orgInfo$brand_config22=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config22.chat_iframe_url)||""};setChatbotConfig(config);}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to fetch chatbot configuration"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.NETWORK_ERROR,context:{api_key:api_key,user_id:user_id}});}finally{setLoading(false);}});return function fetchChatbotConfig(){return _ref4.apply(this,arguments);};}();if(api_key&&effectiveUserId){fetchChatbotConfig();}},[api_key,effectiveUserId,user_token]);function constructUrl(){if(!effectiveUserId)return"";var params=new URLSearchParams({id:api_key});return`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;}var openWebView=(0,_react.useCallback)(function(){if(isWebViewVisibleRef.current)return;isWebViewVisibleRef.current=true;setIsWebViewVisible(true);if(enableAnimation){(0,_animations.animateWebViewOpen)(animatedValues,function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}else{requestAnimationFrame(function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}},[enableAnimation,animatedValues,externalOnOpen,emitEvent]);var closeWebView=(0,_react.useCallback)(function(){if(webViewRef.current){webViewRef.current.postMessage(JSON.stringify({name:"closeFrame",domain:"app-domain.com"}));}if(enableAnimation){(0,_animations.animateWebViewClose)(animatedValues,function(){isWebViewVisibleRef.current=false;setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);});}else{isWebViewVisibleRef.current=false;setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);}},[enableAnimation,animatedValues,externalOnClose,emitEvent]);(0,_react.useEffect)(function(){if(show_floating_button&&chatbotConfig){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_LOADED);}},[show_floating_button,chatbotConfig,emitEvent]);(0,_react.useEffect)(function(){if(!loading&&chatbotConfig&&effectiveUserId&&!isInitialized){isInitializedRef.current=true;setIsInitialized(true);onReady==null?void 0:onReady();}},[loading,chatbotConfig,effectiveUserId,isInitialized,onReady]);var getScreenDimensions=function getScreenDimensions(){var windowHeight=_reactNative.Dimensions.get("window").height;var windowWidth=_reactNative.Dimensions.get("window").width;var statusBarHeight=_reactNative.Platform.OS==="ios"?0:_reactNative.StatusBar.currentHeight||0;return{height:windowHeight-statusBarHeight,width:windowWidth};};var requestAndroidMicPermission=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){try{if(_reactNative.Platform.OS==="ios"){return true;}var alreadyGranted=yield _reactNative.PermissionsAndroid.check(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO);if(alreadyGranted){return true;}var result=yield _reactNative.PermissionsAndroid.request(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,{title:"Microphone permission",message:"This app uses your microphone for voice features.",buttonPositive:"Allow",buttonNegative:"Deny"});var granted=result===_reactNative.PermissionsAndroid.RESULTS.GRANTED;if(!granted){_reactNative.Alert.alert("Microphone required","Voice features will not work unless you allow microphone access.");}return granted;}catch(err){console.warn("Error requesting mic permission",err);return false;}}),[]);var screenDimensions=getScreenDimensions();(0,_react.useEffect)(function(){if(__DEV__){(0,_debugConfig.enableNetworkDebug)();}},[]);var position=(chatbotConfig==null?void 0:(_chatbotConfig$interf=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf.position)||"Right";var sideSpacing=(_chatbotConfig$interf2=chatbotConfig==null?void 0:(_chatbotConfig$interf3=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf3.side_spacing)!=null?_chatbotConfig$interf2:20;var bottomSpacing=(_chatbotConfig$interf4=chatbotConfig==null?void 0:(_chatbotConfig$interf5=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf5.bottom_spacing)!=null?_chatbotConfig$interf4:20;return(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotSDK",children:(0,_jsxRuntime.jsxs)(_reactNative.View,{style:styles==null?void 0:styles.mainContainer,pointerEvents:isWebViewVisible?"auto":"box-none",children:[!loading&&(0,_jsxRuntime.jsxs)(_jsxRuntime.Fragment,{children:[(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"FloatingButton",children:show_floating_button&&api_key&&chatbotConfig&&(0,_jsxRuntime.jsx)(_FloatingButton.default,{chatbotConfig:chatbotConfig,isWebViewVisible:isWebViewVisible,onPress:function onPress(){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_CLICKED);openWebView();},brandColor:chatbotConfig.brand_colour,imageUrl:chatbotConfig.image_url})}),(0,_jsxRuntime.jsx)(_reactNative.View,{style:[styles.webViewWrapper,{height:isWebViewVisible?"100%":0}],pointerEvents:isWebViewVisible?"auto":"none",children:(0,_jsxRuntime.jsx)(_reactNative.Animated.View,{style:[styles.fullScreenContainer,{opacity:animatedValues.opacity,transform:[{scale:animatedValues.scale},{translateY:animatedValues.translateY}]}],children:(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotWebView",children:(0,_jsxRuntime.jsx)(_reactNativeWebview.WebView,{mediaCapturePermissionGrantType:"grant",webviewDebuggingEnabled:true,ref:webViewRef,source:{uri:constructUrl()},onMessage:handleMessage,style:styles.webview,containerStyle:isFullScreen?{width:screenDimensions.width,height:screenDimensions.height-40}:undefined,allowsInlineMediaPlayback:true,mediaPlaybackRequiresUserAction:false,allowFileAccess:false,geolocationEnabled:false,javaScriptEnabled:true,domStorageEnabled:true,cacheEnabled:true,scrollEnabled:true,bounces:false,onShouldStartLoadWithRequest:function onShouldStartLoadWithRequest(request){return request.url.startsWith(_constants.BASE_CHATBOT_URL)||request.url.startsWith((chatbotConfig==null?void 0:chatbotConfig.chat_iframe_url)||"");},startInLoadingState:isFirstLoadRef.current,onLoadEnd:function onLoadEnd(){var _webViewRef$current8;if(__DEV__){(0,_debugConfig.enableWebViewDebug)(webViewRef);}(_webViewRef$current8=webViewRef.current)==null?void 0:_webViewRef$current8.injectJavaScript(`
10
10
  if (!document.querySelector('meta[name="viewport"]')) {
11
11
  var meta = document.createElement('meta');
12
12
  meta.name = 'viewport';
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_FloatingButton","_interopRequireDefault","_constants","_systemInfo","_useChatbotEvents2","_events","_logger","_debugConfig","_DebugButton","_ErrorBoundary","_errorConstants","_ErrorTrackingService","_cookieUtils","_webViewStorage","_animations","_fileDownload","_session","_jsxRuntime","_this","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChatbotInterfaceType","exports","WidgetPositionEnums","LauncherType","Chatbot","forwardRef","_ref","ref","_chatbotConfig$interf","_chatbotConfig$interf2","_chatbotConfig$interf3","_chatbotConfig$interf4","_chatbotConfig$interf5","api_key","user_id","user_token","_ref$show_floating_bu","show_floating_button","onEvent","onMessage","_ref$isFullScreen","isFullScreen","_ref$enableAnimation","enableAnimation","externalOnOpen","onOpen","externalOnClose","onClose","onReady","user_profile","session_id","session_context","onSession","_useState","useState","_useState2","_slicedToArray2","isWebViewVisible","setIsWebViewVisible","_useState3","_useState4","chatbotConfig","setChatbotConfig","_useState5","_useState6","loading","setLoading","_useState7","_useState8","isInitialized","setIsInitialized","webViewRef","useRef","isFirstLoadRef","_useState9","_useState10","toastVisible","setToastVisible","_useState11","_useState12","toastMessage","setToastMessage","_useState13","_useState14","effectiveUserId","setEffectiveUserId","_useState15","_useState16","isStorageReady","setIsStorageReady","pendingStorageOps","memoryCache","_useState17","os","browser","_useState18","systemInfo","setSystemInfo","systemInfoRef","sessionIdRef","undefined","onSessionRef","sessionContextRef","resumeSessionRef","current","animatedValues","scale","Animated","Value","translateY","opacity","chatbotConfigForEvents","useMemo","userId","isAnonymous","_useChatbotEvents","useChatbotEvents","emitEvent","onInternalEvent","useImperativeHandle","open","openWebView","close","closeWebView","toggle","isReady","getSessionId","emitSession","useCallback","data","sessionId","extractSessionId","_sessionContextRef$cu","error","errorTracker","trackError","Error","type","ErrorTypes","RUNTIME_ERROR","context","source","SESSION_UPDATED_MESSAGE_TYPE","triggerAppInit","_webViewRef$current","injectJavaScript","getBrowserAndOSInfoScript","executeStorageOp","operation","push","handleMessage","_ref2","_asyncToGenerator2","event","_webViewRef$current2","nativeEvent","parsedData","JSON","parse","values","StorageMessageType","includes","storageMessage","STORAGE_READY","forEach","op","createStorageMessage","GET_STORAGE","STORAGE_RESPONSE","key","value","STORAGE_ERROR","logger","__DEV__","console","log","level","_parsedData$data","ChatbotEventType","CHATBOT_APP_READY","_webViewRef$current3","_webViewRef$current4","messageData","name","action","_defineProperty2","RESUME_SESSION_KEY","assign","getSystemInfo","__INT_SYS_INFO__","debug","stringify","domain","url","filename","downloadData","inPlace","handleDownloadRequest","CHATBOT_LOADED","CHAT_INITIALIZED","SESSION_REFRESHED","CHAT_INITIALIZATION_FAILED","granted","requestAndroidMicPermission","_webViewRef$current5","_x","apply","arguments","useEffect","initializeUserId","_ref3","String","generateUUID","_webViewRef$current6","SET_STORAGE","getStorageScript","_webViewRef$current7","fetchChatbotConfig","_ref4","_data$user","endpointUrl","API_URL","payload","client_user_id","resumable_session_id","org_id","token","extra_info","response","fetch","method","headers","body","ok","json","orgInfo","user","org_info","_orgInfo$brand_config","_orgInfo$brand_config2","_orgInfo$brand_config3","_orgInfo$brand_config4","_orgInfo$brand_config5","_orgInfo$brand_config6","_orgInfo$brand_config7","_orgInfo$brand_config8","_orgInfo$brand_config9","_orgInfo$brand_config10","_orgInfo$brand_config11","_orgInfo$brand_config12","_orgInfo$brand_config13","_orgInfo$brand_config14","_orgInfo$brand_config15","_orgInfo$brand_config16","_orgInfo$brand_config17","_orgInfo$brand_config18","_orgInfo$brand_config19","_orgInfo$brand_config20","_orgInfo$brand_config21","_orgInfo$brand_config22","config","brand_colour","brand_config","colors","brand_color","image_url","launcher_logo_url","chat_interface_config","chat_bubble_prompts","display_name","welcome_message","redirect_url","interface_properties","position","RIGHT","side_spacing","bottom_spacing","interface_type","WIDGET","launcher_type","IMAGE","launcher_properties","text","images","launcher_image_url","DEFAULT_LAUNCHER_IMAGE","chat_iframe_url","NETWORK_ERROR","constructUrl","params","URLSearchParams","id","BASE_CHATBOT_URL","toString","animateWebViewOpen","CHATBOT_OPENED","setTimeout","requestAnimationFrame","postMessage","animateWebViewClose","CHATBOT_CLOSED","CHATBOT_BUTTON_LOADED","getScreenDimensions","windowHeight","Dimensions","height","windowWidth","width","statusBarHeight","Platform","OS","StatusBar","currentHeight","alreadyGranted","PermissionsAndroid","check","PERMISSIONS","RECORD_AUDIO","result","request","title","message","buttonPositive","buttonNegative","RESULTS","GRANTED","Alert","alert","err","warn","screenDimensions","enableNetworkDebug","sideSpacing","bottomSpacing","jsx","ErrorBoundary","componentName","children","jsxs","View","style","styles","mainContainer","pointerEvents","Fragment","onPress","CHATBOT_BUTTON_CLICKED","brandColor","imageUrl","webViewWrapper","fullScreenContainer","transform","WebView","mediaCapturePermissionGrantType","webviewDebuggingEnabled","uri","webview","containerStyle","allowsInlineMediaPlayback","mediaPlaybackRequiresUserAction","allowFileAccess","geolocationEnabled","javaScriptEnabled","domStorageEnabled","cacheEnabled","scrollEnabled","bounces","onShouldStartLoadWithRequest","startsWith","startInLoadingState","onLoadEnd","_webViewRef$current8","enableWebViewDebug","onError","syntheticEvent","description","code","displayName","StyleSheet","create","flex","overflow","top","left","right","bottom","zIndex","backgroundColor","inlineContainer","_default"],"sourceRoot":"../../src","sources":["Chatbotsdk.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_FloatingButton","_interopRequireDefault","_constants","_systemInfo","_useChatbotEvents2","_events","_logger","_debugConfig","_DebugButton","_ErrorBoundary","_errorConstants","_ErrorTrackingService","_cookieUtils","_webViewStorage","_animations","_fileDownload","_session","_jsxRuntime","_this","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChatbotInterfaceType","exports","WidgetPositionEnums","LauncherType","Chatbot","forwardRef","_ref","ref","_chatbotConfig$interf","_chatbotConfig$interf2","_chatbotConfig$interf3","_chatbotConfig$interf4","_chatbotConfig$interf5","api_key","user_id","user_token","_ref$show_floating_bu","show_floating_button","onEvent","onMessage","_ref$isFullScreen","isFullScreen","_ref$enableAnimation","enableAnimation","externalOnOpen","onOpen","externalOnClose","onClose","onReady","user_profile","session_id","session_context","_ref$discrete","discrete","onSession","_useState","useState","_useState2","_slicedToArray2","isWebViewVisible","setIsWebViewVisible","_useState3","_useState4","chatbotConfig","setChatbotConfig","_useState5","_useState6","loading","setLoading","_useState7","_useState8","isInitialized","setIsInitialized","webViewRef","useRef","isFirstLoadRef","_useState9","_useState10","toastVisible","setToastVisible","_useState11","_useState12","toastMessage","setToastMessage","_useState13","_useState14","effectiveUserId","setEffectiveUserId","_useState15","_useState16","isStorageReady","setIsStorageReady","pendingStorageOps","memoryCache","_useState17","os","browser","_useState18","systemInfo","setSystemInfo","systemInfoRef","isInitializedRef","isWebViewVisibleRef","sessionIdRef","undefined","onSessionRef","sessionContextRef","resumeSessionRef","discreteRef","current","animatedValues","scale","Animated","Value","translateY","opacity","chatbotConfigForEvents","useMemo","userId","isAnonymous","_useChatbotEvents","useChatbotEvents","emitEvent","onInternalEvent","useImperativeHandle","open","openWebView","close","closeWebView","toggle","isReady","getSessionId","emitSession","useCallback","data","sessionId","extractSessionId","_sessionContextRef$cu","error","errorTracker","trackError","Error","type","ErrorTypes","RUNTIME_ERROR","context","source","SESSION_UPDATED_MESSAGE_TYPE","triggerAppInit","_webViewRef$current","injectJavaScript","getBrowserAndOSInfoScript","executeStorageOp","operation","push","handleMessage","_ref2","_asyncToGenerator2","event","_webViewRef$current2","nativeEvent","parsedData","JSON","parse","values","StorageMessageType","includes","storageMessage","STORAGE_READY","forEach","op","createStorageMessage","GET_STORAGE","STORAGE_RESPONSE","key","value","STORAGE_ERROR","logger","__DEV__","console","log","level","_parsedData$data","ChatbotEventType","CHATBOT_APP_READY","_webViewRef$current3","_webViewRef$current4","messageData","name","action","_defineProperty2","RESUME_SESSION_KEY","assign","getSystemInfo","__INT_SYS_INFO__","debug","stringify","domain","url","filename","downloadData","inPlace","handleDownloadRequest","CHATBOT_LOADED","CHAT_INITIALIZED","SESSION_REFRESHED","CHAT_INITIALIZATION_FAILED","granted","requestAndroidMicPermission","_webViewRef$current5","_x","apply","arguments","useEffect","initializeUserId","_ref3","String","generateUUID","_webViewRef$current6","SET_STORAGE","getStorageScript","_webViewRef$current7","fetchChatbotConfig","_ref4","_data$user","endpointUrl","API_URL","payload","client_user_id","resumable_session_id","org_id","token","extra_info","response","fetch","method","headers","body","ok","json","orgInfo","user","org_info","_orgInfo$brand_config","_orgInfo$brand_config2","_orgInfo$brand_config3","_orgInfo$brand_config4","_orgInfo$brand_config5","_orgInfo$brand_config6","_orgInfo$brand_config7","_orgInfo$brand_config8","_orgInfo$brand_config9","_orgInfo$brand_config10","_orgInfo$brand_config11","_orgInfo$brand_config12","_orgInfo$brand_config13","_orgInfo$brand_config14","_orgInfo$brand_config15","_orgInfo$brand_config16","_orgInfo$brand_config17","_orgInfo$brand_config18","_orgInfo$brand_config19","_orgInfo$brand_config20","_orgInfo$brand_config21","_orgInfo$brand_config22","config","brand_colour","brand_config","colors","brand_color","image_url","launcher_logo_url","chat_interface_config","chat_bubble_prompts","display_name","welcome_message","redirect_url","interface_properties","position","RIGHT","side_spacing","bottom_spacing","interface_type","WIDGET","launcher_type","IMAGE","launcher_properties","text","images","launcher_image_url","DEFAULT_LAUNCHER_IMAGE","chat_iframe_url","NETWORK_ERROR","constructUrl","params","URLSearchParams","id","BASE_CHATBOT_URL","toString","animateWebViewOpen","CHATBOT_OPENED","setTimeout","requestAnimationFrame","postMessage","animateWebViewClose","CHATBOT_CLOSED","CHATBOT_BUTTON_LOADED","getScreenDimensions","windowHeight","Dimensions","height","windowWidth","width","statusBarHeight","Platform","OS","StatusBar","currentHeight","alreadyGranted","PermissionsAndroid","check","PERMISSIONS","RECORD_AUDIO","result","request","title","message","buttonPositive","buttonNegative","RESULTS","GRANTED","Alert","alert","err","warn","screenDimensions","enableNetworkDebug","sideSpacing","bottomSpacing","jsx","ErrorBoundary","componentName","children","jsxs","View","style","styles","mainContainer","pointerEvents","Fragment","onPress","CHATBOT_BUTTON_CLICKED","brandColor","imageUrl","webViewWrapper","fullScreenContainer","transform","WebView","mediaCapturePermissionGrantType","webviewDebuggingEnabled","uri","webview","containerStyle","allowsInlineMediaPlayback","mediaPlaybackRequiresUserAction","allowFileAccess","geolocationEnabled","javaScriptEnabled","domStorageEnabled","cacheEnabled","scrollEnabled","bounces","onShouldStartLoadWithRequest","startsWith","startInLoadingState","onLoadEnd","_webViewRef$current8","enableWebViewDebug","onError","syntheticEvent","description","code","displayName","StyleSheet","create","flex","overflow","top","left","right","bottom","zIndex","backgroundColor","inlineContainer","_default"],"sourceRoot":"../../src","sources":["Chatbotsdk.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,12 +1,12 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.WidgetPositionEnums=exports.LauncherType=exports.ChatbotInterfaceType=void 0;var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _reactNativeWebview=require("react-native-webview");var _FloatingButton=_interopRequireDefault(require("./FloatingButton"));var _constants=require("./constants");var _systemInfo=require("./utils/systemInfo");var _useChatbotEvents2=require("./hooks/useChatbotEvents");var _events=require("./types/events");var _logger=require("./utils/logger");var _debugConfig=require("./utils/debugConfig");var _DebugButton=_interopRequireDefault(require("./components/DebugButton"));var _ErrorBoundary=require("./components/ErrorBoundary");var _errorConstants=require("./constants/errorConstants");var _ErrorTrackingService=require("./services/ErrorTrackingService");var _cookieUtils=require("./utils/cookieUtils");var _webViewStorage=require("./utils/webViewStorage");var _animations=require("./utils/animations");var _fileDownload=require("./utils/fileDownload");var _session=require("./utils/session");var _jsxRuntime=require("react/jsx-runtime");var _this=this,_jsxFileName="/Users/jobinabraham/Developer/professional/Mobile sdks/robylon-react-native-sdk/src/Chatbotsdk.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var ChatbotInterfaceType=exports.ChatbotInterfaceType=function(ChatbotInterfaceType){ChatbotInterfaceType["WIDGET"]="WIDGET";ChatbotInterfaceType["POPOVER"]="POPOVER";ChatbotInterfaceType["EMBED"]="EMBED";return ChatbotInterfaceType;}({});var WidgetPositionEnums=exports.WidgetPositionEnums=function(WidgetPositionEnums){WidgetPositionEnums["RIGHT"]="Right";WidgetPositionEnums["LEFT"]="Left";return WidgetPositionEnums;}({});var LauncherType=exports.LauncherType=function(LauncherType){LauncherType["TEXT"]="TEXT";LauncherType["IMAGE"]="IMAGE";LauncherType["TEXTUAL_IMAGE"]="TEXTUAL_IMAGE";return LauncherType;}({});var Chatbot=(0,_react.forwardRef)(function(_ref,ref){var _chatbotConfig$interf,_chatbotConfig$interf2,_chatbotConfig$interf3,_chatbotConfig$interf4,_chatbotConfig$interf5;var api_key=_ref.api_key,user_id=_ref.user_id,user_token=_ref.user_token,_ref$show_floating_bu=_ref.show_floating_button,show_floating_button=_ref$show_floating_bu===void 0?true:_ref$show_floating_bu,onEvent=_ref.onEvent,onMessage=_ref.onMessage,_ref$isFullScreen=_ref.isFullScreen,isFullScreen=_ref$isFullScreen===void 0?true:_ref$isFullScreen,_ref$enableAnimation=_ref.enableAnimation,enableAnimation=_ref$enableAnimation===void 0?true:_ref$enableAnimation,externalOnOpen=_ref.onOpen,externalOnClose=_ref.onClose,onReady=_ref.onReady,user_profile=_ref.user_profile,session_id=_ref.session_id,session_context=_ref.session_context,onSession=_ref.onSession;var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isWebViewVisible=_useState2[0],setIsWebViewVisible=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),chatbotConfig=_useState4[0],setChatbotConfig=_useState4[1];var _useState5=(0,_react.useState)(true),_useState6=(0,_slicedToArray2.default)(_useState5,2),loading=_useState6[0],setLoading=_useState6[1];var _useState7=(0,_react.useState)(false),_useState8=(0,_slicedToArray2.default)(_useState7,2),isInitialized=_useState8[0],setIsInitialized=_useState8[1];var webViewRef=(0,_react.useRef)(null);var isFirstLoadRef=(0,_react.useRef)(true);var _useState9=(0,_react.useState)(false),_useState10=(0,_slicedToArray2.default)(_useState9,2),toastVisible=_useState10[0],setToastVisible=_useState10[1];var _useState11=(0,_react.useState)(""),_useState12=(0,_slicedToArray2.default)(_useState11,2),toastMessage=_useState12[0],setToastMessage=_useState12[1];var _useState13=(0,_react.useState)(),_useState14=(0,_slicedToArray2.default)(_useState13,2),effectiveUserId=_useState14[0],setEffectiveUserId=_useState14[1];var _useState15=(0,_react.useState)(false),_useState16=(0,_slicedToArray2.default)(_useState15,2),isStorageReady=_useState16[0],setIsStorageReady=_useState16[1];var pendingStorageOps=(0,_react.useRef)([]);var memoryCache=(0,_react.useRef)({});var _useState17=(0,_react.useState)({os:"",browser:""}),_useState18=(0,_slicedToArray2.default)(_useState17,2),systemInfo=_useState18[0],setSystemInfo=_useState18[1];var systemInfoRef=(0,_react.useRef)({os:"",browser:""});var sessionIdRef=(0,_react.useRef)(undefined);var onSessionRef=(0,_react.useRef)(onSession);var sessionContextRef=(0,_react.useRef)(session_context);var resumeSessionRef=(0,_react.useRef)(session_id);onSessionRef.current=onSession;sessionContextRef.current=session_context;resumeSessionRef.current=session_id;var animatedValues=(0,_react.useRef)({scale:new _reactNative.Animated.Value(1),translateY:new _reactNative.Animated.Value(0),opacity:new _reactNative.Animated.Value(1)}).current;var chatbotConfigForEvents=(0,_react.useMemo)(function(){return{userId:effectiveUserId,isAnonymous:!user_id&&user_id!==0};},[effectiveUserId,user_id]);var _useChatbotEvents=(0,_useChatbotEvents2.useChatbotEvents)({api_key:api_key,chatbotConfig:chatbotConfigForEvents!=null?chatbotConfigForEvents:{},user_profile:user_profile,onEvent:onEvent,systemInfo:systemInfo!=null?systemInfo:{os:"",browser:""}}),emitEvent=_useChatbotEvents.emitEvent,onInternalEvent=_useChatbotEvents.onInternalEvent;(0,_react.useImperativeHandle)(ref,function(){return{open:function open(){if(isInitialized){openWebView();}},close:function close(){if(isInitialized){closeWebView();}},toggle:function toggle(){if(isInitialized){if(isWebViewVisible){closeWebView();}else{openWebView();}}},isReady:function isReady(){return isInitialized;},getSessionId:function getSessionId(){return sessionIdRef.current;}};},[isInitialized,isWebViewVisible]);var emitSession=(0,_react.useCallback)(function(data){var sessionId=(0,_session.extractSessionId)(data);if(!sessionId||sessionId===sessionIdRef.current)return;sessionIdRef.current=sessionId;try{var _sessionContextRef$cu;onSessionRef.current==null?void 0:onSessionRef.current(sessionId,(_sessionContextRef$cu=sessionContextRef.current)!=null?_sessionContextRef$cu:{});}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("onSession handler threw an error"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{source:_session.SESSION_UPDATED_MESSAGE_TYPE}});}},[]);var triggerAppInit=function triggerAppInit(){if(webViewRef.current){var _webViewRef$current;(_webViewRef$current=webViewRef.current)==null?void 0:_webViewRef$current.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());webViewRef.current.injectJavaScript(`
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.WidgetPositionEnums=exports.LauncherType=exports.ChatbotInterfaceType=void 0;var _defineProperty2=_interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _reactNative=require("react-native");var _reactNativeWebview=require("react-native-webview");var _FloatingButton=_interopRequireDefault(require("./FloatingButton"));var _constants=require("./constants");var _systemInfo=require("./utils/systemInfo");var _useChatbotEvents2=require("./hooks/useChatbotEvents");var _events=require("./types/events");var _logger=require("./utils/logger");var _debugConfig=require("./utils/debugConfig");var _DebugButton=_interopRequireDefault(require("./components/DebugButton"));var _ErrorBoundary=require("./components/ErrorBoundary");var _errorConstants=require("./constants/errorConstants");var _ErrorTrackingService=require("./services/ErrorTrackingService");var _cookieUtils=require("./utils/cookieUtils");var _webViewStorage=require("./utils/webViewStorage");var _animations=require("./utils/animations");var _fileDownload=require("./utils/fileDownload");var _session=require("./utils/session");var _jsxRuntime=require("react/jsx-runtime");var _this=this,_jsxFileName="/Users/jobinabraham/Developer/professional/Mobile sdks/robylon-react-native-sdk/src/Chatbotsdk.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var ChatbotInterfaceType=exports.ChatbotInterfaceType=function(ChatbotInterfaceType){ChatbotInterfaceType["WIDGET"]="WIDGET";ChatbotInterfaceType["POPOVER"]="POPOVER";ChatbotInterfaceType["EMBED"]="EMBED";return ChatbotInterfaceType;}({});var WidgetPositionEnums=exports.WidgetPositionEnums=function(WidgetPositionEnums){WidgetPositionEnums["RIGHT"]="Right";WidgetPositionEnums["LEFT"]="Left";return WidgetPositionEnums;}({});var LauncherType=exports.LauncherType=function(LauncherType){LauncherType["TEXT"]="TEXT";LauncherType["IMAGE"]="IMAGE";LauncherType["TEXTUAL_IMAGE"]="TEXTUAL_IMAGE";return LauncherType;}({});var Chatbot=(0,_react.forwardRef)(function(_ref,ref){var _chatbotConfig$interf,_chatbotConfig$interf2,_chatbotConfig$interf3,_chatbotConfig$interf4,_chatbotConfig$interf5;var api_key=_ref.api_key,user_id=_ref.user_id,user_token=_ref.user_token,_ref$show_floating_bu=_ref.show_floating_button,show_floating_button=_ref$show_floating_bu===void 0?true:_ref$show_floating_bu,onEvent=_ref.onEvent,onMessage=_ref.onMessage,_ref$isFullScreen=_ref.isFullScreen,isFullScreen=_ref$isFullScreen===void 0?true:_ref$isFullScreen,_ref$enableAnimation=_ref.enableAnimation,enableAnimation=_ref$enableAnimation===void 0?true:_ref$enableAnimation,externalOnOpen=_ref.onOpen,externalOnClose=_ref.onClose,onReady=_ref.onReady,user_profile=_ref.user_profile,session_id=_ref.session_id,session_context=_ref.session_context,_ref$discrete=_ref.discrete,discrete=_ref$discrete===void 0?false:_ref$discrete,onSession=_ref.onSession;var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isWebViewVisible=_useState2[0],setIsWebViewVisible=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),chatbotConfig=_useState4[0],setChatbotConfig=_useState4[1];var _useState5=(0,_react.useState)(true),_useState6=(0,_slicedToArray2.default)(_useState5,2),loading=_useState6[0],setLoading=_useState6[1];var _useState7=(0,_react.useState)(false),_useState8=(0,_slicedToArray2.default)(_useState7,2),isInitialized=_useState8[0],setIsInitialized=_useState8[1];var webViewRef=(0,_react.useRef)(null);var isFirstLoadRef=(0,_react.useRef)(true);var _useState9=(0,_react.useState)(false),_useState10=(0,_slicedToArray2.default)(_useState9,2),toastVisible=_useState10[0],setToastVisible=_useState10[1];var _useState11=(0,_react.useState)(""),_useState12=(0,_slicedToArray2.default)(_useState11,2),toastMessage=_useState12[0],setToastMessage=_useState12[1];var _useState13=(0,_react.useState)(),_useState14=(0,_slicedToArray2.default)(_useState13,2),effectiveUserId=_useState14[0],setEffectiveUserId=_useState14[1];var _useState15=(0,_react.useState)(false),_useState16=(0,_slicedToArray2.default)(_useState15,2),isStorageReady=_useState16[0],setIsStorageReady=_useState16[1];var pendingStorageOps=(0,_react.useRef)([]);var memoryCache=(0,_react.useRef)({});var _useState17=(0,_react.useState)({os:"",browser:""}),_useState18=(0,_slicedToArray2.default)(_useState17,2),systemInfo=_useState18[0],setSystemInfo=_useState18[1];var systemInfoRef=(0,_react.useRef)({os:"",browser:""});var isInitializedRef=(0,_react.useRef)(false);var isWebViewVisibleRef=(0,_react.useRef)(false);var sessionIdRef=(0,_react.useRef)(undefined);var onSessionRef=(0,_react.useRef)(onSession);var sessionContextRef=(0,_react.useRef)(session_context);var resumeSessionRef=(0,_react.useRef)(session_id);var discreteRef=(0,_react.useRef)(discrete);onSessionRef.current=onSession;sessionContextRef.current=session_context;resumeSessionRef.current=session_id;discreteRef.current=discrete;var animatedValues=(0,_react.useRef)({scale:new _reactNative.Animated.Value(1),translateY:new _reactNative.Animated.Value(0),opacity:new _reactNative.Animated.Value(1)}).current;var chatbotConfigForEvents=(0,_react.useMemo)(function(){return{userId:effectiveUserId,isAnonymous:!user_id&&user_id!==0};},[effectiveUserId,user_id]);var _useChatbotEvents=(0,_useChatbotEvents2.useChatbotEvents)({api_key:api_key,chatbotConfig:chatbotConfigForEvents!=null?chatbotConfigForEvents:{},user_profile:user_profile,onEvent:onEvent,systemInfo:systemInfo!=null?systemInfo:{os:"",browser:""}}),emitEvent=_useChatbotEvents.emitEvent,onInternalEvent=_useChatbotEvents.onInternalEvent;(0,_react.useImperativeHandle)(ref,function(){return{open:function open(){if(isInitializedRef.current){openWebView();}},close:function close(){if(isInitializedRef.current){closeWebView();}},toggle:function toggle(){if(isInitializedRef.current){if(isWebViewVisibleRef.current){closeWebView();}else{openWebView();}}},isReady:function isReady(){return isInitializedRef.current;},getSessionId:function getSessionId(){return sessionIdRef.current;}};},[isInitialized,isWebViewVisible]);var emitSession=(0,_react.useCallback)(function(data){var sessionId=(0,_session.extractSessionId)(data);if(!sessionId||sessionId===sessionIdRef.current)return;sessionIdRef.current=sessionId;try{var _sessionContextRef$cu;onSessionRef.current==null?void 0:onSessionRef.current(sessionId,(_sessionContextRef$cu=sessionContextRef.current)!=null?_sessionContextRef$cu:{});}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("onSession handler threw an error"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{source:_session.SESSION_UPDATED_MESSAGE_TYPE}});}},[]);var triggerAppInit=function triggerAppInit(){if(webViewRef.current){var _webViewRef$current;(_webViewRef$current=webViewRef.current)==null?void 0:_webViewRef$current.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());webViewRef.current.injectJavaScript(`
2
2
  // Trigger APP_READY equivalent
3
3
  window.ReactNativeWebView.postMessage(JSON.stringify({ type: 'APP_READY' }));
4
4
  true;
5
- `);}};var executeStorageOp=(0,_react.useCallback)(function(operation){if(isStorageReady){operation();}else{pendingStorageOps.current.push(operation);}},[isStorageReady]);var handleMessage=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(event){var _webViewRef$current2;var data=event.nativeEvent.data;try{var parsedData=JSON.parse(data);if(Object.values(_webViewStorage.StorageMessageType).includes(parsedData.type)){var storageMessage=parsedData;switch(storageMessage.type){case _webViewStorage.StorageMessageType.STORAGE_READY:setIsStorageReady(true);pendingStorageOps.current.forEach(function(op){return op();});pendingStorageOps.current=[];(_webViewRef$current2=webViewRef.current)==null?void 0:_webViewRef$current2.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));break;case _webViewStorage.StorageMessageType.STORAGE_RESPONSE:if(storageMessage.key&&storageMessage.value){memoryCache.current[storageMessage.key]=storageMessage.value;if(storageMessage.key==="rblyn_anon"){setEffectiveUserId(storageMessage.value);}}break;case _webViewStorage.StorageMessageType.STORAGE_ERROR:_logger.logger.error("WebView storage error:",storageMessage.error);break;}return;}if(__DEV__){if((parsedData==null?void 0:parsedData.type)==="CONSOLE"){console.log(`WebView ${parsedData==null?void 0:parsedData.level}:`,parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="ERROR"){console.error("WebView Error:",parsedData==null?void 0:parsedData.data);return;}}if((parsedData==null?void 0:parsedData.type)==="SYSTEM_INFO"){var _parsedData$data;setSystemInfo((_parsedData$data=parsedData==null?void 0:parsedData.data)!=null?_parsedData$data:{os:"",browser:""});systemInfoRef.current=parsedData==null?void 0:parsedData.data;return;}if((parsedData==null?void 0:parsedData.type)===_session.SESSION_UPDATED_MESSAGE_TYPE){emitSession(parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="APP_READY"){emitEvent(_events.ChatbotEventType.CHATBOT_APP_READY);if(webViewRef.current&&isWebViewVisible){var _webViewRef$current3,_webViewRef$current4;(_webViewRef$current3=webViewRef.current)==null?void 0:_webViewRef$current3.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());var messageData={name:"registerUserId",action:"registerUserId",data:(0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)({userId:effectiveUserId},_session.RESUME_SESSION_KEY,resumeSessionRef.current||undefined),"token",user_token?`${user_token}`:undefined),"userProfile",Object.assign({},user_profile,(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current),{__INT_SYS_INFO__:Object.assign({},(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current))}))};_logger.logger.debug("messageData====>",JSON.stringify(Object.assign({},messageData,{data:Object.assign({},messageData.data,(0,_defineProperty2.default)({},_session.RESUME_SESSION_KEY,resumeSessionRef.current?"[redacted]":undefined))})));(_webViewRef$current4=webViewRef.current)==null?void 0:_webViewRef$current4.injectJavaScript(`
5
+ `);}};var executeStorageOp=(0,_react.useCallback)(function(operation){if(isStorageReady){operation();}else{pendingStorageOps.current.push(operation);}},[isStorageReady]);var handleMessage=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(event){var _webViewRef$current2;var data=event.nativeEvent.data;try{var parsedData=JSON.parse(data);if(Object.values(_webViewStorage.StorageMessageType).includes(parsedData.type)){var storageMessage=parsedData;switch(storageMessage.type){case _webViewStorage.StorageMessageType.STORAGE_READY:setIsStorageReady(true);pendingStorageOps.current.forEach(function(op){return op();});pendingStorageOps.current=[];(_webViewRef$current2=webViewRef.current)==null?void 0:_webViewRef$current2.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));break;case _webViewStorage.StorageMessageType.STORAGE_RESPONSE:if(storageMessage.key&&storageMessage.value){memoryCache.current[storageMessage.key]=storageMessage.value;if(storageMessage.key==="rblyn_anon"){setEffectiveUserId(storageMessage.value);}}break;case _webViewStorage.StorageMessageType.STORAGE_ERROR:_logger.logger.error("WebView storage error:",storageMessage.error);break;}return;}if(__DEV__){if((parsedData==null?void 0:parsedData.type)==="CONSOLE"){console.log(`WebView ${parsedData==null?void 0:parsedData.level}:`,parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="ERROR"){console.error("WebView Error:",parsedData==null?void 0:parsedData.data);return;}}if((parsedData==null?void 0:parsedData.type)==="SYSTEM_INFO"){var _parsedData$data;setSystemInfo((_parsedData$data=parsedData==null?void 0:parsedData.data)!=null?_parsedData$data:{os:"",browser:""});systemInfoRef.current=parsedData==null?void 0:parsedData.data;return;}if((parsedData==null?void 0:parsedData.type)===_session.SESSION_UPDATED_MESSAGE_TYPE){emitSession(parsedData==null?void 0:parsedData.data);return;}if((parsedData==null?void 0:parsedData.type)==="APP_READY"){emitEvent(_events.ChatbotEventType.CHATBOT_APP_READY);if(webViewRef.current&&isWebViewVisible){var _webViewRef$current3,_webViewRef$current4;(_webViewRef$current3=webViewRef.current)==null?void 0:_webViewRef$current3.injectJavaScript((0,_systemInfo.getBrowserAndOSInfoScript)());var messageData={name:"registerUserId",action:"registerUserId",data:(0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)((0,_defineProperty2.default)({userId:effectiveUserId},_session.RESUME_SESSION_KEY,resumeSessionRef.current||undefined),"discrete",discreteRef.current?true:undefined),"token",user_token?`${user_token}`:undefined),"userProfile",Object.assign({},user_profile,(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current),{__INT_SYS_INFO__:Object.assign({},(0,_systemInfo.getSystemInfo)(systemInfoRef==null?void 0:systemInfoRef.current))}))};_logger.logger.debug("messageData====>",JSON.stringify(Object.assign({},messageData,{data:Object.assign({},messageData.data,(0,_defineProperty2.default)({},_session.RESUME_SESSION_KEY,resumeSessionRef.current?"[redacted]":undefined))})));(_webViewRef$current4=webViewRef.current)==null?void 0:_webViewRef$current4.injectJavaScript(`
6
6
  window.postMessage(${JSON.stringify({name:"openFrame",domain:"app-domain.com"})}, '*');
7
7
  window.postMessage(${JSON.stringify(messageData)}, '*');
8
8
  `);}}switch(parsedData==null?void 0:parsedData.type){case"close_chatbot":closeWebView();break;case"download_file":if(parsedData!=null&&parsedData.data||parsedData!=null&&parsedData.url&&parsedData!=null&&parsedData.filename){var downloadData=(parsedData==null?void 0:parsedData.data)||{url:parsedData==null?void 0:parsedData.url,filename:parsedData==null?void 0:parsedData.filename,inPlace:parsedData==null?void 0:parsedData.inPlace};(0,_fileDownload.handleDownloadRequest)(downloadData);}break;case"CHATBOT_LOADED":emitEvent(_events.ChatbotEventType.CHATBOT_LOADED,parsedData==null?void 0:parsedData.data);break;case"CHAT_INITIALIZED":emitEvent(_events.ChatbotEventType.CHAT_INITIALIZED,parsedData==null?void 0:parsedData.data);break;case"SESSION_REFRESHED":emitEvent(_events.ChatbotEventType.SESSION_REFRESHED,parsedData==null?void 0:parsedData.data);break;case"CHAT_INITIALIZATION_FAILED":emitEvent(_events.ChatbotEventType.CHAT_INITIALIZATION_FAILED,parsedData==null?void 0:parsedData.data);break;case"REQUEST_MIC_PERMISSION":var granted=yield requestAndroidMicPermission();if(webViewRef.current&&isWebViewVisible){var _webViewRef$current5;var _messageData={name:"requestMicPermission",action:"requestMicPermission",type:granted?"MIC_PERMISSION_GRANTED":"MIC_PERMISSION_DENIED"};(_webViewRef$current5=webViewRef.current)==null?void 0:_webViewRef$current5.injectJavaScript(`
9
- window.postMessage(${JSON.stringify(_messageData)}, '*');`);}break;default:if(onMessage)onMessage(parsedData!=null?parsedData:{});}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to parse WebView message"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{messageData:data}});}});return function(_x){return _ref2.apply(this,arguments);};}(),[emitEvent,emitSession,isWebViewVisible,onMessage,systemInfo,effectiveUserId,user_token,user_profile]);(0,_react.useEffect)(function(){var initializeUserId=function(){var _ref3=(0,_asyncToGenerator2.default)(function*(){var userId=user_id?String(user_id):undefined;if(!userId){userId=memoryCache.current["rblyn_anon"];if(!userId){userId=(0,_cookieUtils.generateUUID)();executeStorageOp(function(){var _webViewRef$current6;(_webViewRef$current6=webViewRef.current)==null?void 0:_webViewRef$current6.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.SET_STORAGE,"rblyn_anon",userId));});}}setEffectiveUserId(userId);});return function initializeUserId(){return _ref3.apply(this,arguments);};}();initializeUserId();},[user_id,executeStorageOp]);(0,_react.useEffect)(function(){if(webViewRef.current){webViewRef.current.injectJavaScript((0,_webViewStorage.getStorageScript)());executeStorageOp(function(){var _webViewRef$current7;(_webViewRef$current7=webViewRef.current)==null?void 0:_webViewRef$current7.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));});}},[]);(0,_react.useEffect)(function(){var fetchChatbotConfig=function(){var _ref4=(0,_asyncToGenerator2.default)(function*(){try{var _data$user;var endpointUrl=`${_constants.API_URL}/chat/chatbot/get/`;var payload={client_user_id:effectiveUserId,resumable_session_id:resumeSessionRef.current||undefined,org_id:api_key,token:user_token,extra_info:{}};var response=yield fetch(endpointUrl,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(payload)});if(!response.ok){throw new Error("Failed to fetch chatbot configuration");}var data=yield response.json();var orgInfo=data==null?void 0:(_data$user=data.user)==null?void 0:_data$user.org_info;if(orgInfo){var _orgInfo$brand_config,_orgInfo$brand_config2,_orgInfo$brand_config3,_orgInfo$brand_config4,_orgInfo$brand_config5,_orgInfo$brand_config6,_orgInfo$brand_config7,_orgInfo$brand_config8,_orgInfo$brand_config9,_orgInfo$brand_config10,_orgInfo$brand_config11,_orgInfo$brand_config12,_orgInfo$brand_config13,_orgInfo$brand_config14,_orgInfo$brand_config15,_orgInfo$brand_config16,_orgInfo$brand_config17,_orgInfo$brand_config18,_orgInfo$brand_config19,_orgInfo$brand_config20,_orgInfo$brand_config21,_orgInfo$brand_config22;var config={brand_colour:((_orgInfo$brand_config=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config2=_orgInfo$brand_config.colors)==null?void 0:_orgInfo$brand_config2.brand_color)||"",image_url:((_orgInfo$brand_config3=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config3.launcher_logo_url)||"",chat_interface_config:{chat_bubble_prompts:[],display_name:((_orgInfo$brand_config4=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config4.display_name)||"",welcome_message:((_orgInfo$brand_config5=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config5.welcome_message)||"Hey! What can we help you with today?",redirect_url:((_orgInfo$brand_config6=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config6.redirect_url)||""},interface_properties:{position:((_orgInfo$brand_config7=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config8=_orgInfo$brand_config7.interface_properties)==null?void 0:_orgInfo$brand_config8.position)||WidgetPositionEnums.RIGHT,side_spacing:(_orgInfo$brand_config9=(_orgInfo$brand_config10=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config11=_orgInfo$brand_config10.interface_properties)==null?void 0:_orgInfo$brand_config11.side_spacing)!=null?_orgInfo$brand_config9:20,bottom_spacing:(_orgInfo$brand_config12=(_orgInfo$brand_config13=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config14=_orgInfo$brand_config13.interface_properties)==null?void 0:_orgInfo$brand_config14.bottom_spacing)!=null?_orgInfo$brand_config12:20},interface_type:((_orgInfo$brand_config15=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config15.interface_type)||ChatbotInterfaceType.WIDGET,launcher_type:((_orgInfo$brand_config16=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config16.launcher_type)||LauncherType.IMAGE,launcher_properties:{text:((_orgInfo$brand_config17=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config18=_orgInfo$brand_config17.launcher_properties)==null?void 0:_orgInfo$brand_config18.text)||""},images:{launcher_image_url:{url:((_orgInfo$brand_config19=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config20=_orgInfo$brand_config19.images)==null?void 0:(_orgInfo$brand_config21=_orgInfo$brand_config20.launcher_image_url)==null?void 0:_orgInfo$brand_config21.url)||_constants.DEFAULT_LAUNCHER_IMAGE}},chat_iframe_url:((_orgInfo$brand_config22=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config22.chat_iframe_url)||""};setChatbotConfig(config);}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to fetch chatbot configuration"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.NETWORK_ERROR,context:{api_key:api_key,user_id:user_id}});}finally{setLoading(false);}});return function fetchChatbotConfig(){return _ref4.apply(this,arguments);};}();if(api_key&&effectiveUserId){fetchChatbotConfig();}},[api_key,effectiveUserId,user_token]);function constructUrl(){if(!effectiveUserId)return"";var params=new URLSearchParams({id:api_key});return`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;}var openWebView=(0,_react.useCallback)(function(){setIsWebViewVisible(true);if(enableAnimation){(0,_animations.animateWebViewOpen)(animatedValues,function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}else{requestAnimationFrame(function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}},[enableAnimation,animatedValues,externalOnOpen,emitEvent]);var closeWebView=(0,_react.useCallback)(function(){if(webViewRef.current){webViewRef.current.postMessage(JSON.stringify({name:"closeFrame",domain:"app-domain.com"}));}if(enableAnimation){(0,_animations.animateWebViewClose)(animatedValues,function(){setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);});}else{setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);}},[enableAnimation,animatedValues,externalOnClose,emitEvent]);(0,_react.useEffect)(function(){if(show_floating_button&&chatbotConfig){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_LOADED);}},[show_floating_button,chatbotConfig,emitEvent]);(0,_react.useEffect)(function(){if(!loading&&chatbotConfig&&effectiveUserId&&!isInitialized){setIsInitialized(true);onReady==null?void 0:onReady();}},[loading,chatbotConfig,effectiveUserId,isInitialized,onReady]);var getScreenDimensions=function getScreenDimensions(){var windowHeight=_reactNative.Dimensions.get("window").height;var windowWidth=_reactNative.Dimensions.get("window").width;var statusBarHeight=_reactNative.Platform.OS==="ios"?0:_reactNative.StatusBar.currentHeight||0;return{height:windowHeight-statusBarHeight,width:windowWidth};};var requestAndroidMicPermission=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){try{if(_reactNative.Platform.OS==="ios"){return true;}var alreadyGranted=yield _reactNative.PermissionsAndroid.check(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO);if(alreadyGranted){return true;}var result=yield _reactNative.PermissionsAndroid.request(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,{title:"Microphone permission",message:"This app uses your microphone for voice features.",buttonPositive:"Allow",buttonNegative:"Deny"});var granted=result===_reactNative.PermissionsAndroid.RESULTS.GRANTED;if(!granted){_reactNative.Alert.alert("Microphone required","Voice features will not work unless you allow microphone access.");}return granted;}catch(err){console.warn("Error requesting mic permission",err);return false;}}),[]);var screenDimensions=getScreenDimensions();(0,_react.useEffect)(function(){if(__DEV__){(0,_debugConfig.enableNetworkDebug)();}},[]);var position=(chatbotConfig==null?void 0:(_chatbotConfig$interf=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf.position)||"Right";var sideSpacing=(_chatbotConfig$interf2=chatbotConfig==null?void 0:(_chatbotConfig$interf3=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf3.side_spacing)!=null?_chatbotConfig$interf2:20;var bottomSpacing=(_chatbotConfig$interf4=chatbotConfig==null?void 0:(_chatbotConfig$interf5=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf5.bottom_spacing)!=null?_chatbotConfig$interf4:20;return(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotSDK",children:(0,_jsxRuntime.jsxs)(_reactNative.View,{style:styles==null?void 0:styles.mainContainer,pointerEvents:isWebViewVisible?"auto":"box-none",children:[!loading&&(0,_jsxRuntime.jsxs)(_jsxRuntime.Fragment,{children:[(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"FloatingButton",children:show_floating_button&&api_key&&chatbotConfig&&(0,_jsxRuntime.jsx)(_FloatingButton.default,{chatbotConfig:chatbotConfig,isWebViewVisible:isWebViewVisible,onPress:function onPress(){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_CLICKED);openWebView();},brandColor:chatbotConfig.brand_colour,imageUrl:chatbotConfig.image_url})}),(0,_jsxRuntime.jsx)(_reactNative.View,{style:[styles.webViewWrapper,{height:isWebViewVisible?"100%":0}],pointerEvents:isWebViewVisible?"auto":"none",children:(0,_jsxRuntime.jsx)(_reactNative.Animated.View,{style:[styles.fullScreenContainer,{opacity:animatedValues.opacity,transform:[{scale:animatedValues.scale},{translateY:animatedValues.translateY}]}],children:(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotWebView",children:(0,_jsxRuntime.jsx)(_reactNativeWebview.WebView,{mediaCapturePermissionGrantType:"grant",webviewDebuggingEnabled:true,ref:webViewRef,source:{uri:constructUrl()},onMessage:handleMessage,style:styles.webview,containerStyle:isFullScreen?{width:screenDimensions.width,height:screenDimensions.height-40}:undefined,allowsInlineMediaPlayback:true,mediaPlaybackRequiresUserAction:false,allowFileAccess:false,geolocationEnabled:false,javaScriptEnabled:true,domStorageEnabled:true,cacheEnabled:true,scrollEnabled:true,bounces:false,onShouldStartLoadWithRequest:function onShouldStartLoadWithRequest(request){return request.url.startsWith(_constants.BASE_CHATBOT_URL)||request.url.startsWith((chatbotConfig==null?void 0:chatbotConfig.chat_iframe_url)||"");},startInLoadingState:isFirstLoadRef.current,onLoadEnd:function onLoadEnd(){var _webViewRef$current8;if(__DEV__){(0,_debugConfig.enableWebViewDebug)(webViewRef);}(_webViewRef$current8=webViewRef.current)==null?void 0:_webViewRef$current8.injectJavaScript(`
9
+ window.postMessage(${JSON.stringify(_messageData)}, '*');`);}break;default:if(onMessage)onMessage(parsedData!=null?parsedData:{});}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to parse WebView message"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.RUNTIME_ERROR,context:{messageData:data}});}});return function(_x){return _ref2.apply(this,arguments);};}(),[emitEvent,emitSession,isWebViewVisible,onMessage,systemInfo,effectiveUserId,user_token,user_profile]);(0,_react.useEffect)(function(){var initializeUserId=function(){var _ref3=(0,_asyncToGenerator2.default)(function*(){var userId=user_id?String(user_id):undefined;if(!userId){userId=memoryCache.current["rblyn_anon"];if(!userId){userId=(0,_cookieUtils.generateUUID)();executeStorageOp(function(){var _webViewRef$current6;(_webViewRef$current6=webViewRef.current)==null?void 0:_webViewRef$current6.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.SET_STORAGE,"rblyn_anon",userId));});}}setEffectiveUserId(userId);});return function initializeUserId(){return _ref3.apply(this,arguments);};}();initializeUserId();},[user_id,executeStorageOp]);(0,_react.useEffect)(function(){if(webViewRef.current){webViewRef.current.injectJavaScript((0,_webViewStorage.getStorageScript)());executeStorageOp(function(){var _webViewRef$current7;(_webViewRef$current7=webViewRef.current)==null?void 0:_webViewRef$current7.injectJavaScript((0,_webViewStorage.createStorageMessage)(_webViewStorage.StorageMessageType.GET_STORAGE,"rblyn_anon"));});}},[]);(0,_react.useEffect)(function(){var fetchChatbotConfig=function(){var _ref4=(0,_asyncToGenerator2.default)(function*(){try{var _data$user;var endpointUrl=`${_constants.API_URL}/chat/chatbot/get/`;var payload={client_user_id:effectiveUserId,resumable_session_id:resumeSessionRef.current||undefined,discrete:discreteRef.current?true:undefined,org_id:api_key,token:user_token,extra_info:{}};var response=yield fetch(endpointUrl,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(payload)});if(!response.ok){throw new Error("Failed to fetch chatbot configuration");}var data=yield response.json();var orgInfo=data==null?void 0:(_data$user=data.user)==null?void 0:_data$user.org_info;if(orgInfo){var _orgInfo$brand_config,_orgInfo$brand_config2,_orgInfo$brand_config3,_orgInfo$brand_config4,_orgInfo$brand_config5,_orgInfo$brand_config6,_orgInfo$brand_config7,_orgInfo$brand_config8,_orgInfo$brand_config9,_orgInfo$brand_config10,_orgInfo$brand_config11,_orgInfo$brand_config12,_orgInfo$brand_config13,_orgInfo$brand_config14,_orgInfo$brand_config15,_orgInfo$brand_config16,_orgInfo$brand_config17,_orgInfo$brand_config18,_orgInfo$brand_config19,_orgInfo$brand_config20,_orgInfo$brand_config21,_orgInfo$brand_config22;var config={brand_colour:((_orgInfo$brand_config=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config2=_orgInfo$brand_config.colors)==null?void 0:_orgInfo$brand_config2.brand_color)||"",image_url:((_orgInfo$brand_config3=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config3.launcher_logo_url)||"",chat_interface_config:{chat_bubble_prompts:[],display_name:((_orgInfo$brand_config4=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config4.display_name)||"",welcome_message:((_orgInfo$brand_config5=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config5.welcome_message)||"Hey! What can we help you with today?",redirect_url:((_orgInfo$brand_config6=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config6.redirect_url)||""},interface_properties:{position:((_orgInfo$brand_config7=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config8=_orgInfo$brand_config7.interface_properties)==null?void 0:_orgInfo$brand_config8.position)||WidgetPositionEnums.RIGHT,side_spacing:(_orgInfo$brand_config9=(_orgInfo$brand_config10=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config11=_orgInfo$brand_config10.interface_properties)==null?void 0:_orgInfo$brand_config11.side_spacing)!=null?_orgInfo$brand_config9:20,bottom_spacing:(_orgInfo$brand_config12=(_orgInfo$brand_config13=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config14=_orgInfo$brand_config13.interface_properties)==null?void 0:_orgInfo$brand_config14.bottom_spacing)!=null?_orgInfo$brand_config12:20},interface_type:((_orgInfo$brand_config15=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config15.interface_type)||ChatbotInterfaceType.WIDGET,launcher_type:((_orgInfo$brand_config16=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config16.launcher_type)||LauncherType.IMAGE,launcher_properties:{text:((_orgInfo$brand_config17=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config18=_orgInfo$brand_config17.launcher_properties)==null?void 0:_orgInfo$brand_config18.text)||""},images:{launcher_image_url:{url:((_orgInfo$brand_config19=orgInfo.brand_config)==null?void 0:(_orgInfo$brand_config20=_orgInfo$brand_config19.images)==null?void 0:(_orgInfo$brand_config21=_orgInfo$brand_config20.launcher_image_url)==null?void 0:_orgInfo$brand_config21.url)||_constants.DEFAULT_LAUNCHER_IMAGE}},chat_iframe_url:((_orgInfo$brand_config22=orgInfo.brand_config)==null?void 0:_orgInfo$brand_config22.chat_iframe_url)||""};setChatbotConfig(config);}}catch(error){_ErrorTrackingService.errorTracker.trackError(error instanceof Error?error:new Error("Failed to fetch chatbot configuration"),"ChatbotSDK",{type:_errorConstants.ErrorTypes.NETWORK_ERROR,context:{api_key:api_key,user_id:user_id}});}finally{setLoading(false);}});return function fetchChatbotConfig(){return _ref4.apply(this,arguments);};}();if(api_key&&effectiveUserId){fetchChatbotConfig();}},[api_key,effectiveUserId,user_token]);function constructUrl(){if(!effectiveUserId)return"";var params=new URLSearchParams({id:api_key});return`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;}var openWebView=(0,_react.useCallback)(function(){if(isWebViewVisibleRef.current)return;isWebViewVisibleRef.current=true;setIsWebViewVisible(true);if(enableAnimation){(0,_animations.animateWebViewOpen)(animatedValues,function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}else{requestAnimationFrame(function(){externalOnOpen==null?void 0:externalOnOpen();emitEvent(_events.ChatbotEventType.CHATBOT_OPENED);if(!isFirstLoadRef.current){setTimeout(triggerAppInit,100);}});}},[enableAnimation,animatedValues,externalOnOpen,emitEvent]);var closeWebView=(0,_react.useCallback)(function(){if(webViewRef.current){webViewRef.current.postMessage(JSON.stringify({name:"closeFrame",domain:"app-domain.com"}));}if(enableAnimation){(0,_animations.animateWebViewClose)(animatedValues,function(){isWebViewVisibleRef.current=false;setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);});}else{isWebViewVisibleRef.current=false;setIsWebViewVisible(false);externalOnClose==null?void 0:externalOnClose();emitEvent(_events.ChatbotEventType.CHATBOT_CLOSED);}},[enableAnimation,animatedValues,externalOnClose,emitEvent]);(0,_react.useEffect)(function(){if(show_floating_button&&chatbotConfig){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_LOADED);}},[show_floating_button,chatbotConfig,emitEvent]);(0,_react.useEffect)(function(){if(!loading&&chatbotConfig&&effectiveUserId&&!isInitialized){isInitializedRef.current=true;setIsInitialized(true);onReady==null?void 0:onReady();}},[loading,chatbotConfig,effectiveUserId,isInitialized,onReady]);var getScreenDimensions=function getScreenDimensions(){var windowHeight=_reactNative.Dimensions.get("window").height;var windowWidth=_reactNative.Dimensions.get("window").width;var statusBarHeight=_reactNative.Platform.OS==="ios"?0:_reactNative.StatusBar.currentHeight||0;return{height:windowHeight-statusBarHeight,width:windowWidth};};var requestAndroidMicPermission=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){try{if(_reactNative.Platform.OS==="ios"){return true;}var alreadyGranted=yield _reactNative.PermissionsAndroid.check(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO);if(alreadyGranted){return true;}var result=yield _reactNative.PermissionsAndroid.request(_reactNative.PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,{title:"Microphone permission",message:"This app uses your microphone for voice features.",buttonPositive:"Allow",buttonNegative:"Deny"});var granted=result===_reactNative.PermissionsAndroid.RESULTS.GRANTED;if(!granted){_reactNative.Alert.alert("Microphone required","Voice features will not work unless you allow microphone access.");}return granted;}catch(err){console.warn("Error requesting mic permission",err);return false;}}),[]);var screenDimensions=getScreenDimensions();(0,_react.useEffect)(function(){if(__DEV__){(0,_debugConfig.enableNetworkDebug)();}},[]);var position=(chatbotConfig==null?void 0:(_chatbotConfig$interf=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf.position)||"Right";var sideSpacing=(_chatbotConfig$interf2=chatbotConfig==null?void 0:(_chatbotConfig$interf3=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf3.side_spacing)!=null?_chatbotConfig$interf2:20;var bottomSpacing=(_chatbotConfig$interf4=chatbotConfig==null?void 0:(_chatbotConfig$interf5=chatbotConfig.interface_properties)==null?void 0:_chatbotConfig$interf5.bottom_spacing)!=null?_chatbotConfig$interf4:20;return(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotSDK",children:(0,_jsxRuntime.jsxs)(_reactNative.View,{style:styles==null?void 0:styles.mainContainer,pointerEvents:isWebViewVisible?"auto":"box-none",children:[!loading&&(0,_jsxRuntime.jsxs)(_jsxRuntime.Fragment,{children:[(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"FloatingButton",children:show_floating_button&&api_key&&chatbotConfig&&(0,_jsxRuntime.jsx)(_FloatingButton.default,{chatbotConfig:chatbotConfig,isWebViewVisible:isWebViewVisible,onPress:function onPress(){emitEvent(_events.ChatbotEventType.CHATBOT_BUTTON_CLICKED);openWebView();},brandColor:chatbotConfig.brand_colour,imageUrl:chatbotConfig.image_url})}),(0,_jsxRuntime.jsx)(_reactNative.View,{style:[styles.webViewWrapper,{height:isWebViewVisible?"100%":0}],pointerEvents:isWebViewVisible?"auto":"none",children:(0,_jsxRuntime.jsx)(_reactNative.Animated.View,{style:[styles.fullScreenContainer,{opacity:animatedValues.opacity,transform:[{scale:animatedValues.scale},{translateY:animatedValues.translateY}]}],children:(0,_jsxRuntime.jsx)(_ErrorBoundary.ErrorBoundary,{componentName:"ChatbotWebView",children:(0,_jsxRuntime.jsx)(_reactNativeWebview.WebView,{mediaCapturePermissionGrantType:"grant",webviewDebuggingEnabled:true,ref:webViewRef,source:{uri:constructUrl()},onMessage:handleMessage,style:styles.webview,containerStyle:isFullScreen?{width:screenDimensions.width,height:screenDimensions.height-40}:undefined,allowsInlineMediaPlayback:true,mediaPlaybackRequiresUserAction:false,allowFileAccess:false,geolocationEnabled:false,javaScriptEnabled:true,domStorageEnabled:true,cacheEnabled:true,scrollEnabled:true,bounces:false,onShouldStartLoadWithRequest:function onShouldStartLoadWithRequest(request){return request.url.startsWith(_constants.BASE_CHATBOT_URL)||request.url.startsWith((chatbotConfig==null?void 0:chatbotConfig.chat_iframe_url)||"");},startInLoadingState:isFirstLoadRef.current,onLoadEnd:function onLoadEnd(){var _webViewRef$current8;if(__DEV__){(0,_debugConfig.enableWebViewDebug)(webViewRef);}(_webViewRef$current8=webViewRef.current)==null?void 0:_webViewRef$current8.injectJavaScript(`
10
10
  if (!document.querySelector('meta[name="viewport"]')) {
11
11
  var meta = document.createElement('meta');
12
12
  meta.name = 'viewport';
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_FloatingButton","_interopRequireDefault","_constants","_systemInfo","_useChatbotEvents2","_events","_logger","_debugConfig","_DebugButton","_ErrorBoundary","_errorConstants","_ErrorTrackingService","_cookieUtils","_webViewStorage","_animations","_fileDownload","_session","_jsxRuntime","_this","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChatbotInterfaceType","exports","WidgetPositionEnums","LauncherType","Chatbot","forwardRef","_ref","ref","_chatbotConfig$interf","_chatbotConfig$interf2","_chatbotConfig$interf3","_chatbotConfig$interf4","_chatbotConfig$interf5","api_key","user_id","user_token","_ref$show_floating_bu","show_floating_button","onEvent","onMessage","_ref$isFullScreen","isFullScreen","_ref$enableAnimation","enableAnimation","externalOnOpen","onOpen","externalOnClose","onClose","onReady","user_profile","session_id","session_context","onSession","_useState","useState","_useState2","_slicedToArray2","isWebViewVisible","setIsWebViewVisible","_useState3","_useState4","chatbotConfig","setChatbotConfig","_useState5","_useState6","loading","setLoading","_useState7","_useState8","isInitialized","setIsInitialized","webViewRef","useRef","isFirstLoadRef","_useState9","_useState10","toastVisible","setToastVisible","_useState11","_useState12","toastMessage","setToastMessage","_useState13","_useState14","effectiveUserId","setEffectiveUserId","_useState15","_useState16","isStorageReady","setIsStorageReady","pendingStorageOps","memoryCache","_useState17","os","browser","_useState18","systemInfo","setSystemInfo","systemInfoRef","sessionIdRef","undefined","onSessionRef","sessionContextRef","resumeSessionRef","current","animatedValues","scale","Animated","Value","translateY","opacity","chatbotConfigForEvents","useMemo","userId","isAnonymous","_useChatbotEvents","useChatbotEvents","emitEvent","onInternalEvent","useImperativeHandle","open","openWebView","close","closeWebView","toggle","isReady","getSessionId","emitSession","useCallback","data","sessionId","extractSessionId","_sessionContextRef$cu","error","errorTracker","trackError","Error","type","ErrorTypes","RUNTIME_ERROR","context","source","SESSION_UPDATED_MESSAGE_TYPE","triggerAppInit","_webViewRef$current","injectJavaScript","getBrowserAndOSInfoScript","executeStorageOp","operation","push","handleMessage","_ref2","_asyncToGenerator2","event","_webViewRef$current2","nativeEvent","parsedData","JSON","parse","values","StorageMessageType","includes","storageMessage","STORAGE_READY","forEach","op","createStorageMessage","GET_STORAGE","STORAGE_RESPONSE","key","value","STORAGE_ERROR","logger","__DEV__","console","log","level","_parsedData$data","ChatbotEventType","CHATBOT_APP_READY","_webViewRef$current3","_webViewRef$current4","messageData","name","action","_defineProperty2","RESUME_SESSION_KEY","assign","getSystemInfo","__INT_SYS_INFO__","debug","stringify","domain","url","filename","downloadData","inPlace","handleDownloadRequest","CHATBOT_LOADED","CHAT_INITIALIZED","SESSION_REFRESHED","CHAT_INITIALIZATION_FAILED","granted","requestAndroidMicPermission","_webViewRef$current5","_x","apply","arguments","useEffect","initializeUserId","_ref3","String","generateUUID","_webViewRef$current6","SET_STORAGE","getStorageScript","_webViewRef$current7","fetchChatbotConfig","_ref4","_data$user","endpointUrl","API_URL","payload","client_user_id","resumable_session_id","org_id","token","extra_info","response","fetch","method","headers","body","ok","json","orgInfo","user","org_info","_orgInfo$brand_config","_orgInfo$brand_config2","_orgInfo$brand_config3","_orgInfo$brand_config4","_orgInfo$brand_config5","_orgInfo$brand_config6","_orgInfo$brand_config7","_orgInfo$brand_config8","_orgInfo$brand_config9","_orgInfo$brand_config10","_orgInfo$brand_config11","_orgInfo$brand_config12","_orgInfo$brand_config13","_orgInfo$brand_config14","_orgInfo$brand_config15","_orgInfo$brand_config16","_orgInfo$brand_config17","_orgInfo$brand_config18","_orgInfo$brand_config19","_orgInfo$brand_config20","_orgInfo$brand_config21","_orgInfo$brand_config22","config","brand_colour","brand_config","colors","brand_color","image_url","launcher_logo_url","chat_interface_config","chat_bubble_prompts","display_name","welcome_message","redirect_url","interface_properties","position","RIGHT","side_spacing","bottom_spacing","interface_type","WIDGET","launcher_type","IMAGE","launcher_properties","text","images","launcher_image_url","DEFAULT_LAUNCHER_IMAGE","chat_iframe_url","NETWORK_ERROR","constructUrl","params","URLSearchParams","id","BASE_CHATBOT_URL","toString","animateWebViewOpen","CHATBOT_OPENED","setTimeout","requestAnimationFrame","postMessage","animateWebViewClose","CHATBOT_CLOSED","CHATBOT_BUTTON_LOADED","getScreenDimensions","windowHeight","Dimensions","height","windowWidth","width","statusBarHeight","Platform","OS","StatusBar","currentHeight","alreadyGranted","PermissionsAndroid","check","PERMISSIONS","RECORD_AUDIO","result","request","title","message","buttonPositive","buttonNegative","RESULTS","GRANTED","Alert","alert","err","warn","screenDimensions","enableNetworkDebug","sideSpacing","bottomSpacing","jsx","ErrorBoundary","componentName","children","jsxs","View","style","styles","mainContainer","pointerEvents","Fragment","onPress","CHATBOT_BUTTON_CLICKED","brandColor","imageUrl","webViewWrapper","fullScreenContainer","transform","WebView","mediaCapturePermissionGrantType","webviewDebuggingEnabled","uri","webview","containerStyle","allowsInlineMediaPlayback","mediaPlaybackRequiresUserAction","allowFileAccess","geolocationEnabled","javaScriptEnabled","domStorageEnabled","cacheEnabled","scrollEnabled","bounces","onShouldStartLoadWithRequest","startsWith","startInLoadingState","onLoadEnd","_webViewRef$current8","enableWebViewDebug","onError","syntheticEvent","description","code","displayName","StyleSheet","create","flex","overflow","top","left","right","bottom","zIndex","backgroundColor","inlineContainer","_default"],"sourceRoot":"../../src","sources":["Chatbotsdk.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_FloatingButton","_interopRequireDefault","_constants","_systemInfo","_useChatbotEvents2","_events","_logger","_debugConfig","_DebugButton","_ErrorBoundary","_errorConstants","_ErrorTrackingService","_cookieUtils","_webViewStorage","_animations","_fileDownload","_session","_jsxRuntime","_this","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChatbotInterfaceType","exports","WidgetPositionEnums","LauncherType","Chatbot","forwardRef","_ref","ref","_chatbotConfig$interf","_chatbotConfig$interf2","_chatbotConfig$interf3","_chatbotConfig$interf4","_chatbotConfig$interf5","api_key","user_id","user_token","_ref$show_floating_bu","show_floating_button","onEvent","onMessage","_ref$isFullScreen","isFullScreen","_ref$enableAnimation","enableAnimation","externalOnOpen","onOpen","externalOnClose","onClose","onReady","user_profile","session_id","session_context","_ref$discrete","discrete","onSession","_useState","useState","_useState2","_slicedToArray2","isWebViewVisible","setIsWebViewVisible","_useState3","_useState4","chatbotConfig","setChatbotConfig","_useState5","_useState6","loading","setLoading","_useState7","_useState8","isInitialized","setIsInitialized","webViewRef","useRef","isFirstLoadRef","_useState9","_useState10","toastVisible","setToastVisible","_useState11","_useState12","toastMessage","setToastMessage","_useState13","_useState14","effectiveUserId","setEffectiveUserId","_useState15","_useState16","isStorageReady","setIsStorageReady","pendingStorageOps","memoryCache","_useState17","os","browser","_useState18","systemInfo","setSystemInfo","systemInfoRef","isInitializedRef","isWebViewVisibleRef","sessionIdRef","undefined","onSessionRef","sessionContextRef","resumeSessionRef","discreteRef","current","animatedValues","scale","Animated","Value","translateY","opacity","chatbotConfigForEvents","useMemo","userId","isAnonymous","_useChatbotEvents","useChatbotEvents","emitEvent","onInternalEvent","useImperativeHandle","open","openWebView","close","closeWebView","toggle","isReady","getSessionId","emitSession","useCallback","data","sessionId","extractSessionId","_sessionContextRef$cu","error","errorTracker","trackError","Error","type","ErrorTypes","RUNTIME_ERROR","context","source","SESSION_UPDATED_MESSAGE_TYPE","triggerAppInit","_webViewRef$current","injectJavaScript","getBrowserAndOSInfoScript","executeStorageOp","operation","push","handleMessage","_ref2","_asyncToGenerator2","event","_webViewRef$current2","nativeEvent","parsedData","JSON","parse","values","StorageMessageType","includes","storageMessage","STORAGE_READY","forEach","op","createStorageMessage","GET_STORAGE","STORAGE_RESPONSE","key","value","STORAGE_ERROR","logger","__DEV__","console","log","level","_parsedData$data","ChatbotEventType","CHATBOT_APP_READY","_webViewRef$current3","_webViewRef$current4","messageData","name","action","_defineProperty2","RESUME_SESSION_KEY","assign","getSystemInfo","__INT_SYS_INFO__","debug","stringify","domain","url","filename","downloadData","inPlace","handleDownloadRequest","CHATBOT_LOADED","CHAT_INITIALIZED","SESSION_REFRESHED","CHAT_INITIALIZATION_FAILED","granted","requestAndroidMicPermission","_webViewRef$current5","_x","apply","arguments","useEffect","initializeUserId","_ref3","String","generateUUID","_webViewRef$current6","SET_STORAGE","getStorageScript","_webViewRef$current7","fetchChatbotConfig","_ref4","_data$user","endpointUrl","API_URL","payload","client_user_id","resumable_session_id","org_id","token","extra_info","response","fetch","method","headers","body","ok","json","orgInfo","user","org_info","_orgInfo$brand_config","_orgInfo$brand_config2","_orgInfo$brand_config3","_orgInfo$brand_config4","_orgInfo$brand_config5","_orgInfo$brand_config6","_orgInfo$brand_config7","_orgInfo$brand_config8","_orgInfo$brand_config9","_orgInfo$brand_config10","_orgInfo$brand_config11","_orgInfo$brand_config12","_orgInfo$brand_config13","_orgInfo$brand_config14","_orgInfo$brand_config15","_orgInfo$brand_config16","_orgInfo$brand_config17","_orgInfo$brand_config18","_orgInfo$brand_config19","_orgInfo$brand_config20","_orgInfo$brand_config21","_orgInfo$brand_config22","config","brand_colour","brand_config","colors","brand_color","image_url","launcher_logo_url","chat_interface_config","chat_bubble_prompts","display_name","welcome_message","redirect_url","interface_properties","position","RIGHT","side_spacing","bottom_spacing","interface_type","WIDGET","launcher_type","IMAGE","launcher_properties","text","images","launcher_image_url","DEFAULT_LAUNCHER_IMAGE","chat_iframe_url","NETWORK_ERROR","constructUrl","params","URLSearchParams","id","BASE_CHATBOT_URL","toString","animateWebViewOpen","CHATBOT_OPENED","setTimeout","requestAnimationFrame","postMessage","animateWebViewClose","CHATBOT_CLOSED","CHATBOT_BUTTON_LOADED","getScreenDimensions","windowHeight","Dimensions","height","windowWidth","width","statusBarHeight","Platform","OS","StatusBar","currentHeight","alreadyGranted","PermissionsAndroid","check","PERMISSIONS","RECORD_AUDIO","result","request","title","message","buttonPositive","buttonNegative","RESULTS","GRANTED","Alert","alert","err","warn","screenDimensions","enableNetworkDebug","sideSpacing","bottomSpacing","jsx","ErrorBoundary","componentName","children","jsxs","View","style","styles","mainContainer","pointerEvents","Fragment","onPress","CHATBOT_BUTTON_CLICKED","brandColor","imageUrl","webViewWrapper","fullScreenContainer","transform","WebView","mediaCapturePermissionGrantType","webviewDebuggingEnabled","uri","webview","containerStyle","allowsInlineMediaPlayback","mediaPlaybackRequiresUserAction","allowFileAccess","geolocationEnabled","javaScriptEnabled","domStorageEnabled","cacheEnabled","scrollEnabled","bounces","onShouldStartLoadWithRequest","startsWith","startInLoadingState","onLoadEnd","_webViewRef$current8","enableWebViewDebug","onError","syntheticEvent","description","code","displayName","StyleSheet","create","flex","overflow","top","left","right","bottom","zIndex","backgroundColor","inlineContainer","_default"],"sourceRoot":"../../src","sources":["Chatbotsdk.tsx"],"mappings":"6gBAAA,IAAAA,MAAA,CAAAC,uBAAA,CAAAC,OAAA,WASA,IAAAC,YAAA,CAAAD,OAAA,iBAYA,IAAAE,mBAAA,CAAAF,OAAA,yBACA,IAAAG,eAAA,CAAAC,sBAAA,CAAAJ,OAAA,sBACA,IAAAK,UAAA,CAAAL,OAAA,gBACA,IAAAM,WAAA,CAAAN,OAAA,uBACA,IAAAO,kBAAA,CAAAP,OAAA,6BACA,IAAAQ,OAAA,CAAAR,OAAA,mBAKA,IAAAS,OAAA,CAAAT,OAAA,mBACA,IAAAU,YAAA,CAAAV,OAAA,wBACA,IAAAW,YAAA,CAAAP,sBAAA,CAAAJ,OAAA,8BACA,IAAAY,cAAA,CAAAZ,OAAA,+BACA,IAAAa,eAAA,CAAAb,OAAA,+BAMA,IAAAc,qBAAA,CAAAd,OAAA,oCACA,IAAAe,YAAA,CAAAf,OAAA,wBACA,IAAAgB,eAAA,CAAAhB,OAAA,2BAMA,IAAAiB,WAAA,CAAAjB,OAAA,uBACA,IAAAkB,aAAA,CAAAlB,OAAA,yBACA,IAAAmB,QAAA,CAAAnB,OAAA,oBAIyB,IAAAoB,WAAA,CAAApB,OAAA,0BAAAqB,KAAA,MAAAC,YAAA,+GAAAvB,wBAAAwB,CAAA,CAAAC,CAAA,wBAAAC,OAAA,KAAAC,CAAA,KAAAD,OAAA,GAAAE,CAAA,KAAAF,OAAA,UAAA1B,uBAAA,UAAAA,wBAAAwB,CAAA,CAAAC,CAAA,MAAAA,CAAA,EAAAD,CAAA,EAAAA,CAAA,CAAAK,UAAA,QAAAL,CAAA,KAAAM,CAAA,CAAAC,CAAA,CAAAC,CAAA,EAAAC,SAAA,MAAAC,OAAA,CAAAV,CAAA,YAAAA,CAAA,mBAAAA,CAAA,qBAAAA,CAAA,QAAAQ,CAAA,IAAAF,CAAA,CAAAL,CAAA,CAAAG,CAAA,CAAAD,CAAA,KAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,SAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,EAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,CAAAQ,CAAA,WAAAM,EAAA,IAAAd,CAAA,aAAAc,EAAA,KAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,CAAAc,EAAA,KAAAP,CAAA,EAAAD,CAAA,CAAAW,MAAA,CAAAC,cAAA,GAAAD,MAAA,CAAAE,wBAAA,CAAAnB,CAAA,CAAAc,EAAA,KAAAP,CAAA,CAAAK,GAAA,EAAAL,CAAA,CAAAM,GAAA,EAAAP,CAAA,CAAAE,CAAA,CAAAM,EAAA,CAAAP,CAAA,EAAAC,CAAA,CAAAM,EAAA,EAAAd,CAAA,CAAAc,EAAA,UAAAN,CAAA,IAAAR,CAAA,CAAAC,CAAA,MAkDb,CAAAmB,oBAAoB,CAAAC,OAAA,CAAAD,oBAAA,UAApBA,oBAAoB,EAApBA,oBAAoB,oBAApBA,oBAAoB,sBAApBA,oBAAoB,wBAApB,CAAAA,oBAAoB,UAMpB,CAAAE,mBAAmB,CAAAD,OAAA,CAAAC,mBAAA,UAAnBA,mBAAmB,EAAnBA,mBAAmB,kBAAnBA,mBAAmB,sBAAnB,CAAAA,mBAAmB,UAWnB,CAAAC,YAAY,CAAAF,OAAA,CAAAE,YAAA,UAAZA,YAAY,EAAZA,YAAY,gBAAZA,YAAY,kBAAZA,YAAY,wCAAZ,CAAAA,YAAY,OA6BxB,GAAM,CAAAC,OAAO,CAAG,GAAAC,iBAAU,EACxB,SAAAC,IAAA,CAmBEC,GAAG,CACA,KAAAC,qBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,IAlBD,CAAAC,OAAO,CAAAP,IAAA,CAAPO,OAAO,CACPC,OAAO,CAAAR,IAAA,CAAPQ,OAAO,CACPC,UAAU,CAAAT,IAAA,CAAVS,UAAU,CAAAC,qBAAA,CAAAV,IAAA,CACVW,oBAAoB,CAApBA,oBAAoB,CAAAD,qBAAA,UAAG,IAAI,CAAAA,qBAAA,CAC3BE,OAAO,CAAAZ,IAAA,CAAPY,OAAO,CACPC,SAAS,CAAAb,IAAA,CAATa,SAAS,CAAAC,iBAAA,CAAAd,IAAA,CACTe,YAAY,CAAZA,YAAY,CAAAD,iBAAA,UAAG,IAAI,CAAAA,iBAAA,CAAAE,oBAAA,CAAAhB,IAAA,CACnBiB,eAAe,CAAfA,eAAe,CAAAD,oBAAA,UAAG,IAAI,CAAAA,oBAAA,CACdE,cAAc,CAAAlB,IAAA,CAAtBmB,MAAM,CACGC,eAAe,CAAApB,IAAA,CAAxBqB,OAAO,CACPC,OAAO,CAAAtB,IAAA,CAAPsB,OAAO,CACPC,YAAY,CAAAvB,IAAA,CAAZuB,YAAY,CACZC,UAAU,CAAAxB,IAAA,CAAVwB,UAAU,CACVC,eAAe,CAAAzB,IAAA,CAAfyB,eAAe,CAAAC,aAAA,CAAA1B,IAAA,CACf2B,QAAQ,CAARA,QAAQ,CAAAD,aAAA,UAAG,KAAK,CAAAA,aAAA,CAChBE,SAAS,CAAA5B,IAAA,CAAT4B,SAAS,CAIX,IAAAC,SAAA,CAAgD,GAAAC,eAAQ,EAAC,KAAK,CAAC,CAAAC,UAAA,IAAAC,eAAA,CAAAhD,OAAA,EAAA6C,SAAA,IAAxDI,gBAAgB,CAAAF,UAAA,IAAEG,mBAAmB,CAAAH,UAAA,IAC5C,IAAAI,UAAA,CAA0C,GAAAL,eAAQ,EAChD,IACF,CAAC,CAAAM,UAAA,IAAAJ,eAAA,CAAAhD,OAAA,EAAAmD,UAAA,IAFME,aAAa,CAAAD,UAAA,IAAEE,gBAAgB,CAAAF,UAAA,IAGtC,IAAAG,UAAA,CAA8B,GAAAT,eAAQ,EAAC,IAAI,CAAC,CAAAU,UAAA,IAAAR,eAAA,CAAAhD,OAAA,EAAAuD,UAAA,IAArCE,OAAO,CAAAD,UAAA,IAAEE,UAAU,CAAAF,UAAA,IAC1B,IAAAG,UAAA,CAA0C,GAAAb,eAAQ,EAAC,KAAK,CAAC,CAAAc,UAAA,IAAAZ,eAAA,CAAAhD,OAAA,EAAA2D,UAAA,IAAlDE,aAAa,CAAAD,UAAA,IAAEE,gBAAgB,CAAAF,UAAA,IACtC,GAAM,CAAAG,UAAU,CAAG,GAAAC,aAAM,EAAU,IAAI,CAAC,CACxC,GAAM,CAAAC,cAAc,CAAG,GAAAD,aAAM,EAAC,IAAI,CAAC,CACnC,IAAAE,UAAA,CAAwC,GAAApB,eAAQ,EAAC,KAAK,CAAC,CAAAqB,WAAA,IAAAnB,eAAA,CAAAhD,OAAA,EAAAkE,UAAA,IAAhDE,YAAY,CAAAD,WAAA,IAAEE,eAAe,CAAAF,WAAA,IACpC,IAAAG,WAAA,CAAwC,GAAAxB,eAAQ,EAAC,EAAE,CAAC,CAAAyB,WAAA,IAAAvB,eAAA,CAAAhD,OAAA,EAAAsE,WAAA,IAA7CE,YAAY,CAAAD,WAAA,IAAEE,eAAe,CAAAF,WAAA,IACpC,IAAAG,WAAA,CAA8C,GAAA5B,eAAQ,EAAS,CAAC,CAAA6B,WAAA,IAAA3B,eAAA,CAAAhD,OAAA,EAAA0E,WAAA,IAAzDE,eAAe,CAAAD,WAAA,IAAEE,kBAAkB,CAAAF,WAAA,IAC1C,IAAAG,WAAA,CAA4C,GAAAhC,eAAQ,EAAC,KAAK,CAAC,CAAAiC,WAAA,IAAA/B,eAAA,CAAAhD,OAAA,EAAA8E,WAAA,IAApDE,cAAc,CAAAD,WAAA,IAAEE,iBAAiB,CAAAF,WAAA,IACxC,GAAM,CAAAG,iBAAiB,CAAG,GAAAlB,aAAM,EAAoB,EAAE,CAAC,CACvD,GAAM,CAAAmB,WAAW,CAAG,GAAAnB,aAAM,EAAyB,CAAC,CAAC,CAAC,CACtD,IAAAoB,WAAA,CAAoC,GAAAtC,eAAQ,EAAC,CAAEuC,EAAE,CAAE,EAAE,CAAEC,OAAO,CAAE,EAAG,CAAC,CAAC,CAAAC,WAAA,IAAAvC,eAAA,CAAAhD,OAAA,EAAAoF,WAAA,IAA9DI,UAAU,CAAAD,WAAA,IAAEE,aAAa,CAAAF,WAAA,IAChC,GAAM,CAAAG,aAAa,CAAG,GAAA1B,aAAM,EAAC,CAAEqB,EAAE,CAAE,EAAE,CAAEC,OAAO,CAAE,EAAG,CAAC,CAAC,CAWrD,GAAM,CAAAK,gBAAgB,CAAG,GAAA3B,aAAM,EAAC,KAAK,CAAC,CACtC,GAAM,CAAA4B,mBAAmB,CAAG,GAAA5B,aAAM,EAAC,KAAK,CAAC,CAEzC,GAAM,CAAA6B,YAAY,CAAG,GAAA7B,aAAM,EAAqB8B,SAAS,CAAC,CAC1D,GAAM,CAAAC,YAAY,CAAG,GAAA/B,aAAM,EAACpB,SAAS,CAAC,CACtC,GAAM,CAAAoD,iBAAiB,CAAG,GAAAhC,aAAM,EAACvB,eAAe,CAAC,CACjD,GAAM,CAAAwD,gBAAgB,CAAG,GAAAjC,aAAM,EAACxB,UAAU,CAAC,CAC3C,GAAM,CAAA0D,WAAW,CAAG,GAAAlC,aAAM,EAACrB,QAAQ,CAAC,CACpCoD,YAAY,CAACI,OAAO,CAAGvD,SAAS,CAChCoD,iBAAiB,CAACG,OAAO,CAAG1D,eAAe,CAC3CwD,gBAAgB,CAACE,OAAO,CAAG3D,UAAU,CACrC0D,WAAW,CAACC,OAAO,CAAGxD,QAAQ,CAG9B,GAAM,CAAAyD,cAAc,CAAG,GAAApC,aAAM,EAAC,CAC5BqC,KAAK,CAAE,GAAI,CAAAC,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAAC,CAC5BC,UAAU,CAAE,GAAI,CAAAF,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAAC,CACjCE,OAAO,CAAE,GAAI,CAAAH,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAC/B,CAAC,CAAC,CAACJ,OAAO,CAGV,GAAM,CAAAO,sBAAsB,CAAG,GAAAC,cAAO,EACpC,iBAAO,CACLC,MAAM,CAAEhC,eAAe,CACvBiC,WAAW,CAAE,CAACrF,OAAO,EAAIA,OAAO,GAAK,CAEvC,CAAC,EAAC,CACF,CAACoD,eAAe,CAAEpD,OAAO,CAC3B,CAAC,CAGD,IAAAsF,iBAAA,CAAuC,GAAAC,mCAAgB,EAAC,CACtDxF,OAAO,CAAPA,OAAO,CACP8B,aAAa,CAAEqD,sBAAsB,OAAtBA,sBAAsB,CAAI,CAAC,CAAC,CAC3CnE,YAAY,CAAEA,YAAY,CAC1BX,OAAO,CAAEA,OAAO,CAChB4D,UAAU,CAAEA,UAAU,OAAVA,UAAU,CAAI,CAAEH,EAAE,CAAE,EAAE,CAAEC,OAAO,CAAE,EAAG,CAClD,CAAC,CAAC,CANM0B,SAAS,CAAAF,iBAAA,CAATE,SAAS,CAAEC,eAAe,CAAAH,iBAAA,CAAfG,eAAe,CASlC,GAAAC,0BAAmB,EACjBjG,GAAG,CACH,iBAAO,CACLkG,IAAI,CAAE,QAAN,CAAAA,IAAIA,CAAA,CAAQ,CACV,GAAIxB,gBAAgB,CAACQ,OAAO,CAAE,CAC5BiB,WAAW,CAAC,CAAC,CACf,CACF,CAAC,CACDC,KAAK,CAAE,QAAP,CAAAA,KAAKA,CAAA,CAAQ,CACX,GAAI1B,gBAAgB,CAACQ,OAAO,CAAE,CAC5BmB,YAAY,CAAC,CAAC,CAChB,CACF,CAAC,CACDC,MAAM,CAAE,QAAR,CAAAA,MAAMA,CAAA,CAAQ,CACZ,GAAI5B,gBAAgB,CAACQ,OAAO,CAAE,CAC5B,GAAIP,mBAAmB,CAACO,OAAO,CAAE,CAC/BmB,YAAY,CAAC,CAAC,CAChB,CAAC,IAAM,CACLF,WAAW,CAAC,CAAC,CACf,CACF,CACF,CAAC,CACDI,OAAO,CAAE,QAAT,CAAAA,OAAOA,CAAA,QAAQ,CAAA7B,gBAAgB,CAACQ,OAAO,GACvCsB,YAAY,CAAE,QAAd,CAAAA,YAAYA,CAAA,QAAQ,CAAA5B,YAAY,CAACM,OAAO,EAC1C,CAAC,EAAC,CACF,CAACtC,aAAa,CAAEZ,gBAAgB,CAClC,CAAC,CAKD,GAAM,CAAAyE,WAAW,CAAG,GAAAC,kBAAW,EAAC,SAACC,IAAS,CAAK,CAC7C,GAAM,CAAAC,SAAS,CAAG,GAAAC,yBAAgB,EAACF,IAAI,CAAC,CACxC,GAAI,CAACC,SAAS,EAAIA,SAAS,GAAKhC,YAAY,CAACM,OAAO,CAAE,OACtDN,YAAY,CAACM,OAAO,CAAG0B,SAAS,CAEhC,GAAI,KAAAE,qBAAA,CACFhC,YAAY,CAACI,OAAO,cAApBJ,YAAY,CAACI,OAAO,CAAG0B,SAAS,EAAAE,qBAAA,CAAE/B,iBAAiB,CAACG,OAAO,QAAA4B,qBAAA,CAAI,CAAC,CAAC,CAAC,CACpE,CAAE,MAAOC,KAAK,CAAE,CACdC,kCAAY,CAACC,UAAU,CACrBF,KAAK,WAAY,CAAAG,KAAK,CAClBH,KAAK,CACL,GAAI,CAAAG,KAAK,CAAC,kCAAkC,CAAC,CACjD,YAAY,CACZ,CAGEC,IAAI,CAAEC,0BAAU,CAACC,aAAa,CAC9BC,OAAO,CAAE,CAAEC,MAAM,CAAEC,qCAA6B,CAClD,CACF,CAAC,CACH,CACF,CAAC,CAAE,EAAE,CAAC,CAEN,GAAM,CAAAC,cAAc,CAAG,QAAjB,CAAAA,cAAcA,CAAA,CAAS,CAC3B,GAAI3E,UAAU,CAACoC,OAAO,CAAE,KAAAwC,mBAAA,CACtB,CAAAA,mBAAA,CAAA5E,UAAU,CAACoC,OAAO,eAAlBwC,mBAAA,CAAoBC,gBAAgB,CAAC,GAAAC,qCAAyB,EAAC,CAAC,CAAC,CACjE9E,UAAU,CAACoC,OAAO,CAACyC,gBAAgB,CAAC;AAC5C;AACA;AACA;AACA,OAAO,CAAC,CACF,CACF,CAAC,CAED,GAAM,CAAAE,gBAAgB,CAAG,GAAAnB,kBAAW,EAClC,SAACoB,SAAqB,CAAK,CACzB,GAAI/D,cAAc,CAAE,CAClB+D,SAAS,CAAC,CAAC,CACb,CAAC,IAAM,CACL7D,iBAAiB,CAACiB,OAAO,CAAC6C,IAAI,CAACD,SAAS,CAAC,CAC3C,CACF,CAAC,CACD,CAAC/D,cAAc,CACjB,CAAC,CAGD,GAAM,CAAAiE,aAAa,CAAG,GAAAtB,kBAAW,iBAAAuB,KAAA,IAAAC,kBAAA,CAAAnJ,OAAA,EAC/B,UAAOoJ,KAA0B,CAAK,KAAAC,oBAAA,CACpC,GAAQ,CAAAzB,IAAI,CAAKwB,KAAK,CAACE,WAAW,CAA1B1B,IAAI,CAEZ,GAAI,CACF,GAAM,CAAA2B,UAA0B,CAAGC,IAAI,CAACC,KAAK,CAAC7B,IAAI,CAAC,CAEnD,GACErH,MAAM,CAACmJ,MAAM,CAACC,kCAAkB,CAAC,CAACC,QAAQ,CACxCL,UAAU,CAACnB,IACb,CAAC,CACD,CACA,GAAM,CAAAyB,cAAc,CAAGN,UAA4B,CACnD,OAAQM,cAAc,CAACzB,IAAI,EACzB,IAAK,CAAAuB,kCAAkB,CAACG,aAAa,CACnC7E,iBAAiB,CAAC,IAAI,CAAC,CACvBC,iBAAiB,CAACiB,OAAO,CAAC4D,OAAO,CAAC,SAACC,EAAE,QAAK,CAAAA,EAAE,CAAC,CAAC,GAAC,CAC/C9E,iBAAiB,CAACiB,OAAO,CAAG,EAAE,CAE9B,CAAAkD,oBAAA,CAAAtF,UAAU,CAACoC,OAAO,eAAlBkD,oBAAA,CAAoBT,gBAAgB,CAClC,GAAAqB,oCAAoB,EAClBN,kCAAkB,CAACO,WAAW,CAC9B,YACF,CACF,CAAC,CACD,MACF,IAAK,CAAAP,kCAAkB,CAACQ,gBAAgB,CACtC,GAAIN,cAAc,CAACO,GAAG,EAAIP,cAAc,CAACQ,KAAK,CAAE,CAC9ClF,WAAW,CAACgB,OAAO,CAAC0D,cAAc,CAACO,GAAG,CAAC,CACrCP,cAAc,CAACQ,KAAK,CACtB,GAAIR,cAAc,CAACO,GAAG,GAAK,YAAY,CAAE,CACvCvF,kBAAkB,CAACgF,cAAc,CAACQ,KAAK,CAAC,CAC1C,CACF,CACA,MACF,IAAK,CAAAV,kCAAkB,CAACW,aAAa,CACnCC,cAAM,CAACvC,KAAK,CAAC,wBAAwB,CAAE6B,cAAc,CAAC7B,KAAK,CAAC,CAC5D,MACJ,CACA,OACF,CAGA,GAAIwC,OAAO,CAAE,CACX,GAAI,CAAAjB,UAAU,cAAVA,UAAU,CAAEnB,IAAI,IAAK,SAAS,CAAE,CAClCqC,OAAO,CAACC,GAAG,CAAC,WAAWnB,UAAU,cAAVA,UAAU,CAAEoB,KAAK,GAAG,CAAEpB,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CAC9D,OACF,CACA,GAAI,CAAA2B,UAAU,cAAVA,UAAU,CAAEnB,IAAI,IAAK,OAAO,CAAE,CAChCqC,OAAO,CAACzC,KAAK,CAAC,gBAAgB,CAAEuB,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CACjD,OACF,CACF,CAEA,GAAI,CAAA2B,UAAU,cAAVA,UAAU,CAAEnB,IAAI,IAAK,aAAa,CAAE,KAAAwC,gBAAA,CACtCnF,aAAa,EAAAmF,gBAAA,CAACrB,UAAU,cAAVA,UAAU,CAAE3B,IAAI,QAAAgD,gBAAA,CAAI,CAAEvF,EAAE,CAAE,EAAE,CAAEC,OAAO,CAAE,EAAG,CAAC,CAAC,CAC1DI,aAAa,CAACS,OAAO,CAAGoD,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CACxC,OACF,CAMA,GAAI,CAAA2B,UAAU,cAAVA,UAAU,CAAEnB,IAAI,IAAKK,qCAA4B,CAAE,CACrDf,WAAW,CAAC6B,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CAC7B,OACF,CAEA,GAAI,CAAA2B,UAAU,cAAVA,UAAU,CAAEnB,IAAI,IAAK,WAAW,CAAE,CACpCpB,SAAS,CAAC6D,wBAAgB,CAACC,iBAAiB,CAAC,CAC7C,GAAI/G,UAAU,CAACoC,OAAO,EAAIlD,gBAAgB,CAAE,KAAA8H,oBAAA,CAAAC,oBAAA,CAC1C,CAAAD,oBAAA,CAAAhH,UAAU,CAACoC,OAAO,eAAlB4E,oBAAA,CAAoBnC,gBAAgB,CAAC,GAAAC,qCAAyB,EAAC,CAAC,CAAC,CAEjE,GAAM,CAAAoC,WAAW,CAAG,CAClBC,IAAI,CAAE,gBAAgB,CACtBC,MAAM,CAAE,gBAAgB,CACxBvD,IAAI,IAAAwD,gBAAA,CAAApL,OAAA,KAAAoL,gBAAA,CAAApL,OAAA,KAAAoL,gBAAA,CAAApL,OAAA,KAAAoL,gBAAA,CAAApL,OAAA,GACF4G,MAAM,CAAEhC,eAAe,EACtByG,2BAAkB,CAAGpF,gBAAgB,CAACE,OAAO,EAAIL,SAAS,aAIjDI,WAAW,CAACC,OAAO,CAAG,IAAI,CAAGL,SAAS,UACzCrE,UAAU,CAAG,GAAGA,UAAU,EAAE,CAAGqE,SAAS,gBAAAvF,MAAA,CAAA+K,MAAA,IAE1C/I,YAAY,CACZ,GAAAgJ,yBAAa,EAAC7F,aAAa,cAAbA,aAAa,CAAES,OAAO,CAAC,EACxCqF,gBAAgB,CAAAjL,MAAA,CAAA+K,MAAA,IACX,GAAAC,yBAAa,EAAC7F,aAAa,cAAbA,aAAa,CAAES,OAAO,CAAC,CACzC,GAGP,CAAC,CAIDoE,cAAM,CAACkB,KAAK,CACV,kBAAkB,CAClBjC,IAAI,CAACkC,SAAS,CAAAnL,MAAA,CAAA+K,MAAA,IACTL,WAAW,EACdrD,IAAI,CAAArH,MAAA,CAAA+K,MAAA,IACCL,WAAW,CAACrD,IAAI,IAAAwD,gBAAA,CAAApL,OAAA,KAClBqL,2BAAkB,CAAGpF,gBAAgB,CAACE,OAAO,CAC1C,YAAY,CACZL,SAAS,EACd,EACF,CACH,CAAC,CACD,CAAAkF,oBAAA,CAAAjH,UAAU,CAACoC,OAAO,eAAlB6E,oBAAA,CAAoBpC,gBAAgB,CAAC;AACnD,iCAAiCY,IAAI,CAACkC,SAAS,CAAC,CAClCR,IAAI,CAAE,WAAW,CACjBS,MAAM,CAAE,gBACV,CAAC,CAAC;AACd,iCAAiCnC,IAAI,CAACkC,SAAS,CAACT,WAAW,CAAC;AAC5D,WAAW,CAAC,CACA,CACF,CAGA,OAAQ1B,UAAU,cAAVA,UAAU,CAAEnB,IAAI,EACtB,IAAK,eAAe,CAClBd,YAAY,CAAC,CAAC,CACd,MAEF,IAAK,eAAe,CAClB,GACEiC,UAAU,QAAVA,UAAU,CAAE3B,IAAI,EACf2B,UAAU,QAAVA,UAAU,CAAEqC,GAAG,EAAIrC,UAAU,QAAVA,UAAU,CAAEsC,QAAS,CACzC,CAEA,GAAM,CAAAC,YAA6B,CAAG,CAAAvC,UAAU,cAAVA,UAAU,CAAE3B,IAAI,GAAI,CACxDgE,GAAG,CAAErC,UAAU,cAAVA,UAAU,CAAEqC,GAAG,CACpBC,QAAQ,CAAEtC,UAAU,cAAVA,UAAU,CAAEsC,QAAQ,CAC9BE,OAAO,CAAExC,UAAU,cAAVA,UAAU,CAAEwC,OACvB,CAAC,CACD,GAAAC,mCAAqB,EAACF,YAAY,CAAC,CACrC,CACA,MACF,IAAK,gBAAgB,CACnB9E,SAAS,CAAC6D,wBAAgB,CAACoB,cAAc,CAAE1C,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CAC5D,MACF,IAAK,kBAAkB,CACrBZ,SAAS,CAAC6D,wBAAgB,CAACqB,gBAAgB,CAAE3C,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CAC9D,MACF,IAAK,mBAAmB,CACtBZ,SAAS,CAAC6D,wBAAgB,CAACsB,iBAAiB,CAAE5C,UAAU,cAAVA,UAAU,CAAE3B,IAAI,CAAC,CAC/D,MACF,IAAK,4BAA4B,CAC/BZ,SAAS,CACP6D,wBAAgB,CAACuB,0BAA0B,CAC3C7C,UAAU,cAAVA,UAAU,CAAE3B,IACd,CAAC,CACD,MACF,IAAK,wBAAwB,CAC3B,GAAM,CAAAyE,OAAO,MAAS,CAAAC,2BAA2B,CAAC,CAAC,CACnD,GAAIvI,UAAU,CAACoC,OAAO,EAAIlD,gBAAgB,CAAE,KAAAsJ,oBAAA,CAC1C,GAAM,CAAAtB,YAAW,CAAG,CAClBC,IAAI,CAAE,sBAAsB,CAC5BC,MAAM,CAAE,sBAAsB,CAC9B/C,IAAI,CAAEiE,OAAO,CACT,wBAAwB,CACxB,uBACN,CAAC,CACD,CAAAE,oBAAA,CAAAxI,UAAU,CAACoC,OAAO,eAAlBoG,oBAAA,CAAoB3D,gBAAgB,CAAC;AACrD,uCAAuCY,IAAI,CAACkC,SAAS,CAACT,YAAW,CAAC,SAAS,CAAC,CAC9D,CAMA,MACF,QACE,GAAIpJ,SAAS,CAAEA,SAAS,CAAC0H,UAAU,OAAVA,UAAU,CAAI,CAAC,CAAC,CAAC,CAC9C,CACF,CAAE,MAAOvB,KAAK,CAAE,CACdC,kCAAY,CAACC,UAAU,CACrBF,KAAK,WAAY,CAAAG,KAAK,CAClBH,KAAK,CACL,GAAI,CAAAG,KAAK,CAAC,iCAAiC,CAAC,CAChD,YAAY,CACZ,CACEC,IAAI,CAAEC,0BAAU,CAACC,aAAa,CAC9BC,OAAO,CAAE,CAAE0C,WAAW,CAAErD,IAAK,CAC/B,CACF,CAAC,CACH,CACF,CAAC,kBAAA4E,EAAA,SAAAtD,KAAA,CAAAuD,KAAA,MAAAC,SAAA,QACD,CACE1F,SAAS,CACTU,WAAW,CACXzE,gBAAgB,CAChBpB,SAAS,CACT2D,UAAU,CACVZ,eAAe,CACfnD,UAAU,CACVc,YAAY,CAEhB,CAAC,CAGD,GAAAoK,gBAAS,EAAC,UAAM,CACd,GAAM,CAAAC,gBAAgB,gBAAAC,KAAA,IAAA1D,kBAAA,CAAAnJ,OAAA,EAAG,WAAY,CACnC,GAAI,CAAA4G,MAAM,CAAGpF,OAAO,CAAGsL,MAAM,CAACtL,OAAO,CAAC,CAAGsE,SAAS,CAElD,GAAI,CAACc,MAAM,CAAE,CAEXA,MAAM,CAAGzB,WAAW,CAACgB,OAAO,CAAC,YAAY,CAAC,CAE1C,GAAI,CAACS,MAAM,CAAE,CACXA,MAAM,CAAG,GAAAmG,yBAAY,EAAC,CAAC,CACvBjE,gBAAgB,CAAC,UAAM,KAAAkE,oBAAA,CACrB,CAAAA,oBAAA,CAAAjJ,UAAU,CAACoC,OAAO,eAAlB6G,oBAAA,CAAoBpE,gBAAgB,CAClC,GAAAqB,oCAAoB,EAClBN,kCAAkB,CAACsD,WAAW,CAC9B,YAAY,CACZrG,MACF,CACF,CAAC,CACH,CAAC,CAAC,CACJ,CACF,CAEA/B,kBAAkB,CAAC+B,MAAM,CAAC,CAC5B,CAAC,iBAtBK,CAAAgG,gBAAgBA,CAAA,SAAAC,KAAA,CAAAJ,KAAA,MAAAC,SAAA,OAsBrB,CAEDE,gBAAgB,CAAC,CAAC,CACpB,CAAC,CAAE,CAACpL,OAAO,CAAEsH,gBAAgB,CAAC,CAAC,CAK/B,GAAA6D,gBAAS,EAAC,UAAM,CACd,GAAI5I,UAAU,CAACoC,OAAO,CAAE,CACtBpC,UAAU,CAACoC,OAAO,CAACyC,gBAAgB,CAAC,GAAAsE,gCAAgB,EAAC,CAAC,CAAC,CAEvDpE,gBAAgB,CAAC,UAAM,KAAAqE,oBAAA,CACrB,CAAAA,oBAAA,CAAApJ,UAAU,CAACoC,OAAO,eAAlBgH,oBAAA,CAAoBvE,gBAAgB,CAClC,GAAAqB,oCAAoB,EAACN,kCAAkB,CAACO,WAAW,CAAE,YAAY,CACnE,CAAC,CACH,CAAC,CAAC,CACJ,CACF,CAAC,CAAE,EAAE,CAAC,CAEN,GAAAyC,gBAAS,EAAC,UAAM,CACd,GAAM,CAAAS,kBAAkB,gBAAAC,KAAA,IAAAlE,kBAAA,CAAAnJ,OAAA,EAAG,WAAY,CACrC,GAAI,KAAAsN,UAAA,CACF,GAAM,CAAAC,WAAW,CAAG,GAAGC,kBAAO,oBAAoB,CAClD,GAAM,CAAAC,OAAO,CAAG,CACdC,cAAc,CAAE9I,eAAe,CAK/B+I,oBAAoB,CAAE1H,gBAAgB,CAACE,OAAO,EAAIL,SAAS,CAE3DnD,QAAQ,CAAEuD,WAAW,CAACC,OAAO,CAAG,IAAI,CAAGL,SAAS,CAChD8H,MAAM,CAAErM,OAAO,CACfsM,KAAK,CAAEpM,UAAU,CACjBqM,UAAU,CAAE,CAAC,CACf,CAAC,CAKD,GAAM,CAAAC,QAAQ,MAAS,CAAAC,KAAK,CAACT,WAAW,CAAE,CACxCU,MAAM,CAAE,MAAM,CACdC,OAAO,CAAE,CACP,cAAc,CAAE,kBAClB,CAAC,CACDC,IAAI,CAAE3E,IAAI,CAACkC,SAAS,CAAC+B,OAAO,CAC9B,CAAC,CAAC,CAEF,GAAI,CAACM,QAAQ,CAACK,EAAE,CAAE,CAChB,KAAM,IAAI,CAAAjG,KAAK,CAAC,uCAAuC,CAAC,CAC1D,CAEA,GAAM,CAAAP,IAAI,MAAS,CAAAmG,QAAQ,CAACM,IAAI,CAAC,CAAC,CAClC,GAAM,CAAAC,OAAO,CAAG1G,IAAI,eAAA0F,UAAA,CAAJ1F,IAAI,CAAE2G,IAAI,eAAVjB,UAAA,CAAYkB,QAAQ,CAEpC,GAAIF,OAAO,CAAE,KAAAG,qBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,sBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CAAAC,uBAAA,CACX,GAAM,CAAAC,MAAqB,CAAG,CAC5BC,YAAY,CAAE,EAAAvB,qBAAA,CAAAH,OAAO,CAAC2B,YAAY,gBAAAvB,sBAAA,CAApBD,qBAAA,CAAsByB,MAAM,eAA5BxB,sBAAA,CAA8ByB,WAAW,GAAI,EAAE,CAC7DC,SAAS,CAAE,EAAAzB,sBAAA,CAAAL,OAAO,CAAC2B,YAAY,eAApBtB,sBAAA,CAAsB0B,iBAAiB,GAAI,EAAE,CACxDC,qBAAqB,CAAE,CACrBC,mBAAmB,CAAE,EAAE,CACvBC,YAAY,CAAE,EAAA5B,sBAAA,CAAAN,OAAO,CAAC2B,YAAY,eAApBrB,sBAAA,CAAsB4B,YAAY,GAAI,EAAE,CACtDC,eAAe,CACb,EAAA5B,sBAAA,CAAAP,OAAO,CAAC2B,YAAY,eAApBpB,sBAAA,CAAsB4B,eAAe,GACrC,uCAAuC,CACzCC,YAAY,CAAE,EAAA5B,sBAAA,CAAAR,OAAO,CAAC2B,YAAY,eAApBnB,sBAAA,CAAsB4B,YAAY,GAAI,EACtD,CAAC,CACDC,oBAAoB,CAAE,CACpBC,QAAQ,CACN,EAAA7B,sBAAA,CAAAT,OAAO,CAAC2B,YAAY,gBAAAjB,sBAAA,CAApBD,sBAAA,CAAsB4B,oBAAoB,eAA1C3B,sBAAA,CAA4C4B,QAAQ,GACpDhQ,mBAAmB,CAACiQ,KAAK,CAC3BC,YAAY,EAAA7B,sBAAA,EAAAC,uBAAA,CACVZ,OAAO,CAAC2B,YAAY,gBAAAd,uBAAA,CAApBD,uBAAA,CAAsByB,oBAAoB,eAA1CxB,uBAAA,CAA4C2B,YAAY,QAAA7B,sBAAA,CACxD,EAAE,CACJ8B,cAAc,EAAA3B,uBAAA,EAAAC,uBAAA,CACZf,OAAO,CAAC2B,YAAY,gBAAAX,uBAAA,CAApBD,uBAAA,CAAsBsB,oBAAoB,eAA1CrB,uBAAA,CAA4CyB,cAAc,QAAA3B,uBAAA,CAC1D,EACJ,CAAC,CACD4B,cAAc,CACZ,EAAAzB,uBAAA,CAAAjB,OAAO,CAAC2B,YAAY,eAApBV,uBAAA,CAAsByB,cAAc,GACpCtQ,oBAAoB,CAACuQ,MAAM,CAC7BC,aAAa,CACX,EAAA1B,uBAAA,CAAAlB,OAAO,CAAC2B,YAAY,eAApBT,uBAAA,CAAsB0B,aAAa,GAAIrQ,YAAY,CAACsQ,KAAK,CAC3DC,mBAAmB,CAAE,CACnBC,IAAI,CAAE,EAAA5B,uBAAA,CAAAnB,OAAO,CAAC2B,YAAY,gBAAAP,uBAAA,CAApBD,uBAAA,CAAsB2B,mBAAmB,eAAzC1B,uBAAA,CAA2C2B,IAAI,GAAI,EAC3D,CAAC,CACDC,MAAM,CAAE,CACNC,kBAAkB,CAAE,CAClB3F,GAAG,CACD,EAAA+D,uBAAA,CAAArB,OAAO,CAAC2B,YAAY,gBAAAL,uBAAA,CAApBD,uBAAA,CAAsB2B,MAAM,gBAAAzB,uBAAA,CAA5BD,uBAAA,CAA8B2B,kBAAkB,eAAhD1B,uBAAA,CAAkDjE,GAAG,GACrD4F,iCACJ,CACF,CAAC,CACDC,eAAe,CAAE,EAAA3B,uBAAA,CAAAxB,OAAO,CAAC2B,YAAY,eAApBH,uBAAA,CAAsB2B,eAAe,GAAI,EAC5D,CAAC,CACDnO,gBAAgB,CAACyM,MAAM,CAAC,CAC1B,CACF,CAAE,MAAO/H,KAAK,CAAE,CACdC,kCAAY,CAACC,UAAU,CACrBF,KAAK,WAAY,CAAAG,KAAK,CAClBH,KAAK,CACL,GAAI,CAAAG,KAAK,CAAC,uCAAuC,CAAC,CACtD,YAAY,CACZ,CACEC,IAAI,CAAEC,0BAAU,CAACqJ,aAAa,CAC9BnJ,OAAO,CAAE,CAAEhH,OAAO,CAAPA,OAAO,CAAEC,OAAO,CAAPA,OAAQ,CAC9B,CACF,CAAC,CACH,CAAC,OAAS,CACRkC,UAAU,CAAC,KAAK,CAAC,CACnB,CACF,CAAC,iBA3FK,CAAA0J,kBAAkBA,CAAA,SAAAC,KAAA,CAAAZ,KAAA,MAAAC,SAAA,OA2FvB,CAED,GAAInL,OAAO,EAAIqD,eAAe,CAAE,CAC9BwI,kBAAkB,CAAC,CAAC,CACtB,CACF,CAAC,CAAE,CAAC7L,OAAO,CAAEqD,eAAe,CAAEnD,UAAU,CAAC,CAAC,CAE1C,QAAS,CAAAkQ,YAAYA,CAAA,CAAW,CAC9B,GAAI,CAAC/M,eAAe,CAAE,MAAO,EAAE,CAC/B,GAAM,CAAAgN,MAAM,CAAG,GAAI,CAAAC,eAAe,CAAC,CACjCC,EAAE,CAAEvQ,OACN,CAAC,CAAC,CAKF,MAAO,GAAGwQ,2BAAgB,IAAIH,MAAM,CAACI,QAAQ,CAAC,CAAC,EAAE,CACnD,CAGA,GAAM,CAAA5K,WAAW,CAAG,GAAAO,kBAAW,EAAC,UAAM,CAKpC,GAAI/B,mBAAmB,CAACO,OAAO,CAAE,OAEjCP,mBAAmB,CAACO,OAAO,CAAG,IAAI,CAClCjD,mBAAmB,CAAC,IAAI,CAAC,CACzB,GAAIjB,eAAe,CAAE,CACnB,GAAAgQ,8BAAkB,EAAC7L,cAAc,CAAE,UAAM,CACvClE,cAAc,cAAdA,cAAc,CAAG,CAAC,CAClB8E,SAAS,CAAC6D,wBAAgB,CAACqH,cAAc,CAAC,CAC1C,GAAI,CAACjO,cAAc,CAACkC,OAAO,CAAE,CAC3BgM,UAAU,CAACzJ,cAAc,CAAE,GAAG,CAAC,CACjC,CACF,CAAC,CAAC,CACJ,CAAC,IAAM,CACL0J,qBAAqB,CAAC,UAAM,CAC1BlQ,cAAc,cAAdA,cAAc,CAAG,CAAC,CAClB8E,SAAS,CAAC6D,wBAAgB,CAACqH,cAAc,CAAC,CAC1C,GAAI,CAACjO,cAAc,CAACkC,OAAO,CAAE,CAC3BgM,UAAU,CAACzJ,cAAc,CAAE,GAAG,CAAC,CACjC,CACF,CAAC,CAAC,CACJ,CACF,CAAC,CAAE,CAACzG,eAAe,CAAEmE,cAAc,CAAElE,cAAc,CAAE8E,SAAS,CAAC,CAAC,CAGhE,GAAM,CAAAM,YAAY,CAAG,GAAAK,kBAAW,EAAC,UAAM,CACrC,GAAI5D,UAAU,CAACoC,OAAO,CAAE,CACtBpC,UAAU,CAACoC,OAAO,CAACkM,WAAW,CAC5B7I,IAAI,CAACkC,SAAS,CAAC,CACbR,IAAI,CAAE,YAAY,CAClBS,MAAM,CAAE,gBACV,CAAC,CACH,CAAC,CACH,CAIA,GAAI1J,eAAe,CAAE,CACnB,GAAAqQ,+BAAmB,EAAClM,cAAc,CAAE,UAAM,CACxCR,mBAAmB,CAACO,OAAO,CAAG,KAAK,CACnCjD,mBAAmB,CAAC,KAAK,CAAC,CAC1Bd,eAAe,cAAfA,eAAe,CAAG,CAAC,CACnB4E,SAAS,CAAC6D,wBAAgB,CAAC0H,cAAc,CAAC,CAC5C,CAAC,CAAC,CACJ,CAAC,IAAM,CACL3M,mBAAmB,CAACO,OAAO,CAAG,KAAK,CACnCjD,mBAAmB,CAAC,KAAK,CAAC,CAC1Bd,eAAe,cAAfA,eAAe,CAAG,CAAC,CACnB4E,SAAS,CAAC6D,wBAAgB,CAAC0H,cAAc,CAAC,CAC5C,CACF,CAAC,CAAE,CAACtQ,eAAe,CAAEmE,cAAc,CAAEhE,eAAe,CAAE4E,SAAS,CAAC,CAAC,CAGjE,GAAA2F,gBAAS,EAAC,UAAM,CACd,GAAIhL,oBAAoB,EAAI0B,aAAa,CAAE,CACzC2D,SAAS,CAAC6D,wBAAgB,CAAC2H,qBAAqB,CAAC,CACnD,CACF,CAAC,CAAE,CAAC7Q,oBAAoB,CAAE0B,aAAa,CAAE2D,SAAS,CAAC,CAAC,CAGpD,GAAA2F,gBAAS,EAAC,UAAM,CACd,GAAI,CAAClJ,OAAO,EAAIJ,aAAa,EAAIuB,eAAe,EAAI,CAACf,aAAa,CAAE,CAGlE8B,gBAAgB,CAACQ,OAAO,CAAG,IAAI,CAC/BrC,gBAAgB,CAAC,IAAI,CAAC,CACtBxB,OAAO,cAAPA,OAAO,CAAG,CAAC,CACb,CACF,CAAC,CAAE,CAACmB,OAAO,CAAEJ,aAAa,CAAEuB,eAAe,CAAEf,aAAa,CAAEvB,OAAO,CAAC,CAAC,CAErE,GAAM,CAAAmQ,mBAAmB,CAAG,QAAtB,CAAAA,mBAAmBA,CAAA,CAAS,CAChC,GAAM,CAAAC,YAAY,CAAGC,uBAAU,CAACzS,GAAG,CAAC,QAAQ,CAAC,CAAC0S,MAAM,CACpD,GAAM,CAAAC,WAAW,CAAGF,uBAAU,CAACzS,GAAG,CAAC,QAAQ,CAAC,CAAC4S,KAAK,CAClD,GAAM,CAAAC,eAAe,CACnBC,qBAAQ,CAACC,EAAE,GAAK,KAAK,CAAG,CAAC,CAAGC,sBAAS,CAACC,aAAa,EAAI,CAAC,CAE1D,MAAO,CACLP,MAAM,CAAEF,YAAY,CAAGK,eAAe,CACtCD,KAAK,CAAED,WACT,CAAC,CACH,CAAC,CAED,GAAM,CAAAvG,2BAA2B,CAAG,GAAA3E,kBAAW,KAAAwB,kBAAA,CAAAnJ,OAAA,EAAC,WAAY,CAC1D,GAAI,CACF,GAAIgT,qBAAQ,CAACC,EAAE,GAAK,KAAK,CAAE,CACzB,MAAO,KAAI,CACb,CAEA,GAAM,CAAAG,cAAc,MAAS,CAAAC,+BAAkB,CAACC,KAAK,CACnDD,+BAAkB,CAACE,WAAW,CAACC,YACjC,CAAC,CAED,GAAIJ,cAAc,CAAE,CAClB,MAAO,KAAI,CACb,CAEA,GAAM,CAAAK,MAAM,MAAS,CAAAJ,+BAAkB,CAACK,OAAO,CAC7CL,+BAAkB,CAACE,WAAW,CAACC,YAAY,CAC3C,CACEG,KAAK,CAAE,uBAAuB,CAC9BC,OAAO,CAAE,mDAAmD,CAC5DC,cAAc,CAAE,OAAO,CACvBC,cAAc,CAAE,MAClB,CACF,CAAC,CAED,GAAM,CAAAzH,OAAO,CAAGoH,MAAM,GAAKJ,+BAAkB,CAACU,OAAO,CAACC,OAAO,CAE7D,GAAI,CAAC3H,OAAO,CAAE,CAEZ4H,kBAAK,CAACC,KAAK,CACT,qBAAqB,CACrB,kEACF,CAAC,CACH,CAEA,MAAO,CAAA7H,OAAO,CAChB,CAAE,MAAO8H,GAAG,CAAE,CACZ1J,OAAO,CAAC2J,IAAI,CAAC,iCAAiC,CAAED,GAAG,CAAC,CACpD,MAAO,MAAK,CACd,CACF,CAAC,EAAE,EAAE,CAAC,CAEN,GAAM,CAAAE,gBAAgB,CAAG5B,mBAAmB,CAAC,CAAC,CAE9C,GAAA9F,gBAAS,EAAC,UAAM,CACd,GAAInC,OAAO,CAAE,CACX,GAAA8J,+BAAkB,EAAC,CAAC,CACtB,CACF,CAAC,CAAE,EAAE,CAAC,CAoBN,GAAM,CAAA1D,QAAQ,CAAG,CAAAvN,aAAa,eAAAnC,qBAAA,CAAbmC,aAAa,CAAEsN,oBAAoB,eAAnCzP,qBAAA,CAAqC0P,QAAQ,GAAI,OAAO,CACzE,GAAM,CAAA2D,WAAW,EAAApT,sBAAA,CAAGkC,aAAa,eAAAjC,sBAAA,CAAbiC,aAAa,CAAEsN,oBAAoB,eAAnCvP,sBAAA,CAAqC0P,YAAY,QAAA3P,sBAAA,CAAI,EAAE,CAC3E,GAAM,CAAAqT,aAAa,EAAAnT,sBAAA,CACjBgC,aAAa,eAAA/B,sBAAA,CAAb+B,aAAa,CAAEsN,oBAAoB,eAAnCrP,sBAAA,CAAqCyP,cAAc,QAAA1P,sBAAA,CAAI,EAAE,CAe3D,MACE,GAAAlC,WAAA,CAAAsV,GAAA,EAAC9V,cAAA,CAAA+V,aAAa,EAACC,aAAa,CAAC,YAAY,CAAAC,QAAA,CASvC,GAAAzV,WAAA,CAAA0V,IAAA,EAAC7W,YAAA,CAAA8W,IAAI,EACHC,KAAK,CAAEC,MAAM,cAANA,MAAM,CAAEC,aAAc,CAC7BC,aAAa,CAAEjS,gBAAgB,CAAG,MAAM,CAAG,UAAW,CAAA2R,QAAA,EACrD,CAACnR,OAAO,EACP,GAAAtE,WAAA,CAAA0V,IAAA,EAAA1V,WAAA,CAAAgW,QAAA,EAAAP,QAAA,EACE,GAAAzV,WAAA,CAAAsV,GAAA,EAAC9V,cAAA,CAAA+V,aAAa,EAACC,aAAa,CAAC,gBAAgB,CAAAC,QAAA,CAC1CjT,oBAAoB,EAAIJ,OAAO,EAAI8B,aAAa,EAC/C,GAAAlE,WAAA,CAAAsV,GAAA,EAACvW,eAAA,CAAA8B,OAAc,EACbqD,aAAa,CAAEA,aAAc,CAC7BJ,gBAAgB,CAAEA,gBAAiB,CACnCmS,OAAO,CAAE,QAAT,CAAAA,OAAOA,CAAA,CAAQ,CACbpO,SAAS,CAAC6D,wBAAgB,CAACwK,sBAAsB,CAAC,CAClDjO,WAAW,CAAC,CAAC,CACf,CAAE,CACFkO,UAAU,CAAEjS,aAAa,CAAC2M,YAAa,CACvCuF,QAAQ,CAAElS,aAAa,CAAC+M,SAAU,CACnC,CACF,CACY,CAAC,CAChB,GAAAjR,WAAA,CAAAsV,GAAA,EAACzW,YAAA,CAAA8W,IAAI,EACHC,KAAK,CAAE,CACLC,MAAM,CAACQ,cAAc,CACrB,CAAE5C,MAAM,CAAE3P,gBAAgB,CAAG,MAAM,CAAG,CAAE,CAAC,CACzC,CACFiS,aAAa,CAAEjS,gBAAgB,CAAG,MAAM,CAAG,MAAO,CAAA2R,QAAA,CAElD,GAAAzV,WAAA,CAAAsV,GAAA,EAACzW,YAAA,CAAAsI,QAAQ,CAACwO,IAAI,EACZC,KAAK,CAAE,CACLC,MAAM,CAACS,mBAAmB,CAC1B,CACEhP,OAAO,CAAEL,cAAc,CAACK,OAAO,CAC/BiP,SAAS,CAAE,CACT,CAAErP,KAAK,CAAED,cAAc,CAACC,KAAM,CAAC,CAC/B,CAAEG,UAAU,CAAEJ,cAAc,CAACI,UAAW,CAAC,CAE7C,CAAC,CACD,CAAAoO,QAAA,CAEF,GAAAzV,WAAA,CAAAsV,GAAA,EAAC9V,cAAA,CAAA+V,aAAa,EAACC,aAAa,CAAC,gBAAgB,CAAAC,QAAA,CAC3C,GAAAzV,WAAA,CAAAsV,GAAA,EAACxW,mBAAA,CAAA0X,OAAO,EACNC,+BAA+B,CAAE,OAAQ,CACzCC,uBAAuB,CAAE,IAAK,CAC9B5U,GAAG,CAAE8C,UAAW,CAChByE,MAAM,CAAE,CACNsN,GAAG,CAAEnE,YAAY,CAAC,CACpB,CAAE,CACF9P,SAAS,CAAEoH,aAAc,CACzB8L,KAAK,CAAEC,MAAM,CAACe,OAAQ,CACtBC,cAAc,CACZjU,YAAY,CACR,CACE+Q,KAAK,CAAEuB,gBAAgB,CAACvB,KAAK,CAC7BF,MAAM,CAAEyB,gBAAgB,CAACzB,MAAM,CAAG,EACpC,CAAC,CACD9M,SACL,CACDmQ,yBAAyB,CAAE,IAAK,CAChCC,+BAA+B,CAAE,KAAM,CACvCC,eAAe,CAAE,KAAM,CACvBC,kBAAkB,CAAE,KAAM,CAC1BC,iBAAiB,CAAE,IAAK,CACxBC,iBAAiB,CAAE,IAAK,CACxBC,YAAY,CAAE,IAAK,CACnBC,aAAa,CAAE,IAAK,CACpBC,OAAO,CAAE,KAAM,CACfC,4BAA4B,CAAE,QAA9B,CAAAA,4BAA4BA,CAAGhD,OAAO,CAAK,CACzC,MACE,CAAAA,OAAO,CAAC9H,GAAG,CAAC+K,UAAU,CAAC5E,2BAAgB,CAAC,EACxC2B,OAAO,CAAC9H,GAAG,CAAC+K,UAAU,CACpB,CAAAtT,aAAa,cAAbA,aAAa,CAAEoO,eAAe,GAAI,EACpC,CAAC,CAEL,CAAE,CACFmF,mBAAmB,CAAE3S,cAAc,CAACkC,OAAQ,CAC5C0Q,SAAS,CAAE,QAAX,CAAAA,SAASA,CAAA,CAAQ,KAAAC,oBAAA,CACf,GAAItM,OAAO,CAAE,CACX,GAAAuM,+BAAkB,EAAChT,UAAU,CAAC,CAChC,CACA,CAAA+S,oBAAA,CAAA/S,UAAU,CAACoC,OAAO,eAAlB2Q,oBAAA,CAAoBlO,gBAAgB,CAAC;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAC,CACsB3E,cAAc,CAACkC,OAAO,CAAG,KAAK,CAChC,CAAE,CACF6Q,OAAO,CAAE,QAAT,CAAAA,OAAOA,CAAGC,cAAc,CAAK,CAC3B,GAAQ,CAAA3N,WAAW,CAAK2N,cAAc,CAA9B3N,WAAW,CACnBrB,kCAAY,CAACC,UAAU,CACrB,GAAI,CAAAC,KAAK,CAACmB,WAAW,CAAC4N,WAAW,CAAC,CAClC,gBAAgB,CAChB,CACE9O,IAAI,CAAEC,0BAAU,CAACC,aAAa,CAC9BC,OAAO,CAAE,CACPqD,GAAG,CAAEtC,WAAW,CAACsC,GAAG,CACpBuL,IAAI,CAAE7N,WAAW,CAAC6N,IACpB,CACF,CACF,CAAC,CACH,CAAE,CACH,CAAC,CACW,CAAC,CACH,CAAC,CACZ,CAAC,EACP,CACH,CAEA3M,OAAO,EAAI,GAAArL,WAAA,CAAAsV,GAAA,EAAC/V,YAAA,CAAAsB,OAAW,GAAE,CAAC,EACvB,CAAC,CACM,CAAC,CAEpB,CACF,CAAC,CAEDc,OAAO,CAACsW,WAAW,CAAG,SAAS,CAE/B,GAAM,CAAApC,MAAM,CAAGqC,uBAAU,CAACC,MAAM,CAAC,CAC/BrC,aAAa,CAAE,CACbsC,IAAI,CAAE,CAAC,CACP3G,QAAQ,CAAE,UAAU,CACpB4G,QAAQ,CAAE,SACZ,CAAC,CACDhC,cAAc,CAAE,CACd5E,QAAQ,CAAE,UAAU,CACpB6G,GAAG,CAAE,CAAC,CACNC,IAAI,CAAE,CAAC,CACPC,KAAK,CAAE,CAAC,CACRC,MAAM,CAAE,CAAC,CACTJ,QAAQ,CAAE,SAAS,CACnBK,MAAM,CAAE,KAAK,CACbC,eAAe,CAAE,SACnB,CAAC,CACDrC,mBAAmB,CAAE,CACnB7E,QAAQ,CAAE,UAAU,CACpB6G,GAAG,CAAE,CAAC,CACNC,IAAI,CAAE,CAAC,CACPC,KAAK,CAAE,CAAC,CACRC,MAAM,CAAE,CAAC,CACTE,eAAe,CAAE,OAAO,CACxBD,MAAM,CAAE,KAAK,CACbL,QAAQ,CAAE,SAEZ,CAAC,CACDO,eAAe,CAAE,CACfR,IAAI,CAAE,CAAC,CACPO,eAAe,CAAE,OACnB,CAAC,CACD/B,OAAO,CAAE,CACPwB,IAAI,CAAE,CAAC,CACPO,eAAe,CAAE,OAAO,CACxBD,MAAM,CAAE,KACV,CACF,CAAC,CAAC,CAAC,IAAAG,QAAA,CAAArX,OAAA,CAAAX,OAAA,CAEYc,OAAO","ignoreList":[]}
@@ -1,2 +1,3 @@
1
- Object.defineProperty(exports,"__esModule",{value:true});exports.openChatbot=void 0;var _reactNative=require("react-native");var _constants=require("./constants");var openChatbot=exports.openChatbot=function openChatbot(chatbotId){var additionalParams=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var params=new URLSearchParams(Object.assign({id:chatbotId},additionalParams));var url=`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;_reactNative.Linking.openURL(url);};
1
+
2
+ //# sourceMappingURL=openChatbot.js.mape",{value:true});exports.openChatbot=void 0;var _reactNative=require("react-native");var _constants=require("./constants");var openChatbot=exports.openChatbot=function openChatbot(chatbotId){var additionalParams=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var params=new URLSearchParams(Object.assign({id:chatbotId},additionalParams));var url=`${_constants.BASE_CHATBOT_URL}?${params.toString()}`;_reactNative.Linking.openURL(url);};
2
3
  //# sourceMappingURL=openChatbot.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNative","require","_constants","openChatbot","exports","chatbotId","additionalParams","arguments","length","undefined","params","URLSearchParams","Object","assign","id","url","BASE_CHATBOT_URL","toString","Linking","openURL"],"sourceRoot":"../../src","sources":["openChatbot.ts"],"mappings":"oFAAA,IAAAA,YAAA,CAAAC,OAAA,iBACA,IAAAC,UAAA,CAAAD,OAAA,gBAEO,GAAM,CAAAE,WAAW,CAAAC,OAAA,CAAAD,WAAA,CAAG,QAAd,CAAAA,WAAWA,CACtBE,SAAiB,CAER,IADT,CAAAC,gBAAwC,CAAAC,SAAA,CAAAC,MAAA,IAAAD,SAAA,MAAAE,SAAA,CAAAF,SAAA,IAAG,CAAC,CAAC,CAE7C,GAAM,CAAAG,MAAM,CAAG,GAAI,CAAAC,eAAe,CAAAC,MAAA,CAAAC,MAAA,EAAGC,EAAE,CAAET,SAAS,EAAKC,gBAAgB,CAAE,CAAC,CAC1E,GAAM,CAAAS,GAAG,CAAG,GAAGC,2BAAgB,IAAIN,MAAM,CAACO,QAAQ,CAAC,CAAC,EAAE,CACtDC,oBAAO,CAACC,OAAO,CAACJ,GAAG,CAAC,CACtB,CAAC","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../src","sources":["openChatbot.tsx"],"mappings":"","ignoreList":[]}
@@ -13,6 +13,7 @@ export interface ChatbotProps {
13
13
  };
14
14
  session_id?: string;
15
15
  session_context?: Record<string, any>;
16
+ discrete?: boolean;
16
17
  onEvent?: ChatbotEventHandler;
17
18
  onOpen?: () => void;
18
19
  onClose?: () => void;
@@ -1 +1 @@
1
- {"version":3,"file":"Chatbotsdk.d.ts","sourceRoot":"","sources":["../../src/Chatbotsdk.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Chatbotsdk.d.ts","sourceRoot":"","sources":["../../src/Chatbotsdk.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robylon/react-native-sdk",
3
- "version": "2.1.4",
3
+ "version": "2.2.0",
4
4
  "description": "React Native SDK for Robylon",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -23,11 +23,13 @@
23
23
  "version:production": "npm version patch",
24
24
  "publish:dev": "npm run clean && npm run prebuild:dev && npm run version:dev && node scripts/update-version.js dev && npm run build:dev && npm publish --tag dev",
25
25
  "publish:staging": "npm version $(node scripts/get-next-version.js staging) && node scripts/update-version.js staging && npm run build:staging && npm publish --tag staging",
26
- "publish:production": "node scripts/validate-publish.js production && npm run build:production && npm publish",
27
- "publish:hotfix": "node scripts/validate-publish.js hotfix && npm version $(node scripts/get-next-version.js hotfix) && node scripts/update-version.js production && npm run build:production && npm publish --tag hotfix",
26
+ "publish:production": "node scripts/validate-publish.js production && node scripts/stamp-readme-versions.js && npm run build:production && npm publish",
27
+ "publish:hotfix": "node scripts/validate-publish.js hotfix && npm version $(node scripts/get-next-version.js hotfix) && node scripts/update-version.js production && node scripts/stamp-readme-versions.js && npm run build:production && npm publish --tag hotfix",
28
28
  "postinstall": "node scripts/setup-git-hooks.js || exit 0",
29
29
  "branch": "node scripts/create-branch.js",
30
- "tag": "node scripts/create-version-tag.js"
30
+ "tag": "node scripts/create-version-tag.js",
31
+ "stamp:docs": "node scripts/stamp-readme-versions.js",
32
+ "check:docs": "node scripts/stamp-readme-versions.js --check"
31
33
  },
32
34
  "peerDependencies": {
33
35
  "react": "*",
@@ -0,0 +1,106 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Replaces `{{NEXT}}` version placeholders in the docs with the version being
4
+ * published.
5
+ *
6
+ * When you document a feature that is not released yet, write the placeholder
7
+ * instead of guessing a number:
8
+ *
9
+ * > **Requires SDK >= {{NEXT}}**
10
+ *
11
+ * At publish time this script resolves every placeholder to the version in
12
+ * package.json, which by then is the version actually going out. Numbers that
13
+ * are already stamped are never touched, so the script is idempotent and a
14
+ * failed publish leaves nothing half-written.
15
+ *
16
+ * Prerelease suffixes are stripped: publishing 2.2.0-staging.3 stamps "2.2.0",
17
+ * because a minimum-version note should name the release, not the prerelease
18
+ * that happened to run first.
19
+ *
20
+ * Usage:
21
+ * node scripts/stamp-readme-versions.js stamp in place
22
+ * node scripts/stamp-readme-versions.js --dry-run report without writing
23
+ * node scripts/stamp-readme-versions.js --check exit 1 if any remain
24
+ */
25
+
26
+ const fs = require("fs");
27
+ const path = require("path");
28
+
29
+ const PLACEHOLDER = /\{\{NEXT\}\}/g;
30
+ const ROOT = path.join(__dirname, "..");
31
+ const USAGE_DIR = path.join(ROOT, "usage");
32
+
33
+ function targetFiles() {
34
+ const files = [path.join(ROOT, "README.md")];
35
+
36
+ if (fs.existsSync(USAGE_DIR)) {
37
+ for (const name of fs.readdirSync(USAGE_DIR)) {
38
+ if (name.endsWith(".md")) files.push(path.join(USAGE_DIR, name));
39
+ }
40
+ }
41
+
42
+ return files.filter((file) => fs.existsSync(file));
43
+ }
44
+
45
+ /** The version going out, without any prerelease suffix. */
46
+ function releaseVersion() {
47
+ const { version } = JSON.parse(
48
+ fs.readFileSync(path.join(ROOT, "package.json"), "utf8"),
49
+ );
50
+
51
+ if (!version) {
52
+ throw new Error("No version field in package.json");
53
+ }
54
+
55
+ return version.split("-")[0];
56
+ }
57
+
58
+ function main() {
59
+ const dryRun = process.argv.includes("--dry-run");
60
+ const checkOnly = process.argv.includes("--check");
61
+ const version = checkOnly ? null : releaseVersion();
62
+
63
+ let total = 0;
64
+ const touched = [];
65
+
66
+ for (const file of targetFiles()) {
67
+ const source = fs.readFileSync(file, "utf8");
68
+ const matches = source.match(PLACEHOLDER);
69
+ if (!matches) continue;
70
+
71
+ total += matches.length;
72
+ touched.push(`${path.relative(ROOT, file)} (${matches.length})`);
73
+
74
+ if (!dryRun && !checkOnly) {
75
+ fs.writeFileSync(file, source.replace(PLACEHOLDER, version));
76
+ }
77
+ }
78
+
79
+ if (checkOnly) {
80
+ if (total) {
81
+ console.error(
82
+ `Unresolved {{NEXT}} placeholders in:\n ${touched.join("\n ")}`,
83
+ );
84
+ process.exit(1);
85
+ }
86
+ console.log("No unresolved version placeholders.");
87
+ return;
88
+ }
89
+
90
+ if (!total) {
91
+ console.log("No version placeholders to stamp.");
92
+ return;
93
+ }
94
+
95
+ console.log(
96
+ `${dryRun ? "Would stamp" : "Stamped"} ${total} placeholder(s) as ` +
97
+ `${version}:\n ${touched.join("\n ")}`,
98
+ );
99
+ }
100
+
101
+ try {
102
+ main();
103
+ } catch (error) {
104
+ console.error("Failed to stamp doc versions:", error.message);
105
+ process.exit(1);
106
+ }