@bikdotai/bik-component-library 0.0.856 → 0.0.857-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/README.md +25 -4
  2. package/dist/cjs/components/bik-copilot/BIKCopilot.js +2 -0
  3. package/dist/cjs/components/bik-copilot/BIKCopilot.js.map +1 -0
  4. package/dist/cjs/components/bik-copilot/ControlledCopilot.js +2 -0
  5. package/dist/cjs/components/bik-copilot/ControlledCopilot.js.map +1 -0
  6. package/dist/cjs/components/bik-copilot/ControlledCopilot.styled.js +27 -0
  7. package/dist/cjs/components/bik-copilot/ControlledCopilot.styled.js.map +1 -0
  8. package/dist/cjs/components/bik-copilot/CopilotBall.js +2 -0
  9. package/dist/cjs/components/bik-copilot/CopilotBall.js.map +1 -0
  10. package/dist/cjs/components/bik-copilot/CopilotBall.styled.js +42 -0
  11. package/dist/cjs/components/bik-copilot/CopilotBall.styled.js.map +1 -0
  12. package/dist/cjs/components/bik-copilot/CopilotPanel.js +2 -0
  13. package/dist/cjs/components/bik-copilot/CopilotPanel.js.map +1 -0
  14. package/dist/cjs/components/bik-copilot/CopilotPanel.styled.js +419 -0
  15. package/dist/cjs/components/bik-copilot/CopilotPanel.styled.js.map +1 -0
  16. package/dist/cjs/components/bik-copilot/copilotPlacement.js +2 -0
  17. package/dist/cjs/components/bik-copilot/copilotPlacement.js.map +1 -0
  18. package/dist/cjs/components/bik-copilot/services/copilotDb.js +2 -0
  19. package/dist/cjs/components/bik-copilot/services/copilotDb.js.map +1 -0
  20. package/dist/cjs/components/bik-copilot/services/copilotIcebreakersClient.js +2 -0
  21. package/dist/cjs/components/bik-copilot/services/copilotIcebreakersClient.js.map +1 -0
  22. package/dist/cjs/components/bik-copilot/services/copilotMessagesClient.js +2 -0
  23. package/dist/cjs/components/bik-copilot/services/copilotMessagesClient.js.map +1 -0
  24. package/dist/cjs/components/bik-copilot/services/copilotPageSession.js +2 -0
  25. package/dist/cjs/components/bik-copilot/services/copilotPageSession.js.map +1 -0
  26. package/dist/cjs/components/bik-copilot/services/copilotSseParser.js +7 -0
  27. package/dist/cjs/components/bik-copilot/services/copilotSseParser.js.map +1 -0
  28. package/dist/cjs/components/bik-copilot/services/copilotStreamClient.js +2 -0
  29. package/dist/cjs/components/bik-copilot/services/copilotStreamClient.js.map +1 -0
  30. package/dist/cjs/components/bik-copilot/useCopilotIcebreakers.js +2 -0
  31. package/dist/cjs/components/bik-copilot/useCopilotIcebreakers.js.map +1 -0
  32. package/dist/cjs/components/bik-copilot/useCopilotStreamChat.js +2 -0
  33. package/dist/cjs/components/bik-copilot/useCopilotStreamChat.js.map +1 -0
  34. package/dist/cjs/components/bik-copilot/useDraggableFloater.js +2 -0
  35. package/dist/cjs/components/bik-copilot/useDraggableFloater.js.map +1 -0
  36. package/dist/cjs/index.js +1 -1
  37. package/dist/esm/components/bik-copilot/BIKCopilot.d.ts +32 -0
  38. package/dist/esm/components/bik-copilot/BIKCopilot.js +114 -0
  39. package/dist/esm/components/bik-copilot/BIKCopilot.js.map +1 -0
  40. package/dist/esm/components/bik-copilot/ControlledCopilot.d.ts +14 -0
  41. package/dist/esm/components/bik-copilot/ControlledCopilot.js +170 -0
  42. package/dist/esm/components/bik-copilot/ControlledCopilot.js.map +1 -0
  43. package/dist/esm/components/bik-copilot/ControlledCopilot.styled.d.ts +7 -0
  44. package/dist/esm/components/bik-copilot/ControlledCopilot.styled.js +31 -0
  45. package/dist/esm/components/bik-copilot/ControlledCopilot.styled.js.map +1 -0
  46. package/dist/esm/components/bik-copilot/CopilotBall.d.ts +13 -0
  47. package/dist/esm/components/bik-copilot/CopilotBall.js +50 -0
  48. package/dist/esm/components/bik-copilot/CopilotBall.js.map +1 -0
  49. package/dist/esm/components/bik-copilot/CopilotBall.styled.d.ts +9 -0
  50. package/dist/esm/components/bik-copilot/CopilotBall.styled.js +46 -0
  51. package/dist/esm/components/bik-copilot/CopilotBall.styled.js.map +1 -0
  52. package/dist/esm/components/bik-copilot/CopilotPanel.d.ts +9 -0
  53. package/dist/esm/components/bik-copilot/CopilotPanel.js +309 -0
  54. package/dist/esm/components/bik-copilot/CopilotPanel.js.map +1 -0
  55. package/dist/esm/components/bik-copilot/CopilotPanel.styled.d.ts +58 -0
  56. package/dist/esm/components/bik-copilot/CopilotPanel.styled.js +453 -0
  57. package/dist/esm/components/bik-copilot/CopilotPanel.styled.js.map +1 -0
  58. package/dist/esm/components/bik-copilot/copilotPlacement.d.ts +24 -0
  59. package/dist/esm/components/bik-copilot/copilotPlacement.js +38 -0
  60. package/dist/esm/components/bik-copilot/copilotPlacement.js.map +1 -0
  61. package/dist/esm/components/bik-copilot/index.d.ts +16 -0
  62. package/dist/esm/components/bik-copilot/model.d.ts +674 -0
  63. package/dist/esm/components/bik-copilot/services/copilotDb.d.ts +90 -0
  64. package/dist/esm/components/bik-copilot/services/copilotDb.js +96 -0
  65. package/dist/esm/components/bik-copilot/services/copilotDb.js.map +1 -0
  66. package/dist/esm/components/bik-copilot/services/copilotIcebreakersClient.d.ts +11 -0
  67. package/dist/esm/components/bik-copilot/services/copilotIcebreakersClient.js +54 -0
  68. package/dist/esm/components/bik-copilot/services/copilotIcebreakersClient.js.map +1 -0
  69. package/dist/esm/components/bik-copilot/services/copilotMessagesClient.d.ts +23 -0
  70. package/dist/esm/components/bik-copilot/services/copilotMessagesClient.js +78 -0
  71. package/dist/esm/components/bik-copilot/services/copilotMessagesClient.js.map +1 -0
  72. package/dist/esm/components/bik-copilot/services/copilotPageSession.d.ts +37 -0
  73. package/dist/esm/components/bik-copilot/services/copilotPageSession.js +35 -0
  74. package/dist/esm/components/bik-copilot/services/copilotPageSession.js.map +1 -0
  75. package/dist/esm/components/bik-copilot/services/copilotSseParser.d.ts +22 -0
  76. package/dist/esm/components/bik-copilot/services/copilotSseParser.js +52 -0
  77. package/dist/esm/components/bik-copilot/services/copilotSseParser.js.map +1 -0
  78. package/dist/esm/components/bik-copilot/services/copilotStreamClient.d.ts +31 -0
  79. package/dist/esm/components/bik-copilot/services/copilotStreamClient.js +103 -0
  80. package/dist/esm/components/bik-copilot/services/copilotStreamClient.js.map +1 -0
  81. package/dist/esm/components/bik-copilot/useCopilotIcebreakers.d.ts +17 -0
  82. package/dist/esm/components/bik-copilot/useCopilotIcebreakers.js +60 -0
  83. package/dist/esm/components/bik-copilot/useCopilotIcebreakers.js.map +1 -0
  84. package/dist/esm/components/bik-copilot/useCopilotStreamChat.d.ts +20 -0
  85. package/dist/esm/components/bik-copilot/useCopilotStreamChat.js +333 -0
  86. package/dist/esm/components/bik-copilot/useCopilotStreamChat.js.map +1 -0
  87. package/dist/esm/components/bik-copilot/useDraggableFloater.d.ts +9 -0
  88. package/dist/esm/components/bik-copilot/useDraggableFloater.js +118 -0
  89. package/dist/esm/components/bik-copilot/useDraggableFloater.js.map +1 -0
  90. package/dist/esm/index.d.ts +1 -0
  91. package/dist/esm/index.js +793 -743
  92. package/dist/esm/index.js.map +1 -1
  93. package/package.json +1 -1
package/dist/esm/index.js CHANGED
@@ -1,30 +1,30 @@
1
1
  import * as o from "./components/template-preview/constants/regexPatterns.js";
2
2
  import { default as t } from "./utils/StringUtils.js";
3
- import { BASE_COLORS as f, COLORS as p, DEFAULT_THEME as m, FONTS as l } from "./constants/Theme.js";
4
- import { ComponentZindex as n } from "./constants/zindex.js";
5
- import { AiBodyCaption as s, AiBodyTiny as d, BodyCaption as u, BodyLarge as T, BodyPrimary as c, BodyPrimaryLink as A, BodyRegular as C, BodySecondary as S, BodySecondaryLink as E, BodySmall as I, BodyTiny as P, BodyTinySemiBold as R, ButtonLarge as _, ButtonLargeAI as h, ButtonRegular as O, ButtonRegularAI as g, Caption as B, CaptionBold as N, Display as D, SmallRegular as L, SubHeading as y, TextPlaceholder as M, Tiny as k, TitleFour as F, TitleLarge as U, TitleMedium as b, TitleRegular as w, TitleSmall as V, TitleTiny as H, TitleXlarge as G } from "./components/TypographyStyle.js";
3
+ import { BASE_COLORS as p, COLORS as f, DEFAULT_THEME as m, FONTS as l } from "./constants/Theme.js";
4
+ import { ComponentZindex as i } from "./constants/zindex.js";
5
+ import { AiBodyCaption as s, AiBodyTiny as d, BodyCaption as u, BodyLarge as T, BodyPrimary as C, BodyPrimaryLink as S, BodyRegular as c, BodySecondary as A, BodySecondaryLink as E, BodySmall as I, BodyTiny as P, BodyTinySemiBold as _, ButtonLarge as R, ButtonLargeAI as O, ButtonRegular as h, ButtonRegularAI as g, Caption as B, CaptionBold as N, Display as L, SmallRegular as D, SubHeading as M, TextPlaceholder as y, Tiny as k, TitleFour as F, TitleLarge as U, TitleMedium as b, TitleRegular as w, TitleSmall as V, TitleTiny as H, TitleXlarge as G } from "./components/TypographyStyle.js";
6
6
  import { SearchFilter as W } from "./components/SearchFilter/index.js";
7
7
  import { ResizableImage as K } from "./components/resizeImage/index.js";
8
8
  import { validateURL as X } from "./utils/validator.js";
9
- import { CustomPortal as j } from "./components/input-with-vars/customPortal.js";
9
+ import { CustomPortal as Z } from "./components/input-with-vars/customPortal.js";
10
10
  import { MultilevelDropdownPopover as q } from "./components/dropdown/MultilevelDropdownPopover/index.js";
11
11
  import { UnsatisfactoryResponseList as $ } from "./components/unsatisfactory-response-list/UnsatisfactoryResponseList.js";
12
12
  import { UnsatisfactoryCountIntentWiseModal as ro } from "./components/unsatisfactory-response-list/UnsatisfactoryCountIntentWiseModal.js";
13
13
  import { CustomDataCategories as to, CustomDataType as ao } from "./components/data-source-panel/model.js";
14
- import { default as po } from "./assets/icons/actionButton.svg.js";
14
+ import { default as fo } from "./assets/icons/actionButton.svg.js";
15
15
  import { default as lo } from "./components/adbanner/AdBanner.js";
16
- import { default as no } from "./assets/icons/aiContentIcon.svg.js";
16
+ import { default as io } from "./assets/icons/aiContentIcon.svg.js";
17
17
  import { default as so } from "./assets/icons/AiEdit.svg.js";
18
18
  import { default as To } from "./assets/icons/Ai_event_generating.svg.js";
19
- import { default as Ao } from "./assets/icons/alarm.svg.js";
20
- import { default as So } from "./assets/icons/alert.svg.js";
19
+ import { default as So } from "./assets/icons/alarm.svg.js";
20
+ import { default as Ao } from "./assets/icons/alert.svg.js";
21
21
  import { default as Io } from "./assets/icons/alert_triangle.svg.js";
22
- import { default as Ro } from "./assets/icons/arrow_back.svg.js";
23
- import { default as ho } from "./assets/icons/arrow_down.svg.js";
22
+ import { default as _o } from "./assets/icons/arrow_back.svg.js";
23
+ import { default as Oo } from "./assets/icons/arrow_down.svg.js";
24
24
  import { default as go } from "./assets/icons/arrow_left.svg.js";
25
25
  import { default as No } from "./assets/icons/arrow_up.svg.js";
26
- import { default as Lo } from "./assets/icons/back_icon.svg.js";
27
- import { default as Mo } from "./assets/icons/bik_ai_stars_icon.svg.js";
26
+ import { default as Do } from "./assets/icons/back_icon.svg.js";
27
+ import { default as yo } from "./assets/icons/bik_ai_stars_icon.svg.js";
28
28
  import { default as Fo } from "./assets/icons/bik_livechat.svg.js";
29
29
  import { default as bo } from "./assets/icons/Bik_logo.svg.js";
30
30
  import { default as Vo } from "./assets/icons/bold.svg.js";
@@ -32,26 +32,26 @@ import { default as Go } from "./assets/icons/box.svg.js";
32
32
  import { default as Wo } from "./assets/icons/box_round.svg.js";
33
33
  import { default as Ko } from "./assets/icons/box_search.svg.js";
34
34
  import { default as Xo } from "./assets/icons/boxV2.svg.js";
35
- import { default as jo } from "./assets/icons/brand_home.svg.js";
35
+ import { default as Zo } from "./assets/icons/brand_home.svg.js";
36
36
  import { default as qo } from "./assets/icons/broken_media_image.svg.js";
37
37
  import { default as $o } from "./assets/icons/calendar.svg.js";
38
38
  import { default as rr } from "./assets/icons/card_footer_arraw.svg.js";
39
39
  import { default as tr } from "./assets/icons/ChartBar.svg.js";
40
- import { default as fr } from "./assets/icons/ChartPie.svg.js";
40
+ import { default as pr } from "./assets/icons/ChartPie.svg.js";
41
41
  import { default as mr } from "./assets/icons/chat.svg.js";
42
42
  import { default as xr } from "./assets/icons/chat-channel.svg.js";
43
- import { default as ir } from "./assets/icons/check.svg.js";
43
+ import { default as nr } from "./assets/icons/check.svg.js";
44
44
  import { default as dr } from "./assets/icons/checkCircle.svg.js";
45
45
  import { default as Tr } from "./assets/icons/CheckSquareOffset.svg.js";
46
- import { default as Ar } from "./assets/icons/checklistIcon.svg.js";
47
- import { default as Sr } from "./assets/icons/chevronDown.svg.js";
46
+ import { default as Sr } from "./assets/icons/checklistIcon.svg.js";
47
+ import { default as Ar } from "./assets/icons/chevronDown.svg.js";
48
48
  import { default as Ir } from "./assets/icons/chevronDownOutline.svg.js";
49
- import { default as Rr } from "./assets/icons/chevronLeft.svg.js";
50
- import { default as hr } from "./assets/icons/chevronLeft2.svg.js";
49
+ import { default as _r } from "./assets/icons/chevronLeft.svg.js";
50
+ import { default as Or } from "./assets/icons/chevronLeft2.svg.js";
51
51
  import { default as gr } from "./assets/icons/chevronRight.svg.js";
52
52
  import { default as Nr } from "./assets/icons/chevronRight2.svg.js";
53
- import { default as Lr } from "./assets/icons/chevronRightAlt.svg.js";
54
- import { default as Mr } from "./assets/icons/chevronUpOutline.svg.js";
53
+ import { default as Dr } from "./assets/icons/chevronRightAlt.svg.js";
54
+ import { default as yr } from "./assets/icons/chevronUpOutline.svg.js";
55
55
  import { default as Fr } from "./assets/icons/circular-cross-icon.svg.js";
56
56
  import { default as br } from "./assets/icons/click.svg.js";
57
57
  import { default as Vr } from "./assets/icons/clock.svg.js";
@@ -59,26 +59,26 @@ import { default as Gr } from "./assets/icons/copy-code-icon.svg.js";
59
59
  import { default as Wr } from "./assets/icons/cross.svg.js";
60
60
  import { default as Kr } from "./assets/icons/cubeIcon.svg.js";
61
61
  import { default as Xr } from "./assets/icons/cursor.svg.js";
62
- import { default as jr } from "./assets/icons/CustomiseIcon.js";
62
+ import { default as Zr } from "./assets/icons/CustomiseIcon.js";
63
63
  import { default as qr } from "./assets/icons/delete.svg.js";
64
64
  import { default as $r } from "./assets/icons/desktop_custom.svg.js";
65
65
  import { default as re } from "./assets/icons/DocsIcon.js";
66
66
  import { default as te } from "./assets/icons/document_pdf.svg.js";
67
- import { default as fe } from "./assets/icons/DoubtIcon.js";
67
+ import { default as pe } from "./assets/icons/DoubtIcon.js";
68
68
  import { default as me } from "./assets/icons/drag_handle.svg.js";
69
69
  import { default as xe } from "./assets/icons/edit.svg.js";
70
- import { default as ie } from "./assets/icons/EditLabel.js";
70
+ import { default as ne } from "./assets/icons/EditLabel.js";
71
71
  import { default as de } from "./assets/icons/email-channel.svg.js";
72
72
  import { default as Te } from "./assets/icons/emoji.svg.js";
73
- import { default as Ae } from "./assets/icons/EnableIcon.js";
74
- import { default as Se } from "./assets/icons/errorIcon.svg.js";
73
+ import { default as Se } from "./assets/icons/EnableIcon.js";
74
+ import { default as Ae } from "./assets/icons/errorIcon.svg.js";
75
75
  import { default as Ie } from "./assets/icons/errorInfo.svg.js";
76
- import { default as Re } from "./assets/icons/expressionless_emoji.svg.js";
77
- import { default as he } from "./assets/icons/facebook_channel.svg.js";
76
+ import { default as _e } from "./assets/icons/expressionless_emoji.svg.js";
77
+ import { default as Oe } from "./assets/icons/facebook_channel.svg.js";
78
78
  import { default as ge } from "./components/feature-announcements/FeatureAnnouncementProvider.js";
79
79
  import { default as Ne } from "./assets/icons/file.svg.js";
80
- import { default as Le } from "./assets/icons/filePdf.svg.js";
81
- import { default as Me } from "./assets/icons/gift_icon.svg.js";
80
+ import { default as De } from "./assets/icons/filePdf.svg.js";
81
+ import { default as ye } from "./assets/icons/gift_icon.svg.js";
82
82
  import { default as Fe } from "./assets/icons/gmail.svg.js";
83
83
  import { default as be } from "./assets/icons/GoLiveIcon.js";
84
84
  import { default as Ve } from "./assets/icons/graph.svg.js";
@@ -86,26 +86,26 @@ import { default as Ge } from "./assets/icons/grid.svg.js";
86
86
  import { default as We } from "./assets/icons/halfRectangle.svg.js";
87
87
  import { default as Ke } from "./assets/icons/HeadsetIcon.js";
88
88
  import { default as Xe } from "./assets/icons/help.svg.js";
89
- import { default as je } from "./assets/icons/HelpIcon.svg.js";
89
+ import { default as Ze } from "./assets/icons/HelpIcon.svg.js";
90
90
  import { default as qe } from "./assets/icons/home.svg.js";
91
91
  import { default as $e } from "./assets/icons/horizontal_dots.svg.js";
92
92
  import { default as rt } from "./assets/icons/hover_home.svg.js";
93
93
  import { default as tt } from "./assets/icons/Idea.svg.js";
94
- import { default as ft } from "./assets/icons/image.svg.js";
94
+ import { default as pt } from "./assets/icons/image.svg.js";
95
95
  import { default as mt } from "./assets/icons/info.svg.js";
96
96
  import { default as xt } from "./assets/icons/instagram.svg.js";
97
- import { default as it } from "./assets/icons/instagram-channel.svg.js";
97
+ import { default as nt } from "./assets/icons/instagram-channel.svg.js";
98
98
  import { default as dt } from "./assets/icons/italic.svg.js";
99
99
  import { default as Tt } from "./assets/icons/list.svg.js";
100
- import { default as At } from "./assets/icons/ListChecksIcon.js";
101
- import { default as St } from "./assets/icons/locked.svg.js";
100
+ import { default as St } from "./assets/icons/ListChecksIcon.js";
101
+ import { default as At } from "./assets/icons/locked.svg.js";
102
102
  import { default as It } from "./assets/icons/log_out.svg.js";
103
- import { default as Rt } from "./assets/icons/lto_icon.svg.js";
104
- import { default as ht } from "./components/feature-announcements/MajorUpdatePopup.js";
103
+ import { default as _t } from "./assets/icons/lto_icon.svg.js";
104
+ import { default as Ot } from "./components/feature-announcements/MajorUpdatePopup.js";
105
105
  import { default as gt } from "./components/markdown/MarkdownRender.js";
106
106
  import { default as Nt } from "./assets/icons/MarketingIcon.js";
107
- import { default as Lt } from "./assets/icons/maximize.svg.js";
108
- import { default as Mt } from "./components/feature-announcements/MinorUpdatePopup.js";
107
+ import { default as Dt } from "./assets/icons/maximize.svg.js";
108
+ import { default as yt } from "./components/feature-announcements/MinorUpdatePopup.js";
109
109
  import { default as Ft } from "./assets/icons/mobile_custom.svg.js";
110
110
  import { default as bt } from "./assets/icons/more_vertical.svg.js";
111
111
  import { default as Vt } from "./assets/icons/NotesIcon.js";
@@ -113,26 +113,26 @@ import { default as Gt } from "./assets/icons/NudgesIcon.js";
113
113
  import { default as Wt } from "./assets/icons/OnboardingLogo.js";
114
114
  import { default as Kt } from "./assets/icons/openai.svg.js";
115
115
  import { default as Xt } from "./assets/icons/OrderTrackingIcon.js";
116
- import { default as jt } from "./assets/icons/paperclip.svg.js";
116
+ import { default as Zt } from "./assets/icons/paperclip.svg.js";
117
117
  import { default as qt } from "./assets/icons/percentage_icon.svg.js";
118
118
  import { default as $t } from "./assets/icons/phone.svg.js";
119
119
  import { default as ra } from "./assets/icons/phone_round.svg.js";
120
120
  import { default as ta } from "./assets/icons/play.svg.js";
121
- import { default as fa } from "./assets/icons/plus.svg.js";
121
+ import { default as pa } from "./assets/icons/plus.svg.js";
122
122
  import { default as ma } from "./assets/icons/PlusIcon.js";
123
123
  import { default as xa } from "./assets/icons/pointer.svg.js";
124
- import { default as ia } from "./assets/icons/profile.svg.js";
124
+ import { default as na } from "./assets/icons/profile.svg.js";
125
125
  import { default as da } from "./components/ProgressChecklist/ProgressChecklist.js";
126
126
  import { default as Ta } from "./assets/icons/qrb.svg.js";
127
- import { default as Aa } from "./assets/icons/question-mark.svg.js";
128
- import { default as Sa } from "./assets/icons/quotes.svg.js";
127
+ import { default as Sa } from "./assets/icons/question-mark.svg.js";
128
+ import { default as Aa } from "./assets/icons/quotes.svg.js";
129
129
  import { default as Ia } from "./assets/icons/RCS_PDF.svg.js";
130
- import { default as Ra } from "./assets/icons/redirect.svg.js";
131
- import { default as ha } from "./assets/icons/RedirectToNew.svg.js";
130
+ import { default as _a } from "./assets/icons/redirect.svg.js";
131
+ import { default as Oa } from "./assets/icons/RedirectToNew.svg.js";
132
132
  import { default as ga } from "./assets/icons/refresh.svg.js";
133
133
  import { default as Na } from "./assets/icons/retry.svg.js";
134
- import { default as La } from "./assets/icons/retryIcon.svg.js";
135
- import { default as Ma } from "./assets/icons/sad_emoji.svg.js";
134
+ import { default as Da } from "./assets/icons/retryIcon.svg.js";
135
+ import { default as ya } from "./assets/icons/sad_emoji.svg.js";
136
136
  import { default as Fa } from "./assets/icons/search.svg.js";
137
137
  import { default as ba } from "./assets/icons/searchIcon.svg.js";
138
138
  import { default as Va } from "./assets/icons/send.svg.js";
@@ -140,60 +140,60 @@ import { default as Ga } from "./assets/icons/send_template.svg.js";
140
140
  import { default as Wa } from "./assets/icons/shipping_icon.svg.js";
141
141
  import { default as Ka } from "./assets/icons/ShoppingIcon.js";
142
142
  import { default as Xa } from "./assets/icons/similar.svg.js";
143
- import { default as ja } from "./assets/icons/smile_emoji.svg.js";
143
+ import { default as Za } from "./assets/icons/smile_emoji.svg.js";
144
144
  import { default as qa } from "./assets/icons/smiley_emoji.svg.js";
145
145
  import { default as $a } from "./assets/icons/sparkle.svg.js";
146
- import { default as rf } from "./assets/icons/speedometer.svg.js";
147
- import { default as tf } from "./assets/icons/starEmpty.svg.js";
148
- import { default as ff } from "./assets/icons/starFilled.svg.js";
149
- import { default as mf } from "./assets/icons/starFilledV2.svg.js";
150
- import { default as xf } from "./assets/icons/state_icon.svg.js";
151
- import { default as sf } from "./assets/icons/StepsIcon.js";
152
- import { default as uf } from "./assets/icons/StoreIcon.js";
153
- import { default as cf } from "./assets/icons/strikeThrough.svg.js";
154
- import { default as Cf } from "./assets/icons/sub_category.svg.js";
155
- import { default as Ef } from "./assets/icons/successIcon.svg.js";
156
- import { default as Pf } from "./assets/icons/SupportIcon.js";
157
- import { default as _f } from "./assets/icons/sync.svg.js";
158
- import { default as Of } from "./assets/icons/task.svg.js";
159
- import { default as Bf } from "./assets/icons/text_t9.svg.js";
160
- import { default as Df } from "./assets/icons/ThreeColumnsIcon.js";
161
- import { default as yf } from "./assets/icons/tick.svg.js";
162
- import { default as kf } from "./assets/icons/tick_double.svg.js";
163
- import { default as Uf } from "./assets/icons/TrainingIcon.js";
164
- import { default as wf } from "./assets/icons/triangle_error.svg.js";
165
- import { default as Hf } from "./assets/icons/undo.svg.js";
166
- import { default as vf } from "./assets/icons/union.svg.js";
167
- import { default as Yf } from "./assets/icons/upload.svg.js";
168
- import { default as Qf } from "./assets/icons/user_icon.svg.js";
169
- import { default as zf } from "./assets/icons/vertical_dots.svg.js";
170
- import { default as Zf } from "./components/vertical-full-screen-modal/component.js";
171
- import { default as Jf } from "./assets/icons/video_camcorder.svg.js";
172
- import { default as op } from "./assets/icons/videoRecorder.svg.js";
173
- import { default as ep } from "./assets/icons/warning.svg.js";
174
- import { default as ap } from "./assets/icons/warningIcon.svg.js";
175
- import { default as pp } from "./assets/icons/website.svg.js";
176
- import { default as lp } from "./assets/icons/whatsNew.svg.js";
177
- import { default as np } from "./assets/icons/whatsapp-channel.svg.js";
178
- import { default as sp } from "./assets/icons/whatsapp_color.svg.js";
179
- import { default as up } from "./assets/icons/WhiteStarFilled.svg.js";
180
- import { ACTIONS_TYPES as cp, CUSTOM_URL_NAME as Ap, HEADER_TYPES as Cp, STATIC_URL_CTA_OPTION as Sp, TEMPLATE_EDITOR as Ep, TEMPLATE_STATUS as Ip, UNSUBSCRIBE_URL_OPTION as Pp } from "./components/template-preview/models/TemplateMeta.js";
181
- import { AD_STRING_OPERATORS as _p, ANY_AD_OPERATORS as hp, ANY_IG_OPERATORS as Op, BOOLEAN_OPERATORS as gp, DATE_OPERATORS as Bp, EVENT_VALUES as Np, EXACTLY_OPERATORS as Dp, FREQUENCY_OPERATORS as Lp, ICE_BREAKER_OPERATORS as yp, IG_STRING_OPERATORS as Mp, INTEGER_OPERATORS as kp, MAIL_SUBJECT_OPERATORS as Fp, REACTION_OPERATORS as Up, SPECIFIC_IG_OPERATORS as bp, STRING_OPERATORS as wp, STRING_RESTRICTED_OPERATORS as Vp, STRING_RESTRICTED_OPERATORS_2 as Hp, STRING_RESTRICTED_OPERATORS_3 as Gp } from "./components/QueryBuilder/types/QueryBuilderOperator.type.js";
182
- import { AGENT_CHAR_LIMITS as Wp } from "./components/agent-builder/constants/charLimits.js";
183
- import { AIActionVariant as Kp, AIEditorActionTypes as Qp, CustomRightBorder as Xp, EditorActionTypes as zp, WhatsAppTextEditorHeader as jp } from "./components/WhatsAppTextEditor/WhatsAppTextEditorHeader.js";
184
- import { AIChat as qp } from "./components/bik-chatbot/components/AIChat.js";
185
- import { AIProvider as $p, useAIContext as om } from "./components/bik-chatbot/contexts/AIContext.js";
146
+ import { default as rp } from "./assets/icons/speedometer.svg.js";
147
+ import { default as tp } from "./assets/icons/starEmpty.svg.js";
148
+ import { default as pp } from "./assets/icons/starFilled.svg.js";
149
+ import { default as mp } from "./assets/icons/starFilledV2.svg.js";
150
+ import { default as xp } from "./assets/icons/state_icon.svg.js";
151
+ import { default as np } from "./assets/icons/StepsIcon.js";
152
+ import { default as dp } from "./assets/icons/StoreIcon.js";
153
+ import { default as Tp } from "./assets/icons/strikeThrough.svg.js";
154
+ import { default as Sp } from "./assets/icons/sub_category.svg.js";
155
+ import { default as Ap } from "./assets/icons/successIcon.svg.js";
156
+ import { default as Ip } from "./assets/icons/SupportIcon.js";
157
+ import { default as _p } from "./assets/icons/sync.svg.js";
158
+ import { default as Op } from "./assets/icons/task.svg.js";
159
+ import { default as gp } from "./assets/icons/text_t9.svg.js";
160
+ import { default as Np } from "./assets/icons/ThreeColumnsIcon.js";
161
+ import { default as Dp } from "./assets/icons/tick.svg.js";
162
+ import { default as yp } from "./assets/icons/tick_double.svg.js";
163
+ import { default as Fp } from "./assets/icons/TrainingIcon.js";
164
+ import { default as bp } from "./assets/icons/triangle_error.svg.js";
165
+ import { default as Vp } from "./assets/icons/undo.svg.js";
166
+ import { default as Gp } from "./assets/icons/union.svg.js";
167
+ import { default as Wp } from "./assets/icons/upload.svg.js";
168
+ import { default as Kp } from "./assets/icons/user_icon.svg.js";
169
+ import { default as Xp } from "./assets/icons/vertical_dots.svg.js";
170
+ import { default as Zp } from "./components/vertical-full-screen-modal/component.js";
171
+ import { default as qp } from "./assets/icons/video_camcorder.svg.js";
172
+ import { default as $p } from "./assets/icons/videoRecorder.svg.js";
173
+ import { default as rf } from "./assets/icons/warning.svg.js";
174
+ import { default as tf } from "./assets/icons/warningIcon.svg.js";
175
+ import { default as pf } from "./assets/icons/website.svg.js";
176
+ import { default as mf } from "./assets/icons/whatsNew.svg.js";
177
+ import { default as xf } from "./assets/icons/whatsapp-channel.svg.js";
178
+ import { default as sf } from "./assets/icons/whatsapp_color.svg.js";
179
+ import { default as uf } from "./assets/icons/WhiteStarFilled.svg.js";
180
+ import { ACTIONS_TYPES as Cf, CUSTOM_URL_NAME as Sf, HEADER_TYPES as cf, STATIC_URL_CTA_OPTION as Af, TEMPLATE_EDITOR as Ef, TEMPLATE_STATUS as If, UNSUBSCRIBE_URL_OPTION as Pf } from "./components/template-preview/models/TemplateMeta.js";
181
+ import { AD_STRING_OPERATORS as Rf, ANY_AD_OPERATORS as Of, ANY_IG_OPERATORS as hf, BOOLEAN_OPERATORS as gf, DATE_OPERATORS as Bf, EVENT_VALUES as Nf, EXACTLY_OPERATORS as Lf, FREQUENCY_OPERATORS as Df, ICE_BREAKER_OPERATORS as Mf, IG_STRING_OPERATORS as yf, INTEGER_OPERATORS as kf, MAIL_SUBJECT_OPERATORS as Ff, REACTION_OPERATORS as Uf, SPECIFIC_IG_OPERATORS as bf, STRING_OPERATORS as wf, STRING_RESTRICTED_OPERATORS as Vf, STRING_RESTRICTED_OPERATORS_2 as Hf, STRING_RESTRICTED_OPERATORS_3 as Gf } from "./components/QueryBuilder/types/QueryBuilderOperator.type.js";
182
+ import { AGENT_CHAR_LIMITS as Wf } from "./components/agent-builder/constants/charLimits.js";
183
+ import { AIActionVariant as Kf, AIEditorActionTypes as Qf, CustomRightBorder as Xf, EditorActionTypes as zf, WhatsAppTextEditorHeader as Zf } from "./components/WhatsAppTextEditor/WhatsAppTextEditorHeader.js";
184
+ import { AIChat as qf } from "./components/bik-chatbot/components/AIChat.js";
185
+ import { AIProvider as $f, useAIContext as om } from "./components/bik-chatbot/contexts/AIContext.js";
186
186
  import { AI_TAG_CHANGE_RATIO_THRESHOLD as em, computeAiTagOnAccept as tm, levenshteinDistance as am } from "./components/WhatsAppTextEditor/ai/aiTag.js";
187
- import { ALERT_TYPES as pm, COLOR_CONFIG_MAP as mm, CONTENT_POSITION as lm } from "./components/alerts/AlertHelper.js";
188
- import { ANIMATION_TIMING as nm } from "./components/feature-announcements/constants/animations.js";
187
+ import { ALERT_TYPES as fm, COLOR_CONFIG_MAP as mm, CONTENT_POSITION as lm } from "./components/alerts/AlertHelper.js";
188
+ import { ANIMATION_TIMING as im } from "./components/feature-announcements/constants/animations.js";
189
189
  import { APIError as sm } from "./utils/logging/ErrorConstructor/ApiError.js";
190
- import { AVATAR_BACKGROUND as um, AVATAR_SIZE_MAP as Tm, AVATAR_TYPES as cm, SIZE as Am } from "./components/avatar/AvatarHelper.js";
191
- import { AVATAR_SIZE_VS_ICON_SIZE_MAP as Sm, Avatar as Em, BACKGROUND_VS_TEXT_COLOR_MAP as Im, MESSAGE_CHANNELS as Pm } from "./components/avatar/Avatar.js";
192
- import { AccessTokenTroubleshootDialog as _m } from "./components/access-token-troubleshoot-dialog/AccessTokenTroubleshootDialog.js";
193
- import { ActionButtons as Om } from "./components/action-button/ActionButtons.js";
190
+ import { AVATAR_BACKGROUND as um, AVATAR_SIZE_MAP as Tm, AVATAR_TYPES as Cm, SIZE as Sm } from "./components/avatar/AvatarHelper.js";
191
+ import { AVATAR_SIZE_VS_ICON_SIZE_MAP as Am, Avatar as Em, BACKGROUND_VS_TEXT_COLOR_MAP as Im, MESSAGE_CHANNELS as Pm } from "./components/avatar/Avatar.js";
192
+ import { AccessTokenTroubleshootDialog as Rm } from "./components/access-token-troubleshoot-dialog/AccessTokenTroubleshootDialog.js";
193
+ import { ActionButtons as hm } from "./components/action-button/ActionButtons.js";
194
194
  import { ActivateBikAi as Bm } from "./components/ai-modals/ActivateBikAI.js";
195
- import { ActiveChecklistIcon as Dm } from "./assets/icons/ActiveChecklistIcon.js";
196
- import { AddDataPill as ym } from "./components/add-variableV2/AddDataPill.js";
195
+ import { ActiveChecklistIcon as Lm } from "./assets/icons/ActiveChecklistIcon.js";
196
+ import { AddDataPill as Mm } from "./components/add-variableV2/AddDataPill.js";
197
197
  import { AddVariableV2 as km } from "./components/add-variableV2/AddVariableV2.js";
198
198
  import { AddVariableV2SideModal as Um } from "./components/add-variableV2/AddVariableV2SideModal.js";
199
199
  import { AgentBuilder as wm } from "./components/agent-builder/AgentBuilder.js";
@@ -202,692 +202,720 @@ import { AiCreditsExhausted as vm } from "./components/ai-modals/AiCreditsExhaus
202
202
  import { AiCreditsLow as Ym } from "./components/ai-modals/AiCreditsLow.js";
203
203
  import { AiSyncProgress as Qm } from "./components/ai-modals/AiSyncProgress.js";
204
204
  import { Alert as zm } from "./components/alerts/Alert.js";
205
- import { AnalyticsCard as Zm } from "./components/analytics-card/AnalyticsCard.js";
205
+ import { AnalyticsCard as jm } from "./components/analytics-card/AnalyticsCard.js";
206
206
  import { AnalyticsChip as Jm } from "./components/analytics-chips-and-dropdowns/AnalyticsChip.js";
207
207
  import { AnalyticsContainer as ol, CardDataContainer as rl } from "./components/analytics-card/AnalyticsCard.styled.js";
208
- import { AnalyticsDropdown as tl, EachItem as al, formatDate as fl } from "./components/analytics-chips-and-dropdowns/AnalyticsDropdown.js";
209
- import { AnalyticsItem as ml, QualityTimelineChart as ll, RightPanelTemplateAnalytics as xl, TemplateAnalyticsComponent as nl } from "./components/template-context-mapper/modalElements/TemplateAnalyticsComponent.js";
208
+ import { AnalyticsDropdown as tl, EachItem as al, formatDate as pl } from "./components/analytics-chips-and-dropdowns/AnalyticsDropdown.js";
209
+ import { AnalyticsItem as ml, QualityTimelineChart as ll, RightPanelTemplateAnalytics as xl, TemplateAnalyticsComponent as il } from "./components/template-context-mapper/modalElements/TemplateAnalyticsComponent.js";
210
210
  import { AnalyticsMetric as sl } from "./components/analytics-chips-and-dropdowns/AnalyticsMetric.js";
211
211
  import { AnalyticsMultiChip as ul } from "./components/analytics-chips-and-dropdowns/AnalyticsMultiChip.js";
212
- import { AnalyticsTrend as cl } from "./components/analytics-chips-and-dropdowns/AnalyticsTrend.js";
213
- import { BIKChatbot as Cl } from "./components/bik-chatbot/components/BIKChatbot.js";
214
- import { BOLD_TEXT_PATTERN as El, CODE_TEXT_PATTERN as Il, EMAIL_PATTERN as Pl, ITALIC_TEXT_PATTERN as Rl, MARKDOWN_LINK_PATTERN as _l, RAW_PHONE_CANDIDATE_PATTERN as hl, URL_PATTERN as Ol, filterPhoneCandidates as gl, isCompleteFormatting as Bl, isCompleteMarkdownLink as Nl, isCompleteUrl as Dl, stripMarkdownFormatting as Ll } from "./components/markdown/utils.js";
215
- import { BUTTON_TYPE as Ml, POD as kl, TEMPLATE_QUALITY as Fl } from "./components/template-preview/models/WhatsAppTemplate.js";
216
- import { BackgroundImageContainer as bl, MainCardContainer as wl, MainContainer as Vl, WhatsNewIconContainer as Hl, WhatsNewWrapper as Gl } from "./components/whats-new/WhatsNew.styles.js";
217
- import { BannerThirdPartyIcon as Wl, BannerType as Yl, getUrlForBannerThirdPartyIcon as Kl } from "./components/adbanner/model.js";
218
- import { BaseQueryBuilderNode as Xl } from "./components/QueryBuilder/components/QueryBuilderNode/Base/BaseQueryBuilderNode.js";
219
- import { BaseWhatsappContentLangHelper as jl } from "./helpers/BaseWhatsappContentLang.helper.js";
220
- import { BikAccordion as ql } from "./components/accordion/Accordion.js";
221
- import { BikEditor as $l } from "./editor/BikEditor.js";
222
- import { BikEditorToolbar as rx } from "./editor/toolbar/BikEditorToolbar.js";
223
- import { default as tx } from "./components/BikGiftedChat/GiftedChat/GiftedChat.js";
224
- import { BikHeader as fx } from "./components/bik-layout/BikHeader.js";
225
- import { BikImageCropper as mx } from "./components/image-cropper/BikImageCropper.js";
226
- import { BikImagePipeline as xx } from "./components/image-cropper/BikImagePipeline/BikImagePipeline.js";
227
- import { BikLayout as ix } from "./components/bik-layout/BikLayout.js";
228
- import { BikProfile as dx } from "./components/bik-layout/BikProfile.js";
229
- import { BikShimmer as Tx } from "./components/shimmer/ShimmerComponent/BikShimmer.js";
212
+ import { AnalyticsTrend as Cl } from "./components/analytics-chips-and-dropdowns/AnalyticsTrend.js";
213
+ import { BIKChatbot as cl } from "./components/bik-chatbot/components/BIKChatbot.js";
214
+ import { BIKCopilot as El } from "./components/bik-copilot/BIKCopilot.js";
215
+ import { BOLD_TEXT_PATTERN as Pl, CODE_TEXT_PATTERN as _l, EMAIL_PATTERN as Rl, ITALIC_TEXT_PATTERN as Ol, MARKDOWN_LINK_PATTERN as hl, RAW_PHONE_CANDIDATE_PATTERN as gl, URL_PATTERN as Bl, filterPhoneCandidates as Nl, isCompleteFormatting as Ll, isCompleteMarkdownLink as Dl, isCompleteUrl as Ml, stripMarkdownFormatting as yl } from "./components/markdown/utils.js";
216
+ import { BUTTON_TYPE as Fl, POD as Ul, TEMPLATE_QUALITY as bl } from "./components/template-preview/models/WhatsAppTemplate.js";
217
+ import { BackgroundImageContainer as Vl, MainCardContainer as Hl, MainContainer as Gl, WhatsNewIconContainer as vl, WhatsNewWrapper as Wl } from "./components/whats-new/WhatsNew.styles.js";
218
+ import { BannerThirdPartyIcon as Kl, BannerType as Ql, getUrlForBannerThirdPartyIcon as Xl } from "./components/adbanner/model.js";
219
+ import { BaseQueryBuilderNode as Zl } from "./components/QueryBuilder/components/QueryBuilderNode/Base/BaseQueryBuilderNode.js";
220
+ import { BaseWhatsappContentLangHelper as ql } from "./helpers/BaseWhatsappContentLang.helper.js";
221
+ import { BikAccordion as $l } from "./components/accordion/Accordion.js";
222
+ import { BikEditor as rx } from "./editor/BikEditor.js";
223
+ import { BikEditorToolbar as tx } from "./editor/toolbar/BikEditorToolbar.js";
224
+ import { default as px } from "./components/BikGiftedChat/GiftedChat/GiftedChat.js";
225
+ import { BikHeader as mx } from "./components/bik-layout/BikHeader.js";
226
+ import { BikImageCropper as xx } from "./components/image-cropper/BikImageCropper.js";
227
+ import { BikImagePipeline as nx } from "./components/image-cropper/BikImagePipeline/BikImagePipeline.js";
228
+ import { BikLayout as dx } from "./components/bik-layout/BikLayout.js";
229
+ import { BikProfile as Tx } from "./components/bik-layout/BikProfile.js";
230
+ import { BikShimmer as Sx } from "./components/shimmer/ShimmerComponent/BikShimmer.js";
230
231
  import { BikSidebar as Ax } from "./components/bik-layout/BikSidebar.js";
231
- import { BikSidebarV2 as Sx } from "./components/bik-layout/BikSidebarV2/BikSidebarV2.js";
232
- import { BikSlider as Ix } from "./components/slider/slider.js";
233
- import { BottomWrapper as Rx, HeaderWrapper as _x, SubscriptionPlanSelector as hx, defaultTabs as Ox } from "./components/plans/SubscriptionPlanSelector.js";
234
- import { BroadcastFlowError as Bx } from "./utils/logging/ErrorConstructor/BroadcastFlowError.js";
235
- import { Bubble as Dx } from "./components/BikGiftedChat/Bubble/Bubble.js";
236
- import { Button as yx } from "./components/button/Button.js";
237
- import { ButtonActions as kx, ButtonTypes as Fx, StateComponent as Ux, StateInterface as bx } from "./components/states/StateComponent.js";
238
- import { ButtonGroup as Vx } from "./components/buttonGroup/ButtonGroup.js";
239
- import { CHANNEL_TYPE as Gx } from "./components/template-preview/models/Channels.js";
240
- import { CHAT_MESSAGE_ROLES as Wx, DEFAULT_CONVERSATION_ID as Yx, createSessionRecord as Kx } from "./components/bik-chatbot/types/chat.js";
241
- import { COUPON_EXPIRATION as Xx, DISCOUNT_APPLIES_TO as zx, DISCOUNT_TARGET_SELECTION as jx, DISCOUNT_TARGET_TYPES as Zx, DISCOUNT_TYPES as qx, DISCOUNT_VALUE_TYPES as Jx, MIN_PURCHASE_REQUIREMENT as $x, OFFER_APPLIES_TO as on, initialDynamicCouponErrorState as rn, initialStaticCouponErrorState as en } from "./components/discount-modal/type.js";
242
- import { CURTAIN_COLOR_CONFIG_MAP as an, CURTAIN_MODE as fn, CURTAIN_TYPES as pn } from "./components/curtain/CurtainHelper.js";
243
- import { Card as ln, PieChartAnalytics as xn } from "./components/analytics-chips-and-dropdowns/chart/Pie/PieChartAnalytics.js";
244
- import { CardSelectionModal as sn } from "./components/card-selection-modal/CardSelectionModal.js";
245
- import { CardSelector as un } from "./components/card-selector/CardSelector.js";
246
- import { CardSelectorGroup as cn } from "./components/card-selector/CardSelectorGroup.js";
247
- import { Carousel as Cn } from "./components/carousel/carousel.js";
248
- import { CarouselPreview as En } from "./components/carousel-preview/CarouselPreview.js";
249
- import { CarouselSecondary as Pn } from "./components/carousel-secondary/CarouselSecondary.js";
250
- import { CarouselVersion as _n } from "./components/carousel-secondary/model.js";
251
- import { CheckBox as On } from "./components/checkBox/CheckBox.js";
252
- import { CheckIndicatorIcon as Bn } from "./assets/icons/CheckIndicatorIcon.js";
253
- import { CheckList as Dn } from "./components/checkList/CheckList.js";
254
- import { Chip as yn } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/Chip.js";
255
- import { ChipDropdown as kn, ChipDropdownContainer as Fn } from "./components/dropdown/ChipDropdown.js";
256
- import { CodeBlock as bn } from "./components/code-block/CodeBlock.js";
257
- import { CodeLanguage as Vn } from "./components/code-block/types.js";
258
- import { CohortError as Gn } from "./utils/logging/ErrorConstructor/CohortError.js";
259
- import { ColourInput as Wn } from "./components/colourInput/ColourInput.js";
260
- import { CompletedChecklistIcon as Kn } from "./assets/icons/CompletedChecklistIcon.js";
261
- import { ConnectedAppDialog as Xn } from "./components/connected-app-dialog/ConnectedAppDialog.js";
262
- import { CountriesData as jn } from "./components/country-code-picker/CountryCodePicker.modal.js";
263
- import { CountryCodePicker as qn } from "./components/country-code-picker/CountryCodePicker.js";
264
- import { CountryPicker as $n } from "./components/country-code-picker/CountryPicker.js";
265
- import { CouponExpiration as ri } from "./components/discount-modal/CouponExpiration/CouponExpiration.js";
266
- import { CurrencySymbols as ti } from "./components/product-picker-v2/constants.js";
267
- import { Curtain as fi } from "./components/curtain/Curtain.js";
268
- import { CustomDateTime as mi } from "./components/custom-date-time/CustomDateTime.js";
269
- import { CustomError as xi } from "./utils/logging/ErrorConstructor/CustomError.js";
270
- import { DEFAULT_FORMAT_STATE as ii } from "./editor/BikEditor.types.js";
271
- import { DEFAULT_IMAGE as di, ShimmerImage as ui } from "./components/shimmer-image/ShimmerImage.js";
272
- import { DEFAULT_MAX_TOOL_CALLS as ci, DEFAULT_RESPONSE_FORMAT as Ai, RESPONSE_FORMATS as Ci } from "./components/bik-chatbot/types/ai.js";
273
- import { DROP_POSITION as Ei, DropdownToggleContainer as Ii, FAB_POSITION as Pi, FloatingActionButtonContainer as Ri, FloatingActionButtonOuterContainer as _i, MENU_ALIGNMENT as hi, StyledDropdown as Oi, TooltipStyled as gi } from "./components/floating-action-button/FloatingActionButton.styles.js";
274
- import { DashboardReviewPopUp as Ni } from "./components/dashboard-review-popup/DashboardReviewPopUp.js";
275
- import { DataSourcePanel as Li } from "./components/data-source-panel/DataSourcePanel.js";
276
- import { DateKeys as Mi, MEDIA_TYPES as ki, PostPicker as Fi, dateOptions as Ui } from "./components/postPicker/postPicker.js";
277
- import { DatePicker as wi } from "./components/datePicker/DatePicker.js";
278
- import { DatePickerWrapper as Hi } from "./components/datePicker/DatePickerWrapper.js";
279
- import { DeleteConfirmationModal as vi } from "./components/states-modal/DeleteConfirmationModal.js";
280
- import { DiscountModal as Yi } from "./components/discount-modal/DiscountModal.js";
281
- import { DotPulse as Qi } from "./components/dot-pulse/DotPulse.js";
282
- import { DropShadow as zi } from "./components/dropShadow/DropShadow.js";
283
- import { Dropdown as Zi } from "./components/dropdown/Dropdown.js";
284
- import { DropdownButton as Ji } from "./components/dropdown-button/DropdownButton.js";
285
- import { DropdownPopover as os } from "./components/dropdown/DropdownPopover/index.js";
286
- import { DualIconButton as es } from "./components/dual-icon-button/DualIconButton.js";
287
- import { DurationUnit as as } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/types.js";
288
- import { DynamicTabs as ps } from "./components/dynamic-tabs/DynamicTabs.js";
289
- import { ERROR_TYPES as ls, ERROR_TYPE_CLASS_MAP as xs, Logger as ns } from "./utils/logging/Logger.js";
290
- import { ExcelUploadError as ss } from "./utils/logging/ErrorConstructor/ExcelUploadError.js";
291
- import { FABMenu as us } from "./components/fab-menu/FABMenu.js";
292
- import { FeatureModal as cs } from "./components/bik-layout/FeatureModal.js";
293
- import { FeatureModalV2 as Cs } from "./components/bik-layout/FeatureModalV2.js";
294
- import { FileUploader as Es } from "./components/file-uploader/FileUploader.js";
295
- import { FirebaseCallError as Ps } from "./utils/logging/ErrorConstructor/FirebaseCallError.js";
296
- import { FirebaseSubscriptionError as _s } from "./utils/logging/ErrorConstructor/FirebaseSubscriptionError.js";
297
- import { FirebaseUserFetcher as Os } from "./firebase/firebaseUserFetcher.js";
298
- import { Floater as Bs } from "./components/floater/floater.js";
299
- import { FloatingActionButton as Ds } from "./components/floating-action-button/FloatingActionButton.js";
300
- import { FloatingInputDropdown as ys } from "./components/floating-input-dropdown/FloatingInputDropdown.js";
301
- import { FunnelVerticalBarGraph as ks } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarGraph/FunnelVerticalBarGraph.js";
302
- import { GRAPH_ORIENTATION as Us } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarDistributionChart.model.js";
303
- import { HEAT as ws, HEAT_COLORS as Vs, HEAT_GRADING_TYPE as Hs, HeatMap as Gs } from "./components/analytics-chips-and-dropdowns/chart/heatmap/HeatMap.js";
304
- import { HTTPMethods as Ws, HTTP_CODE as Ys, RequestExecutor as Ks, TRANSACTION_ENABLED_STORE_IDS as Qs } from "./request-executor/executor.js";
305
- import { HalfDoughnutChart as zs } from "./components/half-doughnut-chart/HalfDoughnutChart.js";
306
- import { HeatBoxStyled as Zs, HeatMapVertical as qs } from "./components/analytics-chips-and-dropdowns/chart/heatmap/HeatMapVertical.js";
307
- import { HorinzontalBar as $s } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/HorizontalBar.js";
308
- import { HorizontalGraph as rd } from "./components/analytics-chips-and-dropdowns/chart/HorizontalBarGraph/HorizontalGraph.js";
309
- import { IconButton as td } from "./components/icon-button/IconButton.js";
310
- import { ImageService as fd } from "./components/image-compress/ImageCompress.js";
311
- import { InactiveChecklistIcon as md } from "./assets/icons/InactiveChecklistIcon.js";
312
- import { Input as xd } from "./components/input/Input.js";
313
- import { InputWithVariables as id } from "./components/input-with-vars/InputWithVariables.js";
314
- import { KeywordsInput as dd } from "./components/keywords-input/KeywordsInput.js";
315
- import { SECONDARY_APP_NAME as Td, getOrInitFirebaseChatApp as cd, chatConfig as Ad, stagingConfig as Cd, rnSecondaryAuth as Sd } from "./firebase/lazyFirebaseApp.js";
316
- import { LineChart as Id } from "./components/analytics-chips-and-dropdowns/chart/LineChart/LineChart.js";
317
- import { LinearChipGroupedChart as Rd } from "./components/analytics-chips-and-dropdowns/chart/linearChipGroupedChart/LinearChipGroupedChart.js";
318
- import { ListItem as hd } from "./components/list-item/ListItem.js";
319
- import { Loader as gd, Switch as Bd, SwitchContainer as Nd, Thumb as Dd } from "./components/switch/Switch.js";
320
- import { MenuItemDropdown as yd } from "./components/dropdown/MenuItem/MenuItem.js";
321
- import { MultiLevelDropdown as kd } from "./components/multi-level-dropdown/MultiLevelDropdown.js";
322
- import { NaLinkWrapper as Ud, NavigationHyperlink as bd } from "./components/navigation-hyperlink/NavigationHyperlink.js";
323
- import { NewSubscriptionPlan as Vd } from "./components/plans/NewSubscriptionPlan.js";
324
- import { OUT_OF_STOCK_ACTION as Gd, ScreenName as vd } from "./components/product-picker-v2/type.js";
325
- import { OpenedDropdown as Yd } from "./components/dropdown/OpenedDropdown/components/OpennedDropdown.js";
326
- import { POPUP_DIMENSIONS as Qd } from "./components/feature-announcements/constants/dimensions.js";
327
- import { Pagination as zd } from "./components/pagination/Pagination.js";
328
- import { PickerType as Zd } from "./components/variable-picker-v3/model.js";
329
- import { PieChart as Jd } from "./components/analytics-chips-and-dropdowns/chart/Pie/PieChart.js";
330
- import { PostLiveChecklist as ou } from "./components/post-live-checklist/PostLiveChecklist.js";
331
- import { PostLiveChecklistItem as eu } from "./components/post-live-checklist-item/PostLiveChecklistItem.js";
332
- import { PricePleaseProductPicker as au, ProductPickerContent as fu } from "./components/product-picker/ProductPickerModal.js";
333
- import { ProductPickerModal as mu } from "./components/product-picker-v2/modal.js";
334
- import { ProgressBadgeIcon as xu } from "./assets/icons/ProgressBadgeIcon.js";
335
- import { ProgressBarComponent as iu, ProgressCompletedBar as su } from "./components/progress-bar/ProgressBarComponent.js";
336
- import { ProgressBarType as uu, ProgressBarV2 as Tu, TextAlignment as cu } from "./components/progress-bar-v2/ProgressBarV2.js";
337
- import { PropertyNode as Cu, PropertyNodeHeadless as Su } from "./components/QueryBuilder/components/QueryBuilderNode/Property/PropertyNode.js";
338
- import { PureSpinner as Iu, Spinner as Pu } from "./components/spinner/Spinner.js";
339
- import { QueryBuilder as _u } from "./components/QueryBuilder/QueryBuilder.js";
340
- import { QueryBuilderConnectorType as Ou } from "./components/QueryBuilder/types/QueryBuilderEnum.type.js";
341
- import { RATIO as Bu, Thumbnail as Nu } from "./components/thumbnail/Thumbnail.js";
342
- import { RadioButton as Lu } from "./components/radioButton/RadioButton.js";
343
- import { RadioList as Mu } from "./components/radioList/RadioList.js";
344
- import { RechargeError as Fu } from "./utils/logging/ErrorConstructor/RechargeFailure.js";
345
- import { Redirect2Icon as bu } from "./assets/icons/Redirect2Icon.js";
346
- import { STEP_DEFINITIONS as Vu } from "./components/agent-builder/constants/steps.js";
347
- import { ScoreBlock as Gu } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/ScoreBlock.js";
348
- import { SearchBar as Wu } from "./components/searchBar/searchBar.js";
349
- import { SearchIcon as Ku } from "./assets/icons/searchIcon.js";
350
- import { ShopifyScopeWrapper as Xu } from "./components/states/ShopifyScopeWrapper.js";
351
- import { ShowShopifyRestrictedModal as ju } from "./components/bik-layout/ShowShopifyRestrictedModal.js";
352
- import { SideModal as qu } from "./components/side-modal/SideModal.js";
353
- import { SidebarSkeleton as $u } from "./components/bik-layout/SidebarSkeleton.js";
354
- import { SimpleSidebar as rT } from "./components/bik-layout/SimpleSidebar.js";
355
- import { SmallCheckIcon as tT } from "./assets/icons/SmallCheckIcon.js";
356
- import { StackedBarChart as fT } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarChart.js";
357
- import { StackedBarDistributionChart as mT } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarDistributionChart.js";
358
- import { StarRating as xT } from "./components/star-rating/StarRating.js";
359
- import { StateModalComponent as iT } from "./components/states-modal/StateModalComponent.js";
360
- import { Stepper as dT } from "./components/stepper/Stepper.js";
361
- import { StyledModal as TT } from "./components/modals/styledModal.js";
362
- import { SubscriptionPlan as AT } from "./components/plans/SubscriptionPlan.js";
363
- import { SubscriptionPlansCollected as ST } from "./components/plans/SubscriptionPlansCollected.js";
364
- import { TEXT as IT } from "./components/feature-announcements/constants/index.js";
365
- import { TabItemComponent as RT, Tabs as _T } from "./components/tabs/Tabs.js";
366
- import { TablePagination as OT } from "./components/TablePagination/TablePagination.js";
367
- import { TablePaginationCard as BT, TablePaginationCardStyled as NT } from "./components/TablePagination/TablePaginationCard.js";
368
- import { Tag as LT } from "./components/tag/Tag.js";
369
- import { TemplateAnalyticsSkeleton as MT } from "./components/template-context-mapper/modalElements/TemplateAnalyticsSkeleton.js";
370
- import { TemplateContextMapper as FT } from "./components/template-context-mapper/TemplateContextMapper.js";
371
- import { TemplatePreview as bT } from "./components/template-preview/TemplatePreview.js";
372
- import { TestimonialCard as VT } from "./components/testimonial-card/TestimonialCard.js";
373
- import { TextPickerModal as GT } from "./components/text-picker/TextPickerModal.js";
374
- import { TimePicker as WT } from "./components/datePicker/TimePicker.js";
375
- import { Toaster as KT } from "./components/toaster/Toaster.js";
376
- import { ToolSource as XT } from "./components/agent-builder/constants/tools.js";
377
- import { Tooltip as jT } from "./components/tooltips/Tooltip.js";
378
- import { TruncateValue as qT, calculatePercentage as JT, roundNumber as $T, truncateValueForIndianStore as oc, truncateValueForInternationalStore as rc, truncateValueTo10K as ec, truncateValueToA as tc, truncateValueToB as ac, truncateValueToC as fc, truncateValueToK as pc, truncateValueToL as mc, truncateValueToM as lc, truncateValueToT as xc } from "./components/analytics-chips-and-dropdowns/chart/utils/calcPercentage.js";
379
- import { VariableEditorHelper as ic } from "./components/template-preview/helpers/VariableEditorHelper.js";
380
- import { VariablePicker as dc } from "./components/variable-picker-v3/VariablePicker.js";
381
- import { VerticalBarAndLinearGraph as Tc } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarAndLinearGraph/VerticalBarAndLinearGraph.js";
382
- import { VerticalGraph as Ac } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarGraph/VerticalGraph.js";
383
- import { VideoModal as Sc } from "./components/feature-announcements/VideoModal.js";
384
- import { WhatsAppFormatToHTML as Ic } from "./components/template-preview/helpers/WhatsAppFormatToHTML.js";
385
- import { WhatsAppTextEditor as Rc } from "./components/WhatsAppTextEditor/WhatsAppTextEditor.js";
386
- import { WhatsNew as hc } from "./components/whats-new/WhatsNew.js";
387
- import { WhatsNewButton as gc } from "./components/whats-new/WhatsNewButton.js";
388
- import { WhatsNewPanel as Nc } from "./components/whats-new/WhatsNewPanel.js";
389
- import { WhatsNewProvider as Lc, useWhatsNewContext as yc } from "./components/whats-new/WhatsNewProvider.js";
390
- import { WhatsappIntegrationError as kc } from "./utils/logging/ErrorConstructor/WhatsappIntegrationError.js";
391
- import { WhatsappLikePreview as Uc } from "./components/template-preview/WhatsApp/WhatsAppLikePreview.js";
392
- import { WhatsappLikePreviewV2 as wc } from "./components/template-preview/WhatsApp/WhatsAppLikePreviewV2.js";
393
- import { buildAgentMentionItems as Hc, editorDocToInstructions as Gc, instructionsToEditorHtml as vc } from "./components/agent-builder/utils/mentionSerialization.js";
394
- import { environment as Yc } from "./firebase/environment.js";
395
- import { getAllDataFromTemplateComponent as Qc, getAllDataFromWebpushTemplateComponent as Xc } from "./components/template-context-mapper/utils/getDataFromTemplateComponent.js";
396
- import { getAuthMethods as jc, getFirestoreLiteMethods as Zc, getFirestoreMethods as qc, getFunctionsMethods as Jc, getMessagingMethods as $c, getStorageMethods as oA } from "./firebase/lazyFirebaseMethods.js";
397
- import { getBodyHtml as eA, getSectionsHtml as tA } from "./editor/BikEditor.utils.js";
398
- import { getFireStoreDb as fA } from "./firebase/lazyFirestore.js";
399
- import { getFireStoreLiteDb as mA } from "./firebase/lazyFirestoreLite.js";
400
- import { getFirebaseChatStorage as xA } from "./firebase/lazyStorage.js";
401
- import { isVariable as iA, validateIsUrl as sA } from "./components/template-context-mapper/utils/validateIsUrl.js";
402
- import { queryBuilderCacheSlice as uA } from "./components/QueryBuilder/redux/queryBuilderCache.reducer.js";
403
- import { queryBuilderSlice as cA } from "./components/QueryBuilder/redux/queryBuilder.reducer.js";
404
- import { renderVariableUIForPreview as CA } from "./components/template-preview/helpers/SmsTemplateHelper.js";
405
- import { resizeImage as EA } from "./utils/resizeImage.js";
406
- import { toLiveChatText as PA } from "./editor/serializers/toLiveChatText.js";
407
- import { toWhatsAppText as _A } from "./editor/serializers/toWhatsAppText.js";
408
- import { unwrapDropdownValue as OA } from "./components/dropdown/utils.js";
409
- import { useAIChat as BA } from "./components/bik-chatbot/services/useAIChat.js";
410
- import { useAgentDraft as DA } from "./components/agent-builder/hooks/useAgentDraft.js";
411
- import { useFeatureAnnouncements as yA } from "./components/feature-announcements/hooks/useFeatureAnnouncements.js";
412
- import { useWhatsNew as kA } from "./components/whats-new/useWhatsNew.js";
232
+ import { BikSidebarV2 as Ix } from "./components/bik-layout/BikSidebarV2/BikSidebarV2.js";
233
+ import { BikSlider as _x } from "./components/slider/slider.js";
234
+ import { BottomWrapper as Ox, HeaderWrapper as hx, SubscriptionPlanSelector as gx, defaultTabs as Bx } from "./components/plans/SubscriptionPlanSelector.js";
235
+ import { BroadcastFlowError as Lx } from "./utils/logging/ErrorConstructor/BroadcastFlowError.js";
236
+ import { Bubble as Mx } from "./components/BikGiftedChat/Bubble/Bubble.js";
237
+ import { Button as kx } from "./components/button/Button.js";
238
+ import { ButtonActions as Ux, ButtonTypes as bx, StateComponent as wx, StateInterface as Vx } from "./components/states/StateComponent.js";
239
+ import { ButtonGroup as Gx } from "./components/buttonGroup/ButtonGroup.js";
240
+ import { CHANNEL_TYPE as Wx } from "./components/template-preview/models/Channels.js";
241
+ import { CHAT_MESSAGE_ROLES as Kx, DEFAULT_CONVERSATION_ID as Qx, createSessionRecord as Xx } from "./components/bik-chatbot/types/chat.js";
242
+ import { COPILOT_BALL_ATTRIBUTE as Zx, CopilotBall as jx } from "./components/bik-copilot/CopilotBall.js";
243
+ import { COPILOT_ENDPOINT_PATH as Jx, streamCopilotChat as $x } from "./components/bik-copilot/services/copilotStreamClient.js";
244
+ import { COPILOT_HISTORY_PAGE_SIZE as ri, COPILOT_MESSAGES_PATH as ei, fetchCopilotMessages as ti } from "./components/bik-copilot/services/copilotMessagesClient.js";
245
+ import { COPILOT_ICEBREAKERS_PATH as pi, fetchCopilotIcebreakers as fi } from "./components/bik-copilot/services/copilotIcebreakersClient.js";
246
+ import { COPILOT_SESSION_TTL_MS as li, MAX_PERSISTED_MESSAGES as xi, copilotSessionKey as ii, createCopilotSession as ni, createCopilotSessionId as si, deleteCopilotSession as di, findLatestCopilotSessionId as ui, isCopilotSessionExpired as Ti, listCopilotSessionKeys as Ci, loadCopilotSession as Si, persistCopilotTurn as ci, pruneCopilotSessions as Ai, saveCopilotSession as Ei } from "./components/bik-copilot/services/copilotDb.js";
247
+ import { COUPON_EXPIRATION as Pi, DISCOUNT_APPLIES_TO as _i, DISCOUNT_TARGET_SELECTION as Ri, DISCOUNT_TARGET_TYPES as Oi, DISCOUNT_TYPES as hi, DISCOUNT_VALUE_TYPES as gi, MIN_PURCHASE_REQUIREMENT as Bi, OFFER_APPLIES_TO as Ni, initialDynamicCouponErrorState as Li, initialStaticCouponErrorState as Di } from "./components/discount-modal/type.js";
248
+ import { CURTAIN_COLOR_CONFIG_MAP as yi, CURTAIN_MODE as ki, CURTAIN_TYPES as Fi } from "./components/curtain/CurtainHelper.js";
249
+ import { Card as bi, PieChartAnalytics as wi } from "./components/analytics-chips-and-dropdowns/chart/Pie/PieChartAnalytics.js";
250
+ import { CardSelectionModal as Hi } from "./components/card-selection-modal/CardSelectionModal.js";
251
+ import { CardSelector as vi } from "./components/card-selector/CardSelector.js";
252
+ import { CardSelectorGroup as Yi } from "./components/card-selector/CardSelectorGroup.js";
253
+ import { Carousel as Qi } from "./components/carousel/carousel.js";
254
+ import { CarouselPreview as zi } from "./components/carousel-preview/CarouselPreview.js";
255
+ import { CarouselSecondary as ji } from "./components/carousel-secondary/CarouselSecondary.js";
256
+ import { CarouselVersion as Ji } from "./components/carousel-secondary/model.js";
257
+ import { CheckBox as on } from "./components/checkBox/CheckBox.js";
258
+ import { CheckIndicatorIcon as en } from "./assets/icons/CheckIndicatorIcon.js";
259
+ import { CheckList as an } from "./components/checkList/CheckList.js";
260
+ import { Chip as fn } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/Chip.js";
261
+ import { ChipDropdown as ln, ChipDropdownContainer as xn } from "./components/dropdown/ChipDropdown.js";
262
+ import { CodeBlock as sn } from "./components/code-block/CodeBlock.js";
263
+ import { CodeLanguage as un } from "./components/code-block/types.js";
264
+ import { CohortError as Cn } from "./utils/logging/ErrorConstructor/CohortError.js";
265
+ import { ColourInput as cn } from "./components/colourInput/ColourInput.js";
266
+ import { CompletedChecklistIcon as En } from "./assets/icons/CompletedChecklistIcon.js";
267
+ import { ConnectedAppDialog as Pn } from "./components/connected-app-dialog/ConnectedAppDialog.js";
268
+ import { ControlledCopilot as Rn } from "./components/bik-copilot/ControlledCopilot.js";
269
+ import { CopilotPanel as hn } from "./components/bik-copilot/CopilotPanel.js";
270
+ import { CopilotSseParser as Bn } from "./components/bik-copilot/services/copilotSseParser.js";
271
+ import { CountriesData as Ln } from "./components/country-code-picker/CountryCodePicker.modal.js";
272
+ import { CountryCodePicker as Mn } from "./components/country-code-picker/CountryCodePicker.js";
273
+ import { CountryPicker as kn } from "./components/country-code-picker/CountryPicker.js";
274
+ import { CouponExpiration as Un } from "./components/discount-modal/CouponExpiration/CouponExpiration.js";
275
+ import { CurrencySymbols as wn } from "./components/product-picker-v2/constants.js";
276
+ import { Curtain as Hn } from "./components/curtain/Curtain.js";
277
+ import { CustomDateTime as vn } from "./components/custom-date-time/CustomDateTime.js";
278
+ import { CustomError as Yn } from "./utils/logging/ErrorConstructor/CustomError.js";
279
+ import { DEFAULT_FORMAT_STATE as Qn } from "./editor/BikEditor.types.js";
280
+ import { DEFAULT_COPILOT_AGENT as zn, DEFAULT_COPILOT_ROUTE as Zn, useCopilotIcebreakers as jn } from "./components/bik-copilot/useCopilotIcebreakers.js";
281
+ import { DEFAULT_IMAGE as Jn, ShimmerImage as $n } from "./components/shimmer-image/ShimmerImage.js";
282
+ import { DEFAULT_MAX_TOOL_CALLS as rs, DEFAULT_RESPONSE_FORMAT as es, RESPONSE_FORMATS as ts } from "./components/bik-chatbot/types/ai.js";
283
+ import { DROP_POSITION as ps, DropdownToggleContainer as fs, FAB_POSITION as ms, FloatingActionButtonContainer as ls, FloatingActionButtonOuterContainer as xs, MENU_ALIGNMENT as is, StyledDropdown as ns, TooltipStyled as ss } from "./components/floating-action-button/FloatingActionButton.styles.js";
284
+ import { DashboardReviewPopUp as us } from "./components/dashboard-review-popup/DashboardReviewPopUp.js";
285
+ import { DataSourcePanel as Cs } from "./components/data-source-panel/DataSourcePanel.js";
286
+ import { DateKeys as cs, MEDIA_TYPES as As, PostPicker as Es, dateOptions as Is } from "./components/postPicker/postPicker.js";
287
+ import { DatePicker as _s } from "./components/datePicker/DatePicker.js";
288
+ import { DatePickerWrapper as Os } from "./components/datePicker/DatePickerWrapper.js";
289
+ import { DeleteConfirmationModal as gs } from "./components/states-modal/DeleteConfirmationModal.js";
290
+ import { DiscountModal as Ns } from "./components/discount-modal/DiscountModal.js";
291
+ import { DotPulse as Ds } from "./components/dot-pulse/DotPulse.js";
292
+ import { DropShadow as ys } from "./components/dropShadow/DropShadow.js";
293
+ import { Dropdown as Fs } from "./components/dropdown/Dropdown.js";
294
+ import { DropdownButton as bs } from "./components/dropdown-button/DropdownButton.js";
295
+ import { DropdownPopover as Vs } from "./components/dropdown/DropdownPopover/index.js";
296
+ import { DualIconButton as Gs } from "./components/dual-icon-button/DualIconButton.js";
297
+ import { DurationUnit as Ws } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/types.js";
298
+ import { DynamicTabs as Ks } from "./components/dynamic-tabs/DynamicTabs.js";
299
+ import { ERROR_TYPES as Xs, ERROR_TYPE_CLASS_MAP as zs, Logger as Zs } from "./utils/logging/Logger.js";
300
+ import { ExcelUploadError as qs } from "./utils/logging/ErrorConstructor/ExcelUploadError.js";
301
+ import { FABMenu as $s } from "./components/fab-menu/FABMenu.js";
302
+ import { FeatureModal as rd } from "./components/bik-layout/FeatureModal.js";
303
+ import { FeatureModalV2 as td } from "./components/bik-layout/FeatureModalV2.js";
304
+ import { FileUploader as pd } from "./components/file-uploader/FileUploader.js";
305
+ import { FirebaseCallError as md } from "./utils/logging/ErrorConstructor/FirebaseCallError.js";
306
+ import { FirebaseSubscriptionError as xd } from "./utils/logging/ErrorConstructor/FirebaseSubscriptionError.js";
307
+ import { FirebaseUserFetcher as nd } from "./firebase/firebaseUserFetcher.js";
308
+ import { Floater as dd } from "./components/floater/floater.js";
309
+ import { FloatingActionButton as Td } from "./components/floating-action-button/FloatingActionButton.js";
310
+ import { FloatingInputDropdown as Sd } from "./components/floating-input-dropdown/FloatingInputDropdown.js";
311
+ import { FunnelVerticalBarGraph as Ad } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarGraph/FunnelVerticalBarGraph.js";
312
+ import { GRAPH_ORIENTATION as Id } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarDistributionChart.model.js";
313
+ import { HEAT as _d, HEAT_COLORS as Rd, HEAT_GRADING_TYPE as Od, HeatMap as hd } from "./components/analytics-chips-and-dropdowns/chart/heatmap/HeatMap.js";
314
+ import { HTTPMethods as Bd, HTTP_CODE as Nd, RequestExecutor as Ld, TRANSACTION_ENABLED_STORE_IDS as Dd } from "./request-executor/executor.js";
315
+ import { HalfDoughnutChart as yd } from "./components/half-doughnut-chart/HalfDoughnutChart.js";
316
+ import { HeatBoxStyled as Fd, HeatMapVertical as Ud } from "./components/analytics-chips-and-dropdowns/chart/heatmap/HeatMapVertical.js";
317
+ import { HorinzontalBar as wd } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/HorizontalBar.js";
318
+ import { HorizontalGraph as Hd } from "./components/analytics-chips-and-dropdowns/chart/HorizontalBarGraph/HorizontalGraph.js";
319
+ import { IconButton as vd } from "./components/icon-button/IconButton.js";
320
+ import { ImageService as Yd } from "./components/image-compress/ImageCompress.js";
321
+ import { InactiveChecklistIcon as Qd } from "./assets/icons/InactiveChecklistIcon.js";
322
+ import { Input as zd } from "./components/input/Input.js";
323
+ import { InputWithVariables as jd } from "./components/input-with-vars/InputWithVariables.js";
324
+ import { KeywordsInput as Jd } from "./components/keywords-input/KeywordsInput.js";
325
+ import { SECONDARY_APP_NAME as ou, getOrInitFirebaseChatApp as ru, chatConfig as eu, stagingConfig as tu, rnSecondaryAuth as au } from "./firebase/lazyFirebaseApp.js";
326
+ import { LineChart as fu } from "./components/analytics-chips-and-dropdowns/chart/LineChart/LineChart.js";
327
+ import { LinearChipGroupedChart as lu } from "./components/analytics-chips-and-dropdowns/chart/linearChipGroupedChart/LinearChipGroupedChart.js";
328
+ import { ListItem as iu } from "./components/list-item/ListItem.js";
329
+ import { Loader as su, Switch as du, SwitchContainer as uu, Thumb as Tu } from "./components/switch/Switch.js";
330
+ import { MenuItemDropdown as Su } from "./components/dropdown/MenuItem/MenuItem.js";
331
+ import { MultiLevelDropdown as Au } from "./components/multi-level-dropdown/MultiLevelDropdown.js";
332
+ import { NaLinkWrapper as Iu, NavigationHyperlink as Pu } from "./components/navigation-hyperlink/NavigationHyperlink.js";
333
+ import { NewSubscriptionPlan as Ru } from "./components/plans/NewSubscriptionPlan.js";
334
+ import { OUT_OF_STOCK_ACTION as hu, ScreenName as gu } from "./components/product-picker-v2/type.js";
335
+ import { OpenedDropdown as Nu } from "./components/dropdown/OpenedDropdown/components/OpennedDropdown.js";
336
+ import { POPUP_DIMENSIONS as Du } from "./components/feature-announcements/constants/dimensions.js";
337
+ import { Pagination as yu } from "./components/pagination/Pagination.js";
338
+ import { PickerType as Fu } from "./components/variable-picker-v3/model.js";
339
+ import { PieChart as bu } from "./components/analytics-chips-and-dropdowns/chart/Pie/PieChart.js";
340
+ import { PostLiveChecklist as Vu } from "./components/post-live-checklist/PostLiveChecklist.js";
341
+ import { PostLiveChecklistItem as Gu } from "./components/post-live-checklist-item/PostLiveChecklistItem.js";
342
+ import { PricePleaseProductPicker as Wu, ProductPickerContent as Yu } from "./components/product-picker/ProductPickerModal.js";
343
+ import { ProductPickerModal as Qu } from "./components/product-picker-v2/modal.js";
344
+ import { ProgressBadgeIcon as zu } from "./assets/icons/ProgressBadgeIcon.js";
345
+ import { ProgressBarComponent as ju, ProgressCompletedBar as qu } from "./components/progress-bar/ProgressBarComponent.js";
346
+ import { ProgressBarType as $u, ProgressBarV2 as oT, TextAlignment as rT } from "./components/progress-bar-v2/ProgressBarV2.js";
347
+ import { PropertyNode as tT, PropertyNodeHeadless as aT } from "./components/QueryBuilder/components/QueryBuilderNode/Property/PropertyNode.js";
348
+ import { PureSpinner as fT, Spinner as mT } from "./components/spinner/Spinner.js";
349
+ import { QueryBuilder as xT } from "./components/QueryBuilder/QueryBuilder.js";
350
+ import { QueryBuilderConnectorType as nT } from "./components/QueryBuilder/types/QueryBuilderEnum.type.js";
351
+ import { RATIO as dT, Thumbnail as uT } from "./components/thumbnail/Thumbnail.js";
352
+ import { RadioButton as CT } from "./components/radioButton/RadioButton.js";
353
+ import { RadioList as cT } from "./components/radioList/RadioList.js";
354
+ import { RechargeError as ET } from "./utils/logging/ErrorConstructor/RechargeFailure.js";
355
+ import { Redirect2Icon as PT } from "./assets/icons/Redirect2Icon.js";
356
+ import { STEP_DEFINITIONS as RT } from "./components/agent-builder/constants/steps.js";
357
+ import { ScoreBlock as hT } from "./components/analytics-chips-and-dropdowns/chart/scoreBlock/ScoreBlock.js";
358
+ import { SearchBar as BT } from "./components/searchBar/searchBar.js";
359
+ import { SearchIcon as LT } from "./assets/icons/searchIcon.js";
360
+ import { ShopifyScopeWrapper as MT } from "./components/states/ShopifyScopeWrapper.js";
361
+ import { ShowShopifyRestrictedModal as kT } from "./components/bik-layout/ShowShopifyRestrictedModal.js";
362
+ import { SideModal as UT } from "./components/side-modal/SideModal.js";
363
+ import { SidebarSkeleton as wT } from "./components/bik-layout/SidebarSkeleton.js";
364
+ import { SimpleSidebar as HT } from "./components/bik-layout/SimpleSidebar.js";
365
+ import { SmallCheckIcon as vT } from "./assets/icons/SmallCheckIcon.js";
366
+ import { StackedBarChart as YT } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarChart.js";
367
+ import { StackedBarDistributionChart as QT } from "./components/analytics-chips-and-dropdowns/chart/StackedBarChart/StackedBarDistributionChart.js";
368
+ import { StarRating as zT } from "./components/star-rating/StarRating.js";
369
+ import { StateModalComponent as jT } from "./components/states-modal/StateModalComponent.js";
370
+ import { Stepper as JT } from "./components/stepper/Stepper.js";
371
+ import { StyledModal as oC } from "./components/modals/styledModal.js";
372
+ import { SubscriptionPlan as eC } from "./components/plans/SubscriptionPlan.js";
373
+ import { SubscriptionPlansCollected as aC } from "./components/plans/SubscriptionPlansCollected.js";
374
+ import { TEXT as fC } from "./components/feature-announcements/constants/index.js";
375
+ import { TabItemComponent as lC, Tabs as xC } from "./components/tabs/Tabs.js";
376
+ import { TablePagination as nC } from "./components/TablePagination/TablePagination.js";
377
+ import { TablePaginationCard as dC, TablePaginationCardStyled as uC } from "./components/TablePagination/TablePaginationCard.js";
378
+ import { Tag as CC } from "./components/tag/Tag.js";
379
+ import { TemplateAnalyticsSkeleton as cC } from "./components/template-context-mapper/modalElements/TemplateAnalyticsSkeleton.js";
380
+ import { TemplateContextMapper as EC } from "./components/template-context-mapper/TemplateContextMapper.js";
381
+ import { TemplatePreview as PC } from "./components/template-preview/TemplatePreview.js";
382
+ import { TestimonialCard as RC } from "./components/testimonial-card/TestimonialCard.js";
383
+ import { TextPickerModal as hC } from "./components/text-picker/TextPickerModal.js";
384
+ import { TimePicker as BC } from "./components/datePicker/TimePicker.js";
385
+ import { Toaster as LC } from "./components/toaster/Toaster.js";
386
+ import { ToolSource as MC } from "./components/agent-builder/constants/tools.js";
387
+ import { Tooltip as kC } from "./components/tooltips/Tooltip.js";
388
+ import { TruncateValue as UC, calculatePercentage as bC, roundNumber as wC, truncateValueForIndianStore as VC, truncateValueForInternationalStore as HC, truncateValueTo10K as GC, truncateValueToA as vC, truncateValueToB as WC, truncateValueToC as YC, truncateValueToK as KC, truncateValueToL as QC, truncateValueToM as XC, truncateValueToT as zC } from "./components/analytics-chips-and-dropdowns/chart/utils/calcPercentage.js";
389
+ import { VariableEditorHelper as jC } from "./components/template-preview/helpers/VariableEditorHelper.js";
390
+ import { VariablePicker as JC } from "./components/variable-picker-v3/VariablePicker.js";
391
+ import { VerticalBarAndLinearGraph as oS } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarAndLinearGraph/VerticalBarAndLinearGraph.js";
392
+ import { VerticalGraph as eS } from "./components/analytics-chips-and-dropdowns/chart/VerticalBarGraph/VerticalGraph.js";
393
+ import { VideoModal as aS } from "./components/feature-announcements/VideoModal.js";
394
+ import { WhatsAppFormatToHTML as fS } from "./components/template-preview/helpers/WhatsAppFormatToHTML.js";
395
+ import { WhatsAppTextEditor as lS } from "./components/WhatsAppTextEditor/WhatsAppTextEditor.js";
396
+ import { WhatsNew as iS } from "./components/whats-new/WhatsNew.js";
397
+ import { WhatsNewButton as sS } from "./components/whats-new/WhatsNewButton.js";
398
+ import { WhatsNewPanel as uS } from "./components/whats-new/WhatsNewPanel.js";
399
+ import { WhatsNewProvider as CS, useWhatsNewContext as SS } from "./components/whats-new/WhatsNewProvider.js";
400
+ import { WhatsappIntegrationError as AS } from "./utils/logging/ErrorConstructor/WhatsappIntegrationError.js";
401
+ import { WhatsappLikePreview as IS } from "./components/template-preview/WhatsApp/WhatsAppLikePreview.js";
402
+ import { WhatsappLikePreviewV2 as _S } from "./components/template-preview/WhatsApp/WhatsAppLikePreviewV2.js";
403
+ import { buildAgentMentionItems as OS, editorDocToInstructions as hS, instructionsToEditorHtml as gS } from "./components/agent-builder/utils/mentionSerialization.js";
404
+ import { clearCopilotPageSessions as NS, getCopilotSessionIdForRoute as LS, resetCopilotSessionForRoute as DS, resolveCopilotSessionIdForRoute as MS } from "./components/bik-copilot/services/copilotPageSession.js";
405
+ import { environment as kS } from "./firebase/environment.js";
406
+ import { getAllDataFromTemplateComponent as US, getAllDataFromWebpushTemplateComponent as bS } from "./components/template-context-mapper/utils/getDataFromTemplateComponent.js";
407
+ import { getAuthMethods as VS, getFirestoreLiteMethods as HS, getFirestoreMethods as GS, getFunctionsMethods as vS, getMessagingMethods as WS, getStorageMethods as YS } from "./firebase/lazyFirebaseMethods.js";
408
+ import { getBodyHtml as QS, getSectionsHtml as XS } from "./editor/BikEditor.utils.js";
409
+ import { getCopilotPanelPlacement as ZS } from "./components/bik-copilot/copilotPlacement.js";
410
+ import { getFireStoreDb as qS } from "./firebase/lazyFirestore.js";
411
+ import { getFireStoreLiteDb as $S } from "./firebase/lazyFirestoreLite.js";
412
+ import { getFirebaseChatStorage as rc } from "./firebase/lazyStorage.js";
413
+ import { isVariable as tc, validateIsUrl as ac } from "./components/template-context-mapper/utils/validateIsUrl.js";
414
+ import { queryBuilderCacheSlice as fc } from "./components/QueryBuilder/redux/queryBuilderCache.reducer.js";
415
+ import { queryBuilderSlice as lc } from "./components/QueryBuilder/redux/queryBuilder.reducer.js";
416
+ import { renderVariableUIForPreview as ic } from "./components/template-preview/helpers/SmsTemplateHelper.js";
417
+ import { resizeImage as sc } from "./utils/resizeImage.js";
418
+ import { toLiveChatText as uc } from "./editor/serializers/toLiveChatText.js";
419
+ import { toWhatsAppText as Cc } from "./editor/serializers/toWhatsAppText.js";
420
+ import { unwrapDropdownValue as cc } from "./components/dropdown/utils.js";
421
+ import { useAIChat as Ec } from "./components/bik-chatbot/services/useAIChat.js";
422
+ import { useAgentDraft as Pc } from "./components/agent-builder/hooks/useAgentDraft.js";
423
+ import { useCopilotStreamChat as Rc } from "./components/bik-copilot/useCopilotStreamChat.js";
424
+ import { useDraggableFloater as hc } from "./components/bik-copilot/useDraggableFloater.js";
425
+ import { useFeatureAnnouncements as Bc } from "./components/feature-announcements/hooks/useFeatureAnnouncements.js";
426
+ import { useWhatsNew as Lc } from "./components/whats-new/useWhatsNew.js";
413
427
  export {
414
- cp as ACTIONS_TYPES,
415
- _p as AD_STRING_OPERATORS,
416
- Wp as AGENT_CHAR_LIMITS,
417
- Kp as AIActionVariant,
418
- qp as AIChat,
419
- Qp as AIEditorActionTypes,
420
- $p as AIProvider,
428
+ Cf as ACTIONS_TYPES,
429
+ Rf as AD_STRING_OPERATORS,
430
+ Wf as AGENT_CHAR_LIMITS,
431
+ Kf as AIActionVariant,
432
+ qf as AIChat,
433
+ Qf as AIEditorActionTypes,
434
+ $f as AIProvider,
421
435
  em as AI_TAG_CHANGE_RATIO_THRESHOLD,
422
- pm as ALERT_TYPES,
423
- nm as ANIMATION_TIMING,
424
- hp as ANY_AD_OPERATORS,
425
- Op as ANY_IG_OPERATORS,
436
+ fm as ALERT_TYPES,
437
+ im as ANIMATION_TIMING,
438
+ Of as ANY_AD_OPERATORS,
439
+ hf as ANY_IG_OPERATORS,
426
440
  sm as APIError,
427
441
  um as AVATAR_BACKGROUND,
428
442
  Tm as AVATAR_SIZE_MAP,
429
- Sm as AVATAR_SIZE_VS_ICON_SIZE_MAP,
430
- cm as AVATAR_TYPES,
431
- _m as AccessTokenTroubleshootDialog,
432
- po as ActionButton,
433
- Om as ActionButtons,
443
+ Am as AVATAR_SIZE_VS_ICON_SIZE_MAP,
444
+ Cm as AVATAR_TYPES,
445
+ Rm as AccessTokenTroubleshootDialog,
446
+ fo as ActionButton,
447
+ hm as ActionButtons,
434
448
  Bm as ActivateBikAi,
435
- Dm as ActiveChecklistIcon,
449
+ Lm as ActiveChecklistIcon,
436
450
  lo as AdBanner,
437
- ym as AddDataPill,
451
+ Mm as AddDataPill,
438
452
  km as AddVariableV2,
439
453
  Um as AddVariableV2SideModal,
440
454
  wm as AgentBuilder,
441
455
  Hm as AgentListing,
442
456
  s as AiBodyCaption,
443
457
  d as AiBodyTiny,
444
- no as AiContentIcon,
458
+ io as AiContentIcon,
445
459
  vm as AiCreditsExhausted,
446
460
  Ym as AiCreditsLow,
447
461
  so as AiEdit,
448
462
  To as AiEventGenerating,
449
463
  Qm as AiSyncProgress,
450
- Ao as Alarm,
464
+ So as Alarm,
451
465
  zm as Alert,
452
- So as AlertIcon,
466
+ Ao as AlertIcon,
453
467
  Io as AlertTriangle,
454
- Zm as AnalyticsCard,
468
+ jm as AnalyticsCard,
455
469
  Jm as AnalyticsChip,
456
470
  ol as AnalyticsContainer,
457
471
  tl as AnalyticsDropdown,
458
472
  ml as AnalyticsItem,
459
473
  sl as AnalyticsMetric,
460
474
  ul as AnalyticsMultiChip,
461
- cl as AnalyticsTrend,
462
- Ro as ArrowBack,
463
- ho as ArrowDown,
475
+ Cl as AnalyticsTrend,
476
+ _o as ArrowBack,
477
+ Oo as ArrowDown,
464
478
  go as ArrowLeft,
465
479
  No as ArrowUp,
466
480
  Em as Avatar,
467
481
  Im as BACKGROUND_VS_TEXT_COLOR_MAP,
468
- f as BASE_COLORS,
469
- Cl as BIKChatbot,
470
- El as BOLD_TEXT_PATTERN,
471
- gp as BOOLEAN_OPERATORS,
472
- Ml as BUTTON_TYPE,
473
- Lo as BackIcon,
474
- bl as BackgroundImageContainer,
475
- Wl as BannerThirdPartyIcon,
476
- Yl as BannerType,
477
- Xl as BaseQueryBuilderNode,
478
- jl as BaseWhatsappContentLangHelper,
479
- ql as BikAccordion,
480
- Mo as BikAiStarsIcon,
481
- $l as BikEditor,
482
- rx as BikEditorToolbar,
483
- tx as BikGiftedChat,
484
- fx as BikHeader,
485
- mx as BikImageCropper,
486
- xx as BikImagePipeline,
487
- ix as BikLayout,
482
+ p as BASE_COLORS,
483
+ cl as BIKChatbot,
484
+ El as BIKCopilot,
485
+ Pl as BOLD_TEXT_PATTERN,
486
+ gf as BOOLEAN_OPERATORS,
487
+ Fl as BUTTON_TYPE,
488
+ Do as BackIcon,
489
+ Vl as BackgroundImageContainer,
490
+ Kl as BannerThirdPartyIcon,
491
+ Ql as BannerType,
492
+ Zl as BaseQueryBuilderNode,
493
+ ql as BaseWhatsappContentLangHelper,
494
+ $l as BikAccordion,
495
+ yo as BikAiStarsIcon,
496
+ rx as BikEditor,
497
+ tx as BikEditorToolbar,
498
+ px as BikGiftedChat,
499
+ mx as BikHeader,
500
+ xx as BikImageCropper,
501
+ nx as BikImagePipeline,
502
+ dx as BikLayout,
488
503
  Fo as BikLivechat,
489
504
  bo as BikLogo,
490
- dx as BikProfile,
491
- Tx as BikShimmer,
505
+ Tx as BikProfile,
506
+ Sx as BikShimmer,
492
507
  Ax as BikSidebar,
493
- Sx as BikSidebarV2,
494
- Ix as BikSlider,
508
+ Ix as BikSidebarV2,
509
+ _x as BikSlider,
495
510
  u as BodyCaption,
496
511
  T as BodyLarge,
497
- c as BodyPrimary,
498
- A as BodyPrimaryLink,
499
- C as BodyRegular,
500
- S as BodySecondary,
512
+ C as BodyPrimary,
513
+ S as BodyPrimaryLink,
514
+ c as BodyRegular,
515
+ A as BodySecondary,
501
516
  E as BodySecondaryLink,
502
517
  I as BodySmall,
503
518
  P as BodyTiny,
504
- R as BodyTinySemiBold,
519
+ _ as BodyTinySemiBold,
505
520
  Vo as Bold,
506
- Rx as BottomWrapper,
521
+ Ox as BottomWrapper,
507
522
  Go as Box,
508
523
  Wo as BoxRound,
509
524
  Ko as BoxSearch,
510
525
  Xo as BoxV2,
511
- jo as BrandHome,
512
- Bx as BroadcastFlowError,
526
+ Zo as BrandHome,
527
+ Lx as BroadcastFlowError,
513
528
  qo as BrokenMediaImage,
514
- Dx as Bubble,
515
- yx as Button,
516
- kx as ButtonActions,
517
- Vx as ButtonGroup,
518
- _ as ButtonLarge,
519
- h as ButtonLargeAI,
520
- O as ButtonRegular,
529
+ Mx as Bubble,
530
+ kx as Button,
531
+ Ux as ButtonActions,
532
+ Gx as ButtonGroup,
533
+ R as ButtonLarge,
534
+ O as ButtonLargeAI,
535
+ h as ButtonRegular,
521
536
  g as ButtonRegularAI,
522
- Fx as ButtonTypes,
523
- Gx as CHANNEL_TYPE,
524
- Wx as CHAT_MESSAGE_ROLES,
525
- Il as CODE_TEXT_PATTERN,
526
- p as COLORS,
537
+ bx as ButtonTypes,
538
+ Wx as CHANNEL_TYPE,
539
+ Kx as CHAT_MESSAGE_ROLES,
540
+ _l as CODE_TEXT_PATTERN,
541
+ f as COLORS,
527
542
  mm as COLOR_CONFIG_MAP,
528
543
  lm as CONTENT_POSITION,
529
- Xx as COUPON_EXPIRATION,
530
- an as CURTAIN_COLOR_CONFIG_MAP,
531
- fn as CURTAIN_MODE,
532
- pn as CURTAIN_TYPES,
533
- Ap as CUSTOM_URL_NAME,
544
+ Zx as COPILOT_BALL_ATTRIBUTE,
545
+ Jx as COPILOT_ENDPOINT_PATH,
546
+ ri as COPILOT_HISTORY_PAGE_SIZE,
547
+ pi as COPILOT_ICEBREAKERS_PATH,
548
+ ei as COPILOT_MESSAGES_PATH,
549
+ li as COPILOT_SESSION_TTL_MS,
550
+ Pi as COUPON_EXPIRATION,
551
+ yi as CURTAIN_COLOR_CONFIG_MAP,
552
+ ki as CURTAIN_MODE,
553
+ Fi as CURTAIN_TYPES,
554
+ Sf as CUSTOM_URL_NAME,
534
555
  $o as Calendar,
535
556
  B as Caption,
536
557
  N as CaptionBold,
537
- ln as Card,
558
+ bi as Card,
538
559
  rl as CardDataContainer,
539
560
  rr as CardFooterArrow,
540
- sn as CardSelectionModal,
541
- un as CardSelector,
542
- cn as CardSelectorGroup,
543
- Cn as Carousel,
544
- En as CarouselPreview,
545
- Pn as CarouselSecondary,
546
- _n as CarouselVersion,
561
+ Hi as CardSelectionModal,
562
+ vi as CardSelector,
563
+ Yi as CardSelectorGroup,
564
+ Qi as Carousel,
565
+ zi as CarouselPreview,
566
+ ji as CarouselSecondary,
567
+ Ji as CarouselVersion,
547
568
  tr as ChartBar,
548
- fr as ChartPie,
569
+ pr as ChartPie,
549
570
  mr as Chat,
550
571
  xr as ChatChannel,
551
- ir as Check,
552
- On as CheckBox,
572
+ nr as Check,
573
+ on as CheckBox,
553
574
  dr as CheckCircle,
554
- Bn as CheckIndicatorIcon,
555
- Dn as CheckList,
575
+ en as CheckIndicatorIcon,
576
+ an as CheckList,
556
577
  Tr as CheckSquareOffset,
557
- Ar as ChecklistIcon,
558
- Sr as ChevronDown,
578
+ Sr as ChecklistIcon,
579
+ Ar as ChevronDown,
559
580
  Ir as ChevronDownOutline,
560
- Rr as ChevronLeft,
561
- hr as ChevronLeft2,
581
+ _r as ChevronLeft,
582
+ Or as ChevronLeft2,
562
583
  gr as ChevronRight,
563
584
  Nr as ChevronRight2,
564
- Lr as ChevronRightAlt,
565
- Mr as ChevronUpOutline,
566
- yn as Chip,
567
- kn as ChipDropdown,
568
- Fn as ChipDropdownContainer,
585
+ Dr as ChevronRightAlt,
586
+ yr as ChevronUpOutline,
587
+ fn as Chip,
588
+ ln as ChipDropdown,
589
+ xn as ChipDropdownContainer,
569
590
  Fr as CircularCrossIcon,
570
591
  br as Click,
571
592
  Vr as Clock,
572
- bn as CodeBlock,
573
- Vn as CodeLanguage,
574
- Gn as CohortError,
575
- Wn as ColourInput,
576
- Kn as CompletedChecklistIcon,
577
- n as ComponentZindex,
578
- Xn as ConnectedAppDialog,
593
+ sn as CodeBlock,
594
+ un as CodeLanguage,
595
+ Cn as CohortError,
596
+ cn as ColourInput,
597
+ En as CompletedChecklistIcon,
598
+ i as ComponentZindex,
599
+ Pn as ConnectedAppDialog,
600
+ Rn as ControlledCopilot,
601
+ jx as CopilotBall,
602
+ hn as CopilotPanel,
603
+ Bn as CopilotSseParser,
579
604
  Gr as CopyCodeIcon,
580
- jn as CountriesData,
581
- qn as CountryCodePicker,
582
- $n as CountryPicker,
583
- ri as CouponExpiration,
605
+ Ln as CountriesData,
606
+ Mn as CountryCodePicker,
607
+ kn as CountryPicker,
608
+ Un as CouponExpiration,
584
609
  Wr as Cross,
585
610
  Kr as CubeIcon,
586
- ti as CurrencySymbols,
611
+ wn as CurrencySymbols,
587
612
  Xr as Cursor,
588
- fi as Curtain,
613
+ Hn as Curtain,
589
614
  to as CustomDataCategories,
590
615
  ao as CustomDataType,
591
- mi as CustomDateTime,
592
- xi as CustomError,
593
- j as CustomPortal,
594
- Xp as CustomRightBorder,
595
- jr as CustomiseIcon,
596
- Bp as DATE_OPERATORS,
597
- ii as DEFAULT_ACTIVE_FORMATS,
598
- Yx as DEFAULT_CONVERSATION_ID,
599
- di as DEFAULT_IMAGE,
600
- ci as DEFAULT_MAX_TOOL_CALLS,
601
- Ai as DEFAULT_RESPONSE_FORMAT,
616
+ vn as CustomDateTime,
617
+ Yn as CustomError,
618
+ Z as CustomPortal,
619
+ Xf as CustomRightBorder,
620
+ Zr as CustomiseIcon,
621
+ Bf as DATE_OPERATORS,
622
+ Qn as DEFAULT_ACTIVE_FORMATS,
623
+ Qx as DEFAULT_CONVERSATION_ID,
624
+ zn as DEFAULT_COPILOT_AGENT,
625
+ Zn as DEFAULT_COPILOT_ROUTE,
626
+ Jn as DEFAULT_IMAGE,
627
+ rs as DEFAULT_MAX_TOOL_CALLS,
628
+ es as DEFAULT_RESPONSE_FORMAT,
602
629
  m as DEFAULT_THEME,
603
- zx as DISCOUNT_APPLIES_TO,
604
- jx as DISCOUNT_TARGET_SELECTION,
605
- Zx as DISCOUNT_TARGET_TYPES,
606
- qx as DISCOUNT_TYPES,
607
- Jx as DISCOUNT_VALUE_TYPES,
608
- Ei as DROP_POSITION,
609
- Ni as DashboardReviewPopUp,
610
- Li as DataSourcePanel,
611
- Mi as DateKeys,
612
- wi as DatePicker,
613
- Hi as DatePickerWrapper,
630
+ _i as DISCOUNT_APPLIES_TO,
631
+ Ri as DISCOUNT_TARGET_SELECTION,
632
+ Oi as DISCOUNT_TARGET_TYPES,
633
+ hi as DISCOUNT_TYPES,
634
+ gi as DISCOUNT_VALUE_TYPES,
635
+ ps as DROP_POSITION,
636
+ us as DashboardReviewPopUp,
637
+ Cs as DataSourcePanel,
638
+ cs as DateKeys,
639
+ _s as DatePicker,
640
+ Os as DatePickerWrapper,
614
641
  qr as Delete,
615
- vi as DeleteConfirmationModal,
642
+ gs as DeleteConfirmationModal,
616
643
  $r as DesktopCustom,
617
- Yi as DiscountModal,
618
- D as Display,
644
+ Ns as DiscountModal,
645
+ L as Display,
619
646
  re as Docs,
620
647
  te as DocumentPdf,
621
- Qi as DotPulse,
622
- fe as Doubt,
648
+ Ds as DotPulse,
649
+ pe as Doubt,
623
650
  me as DragHandle,
624
- zi as DropShadow,
625
- Zi as Dropdown,
626
- Ji as DropdownButton,
627
- os as DropdownPopover,
628
- Ii as DropdownToggleContainer,
629
- es as DualIconButton,
630
- as as DurationUnit,
631
- ps as DynamicTabs,
632
- Pl as EMAIL_PATTERN,
633
- ls as ERROR_TYPES,
634
- xs as ERROR_TYPE_CLASS_MAP,
635
- Np as EVENT_VALUES,
636
- Dp as EXACTLY_OPERATORS,
651
+ ys as DropShadow,
652
+ Fs as Dropdown,
653
+ bs as DropdownButton,
654
+ Vs as DropdownPopover,
655
+ fs as DropdownToggleContainer,
656
+ Gs as DualIconButton,
657
+ Ws as DurationUnit,
658
+ Ks as DynamicTabs,
659
+ Rl as EMAIL_PATTERN,
660
+ Xs as ERROR_TYPES,
661
+ zs as ERROR_TYPE_CLASS_MAP,
662
+ Nf as EVENT_VALUES,
663
+ Lf as EXACTLY_OPERATORS,
637
664
  al as EachItem,
638
665
  xe as Edit,
639
- ie as EditLabel,
640
- zp as EditorActionTypes,
666
+ ne as EditLabel,
667
+ zf as EditorActionTypes,
641
668
  de as EmailChannel,
642
669
  Te as Emoji,
643
- Ae as EnableIcon,
644
- Se as ErrorIcon,
670
+ Se as EnableIcon,
671
+ Ae as ErrorIcon,
645
672
  Ie as ErrorInfo,
646
- ss as ExcelUploadError,
647
- Re as ExpressionlessEmoji,
648
- us as FABMenu,
649
- Pi as FAB_POSITION,
673
+ qs as ExcelUploadError,
674
+ _e as ExpressionlessEmoji,
675
+ $s as FABMenu,
676
+ ms as FAB_POSITION,
650
677
  l as FONTS,
651
- Lp as FREQUENCY_OPERATORS,
652
- he as FacebookChannel,
678
+ Df as FREQUENCY_OPERATORS,
679
+ Oe as FacebookChannel,
653
680
  ge as FeatureAnnouncementProvider,
654
- cs as FeatureModal,
655
- Cs as FeatureModalV2,
681
+ rd as FeatureModal,
682
+ td as FeatureModalV2,
656
683
  Ne as File,
657
- Le as FilePdf,
658
- Es as FileUploader,
659
- Ps as FirebaseCallError,
660
- _s as FirebaseSubscriptionError,
661
- Os as FirebaseUserFetcher,
662
- Bs as Floater,
663
- Ds as FloatingActionButton,
664
- Ri as FloatingActionButtonContainer,
665
- _i as FloatingActionButtonOuterContainer,
666
- ys as FloatingInputDropdown,
667
- ks as FunnelVerticalBarGraph,
668
- Us as GRAPH_ORIENTATION,
669
- Me as GiftIcon,
684
+ De as FilePdf,
685
+ pd as FileUploader,
686
+ md as FirebaseCallError,
687
+ xd as FirebaseSubscriptionError,
688
+ nd as FirebaseUserFetcher,
689
+ dd as Floater,
690
+ Td as FloatingActionButton,
691
+ ls as FloatingActionButtonContainer,
692
+ xs as FloatingActionButtonOuterContainer,
693
+ Sd as FloatingInputDropdown,
694
+ Ad as FunnelVerticalBarGraph,
695
+ Id as GRAPH_ORIENTATION,
696
+ ye as GiftIcon,
670
697
  Fe as Gmail,
671
698
  be as GoLiveIcon,
672
699
  Ve as Graph,
673
700
  Ge as Grid,
674
- Cp as HEADER_TYPES,
675
- ws as HEAT,
676
- Vs as HEAT_COLORS,
677
- Hs as HEAT_GRADING_TYPE,
678
- Ws as HTTPMethods,
679
- Ys as HTTP_CODE,
680
- zs as HalfDoughnutChart,
701
+ cf as HEADER_TYPES,
702
+ _d as HEAT,
703
+ Rd as HEAT_COLORS,
704
+ Od as HEAT_GRADING_TYPE,
705
+ Bd as HTTPMethods,
706
+ Nd as HTTP_CODE,
707
+ yd as HalfDoughnutChart,
681
708
  We as HalfRectangle,
682
- _x as HeaderWrapper,
709
+ hx as HeaderWrapper,
683
710
  Ke as HeadsetIcon,
684
- Zs as HeatBoxStyled,
685
- Gs as HeatMap,
686
- qs as HeatMapVertical,
711
+ Fd as HeatBoxStyled,
712
+ hd as HeatMap,
713
+ Ud as HeatMapVertical,
687
714
  Xe as Help,
688
- je as HelpIcon,
715
+ Ze as HelpIcon,
689
716
  qe as Home,
690
- $s as HorinzontalBar,
717
+ wd as HorinzontalBar,
691
718
  $e as HorizontalDots,
692
- rd as HorizontalGraph,
719
+ Hd as HorizontalGraph,
693
720
  rt as HoverHome,
694
- yp as ICE_BREAKER_OPERATORS,
695
- Mp as IG_STRING_OPERATORS,
696
- kp as INTEGER_OPERATORS,
697
- Rl as ITALIC_TEXT_PATTERN,
698
- td as IconButton,
721
+ Mf as ICE_BREAKER_OPERATORS,
722
+ yf as IG_STRING_OPERATORS,
723
+ kf as INTEGER_OPERATORS,
724
+ Ol as ITALIC_TEXT_PATTERN,
725
+ vd as IconButton,
699
726
  tt as Idea,
700
- ft as Image,
701
- fd as ImageService,
702
- md as InactiveChecklistIcon,
727
+ pt as Image,
728
+ Yd as ImageService,
729
+ Qd as InactiveChecklistIcon,
703
730
  mt as Info,
704
- xd as Input,
705
- id as InputWithVariables,
731
+ zd as Input,
732
+ jd as InputWithVariables,
706
733
  xt as Instagram,
707
- it as InstagramChannel,
734
+ nt as InstagramChannel,
708
735
  dt as Italic,
709
- dd as KeywordsInput,
710
- Td as LAZY_SECONDARY_APP_NAME,
711
- Id as LineChart,
712
- Rd as LinearChipGroupedChart,
736
+ Jd as KeywordsInput,
737
+ ou as LAZY_SECONDARY_APP_NAME,
738
+ fu as LineChart,
739
+ lu as LinearChipGroupedChart,
713
740
  Tt as List,
714
- At as ListChecksIcon,
715
- hd as ListItem,
716
- gd as Loader,
717
- St as Locked,
741
+ St as ListChecksIcon,
742
+ iu as ListItem,
743
+ su as Loader,
744
+ At as Locked,
718
745
  It as LogOut,
719
- ns as Logger,
720
- Rt as LtoIcon,
721
- Fp as MAIL_SUBJECT_OPERATORS,
722
- _l as MARKDOWN_LINK_PATTERN,
723
- ki as MEDIA_TYPES,
724
- hi as MENU_ALIGNMENT,
746
+ Zs as Logger,
747
+ _t as LtoIcon,
748
+ Ff as MAIL_SUBJECT_OPERATORS,
749
+ hl as MARKDOWN_LINK_PATTERN,
750
+ xi as MAX_PERSISTED_MESSAGES,
751
+ As as MEDIA_TYPES,
752
+ is as MENU_ALIGNMENT,
725
753
  Pm as MESSAGE_CHANNELS,
726
- $x as MIN_PURCHASE_REQUIREMENT,
727
- wl as MainCardContainer,
728
- Vl as MainContainer,
729
- ht as MajorUpdatePopup,
754
+ Bi as MIN_PURCHASE_REQUIREMENT,
755
+ Hl as MainCardContainer,
756
+ Gl as MainContainer,
757
+ Ot as MajorUpdatePopup,
730
758
  gt as MarkdownRender,
731
759
  Nt as MarketingIcon,
732
- Lt as Maximize,
733
- yd as MenuItemDropdown,
734
- Mt as MinorUpdatePopup,
760
+ Dt as Maximize,
761
+ Su as MenuItemDropdown,
762
+ yt as MinorUpdatePopup,
735
763
  Ft as MobileCustom,
736
764
  bt as MoreVertical,
737
- kd as MultiLevelDropdown,
765
+ Au as MultiLevelDropdown,
738
766
  q as MultilevelDropdownPopover,
739
- Ud as NaLinkWrapper,
740
- bd as NavigationHyperlink,
741
- Vd as NewSubscriptionPlan,
767
+ Iu as NaLinkWrapper,
768
+ Pu as NavigationHyperlink,
769
+ Ru as NewSubscriptionPlan,
742
770
  Vt as Notes,
743
771
  Gt as NudgesIcon,
744
- on as OFFER_APPLIES_TO,
745
- Gd as OUT_OF_STOCK_ACTION,
772
+ Ni as OFFER_APPLIES_TO,
773
+ hu as OUT_OF_STOCK_ACTION,
746
774
  Wt as OnboardingLogo,
747
775
  Kt as OpenAI,
748
- Yd as OpenedDropdown,
776
+ Nu as OpenedDropdown,
749
777
  Xt as OrderTrackingIcon,
750
- kl as POD,
751
- Qd as POPUP_DIMENSIONS,
752
- zd as Pagination,
753
- jt as Paperclip,
778
+ Ul as POD,
779
+ Du as POPUP_DIMENSIONS,
780
+ yu as Pagination,
781
+ Zt as Paperclip,
754
782
  qt as PercentageIcon,
755
783
  $t as Phone,
756
784
  ra as PhoneRound,
757
- Zd as PickerType,
758
- Jd as PieChart,
759
- xn as PieChartAnalytics,
785
+ Fu as PickerType,
786
+ bu as PieChart,
787
+ wi as PieChartAnalytics,
760
788
  ta as Play,
761
- fa as Plus,
789
+ pa as Plus,
762
790
  ma as PlusIcon,
763
791
  xa as Pointer,
764
- ou as PostLiveChecklist,
765
- eu as PostLiveChecklistItem,
766
- Fi as PostPicker,
767
- au as PricePleaseProductPicker,
768
- fu as ProductPickerContent,
769
- mu as ProductPickerModal,
770
- ia as Profile,
771
- xu as ProgressBadgeIcon,
772
- iu as ProgressBarComponent,
773
- uu as ProgressBarType,
774
- Tu as ProgressBarV2,
792
+ Vu as PostLiveChecklist,
793
+ Gu as PostLiveChecklistItem,
794
+ Es as PostPicker,
795
+ Wu as PricePleaseProductPicker,
796
+ Yu as ProductPickerContent,
797
+ Qu as ProductPickerModal,
798
+ na as Profile,
799
+ zu as ProgressBadgeIcon,
800
+ ju as ProgressBarComponent,
801
+ $u as ProgressBarType,
802
+ oT as ProgressBarV2,
775
803
  da as ProgressChecklist,
776
- su as ProgressCompletedBar,
777
- Cu as PropertyNode,
778
- Su as PropertyNodeHeadless,
779
- Iu as PureSpinner,
804
+ qu as ProgressCompletedBar,
805
+ tT as PropertyNode,
806
+ aT as PropertyNodeHeadless,
807
+ fT as PureSpinner,
780
808
  Ta as Qrb,
781
809
  ll as QualityTimelineChart,
782
- _u as QueryBuilder,
783
- Ou as QueryBuilderConnectorType,
784
- Aa as QuestionMark,
785
- Sa as Quotes,
786
- Bu as RATIO,
787
- hl as RAW_PHONE_CANDIDATE_PATTERN,
810
+ xT as QueryBuilder,
811
+ nT as QueryBuilderConnectorType,
812
+ Sa as QuestionMark,
813
+ Aa as Quotes,
814
+ dT as RATIO,
815
+ gl as RAW_PHONE_CANDIDATE_PATTERN,
788
816
  Ia as RCSPDF,
789
- Up as REACTION_OPERATORS,
790
- Ci as RESPONSE_FORMATS,
791
- Lu as RadioButton,
792
- Mu as RadioList,
793
- Fu as RechargeError,
794
- Ra as Redirect,
795
- bu as Redirect2Icon,
796
- ha as RedirectToNew,
817
+ Uf as REACTION_OPERATORS,
818
+ ts as RESPONSE_FORMATS,
819
+ CT as RadioButton,
820
+ cT as RadioList,
821
+ ET as RechargeError,
822
+ _a as Redirect,
823
+ PT as Redirect2Icon,
824
+ Oa as RedirectToNew,
797
825
  ga as Refresh,
798
- Ks as RequestExecutor,
826
+ Ld as RequestExecutor,
799
827
  K as ResizableImage,
800
828
  Na as Retry,
801
- La as RetryIcon,
829
+ Da as RetryIcon,
802
830
  xl as RightPanelTemplateAnalytics,
803
- Am as SIZE,
804
- bp as SPECIFIC_IG_OPERATORS,
805
- Sp as STATIC_URL_CTA_OPTION,
806
- Vu as STEP_DEFINITIONS,
807
- wp as STRING_OPERATORS,
808
- Vp as STRING_RESTRICTED_OPERATORS,
809
- Hp as STRING_RESTRICTED_OPERATORS_2,
810
- Gp as STRING_RESTRICTED_OPERATORS_3,
811
- Ma as SadEmoji,
812
- Gu as ScoreBlock,
813
- vd as ScreenName,
831
+ Sm as SIZE,
832
+ bf as SPECIFIC_IG_OPERATORS,
833
+ Af as STATIC_URL_CTA_OPTION,
834
+ RT as STEP_DEFINITIONS,
835
+ wf as STRING_OPERATORS,
836
+ Vf as STRING_RESTRICTED_OPERATORS,
837
+ Hf as STRING_RESTRICTED_OPERATORS_2,
838
+ Gf as STRING_RESTRICTED_OPERATORS_3,
839
+ ya as SadEmoji,
840
+ hT as ScoreBlock,
841
+ gu as ScreenName,
814
842
  Fa as Search,
815
- Wu as SearchBar,
843
+ BT as SearchBar,
816
844
  W as SearchFilter,
817
- Ku as SearchIcon,
845
+ LT as SearchIcon,
818
846
  ba as SearchIconSvg,
819
847
  Va as Send,
820
848
  Ga as SendTemplate,
821
- ui as ShimmerImage,
849
+ $n as ShimmerImage,
822
850
  Wa as ShippingIcon,
823
- Xu as ShopifyScopeWrapper,
851
+ MT as ShopifyScopeWrapper,
824
852
  Ka as ShoppingIcon,
825
- ju as ShowShopifyRestrictedModal,
826
- qu as SideModal,
827
- $u as SidebarSkeleton,
853
+ kT as ShowShopifyRestrictedModal,
854
+ UT as SideModal,
855
+ wT as SidebarSkeleton,
828
856
  Xa as Similar,
829
- rT as SimpleSidebar,
830
- tT as SmallCheckIcon,
831
- L as SmallRegular,
832
- ja as SmileEmoji,
857
+ HT as SimpleSidebar,
858
+ vT as SmallCheckIcon,
859
+ D as SmallRegular,
860
+ Za as SmileEmoji,
833
861
  qa as SmileyEmoji,
834
862
  $a as Sparkle,
835
- rf as Speedometer,
836
- Pu as Spinner,
837
- fT as StackedBarChart,
838
- mT as StackedBarDistributionChart,
839
- tf as StarEmpty,
840
- ff as StarFilled,
841
- mf as StarFilledV2,
842
- xT as StarRating,
843
- Ux as StateComponent,
844
- xf as StateIcon,
845
- bx as StateInterface,
846
- iT as StateModalComponent,
847
- dT as Stepper,
848
- sf as Steps,
849
- uf as Store,
850
- cf as StrikeThrough,
863
+ rp as Speedometer,
864
+ mT as Spinner,
865
+ YT as StackedBarChart,
866
+ QT as StackedBarDistributionChart,
867
+ tp as StarEmpty,
868
+ pp as StarFilled,
869
+ mp as StarFilledV2,
870
+ zT as StarRating,
871
+ wx as StateComponent,
872
+ xp as StateIcon,
873
+ Vx as StateInterface,
874
+ jT as StateModalComponent,
875
+ JT as Stepper,
876
+ np as Steps,
877
+ dp as Store,
878
+ Tp as StrikeThrough,
851
879
  t as StringUtils,
852
- Oi as StyledDropdown,
853
- TT as StyledModal,
854
- Cf as SubCategory,
855
- y as SubHeading,
856
- AT as SubscriptionPlan,
857
- hx as SubscriptionPlanSelector,
858
- ST as SubscriptionPlansCollected,
859
- Ef as SuccessIcon,
860
- Pf as SupportIcon,
861
- Bd as Switch,
862
- Nd as SwitchContainer,
863
- _f as Sync,
864
- Ep as TEMPLATE_EDITOR,
865
- Fl as TEMPLATE_QUALITY,
866
- Ip as TEMPLATE_STATUS,
867
- IT as TEXT,
868
- Qs as TRANSACTION_ENABLED_STORE_IDS,
869
- RT as TabItemComponent,
870
- OT as TablePagination,
871
- BT as TablePaginationCard,
872
- NT as TablePaginationCardStyled,
873
- _T as Tabs,
874
- LT as Tag,
875
- Of as Task,
876
- nl as TemplateAnalyticsComponent,
877
- MT as TemplateAnalyticsSkeleton,
878
- FT as TemplateContextMapper,
879
- bT as TemplatePreview,
880
- VT as TestimonialCard,
881
- cu as TextAlignment,
882
- GT as TextPickerModal,
883
- M as TextPlaceholder,
884
- Bf as TextT9,
885
- Df as ThreeColumns,
886
- Dd as Thumb,
887
- Nu as Thumbnail,
888
- yf as Tick,
889
- kf as TickDouble,
890
- WT as TimePicker,
880
+ ns as StyledDropdown,
881
+ oC as StyledModal,
882
+ Sp as SubCategory,
883
+ M as SubHeading,
884
+ eC as SubscriptionPlan,
885
+ gx as SubscriptionPlanSelector,
886
+ aC as SubscriptionPlansCollected,
887
+ Ap as SuccessIcon,
888
+ Ip as SupportIcon,
889
+ du as Switch,
890
+ uu as SwitchContainer,
891
+ _p as Sync,
892
+ Ef as TEMPLATE_EDITOR,
893
+ bl as TEMPLATE_QUALITY,
894
+ If as TEMPLATE_STATUS,
895
+ fC as TEXT,
896
+ Dd as TRANSACTION_ENABLED_STORE_IDS,
897
+ lC as TabItemComponent,
898
+ nC as TablePagination,
899
+ dC as TablePaginationCard,
900
+ uC as TablePaginationCardStyled,
901
+ xC as Tabs,
902
+ CC as Tag,
903
+ Op as Task,
904
+ il as TemplateAnalyticsComponent,
905
+ cC as TemplateAnalyticsSkeleton,
906
+ EC as TemplateContextMapper,
907
+ PC as TemplatePreview,
908
+ RC as TestimonialCard,
909
+ rT as TextAlignment,
910
+ hC as TextPickerModal,
911
+ y as TextPlaceholder,
912
+ gp as TextT9,
913
+ Np as ThreeColumns,
914
+ Tu as Thumb,
915
+ uT as Thumbnail,
916
+ Dp as Tick,
917
+ yp as TickDouble,
918
+ BC as TimePicker,
891
919
  k as Tiny,
892
920
  F as TitleFour,
893
921
  U as TitleLarge,
@@ -896,112 +924,134 @@ export {
896
924
  V as TitleSmall,
897
925
  H as TitleTiny,
898
926
  G as TitleXlarge,
899
- KT as Toaster,
900
- XT as ToolSource,
901
- jT as Tooltip,
902
- gi as TooltipStyled,
903
- Uf as TrainingIcon,
904
- wf as TriangleError,
905
- qT as TruncateValue,
906
- Pp as UNSUBSCRIBE_URL_OPTION,
907
- Ol as URL_PATTERN,
908
- Hf as Undo,
909
- vf as Union,
927
+ LC as Toaster,
928
+ MC as ToolSource,
929
+ kC as Tooltip,
930
+ ss as TooltipStyled,
931
+ Fp as TrainingIcon,
932
+ bp as TriangleError,
933
+ UC as TruncateValue,
934
+ Pf as UNSUBSCRIBE_URL_OPTION,
935
+ Bl as URL_PATTERN,
936
+ Vp as Undo,
937
+ Gp as Union,
910
938
  ro as UnsatisfactoryCountIntentWiseModal,
911
939
  $ as UnsatisfactoryResponseList,
912
- Yf as Upload,
913
- Qf as UserIcon,
914
- ic as VariableEditorHelper,
915
- dc as VariablePicker,
916
- Tc as VerticalBarAndLinearGraph,
917
- zf as VerticalDots,
918
- Zf as VerticalFullScreenModal,
919
- Ac as VerticalGraph,
920
- Jf as VideoCamcorder,
921
- Sc as VideoModal,
922
- op as VideoRecorder,
923
- ep as Warning,
924
- ap as WarningIcon,
925
- pp as Website,
926
- Ic as WhatsAppFormatToHTML,
927
- Rc as WhatsAppTextEditor,
928
- jp as WhatsAppTextEditorHeader,
929
- hc as WhatsNew,
930
- gc as WhatsNewButton,
931
- lp as WhatsNewIcon,
932
- Hl as WhatsNewIconContainer,
933
- Nc as WhatsNewPanel,
934
- Lc as WhatsNewProvider,
935
- Gl as WhatsNewWrapper,
936
- np as WhatsappChannel,
937
- sp as WhatsappColor,
938
- kc as WhatsappIntegrationError,
939
- Uc as WhatsappLikePreview,
940
- wc as WhatsappLikePreviewV2,
941
- up as WhiteStarFilled,
942
- Hc as buildAgentMentionItems,
943
- JT as calculatePercentage,
940
+ Wp as Upload,
941
+ Kp as UserIcon,
942
+ jC as VariableEditorHelper,
943
+ JC as VariablePicker,
944
+ oS as VerticalBarAndLinearGraph,
945
+ Xp as VerticalDots,
946
+ Zp as VerticalFullScreenModal,
947
+ eS as VerticalGraph,
948
+ qp as VideoCamcorder,
949
+ aS as VideoModal,
950
+ $p as VideoRecorder,
951
+ rf as Warning,
952
+ tf as WarningIcon,
953
+ pf as Website,
954
+ fS as WhatsAppFormatToHTML,
955
+ lS as WhatsAppTextEditor,
956
+ Zf as WhatsAppTextEditorHeader,
957
+ iS as WhatsNew,
958
+ sS as WhatsNewButton,
959
+ mf as WhatsNewIcon,
960
+ vl as WhatsNewIconContainer,
961
+ uS as WhatsNewPanel,
962
+ CS as WhatsNewProvider,
963
+ Wl as WhatsNewWrapper,
964
+ xf as WhatsappChannel,
965
+ sf as WhatsappColor,
966
+ AS as WhatsappIntegrationError,
967
+ IS as WhatsappLikePreview,
968
+ _S as WhatsappLikePreviewV2,
969
+ uf as WhiteStarFilled,
970
+ OS as buildAgentMentionItems,
971
+ bC as calculatePercentage,
972
+ NS as clearCopilotPageSessions,
944
973
  tm as computeAiTagOnAccept,
945
- Kx as createSessionRecord,
946
- Ui as dateOptions,
947
- Ox as defaultTabs,
948
- Gc as editorDocToInstructions,
949
- Yc as environment,
950
- gl as filterPhoneCandidates,
951
- fl as formatDate,
952
- Qc as getAllDataFromTemplateComponent,
953
- Xc as getAllDataFromWebpushTemplateComponent,
954
- jc as getAuthMethods,
955
- eA as getBodyHtml,
956
- fA as getFireStoreDb,
957
- mA as getFireStoreLiteDb,
958
- xA as getFirebaseChatStorage,
959
- Zc as getFirestoreLiteMethods,
960
- qc as getFirestoreMethods,
961
- Jc as getFunctionsMethods,
962
- $c as getMessagingMethods,
963
- cd as getOrInitFirebaseChatApp,
964
- tA as getSectionsHtml,
965
- oA as getStorageMethods,
966
- Kl as getUrlForBannerThirdPartyIcon,
967
- rn as initialDynamicCouponErrorState,
968
- en as initialStaticCouponErrorState,
969
- vc as instructionsToEditorHtml,
970
- Bl as isCompleteFormatting,
971
- Nl as isCompleteMarkdownLink,
972
- Dl as isCompleteUrl,
973
- iA as isVariable,
974
- Ad as lazyChatConfig,
975
- Cd as lazyStagingConfig,
974
+ ii as copilotSessionKey,
975
+ ni as createCopilotSession,
976
+ si as createCopilotSessionId,
977
+ Xx as createSessionRecord,
978
+ Is as dateOptions,
979
+ Bx as defaultTabs,
980
+ di as deleteCopilotSession,
981
+ hS as editorDocToInstructions,
982
+ kS as environment,
983
+ fi as fetchCopilotIcebreakers,
984
+ ti as fetchCopilotMessages,
985
+ Nl as filterPhoneCandidates,
986
+ ui as findLatestCopilotSessionId,
987
+ pl as formatDate,
988
+ US as getAllDataFromTemplateComponent,
989
+ bS as getAllDataFromWebpushTemplateComponent,
990
+ VS as getAuthMethods,
991
+ QS as getBodyHtml,
992
+ ZS as getCopilotPanelPlacement,
993
+ LS as getCopilotSessionIdForRoute,
994
+ qS as getFireStoreDb,
995
+ $S as getFireStoreLiteDb,
996
+ rc as getFirebaseChatStorage,
997
+ HS as getFirestoreLiteMethods,
998
+ GS as getFirestoreMethods,
999
+ vS as getFunctionsMethods,
1000
+ WS as getMessagingMethods,
1001
+ ru as getOrInitFirebaseChatApp,
1002
+ XS as getSectionsHtml,
1003
+ YS as getStorageMethods,
1004
+ Xl as getUrlForBannerThirdPartyIcon,
1005
+ Li as initialDynamicCouponErrorState,
1006
+ Di as initialStaticCouponErrorState,
1007
+ gS as instructionsToEditorHtml,
1008
+ Ll as isCompleteFormatting,
1009
+ Dl as isCompleteMarkdownLink,
1010
+ Ml as isCompleteUrl,
1011
+ Ti as isCopilotSessionExpired,
1012
+ tc as isVariable,
1013
+ eu as lazyChatConfig,
1014
+ tu as lazyStagingConfig,
976
1015
  am as levenshteinDistance,
977
- uA as queryBuilderCacheSlice,
978
- cA as queryBuilderSlice,
1016
+ Ci as listCopilotSessionKeys,
1017
+ Si as loadCopilotSession,
1018
+ ci as persistCopilotTurn,
1019
+ Ai as pruneCopilotSessions,
1020
+ fc as queryBuilderCacheSlice,
1021
+ lc as queryBuilderSlice,
979
1022
  o as regexPatterns,
980
- CA as renderVariableUIForPreview,
981
- EA as resizeImage,
982
- Sd as rnSecondaryAuth,
983
- $T as roundNumber,
984
- Ll as stripMarkdownFormatting,
985
- PA as toLiveChatText,
986
- _A as toWhatsAppText,
987
- oc as truncateValueForIndianStore,
988
- rc as truncateValueForInternationalStore,
989
- ec as truncateValueTo10K,
990
- tc as truncateValueToA,
991
- ac as truncateValueToB,
992
- fc as truncateValueToC,
993
- pc as truncateValueToK,
994
- mc as truncateValueToL,
995
- lc as truncateValueToM,
996
- xc as truncateValueToT,
997
- OA as unwrapDropdownValue,
998
- BA as useAIChat,
1023
+ ic as renderVariableUIForPreview,
1024
+ DS as resetCopilotSessionForRoute,
1025
+ sc as resizeImage,
1026
+ MS as resolveCopilotSessionIdForRoute,
1027
+ au as rnSecondaryAuth,
1028
+ wC as roundNumber,
1029
+ Ei as saveCopilotSession,
1030
+ $x as streamCopilotChat,
1031
+ yl as stripMarkdownFormatting,
1032
+ uc as toLiveChatText,
1033
+ Cc as toWhatsAppText,
1034
+ VC as truncateValueForIndianStore,
1035
+ HC as truncateValueForInternationalStore,
1036
+ GC as truncateValueTo10K,
1037
+ vC as truncateValueToA,
1038
+ WC as truncateValueToB,
1039
+ YC as truncateValueToC,
1040
+ KC as truncateValueToK,
1041
+ QC as truncateValueToL,
1042
+ XC as truncateValueToM,
1043
+ zC as truncateValueToT,
1044
+ cc as unwrapDropdownValue,
1045
+ Ec as useAIChat,
999
1046
  om as useAIContext,
1000
- DA as useAgentDraft,
1001
- yA as useFeatureAnnouncements,
1002
- kA as useWhatsNew,
1003
- yc as useWhatsNewContext,
1004
- sA as validateIsUrl,
1047
+ Pc as useAgentDraft,
1048
+ jn as useCopilotIcebreakers,
1049
+ Rc as useCopilotStreamChat,
1050
+ hc as useDraggableFloater,
1051
+ Bc as useFeatureAnnouncements,
1052
+ Lc as useWhatsNew,
1053
+ SS as useWhatsNewContext,
1054
+ ac as validateIsUrl,
1005
1055
  X as validateURL
1006
1056
  };
1007
1057
  //# sourceMappingURL=index.js.map