@carbon/ai-chat 1.2.1 → 1.3.0-rc.1
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/es/aiChatEntry.js +7 -7
- package/dist/es/chat.ChatAppEntry.js +788 -391
- package/dist/es/chat.ChatAppEntry.js.map +1 -1
- package/dist/es/chat.PageObjectId.js +10 -1
- package/dist/es/chat.PageObjectId.js.map +1 -1
- package/dist/es/serverEntry.js +1 -1
- package/dist/es/web-components/cds-aichat-container/index.js +6 -6
- package/dist/es/web-components/cds-aichat-custom-element/index.js +6 -6
- package/dist/es-custom/aiChatEntry.js +7 -7
- package/dist/es-custom/chat.ChatAppEntry.js +788 -391
- package/dist/es-custom/chat.ChatAppEntry.js.map +1 -1
- package/dist/es-custom/chat.PageObjectId.js +10 -1
- package/dist/es-custom/chat.PageObjectId.js.map +1 -1
- package/dist/es-custom/serverEntry.js +1 -1
- package/dist/es-custom/web-components/cds-aichat-container/index.js +6 -6
- package/dist/es-custom/web-components/cds-aichat-custom-element/index.js +6 -6
- package/dist/types/aiChatEntry.d.ts +2 -2
- package/dist/types/{serverEntry-Cad3Ek2W.d.ts → serverEntry-BMoPx5K4.d.ts} +266 -48
- package/dist/types/serverEntry.d.ts +1 -1
- package/package.json +11 -11
|
@@ -5,6 +5,12 @@ var ViewType;
|
|
|
5
5
|
ViewType["MAIN_WINDOW"] = "mainWindow";
|
|
6
6
|
})(ViewType || (ViewType = {}));
|
|
7
7
|
|
|
8
|
+
var PanelType;
|
|
9
|
+
|
|
10
|
+
(function(PanelType) {
|
|
11
|
+
PanelType["DEFAULT"] = "default";
|
|
12
|
+
})(PanelType || (PanelType = {}));
|
|
13
|
+
|
|
8
14
|
var WriteableElementName;
|
|
9
15
|
|
|
10
16
|
(function(WriteableElementName) {
|
|
@@ -191,6 +197,8 @@ var launcher_ariaIsExpanded = "Close the chat launcher";
|
|
|
191
197
|
|
|
192
198
|
var launcher_closeButton = "Close";
|
|
193
199
|
|
|
200
|
+
var media_transcript_label = "Transcript";
|
|
201
|
+
|
|
194
202
|
var messages_youSaid = "You said";
|
|
195
203
|
|
|
196
204
|
var messages_assistantSaid = "{assistantName} said";
|
|
@@ -536,6 +544,7 @@ var enLanguagePackData = {
|
|
|
536
544
|
launcher_mobileGreeting: launcher_mobileGreeting,
|
|
537
545
|
launcher_ariaIsExpanded: launcher_ariaIsExpanded,
|
|
538
546
|
launcher_closeButton: launcher_closeButton,
|
|
547
|
+
media_transcript_label: media_transcript_label,
|
|
539
548
|
messages_youSaid: messages_youSaid,
|
|
540
549
|
messages_assistantSaid: messages_assistantSaid,
|
|
541
550
|
messages_agentSaid: messages_agentSaid,
|
|
@@ -901,5 +910,5 @@ var PageObjectId;
|
|
|
901
910
|
PageObjectId["BUTTON_RESPONSE_PANEL"] = "button_response_panel";
|
|
902
911
|
})(PageObjectId || (PageObjectId = {}));
|
|
903
912
|
|
|
904
|
-
export { BusEventType as B, CornersType as C, ErrorType as E, FeedbackInteractionType as F, HumanAgentsOnlineStatus as H, IFrameItemDisplayOption as I, MessageSendSource as M, OnErrorType as O,
|
|
913
|
+
export { BusEventType as B, CornersType as C, ErrorType as E, FeedbackInteractionType as F, HumanAgentsOnlineStatus as H, IFrameItemDisplayOption as I, MessageSendSource as M, OnErrorType as O, PanelType as P, ScreenShareState as S, UserType as U, ViewType as V, WriteableElementName as W, ViewChangeReason as a, CancellationReason as b, CarbonTheme as c, MinimizeButtonIconType as d, enLanguagePack as e, FileStatusValue as f, ButtonItemKind as g, ButtonItemType as h, MessageInputType as i, MessageResponseTypes as j, OptionItemPreference as k, WidthOptions as l, HumanAgentMessageType as m, ChainOfThoughtStepStatus as n, MessageErrorState as o, PageObjectId as p, InternalMessageRequestType as q, MainWindowOpenReason as r, MainWindowCloseReason as s };
|
|
905
914
|
//# sourceMappingURL=chat.PageObjectId.js.map
|