@envive-ai/react-hooks 0.3.26 → 0.3.28

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 (54) hide show
  1. package/dist/atoms/app/index.d.cts +7 -7
  2. package/dist/atoms/app/variant.d.cts +6 -6
  3. package/dist/atoms/chat/chatState.d.ts +19 -19
  4. package/dist/atoms/chat/form.d.cts +2 -2
  5. package/dist/atoms/chat/form.d.ts +2 -2
  6. package/dist/atoms/chat/index.d.ts +2 -2
  7. package/dist/atoms/chat/lastMessage.d.cts +2 -2
  8. package/dist/atoms/chat/lastMessage.d.ts +2 -2
  9. package/dist/atoms/chat/messageQueue.d.cts +6 -6
  10. package/dist/atoms/chat/messageQueue.d.ts +6 -6
  11. package/dist/atoms/chat/performanceMetrics.d.cts +6 -6
  12. package/dist/atoms/chat/performanceMetrics.d.ts +6 -6
  13. package/dist/atoms/chat/renderedWidgetRefs.d.cts +2 -2
  14. package/dist/atoms/chat/renderedWidgetRefs.d.ts +2 -2
  15. package/dist/atoms/chat/replies.d.cts +1 -1
  16. package/dist/atoms/chat/replies.d.ts +2 -2
  17. package/dist/atoms/chat/suggestions.d.cts +2 -2
  18. package/dist/atoms/chat/suggestions.d.ts +2 -2
  19. package/dist/atoms/envive/enviveConfig.d.cts +13 -13
  20. package/dist/atoms/globalSearch/globalSearch.d.cts +6 -6
  21. package/dist/atoms/globalSearch/globalSearch.d.ts +5 -5
  22. package/dist/atoms/org/customerService.d.cts +6 -6
  23. package/dist/atoms/org/graphqlConfig.d.cts +4 -4
  24. package/dist/atoms/org/graphqlConfig.d.ts +4 -4
  25. package/dist/atoms/org/newOrgConfigAtom.d.ts +2 -2
  26. package/dist/atoms/org/orgAnalyticsConfig.d.ts +5 -5
  27. package/dist/atoms/search/chatSearch.d.cts +17 -17
  28. package/dist/atoms/search/chatSearch.d.ts +17 -17
  29. package/dist/atoms/search/searchAPI.d.cts +13 -13
  30. package/dist/atoms/search/searchAPI.d.ts +13 -13
  31. package/dist/atoms/search/types.d.cts +1 -1
  32. package/dist/atoms/search/utils.d.cts +1 -1
  33. package/dist/atoms/search/utils.d.ts +1 -1
  34. package/dist/atoms/widget/chatPreviewLoading.d.cts +2 -2
  35. package/dist/contexts/systemSettingsContext/systemSettingsContext.d.cts +2 -2
  36. package/dist/contexts/systemSettingsContext/systemSettingsContext.d.ts +2 -2
  37. package/dist/contexts/types.d.cts +1 -1
  38. package/dist/contexts/types.d.ts +1 -1
  39. package/dist/contexts/typesV3.cjs +1 -1
  40. package/dist/contexts/typesV3.d.cts +7 -1
  41. package/dist/contexts/typesV3.d.ts +7 -1
  42. package/dist/contexts/typesV3.js +1 -1
  43. package/dist/hooks/GrabAndScroll/useGrabAndScroll.d.cts +2 -2
  44. package/dist/hooks/GrabAndScroll/useGrabAndScroll.d.ts +2 -2
  45. package/dist/hooks/SystemSettingsContext/useSystemSettingsContext.d.cts +2 -2
  46. package/dist/hooks/SystemSettingsContext/useSystemSettingsContext.d.ts +2 -2
  47. package/dist/hooks/WidgetInteraction/types.cjs +4 -2
  48. package/dist/hooks/WidgetInteraction/types.d.cts +2 -1
  49. package/dist/hooks/WidgetInteraction/types.d.ts +2 -1
  50. package/dist/hooks/WidgetInteraction/types.js +4 -2
  51. package/dist/hooks/utils.d.ts +1 -1
  52. package/package.json +1 -1
  53. package/src/contexts/typesV3.ts +6 -0
  54. package/src/hooks/WidgetInteraction/types.ts +2 -0
@@ -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 jotai27 from "jotai";
5
+ import * as jotai16 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: jotai27.WritableAtom<string, [value: string], void>;
19
- declare const userIdentityAtom: jotai27.PrimitiveAtom<UserIdentityContextType | undefined> & {
18
+ declare const userIdAtom: jotai16.WritableAtom<string, [value: string], void>;
19
+ declare const userIdentityAtom: jotai16.PrimitiveAtom<UserIdentityContextType | undefined> & {
20
20
  init: UserIdentityContextType | undefined;
21
21
  };
22
- declare const appSourceAtom: jotai27.Atom<ContextSourceEnum>;
23
- declare const chatIdAtom: jotai27.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
- declare const appDetailsAtom: jotai27.Atom<AppDetails>;
22
+ declare const appSourceAtom: jotai16.Atom<ContextSourceEnum>;
23
+ declare const chatIdAtom: jotai16.WritableAtom<string, [string | typeof jotai_utils0.RESET | ((prev: string) => string | typeof jotai_utils0.RESET)], void>;
24
+ declare const appDetailsAtom: jotai16.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+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYXBwRGV0YWlsc0F0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208QXBwRGV0YWlscz47XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBS0EsSUFBVyxhQUFhO0NBQUE7T0FBQTtPQUFBO09BQUE7Q0FBQTtBQUV4QixJQUFXLGFBQU8sQ0FBQSxVQUFBLFFBQUEsYUFBQTtBQUNsQixJQUFXLG1CQUFrQjtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUM3QixJQUFXLGdCQUFZO0NBQUE7T0FBQTtPQUFBLFFBQUE7Q0FBQTtBQUN2QixJQUFXLGFBQWE7Q0FBQztPQUFHLGFBQUE7T0FBQSxhQUFBO09BQUEsUUFBQTtDQUFBO0FBQzVCLElBQUEsaUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
@@ -2,7 +2,7 @@ import { UserEvent as UserEvent$1 } from "../../application/models/api/userEvent
2
2
  import { VariantInfo } from "../../application/models/variantInfo/variantInfo.cjs";
3
3
  import { PageVariantInfo } from "../../contexts/pageContext/types.cjs";
4
4
  import { PageVisitCategory, SupportedEventResponse, UserEvent } from "@spiffy-ai/commerce-api-client";
5
- import * as jotai90 from "jotai";
5
+ import * as jotai94 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: jotai90.WritableAtom<SupportedEvent | undefined, [value: SupportedEvent | undefined], void>;
77
- declare const hasParsedVariantInfoAtom: jotai90.PrimitiveAtom<boolean> & {
76
+ declare const supportedEventAtom: jotai94.WritableAtom<SupportedEvent | undefined, [value: SupportedEvent | undefined], void>;
77
+ declare const hasParsedVariantInfoAtom: jotai94.PrimitiveAtom<boolean> & {
78
78
  init: boolean;
79
79
  };
80
- declare const variantInfoAtom: jotai90.WritableAtom<VariantInfo, [newVariant: VariantInfo], void>;
81
- declare const pageUserEventAtom: jotai90.PrimitiveAtom<UserEvent$1 | undefined> & {
80
+ declare const variantInfoAtom: jotai94.WritableAtom<VariantInfo, [newVariant: VariantInfo], void>;
81
+ declare const pageUserEventAtom: jotai94.PrimitiveAtom<UserEvent$1 | undefined> & {
82
82
  init: UserEvent$1 | undefined;
83
83
  };
84
- declare const pageVariantInfoAtom: jotai90.PrimitiveAtom<PageVariantInfo | undefined> & {
84
+ declare const pageVariantInfoAtom: jotai94.PrimitiveAtom<PageVariantInfo | undefined> & {
85
85
  init: PageVariantInfo | undefined;
86
86
  };
87
87
  //#endregion
@@ -4,61 +4,61 @@ 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 jotai15 from "jotai";
7
+ import * as jotai17 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: jotai15.PrimitiveAtom<boolean> & {
11
+ declare const userHasRepliedAtom: jotai17.PrimitiveAtom<boolean> & {
12
12
  init: boolean;
13
13
  };
14
- declare const replyEventCategoryAtom: jotai15.PrimitiveAtom<UserEventCategory> & {
14
+ declare const replyEventCategoryAtom: jotai17.PrimitiveAtom<UserEventCategory> & {
15
15
  init: UserEventCategory;
16
16
  };
17
- declare const userQueryAtom: jotai15.PrimitiveAtom<string | undefined> & {
17
+ declare const userQueryAtom: jotai17.PrimitiveAtom<string | undefined> & {
18
18
  init: string | undefined;
19
19
  };
20
- declare const suggestionAtom: jotai15.PrimitiveAtom<Suggestion | undefined> & {
20
+ declare const suggestionAtom: jotai17.PrimitiveAtom<Suggestion | undefined> & {
21
21
  init: Suggestion | undefined;
22
22
  };
23
- declare const askQuestionBtnClickedAtom: jotai15.PrimitiveAtom<boolean> & {
23
+ declare const askQuestionBtnClickedAtom: jotai17.PrimitiveAtom<boolean> & {
24
24
  init: boolean;
25
25
  };
26
- declare const messagesAtom: jotai15.PrimitiveAtom<Message[][]> & {
26
+ declare const messagesAtom: jotai17.PrimitiveAtom<Message[][]> & {
27
27
  init: Message[][];
28
28
  };
29
- declare const userEventsAtom: jotai15.PrimitiveAtom<UserEvent[]> & {
29
+ declare const userEventsAtom: jotai17.PrimitiveAtom<UserEvent[]> & {
30
30
  init: UserEvent[];
31
31
  };
32
- declare const suggestionsAtom: jotai15.PrimitiveAtom<Suggestion[]> & {
32
+ declare const suggestionsAtom: jotai17.PrimitiveAtom<Suggestion[]> & {
33
33
  init: Suggestion[];
34
34
  };
35
- declare const suggestionsLoadingAtom: jotai15.PrimitiveAtom<boolean> & {
35
+ declare const suggestionsLoadingAtom: jotai17.PrimitiveAtom<boolean> & {
36
36
  init: boolean;
37
37
  };
38
- declare const responseStreamingAtom: jotai15.PrimitiveAtom<boolean> & {
38
+ declare const responseStreamingAtom: jotai17.PrimitiveAtom<boolean> & {
39
39
  init: boolean;
40
40
  };
41
- declare const pendingResponseAtom: jotai15.PrimitiveAtom<boolean> & {
41
+ declare const pendingResponseAtom: jotai17.PrimitiveAtom<boolean> & {
42
42
  init: boolean;
43
43
  };
44
- declare const initializedAtom: jotai15.PrimitiveAtom<boolean> & {
44
+ declare const initializedAtom: jotai17.PrimitiveAtom<boolean> & {
45
45
  init: boolean;
46
46
  };
47
- declare const chatIsOpenAtom: jotai15.PrimitiveAtom<boolean> & {
47
+ declare const chatIsOpenAtom: jotai17.PrimitiveAtom<boolean> & {
48
48
  init: boolean;
49
49
  };
50
- declare const requestFailureAtom: jotai15.PrimitiveAtom<boolean> & {
50
+ declare const requestFailureAtom: jotai17.PrimitiveAtom<boolean> & {
51
51
  init: boolean;
52
52
  };
53
- declare const formSubmitAtom: jotai15.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
53
+ declare const formSubmitAtom: jotai17.PrimitiveAtom<FormSubmittedAttributes | undefined> & {
54
54
  init: FormSubmittedAttributes | undefined;
55
55
  };
56
- declare const listeningToSpeechAtom: jotai15.PrimitiveAtom<"start" | "stop" | "abort" | undefined> & {
56
+ declare const listeningToSpeechAtom: jotai17.PrimitiveAtom<"start" | "stop" | "abort" | undefined> & {
57
57
  init: "start" | "stop" | "abort" | undefined;
58
58
  };
59
- declare const chatOnToggleAtom: jotai15.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
59
+ declare const chatOnToggleAtom: jotai17.WritableAtom<null, [triggerLocation?: ChatElementDisplayLocation | ChatElementDisplayLocationV3 | undefined, track?: ((eventName: SpiffyMetricsEventName, eventProps?: Record<string, unknown>) => void) | undefined], void> & {
60
60
  init: null;
61
61
  };
62
62
  //#endregion
63
63
  export { askQuestionBtnClickedAtom, chatIsOpenAtom, chatOnToggleAtom, formSubmitAtom, initializedAtom, listeningToSpeechAtom, messagesAtom, pendingResponseAtom, replyEventCategoryAtom, requestFailureAtom, responseStreamingAtom, suggestionAtom, suggestionsAtom, suggestionsLoadingAtom, userEventsAtom, userHasRepliedAtom, userQueryAtom };
64
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhdFN0YXRlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvY2hhdFN0YXRlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50Q2F0ZWdvcnkgfSBmcm9tICdAc3BpZmZ5LWFpL2NvbW1lcmNlLWFwaS1jbGllbnQvZGlzdC9tb2RlbHMvVXNlckV2ZW50Q2F0ZWdvcnknO1xuaW1wb3J0IHsgU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSB9IGZyb20gJ3NyYy9zZXJ2aWNlcy9hbXBsaXR1ZGVTZXJ2aWNlL2FtcGxpdHVkZVNlcnZpY2UnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMywgRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMsIE1lc3NhZ2UsIFN1Z2dlc3Rpb24sIFVzZXJFdmVudCB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb24gfSBmcm9tICdzcmMvYXBwbGljYXRpb24vbW9kZWxzL2NoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uJztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJIYXNSZXBsaWVkQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlcGx5RXZlbnRDYXRlZ29yeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlckV2ZW50Q2F0ZWdvcnk+ICYge1xuICAgIGluaXQ6IFVzZXJFdmVudENhdGVnb3J5O1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJRdWVyeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208c3RyaW5nIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208U3VnZ2VzdGlvbiB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhc2tRdWVzdGlvbkJ0bkNsaWNrZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbWVzc2FnZXNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPE1lc3NhZ2VbXVtdPiAmIHtcbiAgICBpbml0OiBNZXNzYWdlW11bXTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRzQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxVc2VyRXZlbnRbXT4gJiB7XG4gICAgaW5pdDogVXNlckV2ZW50W107XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbnNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFN1Z2dlc3Rpb25bXT4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbltdO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHN1Z2dlc3Rpb25zTG9hZGluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXNwb25zZVN0cmVhbWluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBwZW5kaW5nUmVzcG9uc2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaW5pdGlhbGl6ZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElzT3BlbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXF1ZXN0RmFpbHVyZUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBmb3JtU3VibWl0QXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbGlzdGVuaW5nVG9TcGVlY2hBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFwic3RhcnRcIiB8IFwic3RvcFwiIHwgXCJhYm9ydFwiIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBcInN0YXJ0XCIgfCBcInN0b3BcIiB8IFwiYWJvcnRcIiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBjaGF0T25Ub2dnbGVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5Xcml0YWJsZUF0b208bnVsbCwgW3RyaWdnZXJMb2NhdGlvbj86IENoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uIHwgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMyB8IHVuZGVmaW5lZCwgdHJhY2s/OiAoKGV2ZW50TmFtZTogU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSwgZXZlbnRQcm9wcz86IFJlY29yZDxzdHJpbmcsIHVua25vd24+KSA9PiB2b2lkKSB8IHVuZGVmaW5lZF0sIHZvaWQ+ICYge1xuICAgIGluaXQ6IG51bGw7XG59O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBS0EsSUFBVyxxQkFBTSxDQUFBLFVBQUEsUUFBQSxjQUFBO0FBQ2pCLElBQUMseUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDRCxJQUFXLGdCQUFnQixDQUFDLFVBQVUsUUFBUSxjQUFjO0FBQzVELElBQVcsaUJBQWdCO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQzNCLElBQUMsNEJBQUEsQ0FBQSxVQUFBLFFBQUEsY0FBQTtBQUNELElBQVcsZUFBZTtDQUFDO09BQVU7T0FBZSxRQUFRO09BQXFCO0NBQU87QUFDeEYsSUFBVyxpQkFBaUI7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDNUIsSUFBQyxrQkFBQTtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUNELElBQVcseUJBQXlCLENBQUMsVUFBVSxRQUFRLGNBQWM7QUFDckUsSUFBVyx3QkFBcUIsQ0FBQSxVQUFBLFFBQUEsY0FBQTtBQUNoQyxJQUFDLHNCQUFBLENBQUEsVUFBQSxRQUFBLGNBQUE7QUFDRCxJQUFXLGtCQUFrQixDQUFDLFVBQVUsUUFBUSxjQUFjO0FBQzlELElBQVcsaUJBQU0sQ0FBQSxVQUFBLFFBQUEsY0FBQTtBQUNqQixJQUFDLHFCQUFBLENBQUEsVUFBQSxRQUFBLGNBQUE7QUFDRCxJQUFXLGlCQUFpQjtDQUFDO09BQVU7T0FBK0IsUUFBUTtPQUFFO0NBQUE7QUFDaEYsSUFBVyx3QkFBVSxDQUFBLFVBQUEsUUFBQSxjQUFBO0FBQ3JCLElBQUMsbUJBQUE7Q0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
64
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhdFN0YXRlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvY2hhdFN0YXRlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50Q2F0ZWdvcnkgfSBmcm9tICdAc3BpZmZ5LWFpL2NvbW1lcmNlLWFwaS1jbGllbnQvZGlzdC9tb2RlbHMvVXNlckV2ZW50Q2F0ZWdvcnknO1xuaW1wb3J0IHsgU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSB9IGZyb20gJ3NyYy9zZXJ2aWNlcy9hbXBsaXR1ZGVTZXJ2aWNlL2FtcGxpdHVkZVNlcnZpY2UnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMywgRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMsIE1lc3NhZ2UsIFN1Z2dlc3Rpb24sIFVzZXJFdmVudCB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xuaW1wb3J0IHsgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb24gfSBmcm9tICdzcmMvYXBwbGljYXRpb24vbW9kZWxzL2NoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uJztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJIYXNSZXBsaWVkQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlcGx5RXZlbnRDYXRlZ29yeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208VXNlckV2ZW50Q2F0ZWdvcnk+ICYge1xuICAgIGluaXQ6IFVzZXJFdmVudENhdGVnb3J5O1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHVzZXJRdWVyeUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208c3RyaW5nIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBzdHJpbmcgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208U3VnZ2VzdGlvbiB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhc2tRdWVzdGlvbkJ0bkNsaWNrZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbWVzc2FnZXNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPE1lc3NhZ2VbXVtdPiAmIHtcbiAgICBpbml0OiBNZXNzYWdlW11bXTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRzQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxVc2VyRXZlbnRbXT4gJiB7XG4gICAgaW5pdDogVXNlckV2ZW50W107XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgc3VnZ2VzdGlvbnNBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFN1Z2dlc3Rpb25bXT4gJiB7XG4gICAgaW5pdDogU3VnZ2VzdGlvbltdO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHN1Z2dlc3Rpb25zTG9hZGluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXNwb25zZVN0cmVhbWluZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBwZW5kaW5nUmVzcG9uc2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaW5pdGlhbGl6ZWRBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY2hhdElzT3BlbkF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCByZXF1ZXN0RmFpbHVyZUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Ym9vbGVhbj4gJiB7XG4gICAgaW5pdDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBmb3JtU3VibWl0QXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxGb3JtU3VibWl0dGVkQXR0cmlidXRlcyB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogRm9ybVN1Ym1pdHRlZEF0dHJpYnV0ZXMgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgbGlzdGVuaW5nVG9TcGVlY2hBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPFwic3RhcnRcIiB8IFwic3RvcFwiIHwgXCJhYm9ydFwiIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBcInN0YXJ0XCIgfCBcInN0b3BcIiB8IFwiYWJvcnRcIiB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBjaGF0T25Ub2dnbGVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5Xcml0YWJsZUF0b208bnVsbCwgW3RyaWdnZXJMb2NhdGlvbj86IENoYXRFbGVtZW50RGlzcGxheUxvY2F0aW9uIHwgQ2hhdEVsZW1lbnREaXNwbGF5TG9jYXRpb25WMyB8IHVuZGVmaW5lZCwgdHJhY2s/OiAoKGV2ZW50TmFtZTogU3BpZmZ5TWV0cmljc0V2ZW50TmFtZSwgZXZlbnRQcm9wcz86IFJlY29yZDxzdHJpbmcsIHVua25vd24+KSA9PiB2b2lkKSB8IHVuZGVmaW5lZF0sIHZvaWQ+ICYge1xuICAgIGluaXQ6IG51bGw7XG59O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBS0EsSUFBVyxxQkFBTSxDQUFBLFdBQUEsUUFBQSxjQUFBO0FBQ2pCLElBQUMseUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDRCxJQUFXLGdCQUFnQixDQUFDLFdBQVcsUUFBUSxjQUFjO0FBQzdELElBQVcsaUJBQWdCO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQzNCLElBQUMsNEJBQUEsQ0FBQSxXQUFBLFFBQUEsY0FBQTtBQUNELElBQVcsZUFBZTtDQUFDO09BQVc7T0FBZSxRQUFRO09BQXFCO0NBQU07QUFDeEYsSUFBVyxpQkFBaUI7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDNUIsSUFBQyxrQkFBQTtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUNELElBQVcseUJBQXlCLENBQUMsV0FBVyxRQUFRLGNBQWM7QUFDdEUsSUFBVyx3QkFBcUIsQ0FBQSxXQUFBLFFBQUEsY0FBQTtBQUNoQyxJQUFDLHNCQUFBLENBQUEsV0FBQSxRQUFBLGNBQUE7QUFDRCxJQUFXLGtCQUFrQixDQUFDLFdBQVcsUUFBUSxjQUFjO0FBQy9ELElBQVcsaUJBQU0sQ0FBQSxXQUFBLFFBQUEsY0FBQTtBQUNqQixJQUFDLHFCQUFBLENBQUEsV0FBQSxRQUFBLGNBQUE7QUFDRCxJQUFXLGlCQUFpQjtDQUFDO09BQVc7T0FBK0IsUUFBUTtPQUFDO0NBQUE7QUFDaEYsSUFBVyx3QkFBVSxDQUFBLFdBQUEsUUFBQSxjQUFBO0FBQ3JCLElBQUMsbUJBQUE7Q0FBQTtPQUFBO09BQUE7T0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
@@ -1,8 +1,8 @@
1
1
  import { FormSubmittedAttributes } from "../../application/models/api/userEvent.cjs";
2
- import * as jotai46 from "jotai";
2
+ import * as jotai63 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/form.d.ts
5
- declare const handleFormSubmittedAtom: jotai46.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
5
+ declare const handleFormSubmittedAtom: jotai63.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { FormSubmittedAttributes } from "../../application/models/api/userEvent.js";
2
- import * as jotai76 from "jotai";
2
+ import * as jotai85 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/form.d.ts
5
- declare const handleFormSubmittedAtom: jotai76.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
5
+ declare const handleFormSubmittedAtom: jotai85.WritableAtom<null, [form: FormSubmittedAttributes], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
@@ -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 jotai32 from "jotai";
12
+ import * as jotai15 from "jotai";
13
13
 
14
14
  //#region src/atoms/chat/index.d.ts
15
- declare const chatAtom: jotai32.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;
@@ -1,8 +1,8 @@
1
1
  import { Message } from "../../application/models/message.cjs";
2
- import * as jotai39 from "jotai";
2
+ import * as jotai75 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/lastMessage.d.ts
5
- declare const lastAssistantMessageAtom: jotai39.Atom<Message[] | null>;
5
+ declare const lastAssistantMessageAtom: jotai75.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 jotai83 from "jotai";
2
+ import * as jotai88 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/lastMessage.d.ts
5
- declare const lastAssistantMessageAtom: jotai83.Atom<Message[] | null>;
5
+ declare const lastAssistantMessageAtom: jotai88.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 jotai40 from "jotai";
2
+ import * as jotai70 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/messageQueue.d.ts
5
- declare const userEventQueueAtom: jotai40.Atom<UserEvent[]>;
5
+ declare const userEventQueueAtom: jotai70.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: jotai40.WritableAtom<null, [userEvent: UserEvent], void> & {
12
+ declare const queueUserEventAtom: jotai70.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: jotai40.WritableAtom<null, [], void> & {
18
+ declare const clearUserEventAtom: jotai70.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: jotai40.WritableAtom<null, [eventIds: string[]], void> & {
25
+ declare const processUserEventAtom: jotai70.WritableAtom<null, [eventIds: string[]], void> & {
26
26
  init: null;
27
27
  };
28
- declare const userQueueEventCountAtom: jotai40.Atom<number>;
28
+ declare const userQueueEventCountAtom: jotai70.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 jotai84 from "jotai";
2
+ import * as jotai89 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/messageQueue.d.ts
5
- declare const userEventQueueAtom: jotai84.Atom<UserEvent[]>;
5
+ declare const userEventQueueAtom: jotai89.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: jotai84.WritableAtom<null, [userEvent: UserEvent], void> & {
12
+ declare const queueUserEventAtom: jotai89.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: jotai84.WritableAtom<null, [], void> & {
18
+ declare const clearUserEventAtom: jotai89.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: jotai84.WritableAtom<null, [eventIds: string[]], void> & {
25
+ declare const processUserEventAtom: jotai89.WritableAtom<null, [eventIds: string[]], void> & {
26
26
  init: null;
27
27
  };
28
- declare const userQueueEventCountAtom: jotai84.Atom<number>;
28
+ declare const userQueueEventCountAtom: jotai89.Atom<number>;
29
29
  //#endregion
30
30
  export { clearUserEventAtom, processUserEventAtom, queueUserEventAtom, userEventQueueAtom, userQueueEventCountAtom };
31
31
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVzc2FnZVF1ZXVlLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvbWVzc2FnZVF1ZXVlLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVXNlckV2ZW50IH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyRXZlbnRRdWV1ZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208VXNlckV2ZW50W10+O1xuLyoqXG4gKiBUaGlzIGF0b20gaXMgdXNlZCB0byBxdWV1ZSBhIG5ldyBtZXNzYWdlIGZvciBwcm9jZXNzaW5nIG9uIGBuZXh0X3Jlc3BvbnNlc2BcbiAqIEl0IHJlY2VpdmVzIGEgc2luZ2xlIGB1c2VyRXZlbnRgIHRoYXQgaXMgYWRkZWQgdG8gdGhlIHByb2Nlc3NpbmcgcXVldWUuXG4gKiBJZiB0aGUgZXZlbnQgaGFzIHRoZSBzYW1lIGV2ZW50SWQgYXMgYW4gZXhpc3RpbmcgbWVzc2FnZSBpbiB0aGUgcXVldWUgdGhlIE5FV1xuICogZXZlbnQgaXMgaWdub3JlZFxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBxdWV1ZVVzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbdXNlckV2ZW50OiBVc2VyRXZlbnRdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGV4cG9zZXMgYSBmdW5jdGlvbiB0byByZXNldCB0aGUgZW50aXJlIHF1ZXVlLiBBbGwgbWVzc2FnZXMgaW4gdGhlIHF1ZXVlIHdpbGwgYmUgcHVyZ2VkXG4gKi9cbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNsZWFyVXNlckV2ZW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFtdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbi8qKlxuICogVGhpcyBhdG9tIGlzIHVzZWQgdG8gbWFyayBldmVudHMgYXMgcHJvY2Vzc2VkIGFuZCByZW1vdmUgdGhlbSBmcm9tIHRoZSBxdWV1ZVxuICogSXQgYWNjZXB0cyBhIGxpc3Qgb2YgZXZlbnRJZCB2YWx1ZXMgYW5kIHdpbGwgcmVtb3ZlIGFsbCBldmVudHMgd2l0aCB0aG9zZSBldmVudElkcyBmcm9tIHRoZSBxdWV1ZS5cbiAqL1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgcHJvY2Vzc1VzZXJFdmVudEF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbZXZlbnRJZHM6IHN0cmluZ1tdXSwgdm9pZD4gJiB7XG4gICAgaW5pdDogbnVsbDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCB1c2VyUXVldWVFdmVudENvdW50QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxudW1iZXI+O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBRSxxQkFBQTtDQUFBO09BQUE7T0FBQSxRQUFBO0NBQUE7QUFDRixJQUFXLHFCQUFxQjtDQUFDO09BQVc7T0FBaUIsUUFBUTtDQUFRO0FBQzdFLElBQVcscUJBQXFCLENBQUMsV0FBVyxRQUFRLGFBQWE7QUFDakUsSUFBVyx1QkFBdUIsQ0FBQyxXQUFXLFFBQVEsYUFBYTtBQUNuRSxJQUFXLDBCQUFPLENBQUEsV0FBQSxRQUFBLEtBQUEifQ==
@@ -1,4 +1,4 @@
1
- import * as jotai34 from "jotai";
1
+ import * as jotai64 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: jotai34.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
- declare const pageLoadOffsetTimeAtom: jotai34.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
26
+ declare const appInitialStartTimeMsAtom: jotai64.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
+ declare const pageLoadOffsetTimeAtom: jotai64.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: jotai34.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: jotai34.Atom<Map<PerfMetricsEvents, number>>;
36
- declare const hasReportedPerformanceMetricsAtom: jotai34.PrimitiveAtom<boolean> & {
35
+ declare const performanceMetricsAtom: jotai64.Atom<Map<PerfMetricsEvents, number>>;
36
+ declare const hasReportedPerformanceMetricsAtom: jotai64.PrimitiveAtom<boolean> & {
37
37
  init: boolean;
38
38
  };
39
39
  /**
@@ -42,7 +42,7 @@ declare const hasReportedPerformanceMetricsAtom: jotai34.PrimitiveAtom<boolean>
42
42
  *
43
43
  * @param value The performance metric name to log.
44
44
  */
45
- declare const logPerfMetricAtom: jotai34.WritableAtom<null, [value: PerfMetricsEvents], void> & {
45
+ declare const logPerfMetricAtom: jotai64.WritableAtom<null, [value: PerfMetricsEvents], void> & {
46
46
  init: null;
47
47
  };
48
48
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as jotai77 from "jotai";
1
+ import * as jotai80 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: jotai77.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
- declare const pageLoadOffsetTimeAtom: jotai77.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
26
+ declare const appInitialStartTimeMsAtom: jotai80.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
+ declare const pageLoadOffsetTimeAtom: jotai80.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: jotai77.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: jotai77.Atom<Map<PerfMetricsEvents, number>>;
36
- declare const hasReportedPerformanceMetricsAtom: jotai77.PrimitiveAtom<boolean> & {
35
+ declare const performanceMetricsAtom: jotai80.Atom<Map<PerfMetricsEvents, number>>;
36
+ declare const hasReportedPerformanceMetricsAtom: jotai80.PrimitiveAtom<boolean> & {
37
37
  init: boolean;
38
38
  };
39
39
  /**
@@ -42,7 +42,7 @@ declare const hasReportedPerformanceMetricsAtom: jotai77.PrimitiveAtom<boolean>
42
42
  *
43
43
  * @param value The performance metric name to log.
44
44
  */
45
- declare const logPerfMetricAtom: jotai77.WritableAtom<null, [value: PerfMetricsEvents], void> & {
45
+ declare const logPerfMetricAtom: jotai80.WritableAtom<null, [value: PerfMetricsEvents], void> & {
46
46
  init: null;
47
47
  };
48
48
  //#endregion
@@ -1,7 +1,7 @@
1
- import * as jotai47 from "jotai";
1
+ import * as jotai76 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai47.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai76.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 jotai89 from "jotai";
1
+ import * as jotai87 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai89.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai87.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.
@@ -11,4 +11,4 @@ declare const handleReplyAtom: jotai32.WritableAtom<null, [HandleReplyParams], v
11
11
  };
12
12
  //#endregion
13
13
  export { handleReplyAtom };
14
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLmN0cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9yZXBsaWVzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZSB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xudHlwZSBIYW5kbGVSZXBseVBhcmFtcyA9IHtcbiAgICBtZXNzYWdlOiBNZXNzYWdlO1xuICAgIHVzZXJUeXBlZDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBoYW5kbGVSZXBseUF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbSGFuZGxlUmVwbHlQYXJhbXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbmV4cG9ydCB7fTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQUksb0JBQWdCLENBQUEsV0FBQSxRQUFBO0FBQ3BCLElBQVcsa0JBQVc7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
14
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLmN0cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9yZXBsaWVzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZSB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xudHlwZSBIYW5kbGVSZXBseVBhcmFtcyA9IHtcbiAgICBtZXNzYWdlOiBNZXNzYWdlO1xuICAgIHVzZXJUeXBlZDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBoYW5kbGVSZXBseUF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbSGFuZGxlUmVwbHlQYXJhbXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbmV4cG9ydCB7fTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQUksb0JBQWdCLENBQUEsVUFBQSxRQUFBO0FBQ3BCLElBQVcsa0JBQVc7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
@@ -1,12 +1,12 @@
1
1
  import { Message } from "../../application/models/message.js";
2
- import * as jotai33 from "jotai";
2
+ import * as jotai16 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/replies.d.ts
5
5
  type HandleReplyParams = {
6
6
  message: Message;
7
7
  userTyped: boolean;
8
8
  };
9
- declare const handleReplyAtom: jotai33.WritableAtom<null, [HandleReplyParams], void> & {
9
+ declare const handleReplyAtom: jotai16.WritableAtom<null, [HandleReplyParams], void> & {
10
10
  init: null;
11
11
  };
12
12
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { Suggestion } from "../../application/models/api/suggestion.cjs";
2
- import * as jotai45 from "jotai";
2
+ import * as jotai69 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/suggestions.d.ts
5
- declare const handleSuggestionAtom: jotai45.WritableAtom<null, [suggestion: Suggestion], void> & {
5
+ declare const handleSuggestionAtom: jotai69.WritableAtom<null, [suggestion: Suggestion], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { Suggestion } from "../../application/models/api/suggestion.js";
2
- import * as jotai82 from "jotai";
2
+ import * as jotai86 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/suggestions.d.ts
5
- declare const handleSuggestionAtom: jotai82.WritableAtom<null, [suggestion: Suggestion], void> & {
5
+ declare const handleSuggestionAtom: jotai86.WritableAtom<null, [suggestion: Suggestion], void> & {
6
6
  init: null;
7
7
  };
8
8
  //#endregion
@@ -1,19 +1,19 @@
1
1
  import { EnviveConfig } from "../../contexts/types.cjs";
2
2
  import { ContextSourceEnum } from "@spiffy-ai/commerce-api-client";
3
- import * as jotai16 from "jotai";
3
+ import * as jotai21 from "jotai";
4
4
 
5
5
  //#region src/atoms/envive/enviveConfig.d.ts
6
- declare const enviveConfigAtom: jotai16.WritableAtom<EnviveConfig | undefined, [value: EnviveConfig], void>;
7
- declare const amplitudeApiKeyAtom: jotai16.Atom<string | undefined>;
8
- declare const dataResidencyAtom: jotai16.Atom<string | undefined>;
9
- declare const envAtom: jotai16.Atom<string | undefined>;
10
- declare const baseUrlAtom: jotai16.Atom<string>;
11
- declare const reactAppNameAtom: jotai16.Atom<string | undefined>;
12
- declare const cdnUrlAtom: jotai16.Atom<string | undefined>;
13
- declare const orgIdAtom: jotai16.Atom<string | undefined>;
14
- declare const contextSourceAtom: jotai16.Atom<ContextSourceEnum>;
15
- declare const orgLevelApiKeyAtom: jotai16.Atom<string | undefined>;
16
- declare const orgShortNameAtom: jotai16.Atom<string | undefined>;
6
+ declare const enviveConfigAtom: jotai21.WritableAtom<EnviveConfig | undefined, [value: EnviveConfig], void>;
7
+ declare const amplitudeApiKeyAtom: jotai21.Atom<string | undefined>;
8
+ declare const dataResidencyAtom: jotai21.Atom<string | undefined>;
9
+ declare const envAtom: jotai21.Atom<string | undefined>;
10
+ declare const baseUrlAtom: jotai21.Atom<string>;
11
+ declare const reactAppNameAtom: jotai21.Atom<string | undefined>;
12
+ declare const cdnUrlAtom: jotai21.Atom<string | undefined>;
13
+ declare const orgIdAtom: jotai21.Atom<string | undefined>;
14
+ declare const contextSourceAtom: jotai21.Atom<ContextSourceEnum>;
15
+ declare const orgLevelApiKeyAtom: jotai21.Atom<string | undefined>;
16
+ declare const orgShortNameAtom: jotai21.Atom<string | undefined>;
17
17
  //#endregion
18
18
  export { amplitudeApiKeyAtom, baseUrlAtom, cdnUrlAtom, contextSourceAtom, dataResidencyAtom, envAtom, enviveConfigAtom, orgIdAtom, orgLevelApiKeyAtom, orgShortNameAtom, reactAppNameAtom };
19
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52aXZlQ29uZmlnLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9lbnZpdmUvZW52aXZlQ29uZmlnLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRW52aXZlQ29uZmlnIH0gZnJvbSAnc3JjL2NvbnRleHRzL3R5cGVzJztcbmltcG9ydCB7IENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGVudml2ZUNvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxFbnZpdmVDb25maWcgfCB1bmRlZmluZWQsIFt2YWx1ZTogRW52aXZlQ29uZmlnXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhbXBsaXR1ZGVBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBkYXRhUmVzaWRlbmN5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgZW52QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYmFzZVVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlYWN0QXBwTmFtZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNkblVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0lkQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY29udGV4dFNvdXJjZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208Q29udGV4dFNvdXJjZUVudW0+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnTGV2ZWxBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBvcmdTaG9ydE5hbWVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG4iXSwibWFwcGluZ3MiOiI7Ozs7O0FBR0EsSUFBVyxtQkFBbUI7Q0FBQztPQUFXO09BQW9CO09BQW9CLFFBQUE7Q0FBQTtBQUNsRixJQUFXLHNCQUFzQixDQUFDLFdBQVcsUUFBUSxLQUFLO0FBQzFELElBQVcsb0JBQW9CLENBQUMsV0FBVyxRQUFRLEtBQUs7QUFDeEQsSUFBVyxVQUFVLENBQUMsV0FBVyxRQUFRLEtBQUs7QUFDOUMsSUFBVyxjQUFjLENBQUMsV0FBVyxRQUFRLEtBQUs7QUFDbEQsSUFBVyxtQkFBbUIsQ0FBQyxXQUFXLFFBQVEsS0FBSztBQUN2RCxJQUFXLGFBQWEsQ0FBQyxXQUFXLFFBQVEsS0FBSztBQUNqRCxJQUFXLFlBQVksQ0FBQyxXQUFXLFFBQVEsS0FBSztBQUNoRCxJQUFXLG9CQUFvQjtDQUFDO09BQVc7T0FBeUIsUUFBUTtDQUFLO0FBQ2pGLElBQVcscUJBQXFCLENBQUMsV0FBVyxRQUFRLEtBQUsifQ==
19
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52aXZlQ29uZmlnLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9lbnZpdmUvZW52aXZlQ29uZmlnLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRW52aXZlQ29uZmlnIH0gZnJvbSAnc3JjL2NvbnRleHRzL3R5cGVzJztcbmltcG9ydCB7IENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGVudml2ZUNvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxFbnZpdmVDb25maWcgfCB1bmRlZmluZWQsIFt2YWx1ZTogRW52aXZlQ29uZmlnXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhbXBsaXR1ZGVBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBkYXRhUmVzaWRlbmN5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgZW52QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYmFzZVVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlYWN0QXBwTmFtZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNkblVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0lkQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgY29udGV4dFNvdXJjZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208Q29udGV4dFNvdXJjZUVudW0+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnTGV2ZWxBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBvcmdTaG9ydE5hbWVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG4iXSwibWFwcGluZ3MiOiI7Ozs7O0FBR0EsSUFBVyxtQkFBbUI7Q0FBQztPQUFVO09BQW9CO09BQW9CLFFBQUM7Q0FBQTtBQUNsRixJQUFXLHNCQUFzQixDQUFDLFVBQVUsUUFBUSxLQUFLO0FBQ3pELElBQVcsb0JBQW9CLENBQUMsVUFBVSxRQUFRLEtBQUs7QUFDdkQsSUFBVyxVQUFVLENBQUMsVUFBVSxRQUFRLEtBQUs7QUFDN0MsSUFBVyxjQUFjLENBQUMsVUFBVSxRQUFRLEtBQUs7QUFDakQsSUFBVyxtQkFBbUIsQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUN0RCxJQUFXLGFBQWEsQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUNoRCxJQUFXLFlBQVksQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUMvQyxJQUFXLG9CQUFvQjtDQUFDO09BQVU7T0FBeUIsUUFBUTtDQUFLO0FBQ2hGLElBQVcscUJBQXFCLENBQUMsVUFBVSxRQUFRLEtBQUsifQ==
@@ -1,7 +1,7 @@
1
- import * as jotai106 from "jotai";
1
+ import * as jotai90 from "jotai";
2
2
 
3
3
  //#region src/atoms/globalSearch/globalSearch.d.ts
4
- declare const autocompleteStateAtom: jotai106.PrimitiveAtom<{
4
+ declare const autocompleteStateAtom: jotai90.PrimitiveAtom<{
5
5
  results: string[];
6
6
  isLoading: boolean;
7
7
  }> & {
@@ -10,15 +10,15 @@ declare const autocompleteStateAtom: jotai106.PrimitiveAtom<{
10
10
  isLoading: boolean;
11
11
  };
12
12
  };
13
- declare const isFilterOpenAtom: jotai106.PrimitiveAtom<boolean> & {
13
+ declare const isFilterOpenAtom: jotai90.PrimitiveAtom<boolean> & {
14
14
  init: boolean;
15
15
  };
16
- declare const isGlobalSearchOpenAtom: jotai106.PrimitiveAtom<boolean> & {
16
+ declare const isGlobalSearchOpenAtom: jotai90.PrimitiveAtom<boolean> & {
17
17
  init: boolean;
18
18
  };
19
- declare const isSearchResultsOpenAtom: jotai106.PrimitiveAtom<boolean> & {
19
+ declare const isSearchResultsOpenAtom: jotai90.PrimitiveAtom<boolean> & {
20
20
  init: boolean;
21
21
  };
22
22
  //#endregion
23
23
  export { autocompleteStateAtom, isFilterOpenAtom, isGlobalSearchOpenAtom, isSearchResultsOpenAtom };
24
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2xvYmFsU2VhcmNoLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9nbG9iYWxTZWFyY2gvZ2xvYmFsU2VhcmNoLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY29uc3QgYXV0b2NvbXBsZXRlU3RhdGVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPHtcbiAgICByZXN1bHRzOiBzdHJpbmdbXTtcbiAgICBpc0xvYWRpbmc6IGJvb2xlYW47XG59PiAmIHtcbiAgICBpbml0OiB7XG4gICAgICAgIHJlc3VsdHM6IHN0cmluZ1tdO1xuICAgICAgICBpc0xvYWRpbmc6IGJvb2xlYW47XG4gICAgfTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBpc0ZpbHRlck9wZW5BdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaXNHbG9iYWxTZWFyY2hPcGVuQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGlzU2VhcmNoUmVzdWx0c09wZW5BdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuIl0sIm1hcHBpbmdzIjoiOzs7QUFDQSxJQUFXLHdCQUFVLENBQUEsV0FBQSxTQUFBLGNBQUE7QUFDckIsSUFBVyxtQkFBVyxDQUFBLFdBQUEsU0FBQSxjQUFBO0FBQ3RCLElBQUsseUJBQUEsQ0FBQSxXQUFBLFNBQUEsY0FBQTtBQUNMLElBQVUsMEJBQUEsQ0FBQSxXQUFBLFNBQUEsY0FBQSJ9
24
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2xvYmFsU2VhcmNoLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9nbG9iYWxTZWFyY2gvZ2xvYmFsU2VhcmNoLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY29uc3QgYXV0b2NvbXBsZXRlU3RhdGVBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPHtcbiAgICByZXN1bHRzOiBzdHJpbmdbXTtcbiAgICBpc0xvYWRpbmc6IGJvb2xlYW47XG59PiAmIHtcbiAgICBpbml0OiB7XG4gICAgICAgIHJlc3VsdHM6IHN0cmluZ1tdO1xuICAgICAgICBpc0xvYWRpbmc6IGJvb2xlYW47XG4gICAgfTtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBpc0ZpbHRlck9wZW5BdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgaXNHbG9iYWxTZWFyY2hPcGVuQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxib29sZWFuPiAmIHtcbiAgICBpbml0OiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGlzU2VhcmNoUmVzdWx0c09wZW5BdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPGJvb2xlYW4+ICYge1xuICAgIGluaXQ6IGJvb2xlYW47XG59O1xuIl0sIm1hcHBpbmdzIjoiOzs7QUFDQSxJQUFXLHdCQUFVLENBQUEsV0FBQSxRQUFBLGNBQUE7QUFDckIsSUFBVyxtQkFBVyxDQUFBLFdBQUEsUUFBQSxjQUFBO0FBQ3RCLElBQUsseUJBQUEsQ0FBQSxXQUFBLFFBQUEsY0FBQTtBQUNMLElBQVUsMEJBQUEsQ0FBQSxXQUFBLFFBQUEsY0FBQSJ9
@@ -1,7 +1,7 @@
1
- import * as jotai90 from "jotai";
1
+ import * as jotai63 from "jotai";
2
2
 
3
3
  //#region src/atoms/globalSearch/globalSearch.d.ts
4
- declare const autocompleteStateAtom: jotai90.PrimitiveAtom<{
4
+ declare const autocompleteStateAtom: jotai63.PrimitiveAtom<{
5
5
  results: string[];
6
6
  isLoading: boolean;
7
7
  }> & {
@@ -10,13 +10,13 @@ declare const autocompleteStateAtom: jotai90.PrimitiveAtom<{
10
10
  isLoading: boolean;
11
11
  };
12
12
  };
13
- declare const isFilterOpenAtom: jotai90.PrimitiveAtom<boolean> & {
13
+ declare const isFilterOpenAtom: jotai63.PrimitiveAtom<boolean> & {
14
14
  init: boolean;
15
15
  };
16
- declare const isGlobalSearchOpenAtom: jotai90.PrimitiveAtom<boolean> & {
16
+ declare const isGlobalSearchOpenAtom: jotai63.PrimitiveAtom<boolean> & {
17
17
  init: boolean;
18
18
  };
19
- declare const isSearchResultsOpenAtom: jotai90.PrimitiveAtom<boolean> & {
19
+ declare const isSearchResultsOpenAtom: jotai63.PrimitiveAtom<boolean> & {
20
20
  init: boolean;
21
21
  };
22
22
  //#endregion
@@ -1,21 +1,21 @@
1
1
  import { ChatState } from "../../types/custservice-types.cjs";
2
2
  import { AttachmentRequest, CustServiceConversationMessages } from "@spiffy-ai/commerce-api-client";
3
- import * as jotai80 from "jotai";
3
+ import * as jotai77 from "jotai";
4
4
 
5
5
  //#region src/atoms/org/customerService.d.ts
6
- declare const isBusinessHoursAtom: jotai80.PrimitiveAtom<boolean> & {
6
+ declare const isBusinessHoursAtom: jotai77.PrimitiveAtom<boolean> & {
7
7
  init: boolean;
8
8
  };
9
- declare const isCustomerServiceOpenAtom: jotai80.PrimitiveAtom<boolean> & {
9
+ declare const isCustomerServiceOpenAtom: jotai77.PrimitiveAtom<boolean> & {
10
10
  init: boolean;
11
11
  };
12
- declare const customerServiceResponseAtom: jotai80.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
12
+ declare const customerServiceResponseAtom: jotai77.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
13
13
  init: CustServiceConversationMessages | undefined;
14
14
  };
15
- declare const customerServiceChatStateAtom: jotai80.PrimitiveAtom<ChatState | undefined> & {
15
+ declare const customerServiceChatStateAtom: jotai77.PrimitiveAtom<ChatState | undefined> & {
16
16
  init: ChatState | undefined;
17
17
  };
18
- declare const customerServiceAttachment: jotai80.PrimitiveAtom<AttachmentRequest | undefined> & {
18
+ declare const customerServiceAttachment: jotai77.PrimitiveAtom<AttachmentRequest | undefined> & {
19
19
  init: AttachmentRequest | undefined;
20
20
  };
21
21
  //#endregion