@brainfish-ai/components 0.18.8 → 0.19.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.
- package/dist/chat-search.d.ts +11 -2
- package/dist/esm/chunks/{ChatSearch.DCnEmHuh.js → ChatSearch.g9-_lvsz.js} +200 -72
- package/dist/esm/chunks/ChatSearch.g9-_lvsz.js.map +1 -0
- package/dist/esm/components/chat-search.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +11 -2
- package/dist/stats.html +1 -1
- package/package.json +1 -1
- package/dist/esm/chunks/ChatSearch.DCnEmHuh.js.map +0 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { C as ChatSearch, a as ChatSearchProvider, u as useChatSearch, b as useIsChatSearchDirty } from '../chunks/ChatSearch.
|
|
1
|
+
export { C as ChatSearch, a as ChatSearchProvider, u as useChatSearch, b as useIsChatSearchDirty } from '../chunks/ChatSearch.g9-_lvsz.js';
|
|
2
2
|
//# sourceMappingURL=chat-search.js.map
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './global.css';/* empty css */
|
|
2
2
|
export { BrainfishColors } from './colors.js';
|
|
3
|
-
export { C as ChatSearch, a as ChatSearchProvider, u as useChatSearch, b as useIsChatSearchDirty } from './chunks/ChatSearch.
|
|
3
|
+
export { C as ChatSearch, a as ChatSearchProvider, u as useChatSearch, b as useIsChatSearchDirty } from './chunks/ChatSearch.g9-_lvsz.js';
|
|
4
4
|
export { C as CodeBlock, F as FormattedMessage, M as MemoizedReactMarkdown, a as MermaidDiagram, Z as ZoomableImage, c as addPopupWidgetUtm, b as addUtmParameters } from './chunks/FormattedMessage.ieoe4jPf.js';
|
|
5
5
|
import { Button } from './components/ui/button.js';
|
|
6
6
|
export { buttonVariants } from './components/ui/button.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -91,7 +91,12 @@ declare enum ActionType {
|
|
|
91
91
|
CallPhone = "call_phone",
|
|
92
92
|
OpenUrl = "open_url",
|
|
93
93
|
SendEmail = "send_email",
|
|
94
|
-
RunCallback = "run_callback"
|
|
94
|
+
RunCallback = "run_callback",
|
|
95
|
+
LaunchIntercomChat = "launch_intercom_chat",
|
|
96
|
+
LaunchZendeskChat = "launch_zendesk_chat",
|
|
97
|
+
LaunchZendeskMessenger = "launch_zendesk_messenger",
|
|
98
|
+
LaunchFreshdesk = "launch_freshdesk",
|
|
99
|
+
LaunchSupportTicketForm = "launch_support_ticket_form"
|
|
95
100
|
}
|
|
96
101
|
|
|
97
102
|
declare type AddActionButtons = {
|
|
@@ -1173,7 +1178,11 @@ declare enum NextBestActionType {
|
|
|
1173
1178
|
Email = "email",
|
|
1174
1179
|
Phone = "phone",
|
|
1175
1180
|
Callback = "callback",
|
|
1176
|
-
Function = "function"
|
|
1181
|
+
Function = "function",
|
|
1182
|
+
ZendeskChat = "zendesk_chat",
|
|
1183
|
+
ZendeskMessenger = "zendesk_messenger",
|
|
1184
|
+
IntercomChat = "intercom_chat",
|
|
1185
|
+
Freshdesk = "freshdesk"
|
|
1177
1186
|
}
|
|
1178
1187
|
|
|
1179
1188
|
declare type NoArticlesFound = {
|