@envive-ai/react-hooks 0.3.61 → 0.3.63

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 (80) hide show
  1. package/dist/application/utils/elementObserver.d.cts +2 -2
  2. package/dist/application/utils/widgetTextRequestToApiRequest.cjs +1 -0
  3. package/dist/application/utils/widgetTextRequestToApiRequest.js +1 -1
  4. package/dist/atoms/app/index.d.cts +7 -7
  5. package/dist/atoms/app/index.d.ts +7 -7
  6. package/dist/atoms/app/variant.d.ts +6 -6
  7. package/dist/atoms/chat/chatState.d.cts +19 -19
  8. package/dist/atoms/chat/chatState.d.ts +19 -19
  9. package/dist/atoms/chat/form.d.cts +2 -2
  10. package/dist/atoms/chat/form.d.ts +2 -2
  11. package/dist/atoms/chat/index.d.cts +2 -2
  12. package/dist/atoms/chat/index.d.ts +3 -3
  13. package/dist/atoms/chat/lastMessage.d.cts +2 -2
  14. package/dist/atoms/chat/lastMessage.d.ts +2 -2
  15. package/dist/atoms/chat/messageQueue.d.cts +6 -6
  16. package/dist/atoms/chat/messageQueue.d.ts +7 -7
  17. package/dist/atoms/chat/performanceMetrics.d.cts +6 -6
  18. package/dist/atoms/chat/performanceMetrics.d.ts +6 -6
  19. package/dist/atoms/chat/renderedWidgetRefs.d.cts +2 -2
  20. package/dist/atoms/chat/renderedWidgetRefs.d.ts +3 -3
  21. package/dist/atoms/chat/replies.d.cts +3 -3
  22. package/dist/atoms/chat/replies.d.ts +3 -3
  23. package/dist/atoms/chat/suggestions.d.cts +2 -2
  24. package/dist/atoms/chat/suggestions.d.ts +2 -2
  25. package/dist/atoms/envive/enviveConfig.d.cts +14 -14
  26. package/dist/atoms/globalSearch/globalSearch.d.cts +5 -5
  27. package/dist/atoms/org/customerService.d.cts +6 -6
  28. package/dist/atoms/org/customerService.d.ts +6 -6
  29. package/dist/atoms/org/graphqlConfig.d.cts +4 -4
  30. package/dist/atoms/org/graphqlConfig.d.ts +4 -4
  31. package/dist/atoms/org/newOrgConfigAtom.d.cts +2 -2
  32. package/dist/atoms/org/newOrgConfigAtom.d.ts +2 -2
  33. package/dist/atoms/org/orgAnalyticsConfig.d.cts +4 -4
  34. package/dist/atoms/search/chatSearch.d.cts +17 -17
  35. package/dist/atoms/search/chatSearch.d.ts +17 -17
  36. package/dist/atoms/search/searchAPI.d.cts +13 -13
  37. package/dist/atoms/search/searchAPI.d.ts +13 -13
  38. package/dist/atoms/search/types.d.cts +1 -1
  39. package/dist/atoms/search/utils.d.cts +1 -1
  40. package/dist/atoms/widget/chatPreviewLoading.d.cts +2 -2
  41. package/dist/contexts/systemSettingsContext/systemSettingsContext.d.cts +2 -2
  42. package/dist/contexts/types.d.cts +1 -1
  43. package/dist/contexts/types.d.ts +1 -1
  44. package/dist/contexts/typesV3.d.cts +1 -1
  45. package/dist/hooks/GrabAndScroll/useGrabAndScroll.d.cts +2 -2
  46. package/dist/hooks/GrabAndScroll/useGrabAndScroll.d.ts +2 -2
  47. package/dist/hooks/SystemSettingsContext/useSystemSettingsContext.d.cts +2 -2
  48. package/dist/hooks/utils.d.cts +1 -1
  49. package/dist/hooks/utils.d.ts +1 -1
  50. package/dist/services/enviveConfigService/enviveConfigService.cjs +49 -3
  51. package/dist/services/enviveConfigService/enviveConfigService.d.cts +16 -2
  52. package/dist/services/enviveConfigService/enviveConfigService.d.ts +16 -2
  53. package/dist/services/enviveConfigService/enviveConfigService.js +49 -3
  54. package/dist/services/enviveConfigService/fetchBootstrapConfig.cjs +102 -0
  55. package/dist/services/enviveConfigService/fetchBootstrapConfig.js +102 -0
  56. package/dist/services/enviveConfigService/fetchGraphQLConfig.cjs +2 -1
  57. package/dist/services/enviveConfigService/fetchGraphQLConfig.js +2 -2
  58. package/dist/services/hardcopyService/hardcopyService.cjs +20 -4
  59. package/dist/services/hardcopyService/hardcopyService.d.cts +3 -2
  60. package/dist/services/hardcopyService/hardcopyService.d.ts +3 -2
  61. package/dist/services/hardcopyService/hardcopyService.js +20 -5
  62. package/dist/services/hardcopyService/index.cjs +1 -0
  63. package/dist/services/hardcopyService/index.d.cts +2 -2
  64. package/dist/services/hardcopyService/index.d.ts +2 -2
  65. package/dist/services/hardcopyService/index.js +2 -2
  66. package/dist/services/urlResolverWarmupService/index.cjs +3 -3
  67. package/dist/services/urlResolverWarmupService/index.d.cts +8 -2
  68. package/dist/services/urlResolverWarmupService/index.d.ts +8 -2
  69. package/dist/services/urlResolverWarmupService/index.js +3 -3
  70. package/package.json +1 -1
  71. package/src/hooks/Intersection/__tests__/useIntersection.test.ts +1 -3
  72. package/src/services/enviveConfigService/__tests__/enviveConfigService.test.ts +226 -0
  73. package/src/services/enviveConfigService/__tests__/fetchBootstrapConfig.test.ts +271 -0
  74. package/src/services/enviveConfigService/enviveConfigService.ts +124 -5
  75. package/src/services/enviveConfigService/fetchBootstrapConfig.ts +276 -0
  76. package/src/services/enviveConfigService/fetchGraphQLConfig.ts +7 -4
  77. package/src/services/hardcopyService/__tests__/hardcopyService.test.ts +60 -1
  78. package/src/services/hardcopyService/hardcopyService.ts +45 -3
  79. package/src/services/urlResolverWarmupService/__tests__/urlResolverWarmupService.test.ts +55 -0
  80. package/src/services/urlResolverWarmupService/index.ts +18 -1
@@ -1,4 +1,4 @@
1
- import * as jotai98 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: jotai98.WritableAtom<string | undefined, [string | typeof jotai_utils1.RESET | ((prev: string | undefined) => string | typeof jotai_utils1.RESET | undefined) | undefined], void>;
27
- declare const pageLoadOffsetTimeAtom: jotai98.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: jotai98.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: jotai98.Atom<Map<PerfMetricsEvents, number>>;
36
- declare const hasReportedPerformanceMetricsAtom: jotai98.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: jotai98.PrimitiveAtom<boolean>
42
42
  *
43
43
  * @param value The performance metric name to log.
44
44
  */
45
- declare const logPerfMetricAtom: jotai98.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 jotai93 from "jotai";
1
+ import * as jotai36 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai93.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai36.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 jotai109 from "jotai";
1
+ import * as jotai93 from "jotai";
2
2
 
3
3
  //#region src/atoms/chat/renderedWidgetRefs.d.ts
4
- declare const widgetArrayAtom: jotai109.Atom<HTMLElement[]>;
4
+ declare const widgetArrayAtom: jotai93.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.
@@ -18,4 +18,4 @@ declare const widgetArrayAtom: jotai109.Atom<HTMLElement[]>;
18
18
  declare const addWidget: (ref: HTMLElement, idx?: number) => void;
19
19
  //#endregion
20
20
  export { addWidget, widgetArrayAtom };
21
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVuZGVyZWRXaWRnZXRSZWZzLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvcmVuZGVyZWRXaWRnZXRSZWZzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY29uc3Qgd2lkZ2V0QXJyYXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPEhUTUxFbGVtZW50W10+O1xuLyoqXG4gKiBUaGlzIGZ1bmN0aW9uIGNhbGwgaXMgdXNlZCB0byBjcmVhdGUgYSBsaXN0IG9mIHRoZSBTcGlmZnkgd2lkZ2V0c1xuICogdGhhdCBhcmUgcmVuZGVyaW5nIG9uIHRoZSBwYWdlLlxuICpcbiAqIEl0IGlzIHVzZWQgYnkgdGhlIEZsb2F0aW5nQnV0dG9uIHdpZGdldCB0byBzbGlkZSBvdXQgb2YgdmlldyB3aGVuIGl0XG4gKiBvdmVybGFwcyB3aXRoIGFub3RoZXIgU3BpZmZ5IHdpZGdldC5cbiAqXG4gKiBUaGUgc3BpZmZ5IHdpZGdldHMgc2hvdWxkIGJlIGFkZGVkIHRvIHRoZSB0aGlzIGFycmF5IGZvciB0aGUgZmxvYXRpbmcgYnV0dG9uXG4gKiB0byBrbm93IGFib3V0IHRoZW0uXG4gKlxuICogVG9kYXkgdGhlIFwiU3VnZ2VzdGlvbkJhclwiIHdpZGdldCBpcyBub3QgYWRkZWQsIGJ1dCB0aGUgb3RoZXIgd2lkZ2V0cyBhcmUuXG4gKlxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBhZGRXaWRnZXQ6IChyZWY6IEhUTUxFbGVtZW50LCBpZHg/OiBudW1iZXIpID0+IHZvaWQ7XG4iXSwibWFwcGluZ3MiOiI7OztBQUNBLElBQUUsa0JBQUE7Q0FBQTtPQUFBO09BQUEsU0FBQTtDQUFBO0FBQ0YsSUFBVyxZQUFZLENBQUMsV0FBVyxZQUFZIn0=
21
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVuZGVyZWRXaWRnZXRSZWZzLmQudHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2F0b21zL2NoYXQvcmVuZGVyZWRXaWRnZXRSZWZzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlY2xhcmUgY29uc3Qgd2lkZ2V0QXJyYXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPEhUTUxFbGVtZW50W10+O1xuLyoqXG4gKiBUaGlzIGZ1bmN0aW9uIGNhbGwgaXMgdXNlZCB0byBjcmVhdGUgYSBsaXN0IG9mIHRoZSBTcGlmZnkgd2lkZ2V0c1xuICogdGhhdCBhcmUgcmVuZGVyaW5nIG9uIHRoZSBwYWdlLlxuICpcbiAqIEl0IGlzIHVzZWQgYnkgdGhlIEZsb2F0aW5nQnV0dG9uIHdpZGdldCB0byBzbGlkZSBvdXQgb2YgdmlldyB3aGVuIGl0XG4gKiBvdmVybGFwcyB3aXRoIGFub3RoZXIgU3BpZmZ5IHdpZGdldC5cbiAqXG4gKiBUaGUgc3BpZmZ5IHdpZGdldHMgc2hvdWxkIGJlIGFkZGVkIHRvIHRoZSB0aGlzIGFycmF5IGZvciB0aGUgZmxvYXRpbmcgYnV0dG9uXG4gKiB0byBrbm93IGFib3V0IHRoZW0uXG4gKlxuICogVG9kYXkgdGhlIFwiU3VnZ2VzdGlvbkJhclwiIHdpZGdldCBpcyBub3QgYWRkZWQsIGJ1dCB0aGUgb3RoZXIgd2lkZ2V0cyBhcmUuXG4gKlxuICovXG5leHBvcnQgZGVjbGFyZSBjb25zdCBhZGRXaWRnZXQ6IChyZWY6IEhUTUxFbGVtZW50LCBpZHg/OiBudW1iZXIpID0+IHZvaWQ7XG4iXSwibWFwcGluZ3MiOiI7OztBQUNBLElBQUUsa0JBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBO0FBQ0YsSUFBVyxZQUFZLENBQUMsV0FBVyxZQUFZIn0=
@@ -1,14 +1,14 @@
1
1
  import { Message } from "../../application/models/message.cjs";
2
- import * as jotai28 from "jotai";
2
+ import * as jotai4 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: jotai28.WritableAtom<null, [HandleReplyParams], void> & {
9
+ declare const handleReplyAtom: jotai4.WritableAtom<null, [HandleReplyParams], void> & {
10
10
  init: null;
11
11
  };
12
12
  //#endregion
13
13
  export { handleReplyAtom };
14
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLmN0cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9yZXBsaWVzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZSB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xudHlwZSBIYW5kbGVSZXBseVBhcmFtcyA9IHtcbiAgICBtZXNzYWdlOiBNZXNzYWdlO1xuICAgIHVzZXJUeXBlZDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBoYW5kbGVSZXBseUF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbSGFuZGxlUmVwbHlQYXJhbXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbmV4cG9ydCB7fTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQUksb0JBQWdCLENBQUEsVUFBQSxRQUFBO0FBQ3BCLElBQVcsa0JBQVc7Q0FBQTtPQUFBO09BQUEsUUFBQTtDQUFBIn0=
14
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLmN0cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvY2hhdC9yZXBsaWVzLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTWVzc2FnZSB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMnO1xudHlwZSBIYW5kbGVSZXBseVBhcmFtcyA9IHtcbiAgICBtZXNzYWdlOiBNZXNzYWdlO1xuICAgIHVzZXJUeXBlZDogYm9vbGVhbjtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBoYW5kbGVSZXBseUF0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxudWxsLCBbSGFuZGxlUmVwbHlQYXJhbXNdLCB2b2lkPiAmIHtcbiAgICBpbml0OiBudWxsO1xufTtcbmV4cG9ydCB7fTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQUVBLElBQUksb0JBQWdCLENBQUEsVUFBQSxRQUFBO0FBQ3BCLElBQVcsa0JBQVc7Q0FBQTtPQUFBO09BQUEsT0FBQTtDQUFBIn0=
@@ -1,14 +1,14 @@
1
1
  import { Message } from "../../application/models/message.js";
2
- import * as jotai0 from "jotai";
2
+ import * as jotai22 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: jotai0.WritableAtom<null, [HandleReplyParams], void> & {
9
+ declare const handleReplyAtom: jotai22.WritableAtom<null, [HandleReplyParams], void> & {
10
10
  init: null;
11
11
  };
12
12
  //#endregion
13
13
  export { handleReplyAtom };
14
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLnRzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9jaGF0L3JlcGxpZXMuZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNZXNzYWdlIH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG50eXBlIEhhbmRsZVJlcGx5UGFyYW1zID0ge1xuICAgIG1lc3NhZ2U6IE1lc3NhZ2U7XG4gICAgdXNlclR5cGVkOiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGhhbmRsZVJlcGx5QXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFtIYW5kbGVSZXBseVBhcmFtc10sIHZvaWQ+ICYge1xuICAgIGluaXQ6IG51bGw7XG59O1xuZXhwb3J0IHt9O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBSSxvQkFBZ0IsQ0FBQSxTQUFBLFFBQUE7QUFDcEIsSUFBVyxrQkFBVztDQUFBO09BQUE7T0FBQSxPQUFBO0NBQUEifQ==
14
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwbGllcy5kLnRzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9jaGF0L3JlcGxpZXMuZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNZXNzYWdlIH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscyc7XG50eXBlIEhhbmRsZVJlcGx5UGFyYW1zID0ge1xuICAgIG1lc3NhZ2U6IE1lc3NhZ2U7XG4gICAgdXNlclR5cGVkOiBib29sZWFuO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGhhbmRsZVJlcGx5QXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPG51bGwsIFtIYW5kbGVSZXBseVBhcmFtc10sIHZvaWQ+ICYge1xuICAgIGluaXQ6IG51bGw7XG59O1xuZXhwb3J0IHt9O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBSSxvQkFBZ0IsQ0FBQSxXQUFBLFFBQUE7QUFDcEIsSUFBVyxrQkFBVztDQUFBO09BQUE7T0FBQSxRQUFBO0NBQUEifQ==
@@ -1,8 +1,8 @@
1
1
  import { Suggestion } from "../../application/models/api/suggestion.cjs";
2
- import * as jotai86 from "jotai";
2
+ import * as jotai42 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/suggestions.d.ts
5
- declare const handleSuggestionAtom: jotai86.WritableAtom<null, [suggestion: Suggestion], void> & {
5
+ declare const handleSuggestionAtom: jotai42.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 jotai97 from "jotai";
2
+ import * as jotai86 from "jotai";
3
3
 
4
4
  //#region src/atoms/chat/suggestions.d.ts
5
- declare const handleSuggestionAtom: jotai97.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,21 +1,21 @@
1
1
  import { AddToCartCallback } from "../../types/enviveConfig.cjs";
2
2
  import { EnviveConfig } from "../../contexts/types.cjs";
3
3
  import { ContextSourceEnum } from "@spiffy-ai/commerce-api-client";
4
- import * as jotai0 from "jotai";
4
+ import * as jotai22 from "jotai";
5
5
 
6
6
  //#region src/atoms/envive/enviveConfig.d.ts
7
- declare const enviveConfigAtom: jotai0.WritableAtom<EnviveConfig | undefined, [value: EnviveConfig], void>;
8
- declare const amplitudeApiKeyAtom: jotai0.Atom<string | undefined>;
9
- declare const dataResidencyAtom: jotai0.Atom<string | undefined>;
10
- declare const envAtom: jotai0.Atom<string | undefined>;
11
- declare const baseUrlAtom: jotai0.Atom<string>;
12
- declare const reactAppNameAtom: jotai0.Atom<string | undefined>;
13
- declare const cdnUrlAtom: jotai0.Atom<string | undefined>;
14
- declare const orgIdAtom: jotai0.Atom<string | undefined>;
15
- declare const addToCartCallbackAtom: jotai0.Atom<AddToCartCallback | undefined>;
16
- declare const contextSourceAtom: jotai0.Atom<ContextSourceEnum>;
17
- declare const orgLevelApiKeyAtom: jotai0.Atom<string | undefined>;
18
- declare const orgShortNameAtom: jotai0.Atom<string | undefined>;
7
+ declare const enviveConfigAtom: jotai22.WritableAtom<EnviveConfig | undefined, [value: EnviveConfig], void>;
8
+ declare const amplitudeApiKeyAtom: jotai22.Atom<string | undefined>;
9
+ declare const dataResidencyAtom: jotai22.Atom<string | undefined>;
10
+ declare const envAtom: jotai22.Atom<string | undefined>;
11
+ declare const baseUrlAtom: jotai22.Atom<string>;
12
+ declare const reactAppNameAtom: jotai22.Atom<string | undefined>;
13
+ declare const cdnUrlAtom: jotai22.Atom<string | undefined>;
14
+ declare const orgIdAtom: jotai22.Atom<string | undefined>;
15
+ declare const addToCartCallbackAtom: jotai22.Atom<AddToCartCallback | undefined>;
16
+ declare const contextSourceAtom: jotai22.Atom<ContextSourceEnum>;
17
+ declare const orgLevelApiKeyAtom: jotai22.Atom<string | undefined>;
18
+ declare const orgShortNameAtom: jotai22.Atom<string | undefined>;
19
19
  //#endregion
20
20
  export { addToCartCallbackAtom, amplitudeApiKeyAtom, baseUrlAtom, cdnUrlAtom, contextSourceAtom, dataResidencyAtom, envAtom, enviveConfigAtom, orgIdAtom, orgLevelApiKeyAtom, orgShortNameAtom, reactAppNameAtom };
21
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52aXZlQ29uZmlnLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9lbnZpdmUvZW52aXZlQ29uZmlnLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRW52aXZlQ29uZmlnIH0gZnJvbSAnc3JjL2NvbnRleHRzL3R5cGVzJztcbmltcG9ydCB7IENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGVudml2ZUNvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxFbnZpdmVDb25maWcgfCB1bmRlZmluZWQsIFt2YWx1ZTogRW52aXZlQ29uZmlnXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhbXBsaXR1ZGVBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBkYXRhUmVzaWRlbmN5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgZW52QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYmFzZVVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlYWN0QXBwTmFtZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNkblVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0lkQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYWRkVG9DYXJ0Q2FsbGJhY2tBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPGltcG9ydChcIi4uLy4uL3R5cGVzXCIpLkFkZFRvQ2FydENhbGxiYWNrIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNvbnRleHRTb3VyY2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPENvbnRleHRTb3VyY2VFbnVtPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0xldmVsQXBpS2V5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnU2hvcnROYW1lQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7QUFJQSxJQUFXLG1CQUFtQjtDQUFDO09BQVU7T0FBb0I7T0FBbUIsT0FBQTtDQUFBO0FBQ2hGLElBQVcsc0JBQXNCLENBQUMsVUFBVSxPQUFPLEtBQUs7QUFDeEQsSUFBVyxvQkFBb0IsQ0FBQyxVQUFVLE9BQU8sS0FBSztBQUN0RCxJQUFXLFVBQVUsQ0FBQyxVQUFVLE9BQU8sS0FBSztBQUM1QyxJQUFXLGNBQWMsQ0FBQyxVQUFVLE9BQU8sS0FBSztBQUNoRCxJQUFXLG1CQUFtQixDQUFDLFVBQVUsT0FBTyxLQUFLO0FBQ3JELElBQVcsYUFBYSxDQUFDLFVBQVUsT0FBTyxLQUFLO0FBQy9DLElBQVcsWUFBWSxDQUFDLFVBQVUsT0FBTyxLQUFLO0FBQzlDLElBQVcsd0JBQXdCO0NBQUM7T0FBVTtPQUFtQyxPQUFBO0NBQUE7QUFDakYsSUFBVyxvQkFBb0I7Q0FBQztPQUFVO09BQXlCLE9BQU87Q0FBSyJ9
21
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52aXZlQ29uZmlnLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9lbnZpdmUvZW52aXZlQ29uZmlnLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRW52aXZlQ29uZmlnIH0gZnJvbSAnc3JjL2NvbnRleHRzL3R5cGVzJztcbmltcG9ydCB7IENvbnRleHRTb3VyY2VFbnVtIH0gZnJvbSAnQHNwaWZmeS1haS9jb21tZXJjZS1hcGktY2xpZW50JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGVudml2ZUNvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxFbnZpdmVDb25maWcgfCB1bmRlZmluZWQsIFt2YWx1ZTogRW52aXZlQ29uZmlnXSwgdm9pZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBhbXBsaXR1ZGVBcGlLZXlBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPHN0cmluZyB8IHVuZGVmaW5lZD47XG5leHBvcnQgZGVjbGFyZSBjb25zdCBkYXRhUmVzaWRlbmN5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgZW52QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYmFzZVVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IHJlYWN0QXBwTmFtZUF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNkblVybEF0b206IGltcG9ydChcImpvdGFpXCIpLkF0b208c3RyaW5nIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0lkQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgYWRkVG9DYXJ0Q2FsbGJhY2tBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPGltcG9ydChcIi4uLy4uL3R5cGVzXCIpLkFkZFRvQ2FydENhbGxiYWNrIHwgdW5kZWZpbmVkPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGNvbnRleHRTb3VyY2VBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5BdG9tPENvbnRleHRTb3VyY2VFbnVtPjtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IG9yZ0xldmVsQXBpS2V5QXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnU2hvcnROYW1lQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxzdHJpbmcgfCB1bmRlZmluZWQ+O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7QUFJQSxJQUFXLG1CQUFtQjtDQUFDO09BQVU7T0FBb0I7T0FBbUIsUUFBQTtDQUFBO0FBQ2hGLElBQVcsc0JBQXNCLENBQUMsVUFBVSxRQUFRLEtBQUs7QUFDekQsSUFBVyxvQkFBb0IsQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUN2RCxJQUFXLFVBQVUsQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUM3QyxJQUFXLGNBQWMsQ0FBQyxVQUFVLFFBQVEsS0FBSztBQUNqRCxJQUFXLG1CQUFtQixDQUFDLFVBQVUsUUFBUSxLQUFLO0FBQ3RELElBQVcsYUFBYSxDQUFDLFVBQVUsUUFBUSxLQUFLO0FBQ2hELElBQVcsWUFBWSxDQUFDLFVBQVUsUUFBUSxLQUFLO0FBQy9DLElBQVcsd0JBQXdCO0NBQUM7T0FBVTtPQUFtQyxRQUFBO0NBQUE7QUFDakYsSUFBVyxvQkFBb0I7Q0FBQztPQUFVO09BQXlCLFFBQVE7Q0FBSSJ9
@@ -1,7 +1,7 @@
1
- import * as jotai75 from "jotai";
1
+ import * as jotai62 from "jotai";
2
2
 
3
3
  //#region src/atoms/globalSearch/globalSearch.d.ts
4
- declare const autocompleteStateAtom: jotai75.PrimitiveAtom<{
4
+ declare const autocompleteStateAtom: jotai62.PrimitiveAtom<{
5
5
  results: string[];
6
6
  isLoading: boolean;
7
7
  }> & {
@@ -10,13 +10,13 @@ declare const autocompleteStateAtom: jotai75.PrimitiveAtom<{
10
10
  isLoading: boolean;
11
11
  };
12
12
  };
13
- declare const isFilterOpenAtom: jotai75.PrimitiveAtom<boolean> & {
13
+ declare const isFilterOpenAtom: jotai62.PrimitiveAtom<boolean> & {
14
14
  init: boolean;
15
15
  };
16
- declare const isGlobalSearchOpenAtom: jotai75.PrimitiveAtom<boolean> & {
16
+ declare const isGlobalSearchOpenAtom: jotai62.PrimitiveAtom<boolean> & {
17
17
  init: boolean;
18
18
  };
19
- declare const isSearchResultsOpenAtom: jotai75.PrimitiveAtom<boolean> & {
19
+ declare const isSearchResultsOpenAtom: jotai62.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 jotai64 from "jotai";
3
+ import * as jotai53 from "jotai";
4
4
 
5
5
  //#region src/atoms/org/customerService.d.ts
6
- declare const isBusinessHoursAtom: jotai64.PrimitiveAtom<boolean> & {
6
+ declare const isBusinessHoursAtom: jotai53.PrimitiveAtom<boolean> & {
7
7
  init: boolean;
8
8
  };
9
- declare const isCustomerServiceOpenAtom: jotai64.PrimitiveAtom<boolean> & {
9
+ declare const isCustomerServiceOpenAtom: jotai53.PrimitiveAtom<boolean> & {
10
10
  init: boolean;
11
11
  };
12
- declare const customerServiceResponseAtom: jotai64.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
12
+ declare const customerServiceResponseAtom: jotai53.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
13
13
  init: CustServiceConversationMessages | undefined;
14
14
  };
15
- declare const customerServiceChatStateAtom: jotai64.PrimitiveAtom<ChatState | undefined> & {
15
+ declare const customerServiceChatStateAtom: jotai53.PrimitiveAtom<ChatState | undefined> & {
16
16
  init: ChatState | undefined;
17
17
  };
18
- declare const customerServiceAttachment: jotai64.PrimitiveAtom<AttachmentRequest | undefined> & {
18
+ declare const customerServiceAttachment: jotai53.PrimitiveAtom<AttachmentRequest | undefined> & {
19
19
  init: AttachmentRequest | undefined;
20
20
  };
21
21
  //#endregion
@@ -1,21 +1,21 @@
1
1
  import { ChatState } from "../../types/custservice-types.js";
2
2
  import { AttachmentRequest, CustServiceConversationMessages } from "@spiffy-ai/commerce-api-client";
3
- import * as jotai64 from "jotai";
3
+ import * as jotai68 from "jotai";
4
4
 
5
5
  //#region src/atoms/org/customerService.d.ts
6
- declare const isBusinessHoursAtom: jotai64.PrimitiveAtom<boolean> & {
6
+ declare const isBusinessHoursAtom: jotai68.PrimitiveAtom<boolean> & {
7
7
  init: boolean;
8
8
  };
9
- declare const isCustomerServiceOpenAtom: jotai64.PrimitiveAtom<boolean> & {
9
+ declare const isCustomerServiceOpenAtom: jotai68.PrimitiveAtom<boolean> & {
10
10
  init: boolean;
11
11
  };
12
- declare const customerServiceResponseAtom: jotai64.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
12
+ declare const customerServiceResponseAtom: jotai68.PrimitiveAtom<CustServiceConversationMessages | undefined> & {
13
13
  init: CustServiceConversationMessages | undefined;
14
14
  };
15
- declare const customerServiceChatStateAtom: jotai64.PrimitiveAtom<ChatState | undefined> & {
15
+ declare const customerServiceChatStateAtom: jotai68.PrimitiveAtom<ChatState | undefined> & {
16
16
  init: ChatState | undefined;
17
17
  };
18
- declare const customerServiceAttachment: jotai64.PrimitiveAtom<AttachmentRequest | undefined> & {
18
+ declare const customerServiceAttachment: jotai68.PrimitiveAtom<AttachmentRequest | undefined> & {
19
19
  init: AttachmentRequest | undefined;
20
20
  };
21
21
  //#endregion
@@ -1,16 +1,16 @@
1
1
  import { ColorMapping } from "../../application/models/colorsConfig.cjs";
2
2
  import { FrontendConfig } from "../../application/models/frontendConfig.cjs";
3
3
  import { FeatureFlagContextType } from "../../contexts/featureFlagServiceContext/featureFlagServiceContext.cjs";
4
- import * as jotai69 from "jotai";
4
+ import * as jotai58 from "jotai";
5
5
 
6
6
  //#region src/atoms/org/graphqlConfig.d.ts
7
- declare const internalGraphQLColorsConfigAtom: jotai69.PrimitiveAtom<ColorMapping | undefined> & {
7
+ declare const internalGraphQLColorsConfigAtom: jotai58.PrimitiveAtom<ColorMapping | undefined> & {
8
8
  init: ColorMapping | undefined;
9
9
  };
10
- declare const featureFlagServiceAtom: jotai69.PrimitiveAtom<FeatureFlagContextType | undefined> & {
10
+ declare const featureFlagServiceAtom: jotai58.PrimitiveAtom<FeatureFlagContextType | undefined> & {
11
11
  init: FeatureFlagContextType | undefined;
12
12
  };
13
- declare const frontendConfigAtom: jotai69.WritableAtom<FrontendConfig | undefined, [value: FrontendConfig | undefined], void>;
13
+ declare const frontendConfigAtom: jotai58.WritableAtom<FrontendConfig | undefined, [value: FrontendConfig | undefined], void>;
14
14
  //#endregion
15
15
  export { featureFlagServiceAtom, frontendConfigAtom, internalGraphQLColorsConfigAtom };
16
16
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JhcGhxbENvbmZpZy5kLmN0cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXRvbXMvb3JnL2dyYXBocWxDb25maWcuZC50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb2xvck1hcHBpbmcgfSBmcm9tICdzcmMvYXBwbGljYXRpb24vbW9kZWxzL2NvbG9yc0NvbmZpZyc7XG5pbXBvcnQgeyBGcm9udGVuZENvbmZpZyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMvZnJvbnRlbmRDb25maWcnO1xuaW1wb3J0IHR5cGUgeyBGZWF0dXJlRmxhZ0NvbnRleHRUeXBlIH0gZnJvbSAnc3JjL2NvbnRleHRzL2ZlYXR1cmVGbGFnU2VydmljZUNvbnRleHQvZmVhdHVyZUZsYWdTZXJ2aWNlQ29udGV4dCc7XG5leHBvcnQgZGVjbGFyZSBjb25zdCBpbnRlcm5hbEdyYXBoUUxDb2xvcnNDb25maWdBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5QcmltaXRpdmVBdG9tPENvbG9yTWFwcGluZyB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogQ29sb3JNYXBwaW5nIHwgdW5kZWZpbmVkO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGZlYXR1cmVGbGFnU2VydmljZUF0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208RmVhdHVyZUZsYWdDb250ZXh0VHlwZSB8IHVuZGVmaW5lZD4gJiB7XG4gICAgaW5pdDogRmVhdHVyZUZsYWdDb250ZXh0VHlwZSB8IHVuZGVmaW5lZDtcbn07XG5leHBvcnQgZGVjbGFyZSBjb25zdCBmcm9udGVuZENvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLldyaXRhYmxlQXRvbTxGcm9udGVuZENvbmZpZyB8IHVuZGVmaW5lZCwgW3ZhbHVlOiBGcm9udGVuZENvbmZpZyB8IHVuZGVmaW5lZF0sIHZvaWQ+O1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7QUFJQSxJQUFXLGtDQUF1QjtDQUFBO09BQUE7T0FBQSxRQUFBO09BQUE7Q0FBQTtBQUNsQyxJQUFDLHlCQUFBO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQ0QsSUFBVyxxQkFBcUI7Q0FBQztPQUFXO09BQXNCO09BQXNCLFFBQVE7Q0FBYSJ9
@@ -1,16 +1,16 @@
1
1
  import { ColorMapping } from "../../application/models/colorsConfig.js";
2
2
  import { FrontendConfig } from "../../application/models/frontendConfig.js";
3
3
  import { FeatureFlagContextType } from "../../contexts/featureFlagServiceContext/featureFlagServiceContext.js";
4
- import * as jotai70 from "jotai";
4
+ import * as jotai64 from "jotai";
5
5
 
6
6
  //#region src/atoms/org/graphqlConfig.d.ts
7
- declare const internalGraphQLColorsConfigAtom: jotai70.PrimitiveAtom<ColorMapping | undefined> & {
7
+ declare const internalGraphQLColorsConfigAtom: jotai64.PrimitiveAtom<ColorMapping | undefined> & {
8
8
  init: ColorMapping | undefined;
9
9
  };
10
- declare const featureFlagServiceAtom: jotai70.PrimitiveAtom<FeatureFlagContextType | undefined> & {
10
+ declare const featureFlagServiceAtom: jotai64.PrimitiveAtom<FeatureFlagContextType | undefined> & {
11
11
  init: FeatureFlagContextType | undefined;
12
12
  };
13
- declare const frontendConfigAtom: jotai70.WritableAtom<FrontendConfig | undefined, [value: FrontendConfig | undefined], void>;
13
+ declare const frontendConfigAtom: jotai64.WritableAtom<FrontendConfig | undefined, [value: FrontendConfig | undefined], void>;
14
14
  //#endregion
15
15
  export { featureFlagServiceAtom, frontendConfigAtom, internalGraphQLColorsConfigAtom };
16
16
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JhcGhxbENvbmZpZy5kLnRzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9vcmcvZ3JhcGhxbENvbmZpZy5kLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbG9yTWFwcGluZyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMvY29sb3JzQ29uZmlnJztcbmltcG9ydCB7IEZyb250ZW5kQ29uZmlnIH0gZnJvbSAnc3JjL2FwcGxpY2F0aW9uL21vZGVscy9mcm9udGVuZENvbmZpZyc7XG5pbXBvcnQgdHlwZSB7IEZlYXR1cmVGbGFnQ29udGV4dFR5cGUgfSBmcm9tICdzcmMvY29udGV4dHMvZmVhdHVyZUZsYWdTZXJ2aWNlQ29udGV4dC9mZWF0dXJlRmxhZ1NlcnZpY2VDb250ZXh0JztcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGludGVybmFsR3JhcGhRTENvbG9yc0NvbmZpZ0F0b206IGltcG9ydChcImpvdGFpXCIpLlByaW1pdGl2ZUF0b208Q29sb3JNYXBwaW5nIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBDb2xvck1hcHBpbmcgfCB1bmRlZmluZWQ7XG59O1xuZXhwb3J0IGRlY2xhcmUgY29uc3QgZmVhdHVyZUZsYWdTZXJ2aWNlQXRvbTogaW1wb3J0KFwiam90YWlcIikuUHJpbWl0aXZlQXRvbTxGZWF0dXJlRmxhZ0NvbnRleHRUeXBlIHwgdW5kZWZpbmVkPiAmIHtcbiAgICBpbml0OiBGZWF0dXJlRmxhZ0NvbnRleHRUeXBlIHwgdW5kZWZpbmVkO1xufTtcbmV4cG9ydCBkZWNsYXJlIGNvbnN0IGZyb250ZW5kQ29uZmlnQXRvbTogaW1wb3J0KFwiam90YWlcIikuV3JpdGFibGVBdG9tPEZyb250ZW5kQ29uZmlnIHwgdW5kZWZpbmVkLCBbdmFsdWU6IEZyb250ZW5kQ29uZmlnIHwgdW5kZWZpbmVkXSwgdm9pZD47XG4iXSwibWFwcGluZ3MiOiI7Ozs7OztBQUlBLElBQVcsa0NBQXVCO0NBQUE7T0FBQTtPQUFBLFFBQUE7T0FBQTtDQUFBO0FBQ2xDLElBQUMseUJBQUE7Q0FBQTtPQUFBO09BQUEsUUFBQTtPQUFBO0NBQUE7QUFDRCxJQUFXLHFCQUFxQjtDQUFDO09BQVc7T0FBc0I7T0FBc0IsUUFBUTtDQUFhIn0=
@@ -1,8 +1,8 @@
1
1
  import { GraphQlConfigValues } from "../../contexts/graphqlContext/graphqlContext.cjs";
2
- import * as jotai79 from "jotai";
2
+ import * as jotai49 from "jotai";
3
3
 
4
4
  //#region src/atoms/org/newOrgConfigAtom.d.ts
5
- declare const newOrgConfigAtom: jotai79.PrimitiveAtom<GraphQlConfigValues | null> & {
5
+ declare const newOrgConfigAtom: jotai49.PrimitiveAtom<GraphQlConfigValues | null> & {
6
6
  init: GraphQlConfigValues | null;
7
7
  };
8
8
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { GraphQlConfigValues } from "../../contexts/graphqlContext/graphqlContext.js";
2
- import * as jotai69 from "jotai";
2
+ import * as jotai67 from "jotai";
3
3
 
4
4
  //#region src/atoms/org/newOrgConfigAtom.d.ts
5
- declare const newOrgConfigAtom: jotai69.PrimitiveAtom<GraphQlConfigValues | null> & {
5
+ declare const newOrgConfigAtom: jotai67.PrimitiveAtom<GraphQlConfigValues | null> & {
6
6
  init: GraphQlConfigValues | null;
7
7
  };
8
8
  //#endregion
@@ -1,10 +1,10 @@
1
1
  import { OrgAnalyticsAmplitudeConfig, OrgAnalyticsConfig, OrgAnalyticsCustomerServiceConfig } from "../../application/models/api/orgAnalyticsConfig.cjs";
2
- import * as jotai72 from "jotai";
2
+ import * as jotai50 from "jotai";
3
3
 
4
4
  //#region src/atoms/org/orgAnalyticsConfig.d.ts
5
- declare const orgAnalyticsConfigAtom: jotai72.WritableAtom<OrgAnalyticsConfig | undefined, [value: OrgAnalyticsConfig], void>;
6
- declare const orgAnalyticsAmplitudeConfigAtom: jotai72.Atom<OrgAnalyticsAmplitudeConfig | undefined>;
7
- declare const orgAnalyticsCustomerServiceConfigAtom: jotai72.Atom<OrgAnalyticsCustomerServiceConfig | undefined>;
5
+ declare const orgAnalyticsConfigAtom: jotai50.WritableAtom<OrgAnalyticsConfig | undefined, [value: OrgAnalyticsConfig], void>;
6
+ declare const orgAnalyticsAmplitudeConfigAtom: jotai50.Atom<OrgAnalyticsAmplitudeConfig | undefined>;
7
+ declare const orgAnalyticsCustomerServiceConfigAtom: jotai50.Atom<OrgAnalyticsCustomerServiceConfig | undefined>;
8
8
  //#endregion
9
9
  export { orgAnalyticsAmplitudeConfigAtom, orgAnalyticsConfigAtom, orgAnalyticsCustomerServiceConfigAtom };
10
10
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JnQW5hbHl0aWNzQ29uZmlnLmQuY3RzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hdG9tcy9vcmcvb3JnQW5hbHl0aWNzQ29uZmlnLmQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT3JnQW5hbHl0aWNzQW1wbGl0dWRlQ29uZmlnLCBPcmdBbmFseXRpY3NDb25maWcsIE9yZ0FuYWx5dGljc0N1c3RvbWVyU2VydmljZUNvbmZpZyB9IGZyb20gJ3NyYy9hcHBsaWNhdGlvbi9tb2RlbHMvYXBpL29yZ0FuYWx5dGljc0NvbmZpZyc7XG5leHBvcnQgZGVjbGFyZSBjb25zdCBvcmdBbmFseXRpY3NDb25maWdBdG9tOiBpbXBvcnQoXCJqb3RhaVwiKS5Xcml0YWJsZUF0b208T3JnQW5hbHl0aWNzQ29uZmlnIHwgdW5kZWZpbmVkLCBbdmFsdWU6IE9yZ0FuYWx5dGljc0NvbmZpZ10sIHZvaWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnQW5hbHl0aWNzQW1wbGl0dWRlQ29uZmlnQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxPcmdBbmFseXRpY3NBbXBsaXR1ZGVDb25maWcgfCB1bmRlZmluZWQ+O1xuZXhwb3J0IGRlY2xhcmUgY29uc3Qgb3JnQW5hbHl0aWNzQ3VzdG9tZXJTZXJ2aWNlQ29uZmlnQXRvbTogaW1wb3J0KFwiam90YWlcIikuQXRvbTxPcmdBbmFseXRpY3NDdXN0b21lclNlcnZpY2VDb25maWcgfCB1bmRlZmluZWQ+O1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBRUEsSUFBVyx5QkFBeUI7Q0FBQztPQUFXO09BQTBCO09BQTBCLFFBQVE7Q0FBTztBQUNuSCxJQUFXLGtDQUFrQztDQUFDO09BQVc7T0FBbUMsUUFBUTtDQUFLIn0=
@@ -1,16 +1,16 @@
1
1
  import { ProductResponseAttributes } from "../../application/models/api/response.cjs";
2
2
  import { ChatSearchFilter, ChatSearchStateType, ProductSorting } from "./types.cjs";
3
3
  import { Message } from "../../application/models/message.cjs";
4
- import * as jotai47 from "jotai";
4
+ import * as jotai78 from "jotai";
5
5
 
6
6
  //#region src/atoms/search/chatSearch.d.ts
7
- declare const chatSearchStateAtom: jotai47.PrimitiveAtom<ChatSearchStateType> & {
7
+ declare const chatSearchStateAtom: jotai78.PrimitiveAtom<ChatSearchStateType> & {
8
8
  init: ChatSearchStateType;
9
9
  };
10
- declare const chatSearchHasProductsAtom: jotai47.PrimitiveAtom<boolean> & {
10
+ declare const chatSearchHasProductsAtom: jotai78.PrimitiveAtom<boolean> & {
11
11
  init: boolean;
12
12
  };
13
- declare const chatSearchProductSortingAtom: jotai47.PrimitiveAtom<ProductSorting> & {
13
+ declare const chatSearchProductSortingAtom: jotai78.PrimitiveAtom<ProductSorting> & {
14
14
  init: ProductSorting;
15
15
  };
16
16
  type ChatSearchTurn = {
@@ -21,7 +21,7 @@ type ChatSearchTurn = {
21
21
  filterList: string[];
22
22
  messages: Message[];
23
23
  };
24
- declare const chatSearchIsLoadingAtom: jotai47.PrimitiveAtom<boolean> & {
24
+ declare const chatSearchIsLoadingAtom: jotai78.PrimitiveAtom<boolean> & {
25
25
  init: boolean;
26
26
  };
27
27
  type SelectedChatSearchFilterOption = {
@@ -30,21 +30,21 @@ type SelectedChatSearchFilterOption = {
30
30
  filterId: string;
31
31
  filterItemId: string;
32
32
  };
33
- declare const selectedFilterOptionsAtom: jotai47.PrimitiveAtom<SelectedChatSearchFilterOption[]> & {
33
+ declare const selectedFilterOptionsAtom: jotai78.PrimitiveAtom<SelectedChatSearchFilterOption[]> & {
34
34
  init: SelectedChatSearchFilterOption[];
35
35
  };
36
- declare const additiveDynamicFiltersAtom: jotai47.Atom<boolean>;
36
+ declare const additiveDynamicFiltersAtom: jotai78.Atom<boolean>;
37
37
  declare const createChatSearchFilterOption: (filterId: string, filterItemId: string, displayName: string) => SelectedChatSearchFilterOption;
38
- declare const chatSearchParamsAtom: jotai47.WritableAtom<{
38
+ declare const chatSearchParamsAtom: jotai78.WritableAtom<{
39
39
  id: string | null;
40
40
  query: string | null;
41
41
  }, [value: {
42
42
  id: string | null;
43
43
  query: string | null;
44
44
  }], void>;
45
- declare const chatSearchQueryAtom: jotai47.WritableAtom<string | null, [value: string | null], void>;
46
- declare const chatSearchIdAtom: jotai47.WritableAtom<string | null, [value: string | null], void>;
47
- declare const ChatSearchTurnAtom: jotai47.Atom<{
45
+ declare const chatSearchQueryAtom: jotai78.WritableAtom<string | null, [value: string | null], void>;
46
+ declare const chatSearchIdAtom: jotai78.WritableAtom<string | null, [value: string | null], void>;
47
+ declare const ChatSearchTurnAtom: jotai78.Atom<{
48
48
  productList: {
49
49
  averageRating?: number | undefined;
50
50
  colors?: string[] | undefined;
@@ -74,7 +74,7 @@ declare const ChatSearchTurnAtom: jotai47.Atom<{
74
74
  filterList: string[];
75
75
  messages: Message[];
76
76
  } | null>;
77
- declare const chatSearchProducts: jotai47.Atom<{
77
+ declare const chatSearchProducts: jotai78.Atom<{
78
78
  averageRating?: number | undefined;
79
79
  colors?: string[] | undefined;
80
80
  description?: string | undefined;
@@ -97,19 +97,19 @@ declare const chatSearchProducts: jotai47.Atom<{
97
97
  title: string;
98
98
  url: string;
99
99
  }[]>;
100
- declare const chatSearchFiltersAtom: jotai47.Atom<ChatSearchFilter[]>;
100
+ declare const chatSearchFiltersAtom: jotai78.Atom<ChatSearchFilter[]>;
101
101
  declare const setSearchParams: (query: string) => void;
102
- declare const getSearchParamsAtom: jotai47.Atom<{
102
+ declare const getSearchParamsAtom: jotai78.Atom<{
103
103
  es: string | null;
104
104
  esq: string | null;
105
105
  }>;
106
- declare const initiateChatSearchAtom: jotai47.WritableAtom<null, [query: string], void> & {
106
+ declare const initiateChatSearchAtom: jotai78.WritableAtom<null, [query: string], void> & {
107
107
  init: null;
108
108
  };
109
- declare const handleSearchResultsAtom: jotai47.WritableAtom<null, [message: Message | undefined], void> & {
109
+ declare const handleSearchResultsAtom: jotai78.WritableAtom<null, [message: Message | undefined], void> & {
110
110
  init: null;
111
111
  };
112
- declare const setChatSearchParamsAtom: jotai47.WritableAtom<null, [query: string], void> & {
112
+ declare const setChatSearchParamsAtom: jotai78.WritableAtom<null, [query: string], void> & {
113
113
  init: null;
114
114
  };
115
115
  //#endregion
@@ -1,16 +1,16 @@
1
1
  import { ProductResponseAttributes } from "../../application/models/api/response.js";
2
2
  import { ChatSearchFilter, ChatSearchStateType, ProductSorting } from "./types.js";
3
3
  import { Message } from "../../application/models/message.js";
4
- import * as jotai47 from "jotai";
4
+ import * as jotai35 from "jotai";
5
5
 
6
6
  //#region src/atoms/search/chatSearch.d.ts
7
- declare const chatSearchStateAtom: jotai47.PrimitiveAtom<ChatSearchStateType> & {
7
+ declare const chatSearchStateAtom: jotai35.PrimitiveAtom<ChatSearchStateType> & {
8
8
  init: ChatSearchStateType;
9
9
  };
10
- declare const chatSearchHasProductsAtom: jotai47.PrimitiveAtom<boolean> & {
10
+ declare const chatSearchHasProductsAtom: jotai35.PrimitiveAtom<boolean> & {
11
11
  init: boolean;
12
12
  };
13
- declare const chatSearchProductSortingAtom: jotai47.PrimitiveAtom<ProductSorting> & {
13
+ declare const chatSearchProductSortingAtom: jotai35.PrimitiveAtom<ProductSorting> & {
14
14
  init: ProductSorting;
15
15
  };
16
16
  type ChatSearchTurn = {
@@ -21,7 +21,7 @@ type ChatSearchTurn = {
21
21
  filterList: string[];
22
22
  messages: Message[];
23
23
  };
24
- declare const chatSearchIsLoadingAtom: jotai47.PrimitiveAtom<boolean> & {
24
+ declare const chatSearchIsLoadingAtom: jotai35.PrimitiveAtom<boolean> & {
25
25
  init: boolean;
26
26
  };
27
27
  type SelectedChatSearchFilterOption = {
@@ -30,21 +30,21 @@ type SelectedChatSearchFilterOption = {
30
30
  filterId: string;
31
31
  filterItemId: string;
32
32
  };
33
- declare const selectedFilterOptionsAtom: jotai47.PrimitiveAtom<SelectedChatSearchFilterOption[]> & {
33
+ declare const selectedFilterOptionsAtom: jotai35.PrimitiveAtom<SelectedChatSearchFilterOption[]> & {
34
34
  init: SelectedChatSearchFilterOption[];
35
35
  };
36
- declare const additiveDynamicFiltersAtom: jotai47.Atom<boolean>;
36
+ declare const additiveDynamicFiltersAtom: jotai35.Atom<boolean>;
37
37
  declare const createChatSearchFilterOption: (filterId: string, filterItemId: string, displayName: string) => SelectedChatSearchFilterOption;
38
- declare const chatSearchParamsAtom: jotai47.WritableAtom<{
38
+ declare const chatSearchParamsAtom: jotai35.WritableAtom<{
39
39
  id: string | null;
40
40
  query: string | null;
41
41
  }, [value: {
42
42
  id: string | null;
43
43
  query: string | null;
44
44
  }], void>;
45
- declare const chatSearchQueryAtom: jotai47.WritableAtom<string | null, [value: string | null], void>;
46
- declare const chatSearchIdAtom: jotai47.WritableAtom<string | null, [value: string | null], void>;
47
- declare const ChatSearchTurnAtom: jotai47.Atom<{
45
+ declare const chatSearchQueryAtom: jotai35.WritableAtom<string | null, [value: string | null], void>;
46
+ declare const chatSearchIdAtom: jotai35.WritableAtom<string | null, [value: string | null], void>;
47
+ declare const ChatSearchTurnAtom: jotai35.Atom<{
48
48
  productList: {
49
49
  averageRating?: number | undefined;
50
50
  colors?: string[] | undefined;
@@ -74,7 +74,7 @@ declare const ChatSearchTurnAtom: jotai47.Atom<{
74
74
  filterList: string[];
75
75
  messages: Message[];
76
76
  } | null>;
77
- declare const chatSearchProducts: jotai47.Atom<{
77
+ declare const chatSearchProducts: jotai35.Atom<{
78
78
  averageRating?: number | undefined;
79
79
  colors?: string[] | undefined;
80
80
  description?: string | undefined;
@@ -97,19 +97,19 @@ declare const chatSearchProducts: jotai47.Atom<{
97
97
  title: string;
98
98
  url: string;
99
99
  }[]>;
100
- declare const chatSearchFiltersAtom: jotai47.Atom<ChatSearchFilter[]>;
100
+ declare const chatSearchFiltersAtom: jotai35.Atom<ChatSearchFilter[]>;
101
101
  declare const setSearchParams: (query: string) => void;
102
- declare const getSearchParamsAtom: jotai47.Atom<{
102
+ declare const getSearchParamsAtom: jotai35.Atom<{
103
103
  es: string | null;
104
104
  esq: string | null;
105
105
  }>;
106
- declare const initiateChatSearchAtom: jotai47.WritableAtom<null, [query: string], void> & {
106
+ declare const initiateChatSearchAtom: jotai35.WritableAtom<null, [query: string], void> & {
107
107
  init: null;
108
108
  };
109
- declare const handleSearchResultsAtom: jotai47.WritableAtom<null, [message: Message | undefined], void> & {
109
+ declare const handleSearchResultsAtom: jotai35.WritableAtom<null, [message: Message | undefined], void> & {
110
110
  init: null;
111
111
  };
112
- declare const setChatSearchParamsAtom: jotai47.WritableAtom<null, [query: string], void> & {
112
+ declare const setChatSearchParamsAtom: jotai35.WritableAtom<null, [query: string], void> & {
113
113
  init: null;
114
114
  };
115
115
  //#endregion
@@ -1,6 +1,6 @@
1
1
  import { ChatSearchFilter, ProductSorting } from "./types.cjs";
2
2
  import { SearchParams, SearchResult } from "../../application/models/api/search.cjs";
3
- import * as jotai35 from "jotai";
3
+ import * as jotai66 from "jotai";
4
4
 
5
5
  //#region src/atoms/search/searchAPI.d.ts
6
6
  type SelectedFilterOption = {
@@ -15,28 +15,28 @@ interface SearchState {
15
15
  error: string | null;
16
16
  lastQuery: string | null;
17
17
  }
18
- declare const searchAtom: jotai35.PrimitiveAtom<SearchState> & {
18
+ declare const searchAtom: jotai66.PrimitiveAtom<SearchState> & {
19
19
  init: SearchState;
20
20
  };
21
- declare const searchProductSortingAtom: jotai35.PrimitiveAtom<ProductSorting> & {
21
+ declare const searchProductSortingAtom: jotai66.PrimitiveAtom<ProductSorting> & {
22
22
  init: ProductSorting;
23
23
  };
24
- declare const searchSelectedFiltersAtom: jotai35.PrimitiveAtom<SelectedFilterOption[]> & {
24
+ declare const searchSelectedFiltersAtom: jotai66.PrimitiveAtom<SelectedFilterOption[]> & {
25
25
  init: SelectedFilterOption[];
26
26
  };
27
27
  declare const createFilterOption: (filterId: string, filterItemId: string, displayName: string) => SelectedFilterOption;
28
- declare const searchParamsAtom: jotai35.WritableAtom<{
28
+ declare const searchParamsAtom: jotai66.WritableAtom<{
29
29
  id: string | null;
30
30
  query: string | null;
31
31
  }, [value: {
32
32
  id: string | null;
33
33
  query: string | null;
34
34
  }], void>;
35
- declare const internalSearchSystemStateAtom: jotai35.PrimitiveAtom<boolean> & {
35
+ declare const internalSearchSystemStateAtom: jotai66.PrimitiveAtom<boolean> & {
36
36
  init: boolean;
37
37
  };
38
- declare const searchSystemAtom: jotai35.WritableAtom<boolean, [value: boolean], void>;
39
- declare const filteredSearchProductsAtom: jotai35.Atom<{
38
+ declare const searchSystemAtom: jotai66.WritableAtom<boolean, [value: boolean], void>;
39
+ declare const filteredSearchProductsAtom: jotai66.Atom<{
40
40
  averageRating?: number | undefined;
41
41
  colors?: string[] | undefined;
42
42
  description?: string | undefined;
@@ -59,17 +59,17 @@ declare const filteredSearchProductsAtom: jotai35.Atom<{
59
59
  title: string;
60
60
  url: string;
61
61
  }[]>;
62
- declare const searchFiltersAtom: jotai35.Atom<ChatSearchFilter[]>;
63
- declare const addSearchFilterAtom: jotai35.WritableAtom<null, [filter: SelectedFilterOption], void> & {
62
+ declare const searchFiltersAtom: jotai66.Atom<ChatSearchFilter[]>;
63
+ declare const addSearchFilterAtom: jotai66.WritableAtom<null, [filter: SelectedFilterOption], void> & {
64
64
  init: null;
65
65
  };
66
- declare const removeSearchFilterAtom: jotai35.WritableAtom<null, [filterId: string], void> & {
66
+ declare const removeSearchFilterAtom: jotai66.WritableAtom<null, [filterId: string], void> & {
67
67
  init: null;
68
68
  };
69
- declare const clearSearchFiltersAtom: jotai35.WritableAtom<null, [], void> & {
69
+ declare const clearSearchFiltersAtom: jotai66.WritableAtom<null, [], void> & {
70
70
  init: null;
71
71
  };
72
- declare const performSearchAtom: jotai35.WritableAtom<null, [params: SearchParams, allowRedirect?: unknown], Promise<void>> & {
72
+ declare const performSearchAtom: jotai66.WritableAtom<null, [params: SearchParams, allowRedirect?: unknown], Promise<void>> & {
73
73
  init: null;
74
74
  };
75
75
  //#endregion