@envive-ai/react-hooks 0.3.19-alpha-marlo-2 → 0.3.19-alpha-marlo-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/dist/application/utils/elementObserver.d.cts +2 -2
  2. package/dist/application/utils/elementObserver.d.ts +2 -2
  3. package/dist/atoms/app/index.d.cts +7 -7
  4. package/dist/atoms/app/index.d.ts +7 -7
  5. package/dist/atoms/app/variant.d.ts +6 -6
  6. package/dist/atoms/chat/chatState.d.cts +17 -17
  7. package/dist/atoms/chat/chatState.d.ts +18 -18
  8. package/dist/atoms/chat/form.d.cts +2 -2
  9. package/dist/atoms/chat/form.d.ts +3 -3
  10. package/dist/atoms/chat/index.d.cts +2 -2
  11. package/dist/atoms/chat/index.d.ts +3 -3
  12. package/dist/atoms/chat/lastMessage.d.cts +2 -2
  13. package/dist/atoms/chat/lastMessage.d.ts +2 -2
  14. package/dist/atoms/chat/messageQueue.d.cts +6 -6
  15. package/dist/atoms/chat/messageQueue.d.ts +7 -7
  16. package/dist/atoms/chat/performanceMetrics.d.cts +6 -6
  17. package/dist/atoms/chat/performanceMetrics.d.ts +6 -6
  18. package/dist/atoms/chat/renderedWidgetRefs.d.cts +2 -2
  19. package/dist/atoms/chat/renderedWidgetRefs.d.ts +2 -2
  20. package/dist/atoms/chat/replies.d.cts +3 -3
  21. package/dist/atoms/chat/replies.d.ts +3 -3
  22. package/dist/atoms/chat/suggestions.d.cts +2 -2
  23. package/dist/atoms/chat/suggestions.d.ts +3 -3
  24. package/dist/atoms/envive/enviveConfig.d.cts +12 -12
  25. package/dist/atoms/envive/enviveConfig.d.ts +13 -13
  26. package/dist/atoms/globalSearch/globalSearch.d.cts +5 -5
  27. package/dist/atoms/globalSearch/globalSearch.d.ts +5 -5
  28. package/dist/atoms/org/customerService.d.cts +6 -6
  29. package/dist/atoms/org/customerService.d.ts +6 -6
  30. package/dist/atoms/org/graphqlConfig.d.cts +4 -4
  31. package/dist/atoms/org/graphqlConfig.d.ts +4 -4
  32. package/dist/atoms/org/newOrgConfigAtom.d.cts +2 -2
  33. package/dist/atoms/org/newOrgConfigAtom.d.ts +2 -2
  34. package/dist/atoms/org/orgAnalyticsConfig.d.cts +5 -5
  35. package/dist/atoms/org/orgAnalyticsConfig.d.ts +5 -5
  36. package/dist/atoms/search/chatSearch.d.cts +17 -17
  37. package/dist/atoms/search/chatSearch.d.ts +17 -17
  38. package/dist/atoms/search/searchAPI.d.cts +13 -13
  39. package/dist/atoms/search/searchAPI.d.ts +13 -13
  40. package/dist/atoms/search/types.d.cts +1 -1
  41. package/dist/atoms/search/types.d.ts +1 -1
  42. package/dist/atoms/search/utils.d.cts +1 -1
  43. package/dist/atoms/widget/chatPreviewLoading.d.cts +2 -2
  44. package/dist/atoms/widget/chatPreviewLoading.d.ts +2 -2
  45. package/dist/contexts/amplitudeContext/amplitudeContext.cjs +9 -6
  46. package/dist/contexts/amplitudeContext/amplitudeContext.js +9 -6
  47. package/dist/contexts/enviveContext/enviveContext.cjs +3 -3
  48. package/dist/contexts/enviveContext/enviveContext.js +3 -3
  49. package/dist/contexts/enviveContext/types.d.cts +1 -1
  50. package/dist/contexts/pageContext/pageContext.cjs +58 -1
  51. package/dist/contexts/pageContext/pageContext.js +60 -3
  52. package/dist/contexts/pageContext/types.d.ts +1 -1
  53. package/dist/contexts/systemSettingsContext/systemSettingsContext.d.cts +2 -2
  54. package/dist/contexts/systemSettingsContext/systemSettingsContext.d.ts +2 -2
  55. package/dist/contexts/types.d.cts +1 -1
  56. package/dist/contexts/types.d.ts +1 -1
  57. package/dist/contexts/typesV3.d.ts +1 -1
  58. package/dist/hooks/GrabAndScroll/useGrabAndScroll.d.ts +2 -2
  59. package/dist/hooks/PageViewedEvent/index.cjs +4 -0
  60. package/dist/hooks/PageViewedEvent/index.d.cts +2 -0
  61. package/dist/hooks/PageViewedEvent/index.d.ts +2 -0
  62. package/dist/hooks/PageViewedEvent/index.js +3 -0
  63. package/dist/hooks/PageViewedEvent/usePageViewedEvent.cjs +84 -0
  64. package/dist/hooks/PageViewedEvent/usePageViewedEvent.d.cts +18 -0
  65. package/dist/hooks/PageViewedEvent/usePageViewedEvent.d.ts +18 -0
  66. package/dist/hooks/PageViewedEvent/usePageViewedEvent.js +82 -0
  67. package/dist/hooks/SystemSettingsContext/useSystemSettingsContext.d.cts +2 -2
  68. package/dist/hooks/SystemSettingsContext/useSystemSettingsContext.d.ts +2 -2
  69. package/dist/hooks/WidgetInteraction/types.d.ts +1 -1
  70. package/dist/hooks/WidgetInteraction/utils.d.ts +1 -1
  71. package/dist/hooks/utils.d.ts +1 -1
  72. package/dist/services/amplitudeService/amplitudeService.cjs +5 -10
  73. package/dist/services/amplitudeService/amplitudeService.d.cts +2 -4
  74. package/dist/services/amplitudeService/amplitudeService.d.ts +2 -4
  75. package/dist/services/amplitudeService/amplitudeService.js +5 -10
  76. package/package.json +5 -1
  77. package/src/contexts/amplitudeContext/__tests__/amplitudeContext.test.tsx +5 -6
  78. package/src/contexts/amplitudeContext/amplitudeContext.tsx +7 -3
  79. package/src/contexts/pageContext/__tests__/pageContext.test.tsx +6 -0
  80. package/src/contexts/pageContext/pageContext.tsx +60 -1
  81. package/src/hooks/PageViewedEvent/__tests__/usePageViewedEvent.test.ts +297 -0
  82. package/src/hooks/PageViewedEvent/index.ts +1 -0
  83. package/src/hooks/PageViewedEvent/usePageViewedEvent.ts +103 -0
  84. package/src/services/amplitudeService/__tests__/amplitudeService.test.ts +6 -56
  85. package/src/services/amplitudeService/amplitudeService.ts +4 -14
@@ -1,6 +1,6 @@
1
1
  import { MouseEventTypes } from "./mouseEventTypes.cjs";
2
2
  import { NodeSelector } from "./nodeSelector.cjs";
3
- import * as react2 from "react";
3
+ import * as react3 from "react";
4
4
  import { ReactElement } from "react";
5
5
 
6
6
  //#region src/application/utils/elementObserver.d.ts
@@ -48,7 +48,7 @@ declare class ElementObserver {
48
48
  init(): void;
49
49
  watch(node: Node): void;
50
50
  destroy(): void;
51
- render(fn: () => ReactElement): react2.ReactPortal | undefined;
51
+ render(fn: () => ReactElement): react3.ReactPortal | undefined;
52
52
  fire(event: MouseEventTypes): void;
53
53
  show(): void;
54
54
  hide(): void;
@@ -1,6 +1,6 @@
1
1
  import { MouseEventTypes } from "./mouseEventTypes.js";
2
2
  import { NodeSelector } from "./nodeSelector.js";
3
- import * as react0 from "react";
3
+ import * as react3 from "react";
4
4
  import { ReactElement } from "react";
5
5
 
6
6
  //#region src/application/utils/elementObserver.d.ts
@@ -48,7 +48,7 @@ declare class ElementObserver {
48
48
  init(): void;
49
49
  watch(node: Node): void;
50
50
  destroy(): void;
51
- render(fn: () => ReactElement): react0.ReactPortal | undefined;
51
+ render(fn: () => ReactElement): react3.ReactPortal | undefined;
52
52
  fire(event: MouseEventTypes): void;
53
53
  show(): void;
54
54
  hide(): void;
@@ -2,7 +2,7 @@ import { VariantInfo } from "../../application/models/variantInfo/variantInfo.cj
2
2
  import { hasParsedVariantInfoAtom, pageUserEventAtom, pageVariantInfoAtom, supportedEventAtom, variantInfoAtom } from "./variant.cjs";
3
3
  import { UserIdentityContextType } from "../../contexts/userIdentityContext/userIdentityContext.cjs";
4
4
  import { ContextEnvEnum, ContextSourceEnum } from "@spiffy-ai/commerce-api-client";
5
- import * as jotai28 from "jotai";
5
+ import * as jotai0 from "jotai";
6
6
  import * as jotai_utils0 from "jotai/utils";
7
7
 
8
8
  //#region src/atoms/app/index.d.ts
@@ -15,13 +15,13 @@ interface AppDetails {
15
15
  env: ContextEnvEnum;
16
16
  variantInfo: VariantInfo;
17
17
  }
18
- declare const userIdAtom: jotai28.WritableAtom<string, [value: string], void>;
19
- declare const userIdentityAtom: jotai28.PrimitiveAtom<UserIdentityContextType | undefined> & {
18
+ declare const userIdAtom: jotai0.WritableAtom<string, [value: string], void>;
19
+ declare const userIdentityAtom: jotai0.PrimitiveAtom<UserIdentityContextType | undefined> & {
20
20
  init: UserIdentityContextType | undefined;
21
21
  };
22
- declare const appSourceAtom: jotai28.Atom<ContextSourceEnum>;
23
- declare const chatIdAtom: jotai28.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
- declare const appDetailsAtom: jotai28.Atom<AppDetails>;
22
+ declare const appSourceAtom: jotai0.Atom<ContextSourceEnum>;
23
+ declare const chatIdAtom: jotai0.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
+ declare const appDetailsAtom: jotai0.Atom<AppDetails>;
25
25
  //#endregion
26
26
  export { AppDetails, appDetailsAtom, appSourceAtom, chatIdAtom, hasParsedVariantInfoAtom, pageUserEventAtom, pageVariantInfoAtom, supportedEventAtom, userIdAtom, userIdentityAtom, variantInfoAtom };
27
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC5jdHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2FwcC9pbmRleC5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnRleHRFbnZFbnVtLCBDb250ZXh0U291cmNlRW51bSB9IGZyb20gJ0BzcGlmZnktYWkvY29tbWVyY2UtYXBpLWNsaWVudCc7XG5pbXBvcnQgeyBWYXJpYW50SW5mbyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgVXNlcklkZW50aXR5Q29udGV4dFR5cGUgfSBmcm9tICdzcmMvY29udGV4dHMvdXNlcklkZW50aXR5Q29udGV4dC91c2VySWRlbnRpdHlDb250ZXh0JztcbmV4cG9ydCBpbnRlcmZhY2UgQXBwRGV0YWlscyB7XG4gICAgb3JnSWQ6IHN0cmluZztcbiAgICBvcmdTaG9ydE5hbWU6IHN0cmluZztcbiAgICBjaGF0SWQ6IHN0cmluZztcbiAgICB1c2VySWQ6IHN0cmluZztcbiAgICBzb3VyY2U6IENvbnRleHRTb3VyY2VFbnVtO1xuICAgIGVudjogQ29udGV4dEVudkVudW07XG4gICAgdmFyaWFudEluZm86IFZhcmlhbnRJbmZvO1xufVxuZXhwb3J0IHsgcGFnZVVzZXJFdmVudEF0b20sIHBhZ2VWYXJpYW50SW5mb0F0b20sIHZhcmlhbnRJbmZvQXRvbSwgaGFzUGFyc2VkVmFyaWFudEluZm9BdG9tLCBzdXBwb3J0ZWRFdmVudEF0b20sIH0gZnJvbSAnLi92YXJpYW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJJZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxzdHJpbmcsIFt2YWx1ZTogc3RyaW5nXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VySWRlbnRpdHlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFVzZXJJZGVudGl0eUNvbnRleHRUeXBlIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBVc2VySWRlbnRpdHlDb250ZXh0VHlwZSB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhcHBTb3VyY2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPENvbnRleHRTb3VyY2VFbnVtPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNoYXRJZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxzdHJpbmcsIFtzdHJpbmcgfCB0eXBlb2YgaW1wb3J0KFwiam90YWkvdXRpbHNcIikuUkVTRVQgfCAoKHByZXY6IHN0cmluZykgPT4gc3RyaW5nIHwgdHlwZW9mIGltcG9ydChcImpvdGFpL3V0aWxzXCIpLlJFU0VUKV0sIHZvaWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYXBwRGV0YWlsc0F0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208QXBwRGV0YWlscz47XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBS0EsSUFBVyxhQUFhO0NBQUE7T0FBQTtPQUFBO09BQUE7Q0FBQTtBQUV4QixJQUFXLGFBQU8sQ0FBQSxXQUFBLFFBQUEsYUFBQTtBQUNsQixJQUFXLG1CQUFrQjtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUM3QixJQUFXLGdCQUFZO0NBQUE7T0FBQTtPQUFBLFFBQUE7Q0FBQTtBQUN2QixJQUFXLGFBQWE7Q0FBQztPQUFHLGFBQUE7T0FBQSxhQUFBO09BQUEsUUFBQTtDQUFBO0FBQzVCLElBQUEsaUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
27
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC5jdHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2FwcC9pbmRleC5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbnRleHRFbnZFbnVtLCBDb250ZXh0U291cmNlRW51bSB9IGZyb20gJ0BzcGlmZnktYWkvY29tbWVyY2UtYXBpLWNsaWVudCc7XG5pbXBvcnQgeyBWYXJpYW50SW5mbyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgVXNlcklkZW50aXR5Q29udGV4dFR5cGUgfSBmcm9tICdzcmMvY29udGV4dHMvdXNlcklkZW50aXR5Q29udGV4dC91c2VySWRlbnRpdHlDb250ZXh0JztcbmV4cG9ydCBpbnRlcmZhY2UgQXBwRGV0YWlscyB7XG4gICAgb3JnSWQ6IHN0cmluZztcbiAgICBvcmdTaG9ydE5hbWU6IHN0cmluZztcbiAgICBjaGF0SWQ6IHN0cmluZztcbiAgICB1c2VySWQ6IHN0cmluZztcbiAgICBzb3VyY2U6IENvbnRleHRTb3VyY2VFbnVtO1xuICAgIGVudjogQ29udGV4dEVudkVudW07XG4gICAgdmFyaWFudEluZm86IFZhcmlhbnRJbmZvO1xufVxuZXhwb3J0IHsgcGFnZVVzZXJFdmVudEF0b20sIHBhZ2VWYXJpYW50SW5mb0F0b20sIHZhcmlhbnRJbmZvQXRvbSwgaGFzUGFyc2VkVmFyaWFudEluZm9BdG9tLCBzdXBwb3J0ZWRFdmVudEF0b20sIH0gZnJvbSAnLi92YXJpYW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJJZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxzdHJpbmcsIFt2YWx1ZTogc3RyaW5nXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VySWRlbnRpdHlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFVzZXJJZGVudGl0eUNvbnRleHRUeXBlIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBVc2VySWRlbnRpdHlDb250ZXh0VHlwZSB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhcHBTb3VyY2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPENvbnRleHRTb3VyY2VFbnVtPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNoYXRJZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxzdHJpbmcsIFtzdHJpbmcgfCB0eXBlb2YgaW1wb3J0KFwiam90YWkvdXRpbHNcIikuUkVTRVQgfCAoKHByZXY6IHN0cmluZykgPT4gc3RyaW5nIHwgdHlwZW9mIGltcG9ydChcImpvdGFpL3V0aWxzXCIpLlJFU0VUKV0sIHZvaWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYXBwRGV0YWlsc0F0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208QXBwRGV0YWlscz47XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBS0EsSUFBVyxhQUFhO0NBQUE7T0FBQTtPQUFBO09BQUE7Q0FBQTtBQUV4QixJQUFXLGFBQU8sQ0FBQSxVQUFBLE9BQUEsYUFBQTtBQUNsQixJQUFXLG1CQUFrQjtDQUFBO09BQUE7T0FBQSxPQUFBO09BQUE7Q0FBQTtBQUM3QixJQUFXLGdCQUFZO0NBQUE7T0FBQTtPQUFBLE9BQUE7Q0FBQTtBQUN2QixJQUFXLGFBQWE7Q0FBQztPQUFHLGFBQUE7T0FBQSxhQUFBO09BQUEsT0FBQTtDQUFBO0FBQzVCLElBQUEsaUJBQUE7Q0FBQTtPQUFBO09BQUEsT0FBQTtDQUFBIn0=
@@ -2,7 +2,7 @@ import { VariantInfo } from "../../application/models/variantInfo/variantInfo.js
2
2
  import { hasParsedVariantInfoAtom, pageUserEventAtom, pageVariantInfoAtom, supportedEventAtom, variantInfoAtom } from "./variant.js";
3
3
  import { UserIdentityContextType } from "../../contexts/userIdentityContext/userIdentityContext.js";
4
4
  import { ContextEnvEnum, ContextSourceEnum } from "@spiffy-ai/commerce-api-client";
5
- import * as jotai0 from "jotai";
5
+ import * as jotai28 from "jotai";
6
6
  import * as jotai_utils0 from "jotai/utils";
7
7
 
8
8
  //#region src/atoms/app/index.d.ts
@@ -15,13 +15,13 @@ interface AppDetails {
15
15
  env: ContextEnvEnum;
16
16
  variantInfo: VariantInfo;
17
17
  }
18
- declare const userIdAtom: jotai0.WritableAtom<string, [value: string], void>;
19
- declare const userIdentityAtom: jotai0.PrimitiveAtom<UserIdentityContextType | undefined> & {
18
+ declare const userIdAtom: jotai28.WritableAtom<string, [value: string], void>;
19
+ declare const userIdentityAtom: jotai28.PrimitiveAtom<UserIdentityContextType | undefined> & {
20
20
  init: UserIdentityContextType | undefined;
21
21
  };
22
- declare const appSourceAtom: jotai0.Atom<ContextSourceEnum>;
23
- declare const chatIdAtom: jotai0.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
- declare const appDetailsAtom: jotai0.Atom<AppDetails>;
22
+ declare const appSourceAtom: jotai28.Atom<ContextSourceEnum>;
23
+ declare const chatIdAtom: jotai28.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
+ declare const appDetailsAtom: jotai28.Atom<AppDetails>;
25
25
  //#endregion
26
26
  export { AppDetails, appDetailsAtom, appSourceAtom, chatIdAtom, hasParsedVariantInfoAtom, pageUserEventAtom, pageVariantInfoAtom, supportedEventAtom, userIdAtom, userIdentityAtom, variantInfoAtom };
27
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvYXBwL2luZGV4LmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29udGV4dEVudkVudW0sIENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmltcG9ydCB7IFZhcmlhbnRJbmZvIH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG5pbXBvcnQgeyBVc2VySWRlbnRpdHlDb250ZXh0VHlwZSB9IGZyb20gJ3NyYy9jb250ZXh0cy91c2VySWRlbnRpdHlDb250ZXh0L3VzZXJJZGVudGl0eUNvbnRleHQnO1xuZXhwb3J0IGludGVyZmFjZSBBcHBEZXRhaWxzIHtcbiAgICBvcmdJZDogc3RyaW5nO1xuICAgIG9yZ1Nob3J0TmFtZTogc3RyaW5nO1xuICAgIGNoYXRJZDogc3RyaW5nO1xuICAgIHVzZXJJZDogc3RyaW5nO1xuICAgIHNvdXJjZTogQ29udGV4dFNvdXJjZUVudW07XG4gICAgZW52OiBDb250ZXh0RW52RW51bTtcbiAgICB2YXJpYW50SW5mbzogVmFyaWFudEluZm87XG59XG5leHBvcnQgeyBwYWdlVXNlckV2ZW50QXRvbSwgcGFnZVZhcmlhbnRJbmZvQXRvbSwgdmFyaWFudEluZm9BdG9tLCBoYXNQYXJzZWRWYXJpYW50SW5mb0F0b20sIHN1cHBvcnRlZEV2ZW50QXRvbSwgfSBmcm9tICcuL3ZhcmlhbnQnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgdXNlcklkQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPHN0cmluZywgW3ZhbHVlOiBzdHJpbmddLCB2b2lkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJJZGVudGl0eUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlcklkZW50aXR5Q29udGV4dFR5cGUgfCB1bmRlZmluZWQ+ICYge1xuICAgIGluaXQ6IFVzZXJJZGVudGl0eUNvbnRleHRUeXBlIHwgdW5kZWZpbmVkO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGFwcFNvdXJjZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208Q29udGV4dFNvdXJjZUVudW0+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElkQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPHN0cmluZywgW3N0cmluZyB8IHR5cGVvZiBpbXBvcnQoXCJqb3RhaS91dGlsc1wiKS5SRVNFVCB8ICgocHJldjogc3RyaW5nKSA9PiBzdHJpbmcgfCB0eXBlb2YgaW1wb3J0KFwiam90YWkvdXRpbHNcIikuUkVTRVQpXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhcHBEZXRhaWxzQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxBcHBEZXRhaWxzPjtcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFLQSxJQUFXLGFBQWE7Q0FBQTtPQUFBO09BQUE7T0FBQTtDQUFBO0FBRXhCLElBQVcsYUFBTyxDQUFBLFVBQUEsT0FBQSxhQUFBO0FBQ2xCLElBQVcsbUJBQWtCO0NBQUE7T0FBQTtPQUFBLE9BQUE7T0FBQTtDQUFBO0FBQzdCLElBQVcsZ0JBQVk7Q0FBQTtPQUFBO09BQUEsT0FBQTtDQUFBO0FBQ3ZCLElBQVcsYUFBYTtDQUFDO09BQUcsYUFBQTtPQUFBLGFBQUE7T0FBQSxPQUFBO0NBQUE7QUFDNUIsSUFBQSxpQkFBQTtDQUFBO09BQUE7T0FBQSxPQUFBO0NBQUEifQ==
27
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvYXBwL2luZGV4LmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29udGV4dEVudkVudW0sIENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmltcG9ydCB7IFZhcmlhbnRJbmZvIH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG5pbXBvcnQgeyBVc2VySWRlbnRpdHlDb250ZXh0VHlwZSB9IGZyb20gJ3NyYy9jb250ZXh0cy91c2VySWRlbnRpdHlDb250ZXh0L3VzZXJJZGVudGl0eUNvbnRleHQnO1xuZXhwb3J0IGludGVyZmFjZSBBcHBEZXRhaWxzIHtcbiAgICBvcmdJZDogc3RyaW5nO1xuICAgIG9yZ1Nob3J0TmFtZTogc3RyaW5nO1xuICAgIGNoYXRJZDogc3RyaW5nO1xuICAgIHVzZXJJZDogc3RyaW5nO1xuICAgIHNvdXJjZTogQ29udGV4dFNvdXJjZUVudW07XG4gICAgZW52OiBDb250ZXh0RW52RW51bTtcbiAgICB2YXJpYW50SW5mbzogVmFyaWFudEluZm87XG59XG5leHBvcnQgeyBwYWdlVXNlckV2ZW50QXRvbSwgcGFnZVZhcmlhbnRJbmZvQXRvbSwgdmFyaWFudEluZm9BdG9tLCBoYXNQYXJzZWRWYXJpYW50SW5mb0F0b20sIHN1cHBvcnRlZEV2ZW50QXRvbSwgfSBmcm9tICcuL3ZhcmlhbnQnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgdXNlcklkQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPHN0cmluZywgW3ZhbHVlOiBzdHJpbmddLCB2b2lkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJJZGVudGl0eUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlcklkZW50aXR5Q29udGV4dFR5cGUgfCB1bmRlZmluZWQ+ICYge1xuICAgIGluaXQ6IFVzZXJJZGVudGl0eUNvbnRleHRUeXBlIHwgdW5kZWZpbmVkO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGFwcFNvdXJjZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208Q29udGV4dFNvdXJjZUVudW0+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElkQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPHN0cmluZywgW3N0cmluZyB8IHR5cGVvZiBpbXBvcnQoXCJqb3RhaS91dGlsc1wiKS5SRVNFVCB8ICgocHJldjogc3RyaW5nKSA9PiBzdHJpbmcgfCB0eXBlb2YgaW1wb3J0KFwiam90YWkvdXRpbHNcIikuUkVTRVQpXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhcHBEZXRhaWxzQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxBcHBEZXRhaWxzPjtcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFLQSxJQUFXLGFBQWE7Q0FBQTtPQUFBO09BQUE7T0FBQTtDQUFBO0FBRXhCLElBQVcsYUFBTyxDQUFBLFdBQUEsUUFBQSxhQUFBO0FBQ2xCLElBQVcsbUJBQWtCO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQzdCLElBQVcsZ0JBQVk7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBO0FBQ3ZCLElBQVcsYUFBYTtDQUFDO09BQUcsYUFBQTtPQUFBLGFBQUE7T0FBQSxRQUFBO0NBQUE7QUFDNUIsSUFBQSxpQkFBQTtDQUFBO09BQUE7T0FBQSxRQUFBO0NBQUEifQ==
@@ -2,7 +2,7 @@ import { UserEvent as UserEvent$1 } from "../../application/models/api/userEvent
2
2
  import { VariantInfo } from "../../application/models/variantInfo/variantInfo.js";
3
3
  import { PageVariantInfo } from "../../contexts/pageContext/types.js";
4
4
  import { PageVisitCategory, SupportedEventResponse, UserEvent } from "@spiffy-ai/commerce-api-client";
5
- import * as jotai79 from "jotai";
5
+ import * as jotai93 from "jotai";
6
6
 
7
7
  //#region src/atoms/app/variant.d.ts
8
8
  interface SupportedEvent extends Pick<SupportedEventResponse, 'supported' | 'ready' | 'category' | 'collections' | 'top_category'> {
@@ -73,15 +73,15 @@ interface UrlResolverResponse {
73
73
  user_event?: UserEvent;
74
74
  page_variant?: BackendPageVariantConfig;
75
75
  }
76
- declare const supportedEventAtom: jotai79.WritableAtom<SupportedEvent | undefined, [value: SupportedEvent | undefined], void>;
77
- declare const hasParsedVariantInfoAtom: jotai79.PrimitiveAtom<boolean> & {
76
+ declare const supportedEventAtom: jotai93.WritableAtom<SupportedEvent | undefined, [value: SupportedEvent | undefined], void>;
77
+ declare const hasParsedVariantInfoAtom: jotai93.PrimitiveAtom<boolean> & {
78
78
  init: boolean;
79
79
  };
80
- declare const variantInfoAtom: jotai79.WritableAtom<VariantInfo, [newVariant: VariantInfo], void>;
81
- declare const pageUserEventAtom: jotai79.PrimitiveAtom<UserEvent$1 | undefined> & {
80
+ declare const variantInfoAtom: jotai93.WritableAtom<VariantInfo, [newVariant: VariantInfo], void>;
81
+ declare const pageUserEventAtom: jotai93.PrimitiveAtom<UserEvent$1 | undefined> & {
82
82
  init: UserEvent$1 | undefined;
83
83
  };
84
- declare const pageVariantInfoAtom: jotai79.PrimitiveAtom<PageVariantInfo | undefined> & {
84
+ declare const pageVariantInfoAtom: jotai93.PrimitiveAtom<PageVariantInfo | undefined> & {
85
85
  init: PageVariantInfo | undefined;
86
86
  };
87
87
  //#endregion
@@ -4,56 +4,56 @@ import { Message } from "../../application/models/message.cjs";
4
4
  import { FormSubmittedAttributes, UserEvent } from "../../application/models/api/userEvent.cjs";
5
5
  import { Suggestion } from "../../application/models/api/suggestion.cjs";
6
6
  import { SpiffyMetricsEventName } from "../../services/amplitudeService/eventNames.cjs";
7
- import * as jotai0 from "jotai";
7
+ import * as jotai5 from "jotai";
8
8
  import { UserEventCategory } from "@spiffy-ai/commerce-api-client/dist/models/UserEventCategory";
9
9
 
10
10
  //#region src/atoms/chat/chatState.d.ts
11
- declare const userHasRepliedAtom: jotai0.PrimitiveAtom<boolean> & {
11
+ declare const userHasRepliedAtom: jotai5.PrimitiveAtom<boolean> & {
12
12
  init: boolean;
13
13
  };
14
- declare const replyEventCategoryAtom: jotai0.PrimitiveAtom<UserEventCategory> & {
14
+ declare const replyEventCategoryAtom: jotai5.PrimitiveAtom<UserEventCategory> & {
15
15
  init: UserEventCategory;
16
16
  };
17
- declare const userQueryAtom: jotai0.PrimitiveAtom<string | undefined> & {
17
+ declare const userQueryAtom: jotai5.PrimitiveAtom<string | undefined> & {
18
18
  init: string | undefined;
19
19
  };
20
- declare const suggestionAtom: jotai0.PrimitiveAtom<Suggestion | undefined> & {
20
+ declare const suggestionAtom: jotai5.PrimitiveAtom<Suggestion | undefined> & {
21
21
  init: Suggestion | undefined;
22
22
  };
23
- declare const askQuestionBtnClickedAtom: jotai0.PrimitiveAtom<boolean> & {
23
+ declare const askQuestionBtnClickedAtom: jotai5.PrimitiveAtom<boolean> & {
24
24
  init: boolean;
25
25
  };
26
- declare const messagesAtom: jotai0.PrimitiveAtom<Message[][]> & {
26
+ declare const messagesAtom: jotai5.PrimitiveAtom<Message[][]> & {
27
27
  init: Message[][];
28
28
  };
29
- declare const userEventsAtom: jotai0.PrimitiveAtom<UserEvent[]> & {
29
+ declare const userEventsAtom: jotai5.PrimitiveAtom<UserEvent[]> & {
30
30
  init: UserEvent[];
31
31
  };
32
- declare const suggestionsAtom: jotai0.PrimitiveAtom<Suggestion[]> & {
32
+ declare const suggestionsAtom: jotai5.PrimitiveAtom<Suggestion[]> & {
33
33
  init: Suggestion[];
34
34
  };
35
- declare const suggestionsLoadingAtom: jotai0.PrimitiveAtom<boolean> & {
35
+ declare const suggestionsLoadingAtom: jotai5.PrimitiveAtom<boolean> & {
36
36
  init: boolean;
37
37
  };
38
- declare const responseStreamingAtom: jotai0.PrimitiveAtom<boolean> & {
38
+ declare const responseStreamingAtom: jotai5.PrimitiveAtom<boolean> & {
39
39
  init: boolean;
40
40
  };
41
- declare const pendingResponseAtom: jotai0.PrimitiveAtom<boolean> & {
41
+ declare const pendingResponseAtom: jotai5.PrimitiveAtom<boolean> & {
42
42
  init: boolean;
43
43
  };
44
- declare const initializedAtom: jotai0.PrimitiveAtom<boolean> & {
44
+ declare const initializedAtom: jotai5.PrimitiveAtom<boolean> & {
45
45
  init: boolean;
46
46
  };
47
- declare const chatIsOpenAtom: jotai0.PrimitiveAtom<boolean> & {
47
+ declare const chatIsOpenAtom: jotai5.PrimitiveAtom<boolean> & {
48
48
  init: boolean;
49
49
  };
50
- declare const requestFailureAtom: jotai0.PrimitiveAtom<boolean> & {
50
+ declare const requestFailureAtom: jotai5.PrimitiveAtom<boolean> & {
51
51
  init: boolean;
52
52
  };
53
- declare const formSubmitAtom: jotai0.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
53
+ declare const formSubmitAtom: jotai5.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
54
54
  init: FormSubmittedAttributes | undefined;
55
55
  };
56
- declare const chatOnToggleAtom: jotai0.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
56
+ declare const chatOnToggleAtom: jotai5.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
57
57
  init: null;
58
58
  };
59
59
  //#endregion
@@ -4,58 +4,58 @@ import { Message } from "../../application/models/message.js";
4
4
  import { FormSubmittedAttributes, UserEvent } from "../../application/models/api/userEvent.js";
5
5
  import { Suggestion } from "../../application/models/api/suggestion.js";
6
6
  import { SpiffyMetricsEventName } from "../../services/amplitudeService/eventNames.js";
7
- import * as jotai17 from "jotai";
7
+ import * as jotai0 from "jotai";
8
8
  import { UserEventCategory } from "@spiffy-ai/commerce-api-client/dist/models/UserEventCategory";
9
9
 
10
10
  //#region src/atoms/chat/chatState.d.ts
11
- declare const userHasRepliedAtom: jotai17.PrimitiveAtom<boolean> & {
11
+ declare const userHasRepliedAtom: jotai0.PrimitiveAtom<boolean> & {
12
12
  init: boolean;
13
13
  };
14
- declare const replyEventCategoryAtom: jotai17.PrimitiveAtom<UserEventCategory> & {
14
+ declare const replyEventCategoryAtom: jotai0.PrimitiveAtom<UserEventCategory> & {
15
15
  init: UserEventCategory;
16
16
  };
17
- declare const userQueryAtom: jotai17.PrimitiveAtom<string | undefined> & {
17
+ declare const userQueryAtom: jotai0.PrimitiveAtom<string | undefined> & {
18
18
  init: string | undefined;
19
19
  };
20
- declare const suggestionAtom: jotai17.PrimitiveAtom<Suggestion | undefined> & {
20
+ declare const suggestionAtom: jotai0.PrimitiveAtom<Suggestion | undefined> & {
21
21
  init: Suggestion | undefined;
22
22
  };
23
- declare const askQuestionBtnClickedAtom: jotai17.PrimitiveAtom<boolean> & {
23
+ declare const askQuestionBtnClickedAtom: jotai0.PrimitiveAtom<boolean> & {
24
24
  init: boolean;
25
25
  };
26
- declare const messagesAtom: jotai17.PrimitiveAtom<Message[][]> & {
26
+ declare const messagesAtom: jotai0.PrimitiveAtom<Message[][]> & {
27
27
  init: Message[][];
28
28
  };
29
- declare const userEventsAtom: jotai17.PrimitiveAtom<UserEvent[]> & {
29
+ declare const userEventsAtom: jotai0.PrimitiveAtom<UserEvent[]> & {
30
30
  init: UserEvent[];
31
31
  };
32
- declare const suggestionsAtom: jotai17.PrimitiveAtom<Suggestion[]> & {
32
+ declare const suggestionsAtom: jotai0.PrimitiveAtom<Suggestion[]> & {
33
33
  init: Suggestion[];
34
34
  };
35
- declare const suggestionsLoadingAtom: jotai17.PrimitiveAtom<boolean> & {
35
+ declare const suggestionsLoadingAtom: jotai0.PrimitiveAtom<boolean> & {
36
36
  init: boolean;
37
37
  };
38
- declare const responseStreamingAtom: jotai17.PrimitiveAtom<boolean> & {
38
+ declare const responseStreamingAtom: jotai0.PrimitiveAtom<boolean> & {
39
39
  init: boolean;
40
40
  };
41
- declare const pendingResponseAtom: jotai17.PrimitiveAtom<boolean> & {
41
+ declare const pendingResponseAtom: jotai0.PrimitiveAtom<boolean> & {
42
42
  init: boolean;
43
43
  };
44
- declare const initializedAtom: jotai17.PrimitiveAtom<boolean> & {
44
+ declare const initializedAtom: jotai0.PrimitiveAtom<boolean> & {
45
45
  init: boolean;
46
46
  };
47
- declare const chatIsOpenAtom: jotai17.PrimitiveAtom<boolean> & {
47
+ declare const chatIsOpenAtom: jotai0.PrimitiveAtom<boolean> & {
48
48
  init: boolean;
49
49
  };
50
- declare const requestFailureAtom: jotai17.PrimitiveAtom<boolean> & {
50
+ declare const requestFailureAtom: jotai0.PrimitiveAtom<boolean> & {
51
51
  init: boolean;
52
52
  };
53
- declare const formSubmitAtom: jotai17.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
53
+ declare const formSubmitAtom: jotai0.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
54
54
  init: FormSubmittedAttributes | undefined;
55
55
  };
56
- declare const chatOnToggleAtom: jotai17.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
56
+ declare const chatOnToggleAtom: jotai0.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
57
57
  init: null;
58
58
  };
59
59
  //#endregion
60
60
  export { askQuestionBtnClickedAtom, chatIsOpenAtom, chatOnToggleAtom, formSubmitAtom, initializedAtom, messagesAtom, pendingResponseAtom, replyEventCategoryAtom, requestFailureAtom, responseStreamingAtom, suggestionAtom, suggestionsAtom, suggestionsLoadingAtom, userEventsAtom, userHasRepliedAtom, userQueryAtom };
61
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhdFN0YXRlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvY2hhdFN0YXRlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50Q2F0ZWdvcnkgfSBmcm9tICdAc3BpZmZ5LWFpL2NvbW1lcmNlLWFwaS1jbGllbnQvZGlzdC9tb2RlbHMvVXNlckV2ZW50Q2F0ZWdvcnknO1xuaW1wb3J0IHsgU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSB9IGZyb20gJ3NyYy9zZXJ2aWNlcy9hbXBsaXR1ZGVTZXJ2aWNlL2FtcGxpdHVkZVNlcnZpY2UnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMywgRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMsIE1lc3NhZ2UsIFN1Z2dlc3Rpb24sIFVzZXJFdmVudCB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb24gfSBmcm9tICdzcmMvYXBwbGljYXRpb24vbW9kZWxzL2NoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uJztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJIYXNSZXBsaWVkQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlcGx5RXZlbnRDYXRlZ29yeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlckV2ZW50Q2F0ZWdvcnk+ICYge1xuICAgIGluaXQ6IFVzZXJFdmVudENhdGVnb3J5O1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJRdWVyeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208c3RyaW5nIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208U3VnZ2VzdGlvbiB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhc2tRdWVzdGlvbkJ0bkNsaWNrZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbWVzc2FnZXNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPE1lc3NhZ2VbXVtdPiAmIHtcbiAgICBpbml0OiBNZXNzYWdlW11bXTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRzQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxVc2VyRXZlbnRbXT4gJiB7XG4gICAgaW5pdDogVXNlckV2ZW50W107XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbnNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFN1Z2dlc3Rpb25bXT4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbltdO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHN1Z2dlc3Rpb25zTG9hZGluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXNwb25zZVN0cmVhbWluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBwZW5kaW5nUmVzcG9uc2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaW5pdGlhbGl6ZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElzT3BlbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXF1ZXN0RmFpbHVyZUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBmb3JtU3VibWl0QXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdE9uVG9nZ2xlQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFt0cmlnZ2VyTG9jYXRpb24/OiBDaGF0RWxlbWVudERpc3BsYXlMb2NhdGlvbiB8IENoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uVjMgfCB1bmRlZmluZWQsIHRyYWNrPzogKChldmVudE5hbWU6IFNwaWZmeU1ldHJpY3NFdmVudE5hbWUsIGV2ZW50UHJvcHM/OiBSZWNvcmQ8c3RyaW5nLCB1bmtub3duPikgPT4gdm9pZCkgfCB1bmRlZmluZWRdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUtBLElBQVcscUJBQU0sQ0FBQSxVQUFBLFFBQUEsY0FBQTtBQUNqQixJQUFDLHlCQUFBO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQ0QsSUFBVyxnQkFBZ0IsQ0FBQyxVQUFVLFFBQVEsY0FBYztBQUM1RCxJQUFXLGlCQUFnQjtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUMzQixJQUFDLDRCQUFBLENBQUEsVUFBQSxRQUFBLGNBQUE7QUFDRCxJQUFXLGVBQWU7Q0FBQztPQUFVO09BQWUsUUFBUTtPQUFxQjtDQUFPO0FBQ3hGLElBQVcsaUJBQWlCO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQzVCLElBQUMsa0JBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDRCxJQUFXLHlCQUF5QixDQUFDLFVBQVUsUUFBUSxjQUFjO0FBQ3JFLElBQVcsd0JBQXFCLENBQUEsVUFBQSxRQUFBLGNBQUE7QUFDaEMsSUFBQyxzQkFBQSxDQUFBLFVBQUEsUUFBQSxjQUFBO0FBQ0QsSUFBVyxrQkFBa0IsQ0FBQyxVQUFVLFFBQVEsY0FBYztBQUM5RCxJQUFXLGlCQUFNLENBQUEsVUFBQSxRQUFBLGNBQUE7QUFDakIsSUFBQyxxQkFBQSxDQUFBLFVBQUEsUUFBQSxjQUFBO0FBQ0QsSUFBVyxpQkFBaUI7Q0FBQztPQUFVO09BQStCLFFBQVE7T0FBRTtDQUFBO0FBQ2hGLElBQVcsbUJBQVU7Q0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
61
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhdFN0YXRlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvY2hhdFN0YXRlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50Q2F0ZWdvcnkgfSBmcm9tICdAc3BpZmZ5LWFpL2NvbW1lcmNlLWFwaS1jbGllbnQvZGlzdC9tb2RlbHMvVXNlckV2ZW50Q2F0ZWdvcnknO1xuaW1wb3J0IHsgU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSB9IGZyb20gJ3NyYy9zZXJ2aWNlcy9hbXBsaXR1ZGVTZXJ2aWNlL2FtcGxpdHVkZVNlcnZpY2UnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMywgRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMsIE1lc3NhZ2UsIFN1Z2dlc3Rpb24sIFVzZXJFdmVudCB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb24gfSBmcm9tICdzcmMvYXBwbGljYXRpb24vbW9kZWxzL2NoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uJztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJIYXNSZXBsaWVkQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlcGx5RXZlbnRDYXRlZ29yeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlckV2ZW50Q2F0ZWdvcnk+ICYge1xuICAgIGluaXQ6IFVzZXJFdmVudENhdGVnb3J5O1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJRdWVyeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208c3RyaW5nIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208U3VnZ2VzdGlvbiB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhc2tRdWVzdGlvbkJ0bkNsaWNrZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbWVzc2FnZXNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPE1lc3NhZ2VbXVtdPiAmIHtcbiAgICBpbml0OiBNZXNzYWdlW11bXTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRzQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxVc2VyRXZlbnRbXT4gJiB7XG4gICAgaW5pdDogVXNlckV2ZW50W107XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbnNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFN1Z2dlc3Rpb25bXT4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbltdO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHN1Z2dlc3Rpb25zTG9hZGluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXNwb25zZVN0cmVhbWluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBwZW5kaW5nUmVzcG9uc2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaW5pdGlhbGl6ZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElzT3BlbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXF1ZXN0RmFpbHVyZUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBmb3JtU3VibWl0QXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdE9uVG9nZ2xlQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFt0cmlnZ2VyTG9jYXRpb24/OiBDaGF0RWxlbWVudERpc3BsYXlMb2NhdGlvbiB8IENoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uVjMgfCB1bmRlZmluZWQsIHRyYWNrPzogKChldmVudE5hbWU6IFNwaWZmeU1ldHJpY3NFdmVudE5hbWUsIGV2ZW50UHJvcHM/OiBSZWNvcmQ8c3RyaW5nLCB1bmtub3duPikgPT4gdm9pZCkgfCB1bmRlZmluZWRdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUtBLElBQVcscUJBQU0sQ0FBQSxXQUFBLE9BQUEsY0FBQTtBQUNqQixJQUFDLHlCQUFBO0NBQUE7T0FBQTtPQUFBLE9BQUE7T0FBQTtDQUFBO0FBQ0QsSUFBVyxnQkFBZ0IsQ0FBQyxXQUFXLE9BQU8sY0FBYztBQUM1RCxJQUFXLGlCQUFnQjtDQUFBO09BQUE7T0FBQSxPQUFBO09BQUE7Q0FBQTtBQUMzQixJQUFDLDRCQUFBLENBQUEsV0FBQSxPQUFBLGNBQUE7QUFDRCxJQUFXLGVBQWU7Q0FBQztPQUFXO09BQWUsT0FBTztPQUFxQjtDQUFPO0FBQ3hGLElBQVcsaUJBQWlCO0NBQUE7T0FBQTtPQUFBLE9BQUE7T0FBQTtDQUFBO0FBQzVCLElBQUMsa0JBQUE7Q0FBQTtPQUFBO09BQUEsT0FBQTtPQUFBO0NBQUE7QUFDRCxJQUFXLHlCQUF5QixDQUFDLFdBQVcsT0FBTyxjQUFjO0FBQ3JFLElBQVcsd0JBQXFCLENBQUEsV0FBQSxPQUFBLGNBQUE7QUFDaEMsSUFBQyxzQkFBQSxDQUFBLFdBQUEsT0FBQSxjQUFBO0FBQ0QsSUFBVyxrQkFBa0IsQ0FBQyxXQUFXLE9BQU8sY0FBYztBQUM5RCxJQUFXLGlCQUFNLENBQUEsV0FBQSxPQUFBLGNBQUE7QUFDakIsSUFBQyxxQkFBQSxDQUFBLFdBQUEsT0FBQSxjQUFBO0FBQ0QsSUFBVyxpQkFBaUI7Q0FBQztPQUFXO09BQStCLE9BQU87T0FBRTtDQUFBO0FBQ2hGLElBQVcsbUJBQVU7Q0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsT0FBQTtDQUFBIn0=
@@ -1,8 +1,8 @@
1
1
  import { FormSubmittedAttributes } from "../../application/models/api/userEvent.cjs";
2
- import * as jotai40 from "jotai";
2
+ import * as jotai51 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/form.d.ts
5
- declare const handleFormSubmittedAtom: jotai40.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
5
+ declare const handleFormSubmittedAtom: jotai51.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
@@ -1,10 +1,10 @@
1
1
  import { FormSubmittedAttributes } from "../../application/models/api/userEvent.js";
2
- import * as jotai101 from "jotai";
2
+ import * as jotai59 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/form.d.ts
5
- declare const handleFormSubmittedAtom: jotai101.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
5
+ declare const handleFormSubmittedAtom: jotai59.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
9
9
  export { handleFormSubmittedAtom };
10
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS5kLnRzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9jaGF0L2Zvcm0uZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaGFuZGxlRm9ybVN1Ym1pdHRlZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbZm9ybTogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQVcsMEJBQUc7Q0FBQTtPQUFBO09BQUEsU0FBQTtDQUFBIn0=
10
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS5kLnRzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9jaGF0L2Zvcm0uZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaGFuZGxlRm9ybVN1Ym1pdHRlZEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbZm9ybTogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQVcsMEJBQUc7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
@@ -9,10 +9,10 @@ import { lastAssistantMessageAtom } from "./lastMessage.cjs";
9
9
  import { clearUserEventAtom, processUserEventAtom, queueUserEventAtom, userEventQueueAtom, userQueueEventCountAtom } from "./messageQueue.cjs";
10
10
  import { addWidget, widgetArrayAtom } from "./renderedWidgetRefs.cjs";
11
11
  import * as _spiffy_ai_commerce_api_client0 from "@spiffy-ai/commerce-api-client";
12
- import * as jotai16 from "jotai";
12
+ import * as jotai32 from "jotai";
13
13
 
14
14
  //#region src/atoms/chat/index.d.ts
15
- declare const chatAtom: jotai16.Atom<{
15
+ declare const chatAtom: jotai32.Atom<{
16
16
  userHasReplied: boolean;
17
17
  replyEventCategory: _spiffy_ai_commerce_api_client0.UserEventCategory;
18
18
  userQuery: string | undefined;
@@ -9,10 +9,10 @@ import { lastAssistantMessageAtom } from "./lastMessage.js";
9
9
  import { clearUserEventAtom, processUserEventAtom, queueUserEventAtom, userEventQueueAtom, userQueueEventCountAtom } from "./messageQueue.js";
10
10
  import { addWidget, widgetArrayAtom } from "./renderedWidgetRefs.js";
11
11
  import * as _spiffy_ai_commerce_api_client0 from "@spiffy-ai/commerce-api-client";
12
- import * as jotai0 from "jotai";
12
+ import * as jotai15 from "jotai";
13
13
 
14
14
  //#region src/atoms/chat/index.d.ts
15
- declare const chatAtom: jotai0.Atom<{
15
+ declare const chatAtom: jotai15.Atom<{
16
16
  userHasReplied: boolean;
17
17
  replyEventCategory: _spiffy_ai_commerce_api_client0.UserEventCategory;
18
18
  userQuery: string | undefined;
@@ -28,4 +28,4 @@ declare const chatAtom: jotai0.Atom<{
28
28
  }>;
29
29
  //#endregion
30
30
  export { APP_INITIAL_START_TIME_KEY, PAGE_LOAD_OFFSET_TIME_KEY, PerfMetricsEvents, addWidget, appInitialStartTimeMsAtom, askQuestionBtnClickedAtom, chatAtom, chatIsOpenAtom, chatOnToggleAtom, clearUserEventAtom, formSubmitAtom, handleFormSubmittedAtom, handleSuggestionAtom, hasReportedPerformanceMetricsAtom, initializedAtom, lastAssistantMessageAtom, logPerfMetricAtom, messagesAtom, pageLoadOffsetTimeAtom, pendingResponseAtom, performanceMetricsAtom, processUserEventAtom, queueUserEventAtom, replyEventCategoryAtom, requestFailureAtom, resetPerformanceMetricsAtom, responseStreamingAtom, suggestionAtom, suggestionsAtom, suggestionsLoadingAtom, userEventQueueAtom, userEventsAtom, userHasRepliedAtom, userQueryAtom, userQueueEventCountAtom, widgetArrayAtom };
31
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9pbmRleC5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2hhdFN0YXRlJztcbmV4cG9ydCAqIGZyb20gJy4vcGVyZm9ybWFuY2VNZXRyaWNzJztcbmV4cG9ydCAqIGZyb20gJy4vZm9ybSc7XG5leHBvcnQgKiBmcm9tICcuL3N1Z2dlc3Rpb25zJztcbmV4cG9ydCAqIGZyb20gJy4vbGFzdE1lc3NhZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9tZXNzYWdlUXVldWUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZW5kZXJlZFdpZGdldFJlZnMnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208e1xuICAgIHVzZXJIYXNSZXBsaWVkOiBib29sZWFuO1xuICAgIHJlcGx5RXZlbnRDYXRlZ29yeTogaW1wb3J0KFwiQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50XCIpLlVzZXJFdmVudENhdGVnb3J5O1xuICAgIHVzZXJRdWVyeTogc3RyaW5nIHwgdW5kZWZpbmVkO1xuICAgIHN1Z2dlc3Rpb246IGltcG9ydChcIi4uLy4uL2FwcGxpY2F0aW9uL21vZGVsc1wiKS5TdWdnZXN0aW9uIHwgdW5kZWZpbmVkO1xuICAgIGFza1F1ZXN0aW9uQnRuQ2xpY2tlZDogYm9vbGVhbjtcbiAgICBtZXNzYWdlczogaW1wb3J0KFwiLi4vLi4vYXBwbGljYXRpb24vbW9kZWxzXCIpLk1lc3NhZ2VbXVtdO1xuICAgIHVzZXJFdmVudHM6IGltcG9ydChcIi4uLy4uL2FwcGxpY2F0aW9uL21vZGVsc1wiKS5Vc2VyRXZlbnRbXTtcbiAgICBzdWdnZXN0aW9uczogaW1wb3J0KFwiLi4vLi4vYXBwbGljYXRpb24vbW9kZWxzXCIpLlN1Z2dlc3Rpb25bXTtcbiAgICBzdWdnZXN0aW9uc0xvYWRpbmc6IGJvb2xlYW47XG4gICAgcmVzcG9uc2VTdHJlYW1pbmc6IGJvb2xlYW47XG4gICAgaXNPcGVuOiBib29sZWFuO1xuICAgIG9uVG9nZ2xlOiBudWxsO1xufT47XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7O0FBVUEsSUFBVyxXQUFXO0NBQUM7T0FBVSxnQ0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsT0FBQTtDQUFBIn0=
31
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9pbmRleC5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2hhdFN0YXRlJztcbmV4cG9ydCAqIGZyb20gJy4vcGVyZm9ybWFuY2VNZXRyaWNzJztcbmV4cG9ydCAqIGZyb20gJy4vZm9ybSc7XG5leHBvcnQgKiBmcm9tICcuL3N1Z2dlc3Rpb25zJztcbmV4cG9ydCAqIGZyb20gJy4vbGFzdE1lc3NhZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9tZXNzYWdlUXVldWUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZW5kZXJlZFdpZGdldFJlZnMnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208e1xuICAgIHVzZXJIYXNSZXBsaWVkOiBib29sZWFuO1xuICAgIHJlcGx5RXZlbnRDYXRlZ29yeTogaW1wb3J0KFwiQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50XCIpLlVzZXJFdmVudENhdGVnb3J5O1xuICAgIHVzZXJRdWVyeTogc3RyaW5nIHwgdW5kZWZpbmVkO1xuICAgIHN1Z2dlc3Rpb246IGltcG9ydChcIi4uLy4uL2FwcGxpY2F0aW9uL21vZGVsc1wiKS5TdWdnZXN0aW9uIHwgdW5kZWZpbmVkO1xuICAgIGFza1F1ZXN0aW9uQnRuQ2xpY2tlZDogYm9vbGVhbjtcbiAgICBtZXNzYWdlczogaW1wb3J0KFwiLi4vLi4vYXBwbGljYXRpb24vbW9kZWxzXCIpLk1lc3NhZ2VbXVtdO1xuICAgIHVzZXJFdmVudHM6IGltcG9ydChcIi4uLy4uL2FwcGxpY2F0aW9uL21vZGVsc1wiKS5Vc2VyRXZlbnRbXTtcbiAgICBzdWdnZXN0aW9uczogaW1wb3J0KFwiLi4vLi4vYXBwbGljYXRpb24vbW9kZWxzXCIpLlN1Z2dlc3Rpb25bXTtcbiAgICBzdWdnZXN0aW9uc0xvYWRpbmc6IGJvb2xlYW47XG4gICAgcmVzcG9uc2VTdHJlYW1pbmc6IGJvb2xlYW47XG4gICAgaXNPcGVuOiBib29sZWFuO1xuICAgIG9uVG9nZ2xlOiBudWxsO1xufT47XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7O0FBVUEsSUFBVyxXQUFXO0NBQUM7T0FBVSxnQ0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
@@ -1,8 +1,8 @@
1
1
  import { Message } from "../../application/models/message.cjs";
2
- import * as jotai42 from "jotai";
2
+ import * as jotai53 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/lastMessage.d.ts
5
- declare const lastAssistantMessageAtom: jotai42.Atom<Message[] | null>;
5
+ declare const lastAssistantMessageAtom: jotai53.Atom<Message[] | null>;
6
6
  //#endregion
7
7
  export { lastAssistantMessageAtom };
8
8
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFzdE1lc3NhZ2UuZC5jdHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvbGFzdE1lc3NhZ2UuZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVjbGFyZSBjb25zdCBsYXN0QXNzaXN0YW50TWVzc2FnZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208aW1wb3J0KFwiLi4vLi4vYXBwbGljYXRpb24vbW9kZWxzXCIpLk1lc3NhZ2VbXSB8IG51bGw+O1xuIl0sIm1hcHBpbmdzIjoiIn0=
@@ -1,8 +1,8 @@
1
1
  import { Message } from "../../application/models/message.js";
2
- import * as jotai107 from "jotai";
2
+ import * as jotai57 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/lastMessage.d.ts
5
- declare const lastAssistantMessageAtom: jotai107.Atom<Message[] | null>;
5
+ declare const lastAssistantMessageAtom: jotai57.Atom<Message[] | null>;
6
6
  //#endregion
7
7
  export { lastAssistantMessageAtom };
8
8
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFzdE1lc3NhZ2UuZC50cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9sYXN0TWVzc2FnZS5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWNsYXJlIGNvbnN0IGxhc3RBc3Npc3RhbnRNZXNzYWdlQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxpbXBvcnQoXCIuLi8uLi9hcHBsaWNhdGlvbi9tb2RlbHNcIikuTWVzc2FnZVtdIHwgbnVsbD47XG4iXSwibWFwcGluZ3MiOiIifQ==
@@ -1,31 +1,31 @@
1
1
  import { UserEvent } from "../../application/models/api/userEvent.cjs";
2
- import * as jotai43 from "jotai";
2
+ import * as jotai54 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/messageQueue.d.ts
5
- declare const userEventQueueAtom: jotai43.Atom<UserEvent[]>;
5
+ declare const userEventQueueAtom: jotai54.Atom<UserEvent[]>;
6
6
  /**
7
7
  * This atom is used to queue a new message for processing on `next_responses`
8
8
  * It receives a single `userEvent` that is added to the processing queue.
9
9
  * If the event has the same eventId as an existing message in the queue the NEW
10
10
  * event is ignored
11
11
  */
12
- declare const queueUserEventAtom: jotai43.WritableAtom<null, [userEvent: UserEvent], void> & {
12
+ declare const queueUserEventAtom: jotai54.WritableAtom<null, [userEvent: UserEvent], void> & {
13
13
  init: null;
14
14
  };
15
15
  /**
16
16
  * This atom exposes a function to reset the entire queue. All messages in the queue will be purged
17
17
  */
18
- declare const clearUserEventAtom: jotai43.WritableAtom<null, [], void> & {
18
+ declare const clearUserEventAtom: jotai54.WritableAtom<null, [], void> & {
19
19
  init: null;
20
20
  };
21
21
  /**
22
22
  * This atom is used to mark events as processed and remove them from the queue
23
23
  * It accepts a list of eventId values and will remove all events with those eventIds from the queue.
24
24
  */
25
- declare const processUserEventAtom: jotai43.WritableAtom<null, [eventIds: string[]], void> & {
25
+ declare const processUserEventAtom: jotai54.WritableAtom<null, [eventIds: string[]], void> & {
26
26
  init: null;
27
27
  };
28
- declare const userQueueEventCountAtom: jotai43.Atom<number>;
28
+ declare const userQueueEventCountAtom: jotai54.Atom<number>;
29
29
  //#endregion
30
30
  export { clearUserEventAtom, processUserEventAtom, queueUserEventAtom, userEventQueueAtom, userQueueEventCountAtom };
31
31
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZVF1ZXVlLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9jaGF0L21lc3NhZ2VRdWV1ZS5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFVzZXJFdmVudCB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgdXNlckV2ZW50UXVldWVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPFVzZXJFdmVudFtdPjtcbi8qKlxuICogVGhpcyBhdG9tIGlzIHVzZWQgdG8gcXVldWUgYSBuZXcgbWVzc2FnZSBmb3IgcHJvY2Vzc2luZyBvbiBgbmV4dF9yZXNwb25zZXNgXG4gKiBJdCByZWNlaXZlcyBhIHNpbmdsZSBgdXNlckV2ZW50YCB0aGF0IGlzIGFkZGVkIHRvIHRoZSBwcm9jZXNzaW5nIHF1ZXVlLlxuICogSWYgdGhlIGV2ZW50IGhhcyB0aGUgc2FtZSBldmVudElkIGFzIGFuIGV4aXN0aW5nIG1lc3NhZ2UgaW4gdGhlIHF1ZXVlIHRoZSBORVdcbiAqIGV2ZW50IGlzIGlnbm9yZWRcbiAqL1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgcXVldWVVc2VyRXZlbnRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5Xcml0YWJsZUF0b208bnVsbCwgW3VzZXJFdmVudDogVXNlckV2ZW50XSwgdm9pZD4gJiB7XG4gICAgaW5pdDogbnVsbDtcbn07XG4vKipcbiAqIFRoaXMgYXRvbSBleHBvc2VzIGEgZnVuY3Rpb24gdG8gcmVzZXQgdGhlIGVudGlyZSBxdWV1ZS4gQWxsIG1lc3NhZ2VzIGluIHRoZSBxdWV1ZSB3aWxsIGJlIHB1cmdlZFxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBjbGVhclVzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbXSwgdm9pZD4gJiB7XG4gICAgaW5pdDogbnVsbDtcbn07XG4vKipcbiAqIFRoaXMgYXRvbSBpcyB1c2VkIHRvIG1hcmsgZXZlbnRzIGFzIHByb2Nlc3NlZCBhbmQgcmVtb3ZlIHRoZW0gZnJvbSB0aGUgcXVldWVcbiAqIEl0IGFjY2VwdHMgYSBsaXN0IG9mIGV2ZW50SWQgdmFsdWVzIGFuZCB3aWxsIHJlbW92ZSBhbGwgZXZlbnRzIHdpdGggdGhvc2UgZXZlbnRJZHMgZnJvbSB0aGUgcXVldWUuXG4gKi9cbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHByb2Nlc3NVc2VyRXZlbnRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5Xcml0YWJsZUF0b208bnVsbCwgW2V2ZW50SWRzOiBzdHJpbmdbXV0sIHZvaWQ+ICYge1xuICAgIGluaXQ6IG51bGw7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgdXNlclF1ZXVlRXZlbnRDb3VudEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208bnVtYmVyPjtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQUUscUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBO0FBQ0YsSUFBVyxxQkFBcUI7Q0FBQztPQUFXO09BQWlCLFFBQVE7Q0FBUTtBQUM3RSxJQUFXLHFCQUFxQixDQUFDLFdBQVcsUUFBUSxhQUFhO0FBQ2pFLElBQVcsdUJBQXVCLENBQUMsV0FBVyxRQUFRLGFBQWE7QUFDbkUsSUFBVywwQkFBTyxDQUFBLFdBQUEsUUFBQSxLQUFBIn0=
@@ -1,31 +1,31 @@
1
1
  import { UserEvent } from "../../application/models/api/userEvent.js";
2
- import * as jotai102 from "jotai";
2
+ import * as jotai60 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/messageQueue.d.ts
5
- declare const userEventQueueAtom: jotai102.Atom<UserEvent[]>;
5
+ declare const userEventQueueAtom: jotai60.Atom<UserEvent[]>;
6
6
  /**
7
7
  * This atom is used to queue a new message for processing on `next_responses`
8
8
  * It receives a single `userEvent` that is added to the processing queue.
9
9
  * If the event has the same eventId as an existing message in the queue the NEW
10
10
  * event is ignored
11
11
  */
12
- declare const queueUserEventAtom: jotai102.WritableAtom<null, [userEvent: UserEvent], void> & {
12
+ declare const queueUserEventAtom: jotai60.WritableAtom<null, [userEvent: UserEvent], void> & {
13
13
  init: null;
14
14
  };
15
15
  /**
16
16
  * This atom exposes a function to reset the entire queue. All messages in the queue will be purged
17
17
  */
18
- declare const clearUserEventAtom: jotai102.WritableAtom<null, [], void> & {
18
+ declare const clearUserEventAtom: jotai60.WritableAtom<null, [], void> & {
19
19
  init: null;
20
20
  };
21
21
  /**
22
22
  * This atom is used to mark events as processed and remove them from the queue
23
23
  * It accepts a list of eventId values and will remove all events with those eventIds from the queue.
24
24
  */
25
- declare const processUserEventAtom: jotai102.WritableAtom<null, [eventIds: string[]], void> & {
25
+ declare const processUserEventAtom: jotai60.WritableAtom<null, [eventIds: string[]], void> & {
26
26
  init: null;
27
27
  };
28
- declare const userQueueEventCountAtom: jotai102.Atom<number>;
28
+ declare const userQueueEventCountAtom: jotai60.Atom<number>;
29
29
  //#endregion
30
30
  export { clearUserEventAtom, processUserEventAtom, queueUserEventAtom, userEventQueueAtom, userQueueEventCountAtom };
31
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZVF1ZXVlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvbWVzc2FnZVF1ZXVlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50IH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRRdWV1ZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208VXNlckV2ZW50W10+O1xuLyoqXG4gKiBUaGlzIGF0b20gaXMgdXNlZCB0byBxdWV1ZSBhIG5ldyBtZXNzYWdlIGZvciBwcm9jZXNzaW5nIG9uIGBuZXh0X3Jlc3BvbnNlc2BcbiAqIEl0IHJlY2VpdmVzIGEgc2luZ2xlIGB1c2VyRXZlbnRgIHRoYXQgaXMgYWRkZWQgdG8gdGhlIHByb2Nlc3NpbmcgcXVldWUuXG4gKiBJZiB0aGUgZXZlbnQgaGFzIHRoZSBzYW1lIGV2ZW50SWQgYXMgYW4gZXhpc3RpbmcgbWVzc2FnZSBpbiB0aGUgcXVldWUgdGhlIE5FV1xuICogZXZlbnQgaXMgaWdub3JlZFxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBxdWV1ZVVzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbdXNlckV2ZW50OiBVc2VyRXZlbnRdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGV4cG9zZXMgYSBmdW5jdGlvbiB0byByZXNldCB0aGUgZW50aXJlIHF1ZXVlLiBBbGwgbWVzc2FnZXMgaW4gdGhlIHF1ZXVlIHdpbGwgYmUgcHVyZ2VkXG4gKi9cbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNsZWFyVXNlckV2ZW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFtdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGlzIHVzZWQgdG8gbWFyayBldmVudHMgYXMgcHJvY2Vzc2VkIGFuZCByZW1vdmUgdGhlbSBmcm9tIHRoZSBxdWV1ZVxuICogSXQgYWNjZXB0cyBhIGxpc3Qgb2YgZXZlbnRJZCB2YWx1ZXMgYW5kIHdpbGwgcmVtb3ZlIGFsbCBldmVudHMgd2l0aCB0aG9zZSBldmVudElkcyBmcm9tIHRoZSBxdWV1ZS5cbiAqL1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgcHJvY2Vzc1VzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbZXZlbnRJZHM6IHN0cmluZ1tdXSwgdm9pZD4gJiB7XG4gICAgaW5pdDogbnVsbDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyUXVldWVFdmVudENvdW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxudW1iZXI+O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBRSxxQkFBQTtDQUFBO09BQUE7T0FBQSxTQUFBO0NBQUE7QUFDRixJQUFXLHFCQUFxQjtDQUFDO09BQVc7T0FBaUIsU0FBUztDQUFPO0FBQzdFLElBQVcscUJBQXFCLENBQUMsV0FBVyxTQUFTLGFBQWE7QUFDbEUsSUFBVyx1QkFBdUIsQ0FBQyxXQUFXLFNBQVMsYUFBYTtBQUNwRSxJQUFXLDBCQUFPLENBQUEsV0FBQSxTQUFBLEtBQUEifQ==
31
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZVF1ZXVlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvbWVzc2FnZVF1ZXVlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50IH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRRdWV1ZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208VXNlckV2ZW50W10+O1xuLyoqXG4gKiBUaGlzIGF0b20gaXMgdXNlZCB0byBxdWV1ZSBhIG5ldyBtZXNzYWdlIGZvciBwcm9jZXNzaW5nIG9uIGBuZXh0X3Jlc3BvbnNlc2BcbiAqIEl0IHJlY2VpdmVzIGEgc2luZ2xlIGB1c2VyRXZlbnRgIHRoYXQgaXMgYWRkZWQgdG8gdGhlIHByb2Nlc3NpbmcgcXVldWUuXG4gKiBJZiB0aGUgZXZlbnQgaGFzIHRoZSBzYW1lIGV2ZW50SWQgYXMgYW4gZXhpc3RpbmcgbWVzc2FnZSBpbiB0aGUgcXVldWUgdGhlIE5FV1xuICogZXZlbnQgaXMgaWdub3JlZFxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBxdWV1ZVVzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbdXNlckV2ZW50OiBVc2VyRXZlbnRdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGV4cG9zZXMgYSBmdW5jdGlvbiB0byByZXNldCB0aGUgZW50aXJlIHF1ZXVlLiBBbGwgbWVzc2FnZXMgaW4gdGhlIHF1ZXVlIHdpbGwgYmUgcHVyZ2VkXG4gKi9cbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNsZWFyVXNlckV2ZW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFtdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGlzIHVzZWQgdG8gbWFyayBldmVudHMgYXMgcHJvY2Vzc2VkIGFuZCByZW1vdmUgdGhlbSBmcm9tIHRoZSBxdWV1ZVxuICogSXQgYWNjZXB0cyBhIGxpc3Qgb2YgZXZlbnRJZCB2YWx1ZXMgYW5kIHdpbGwgcmVtb3ZlIGFsbCBldmVudHMgd2l0aCB0aG9zZSBldmVudElkcyBmcm9tIHRoZSBxdWV1ZS5cbiAqL1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgcHJvY2Vzc1VzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbZXZlbnRJZHM6IHN0cmluZ1tdXSwgdm9pZD4gJiB7XG4gICAgaW5pdDogbnVsbDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyUXVldWVFdmVudENvdW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxudW1iZXI+O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBRSxxQkFBQTtDQUFBO09BQUE7T0FBQSxRQUFBO0NBQUE7QUFDRixJQUFXLHFCQUFxQjtDQUFDO09BQVc7T0FBaUIsUUFBUTtDQUFRO0FBQzdFLElBQVcscUJBQXFCLENBQUMsV0FBVyxRQUFRLGFBQWE7QUFDakUsSUFBVyx1QkFBdUIsQ0FBQyxXQUFXLFFBQVEsYUFBYTtBQUNuRSxJQUFXLDBCQUFPLENBQUEsV0FBQSxRQUFBLEtBQUEifQ==
@@ -1,4 +1,4 @@
1
- import * as jotai35 from "jotai";
1
+ import * as jotai46 from "jotai";
2
2
  import * as jotai_utils1 from "jotai/utils";
3
3
 
4
4
  //#region src/atoms/chat/performanceMetrics.d.ts
@@ -23,8 +23,8 @@ declare enum PerfMetricsEvents {
23
23
  BottomSuggestionsBarRendered = "bottom_suggestions_bar_rendered_ms",
24
24
  SearchPromptRendered = "search_prompt_rendered_ms",
25
25
  }
26
- declare const appInitialStartTimeMsAtom: jotai35.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
- declare const pageLoadOffsetTimeAtom: jotai35.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
26
+ declare const appInitialStartTimeMsAtom: jotai46.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
+ declare const pageLoadOffsetTimeAtom: jotai46.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
28
28
  /**
29
29
  * Resets the performance metrics atom to an empty map. This should be called after the performance
30
30
  * metrics have been reported to amplitude. On SPA, it ensures that we can still capture metrics as
@@ -32,8 +32,8 @@ declare const pageLoadOffsetTimeAtom: jotai35.WritableAtom<string | undefined, [
32
32
  * On non-SPA, it ensures that previously captured metrics are not reported again.
33
33
  */
34
34
  declare const resetPerformanceMetricsAtom: () => void;
35
- declare const performanceMetricsAtom: jotai35.Atom<Map<PerfMetricsEvents, number>>;
36
- declare const hasReportedPerformanceMetricsAtom: jotai35.PrimitiveAtom<boolean> & {
35
+ declare const performanceMetricsAtom: jotai46.Atom<Map<PerfMetricsEvents, number>>;
36
+ declare const hasReportedPerformanceMetricsAtom: jotai46.PrimitiveAtom<boolean> & {
37
37
  init: boolean;
38
38
  };
39
39
  /**
@@ -42,7 +42,7 @@ declare const hasReportedPerformanceMetricsAtom: jotai35.PrimitiveAtom<boolean>
42
42
  *
43
43
  * @param value The performance metric name to log.
44
44
  */
45
- declare const logPerfMetricAtom: jotai35.WritableAtom<null, [value: PerfMetricsEvents], void> & {
45
+ declare const logPerfMetricAtom: jotai46.WritableAtom<null, [value: PerfMetricsEvents], void> & {
46
46
  init: null;
47
47
  };
48
48
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as jotai96 from "jotai";
1
+ import * as jotai52 from "jotai";
2
2
  import * as jotai_utils1 from "jotai/utils";
3
3
 
4
4
  //#region src/atoms/chat/performanceMetrics.d.ts
@@ -23,8 +23,8 @@ declare enum PerfMetricsEvents {
23
23
  BottomSuggestionsBarRendered = "bottom_suggestions_bar_rendered_ms",
24
24
  SearchPromptRendered = "search_prompt_rendered_ms",
25
25
  }
26
- declare const appInitialStartTimeMsAtom: jotai96.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
- declare const pageLoadOffsetTimeAtom: jotai96.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
26
+ declare const appInitialStartTimeMsAtom: jotai52.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
+ declare const pageLoadOffsetTimeAtom: jotai52.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
28
28
  /**
29
29
  * Resets the performance metrics atom to an empty map. This should be called after the performance
30
30
  * metrics have been reported to amplitude. On SPA, it ensures that we can still capture metrics as
@@ -32,8 +32,8 @@ declare const pageLoadOffsetTimeAtom: jotai96.WritableAtom<string | undefined, [
32
32
  * On non-SPA, it ensures that previously captured metrics are not reported again.
33
33
  */
34
34
  declare const resetPerformanceMetricsAtom: () => void;
35
- declare const performanceMetricsAtom: jotai96.Atom<Map<PerfMetricsEvents, number>>;
36
- declare const hasReportedPerformanceMetricsAtom: jotai96.PrimitiveAtom<boolean> & {
35
+ declare const performanceMetricsAtom: jotai52.Atom<Map<PerfMetricsEvents, number>>;
36
+ declare const hasReportedPerformanceMetricsAtom: jotai52.PrimitiveAtom<boolean> & {
37
37
  init: boolean;
38
38
  };
39
39
  /**
@@ -42,7 +42,7 @@ declare const hasReportedPerformanceMetricsAtom: jotai96.PrimitiveAtom<boolean>
42
42
  *
43
43
  * @param value The performance metric name to log.
44
44
  */
45
- declare const logPerfMetricAtom: jotai96.WritableAtom<null, [value: PerfMetricsEvents], void> & {
45
+ declare const logPerfMetricAtom: jotai52.WritableAtom<null, [value: PerfMetricsEvents], void> & {
46
46
  init: null;
47
47
  };
48
48
  //#endregion
@@ -1,7 +1,7 @@
1
- import * as jotai34 from "jotai";
1
+ import * as jotai59 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai34.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai59.Atom<HTMLElement[]>;
5
5
  /**
6
6
  * This function call is used to create a list of the Spiffy widgets
7
7
  * that are rendering on the page.
@@ -1,7 +1,7 @@
1
- import * as jotai95 from "jotai";
1
+ import * as jotai51 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai95.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai51.Atom<HTMLElement[]>;
5
5
  /**
6
6
  * This function call is used to create a list of the Spiffy widgets
7
7
  * that are rendering on the page.