@telia-ace/ace-chat-flamingo 1.1.123-rc.32 → 1.1.123-rc.33
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/exceptions/engine.exception.d.ts +4 -1
- package/index.js +102 -102
- package/index.mjs +812 -795
- package/package.json +3 -3
- package/provider.d.ts +2 -0
- package/types.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/ace-chat-flamingo",
|
|
3
|
-
"version": "1.1.123-rc.
|
|
3
|
+
"version": "1.1.123-rc.33",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@telia-ace/widget-core-flamingo": "1.1.123-rc.
|
|
6
|
-
"@telia-ace/widget-conversation-flamingo": "1.1.123-rc.
|
|
5
|
+
"@telia-ace/widget-core-flamingo": "1.1.123-rc.33",
|
|
6
|
+
"@telia-ace/widget-conversation-flamingo": "1.1.123-rc.33",
|
|
7
7
|
"rxjs": "^7.8.2",
|
|
8
8
|
"lit": "^3.0.2",
|
|
9
9
|
"@teliads/icons": "^8.4.0",
|
package/provider.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ export declare class ChatProvider extends ConversationProvider {
|
|
|
49
49
|
private startChat;
|
|
50
50
|
private restartNewChat;
|
|
51
51
|
private handleChatEngineError;
|
|
52
|
+
private resetChatState;
|
|
53
|
+
private getUIErrorMessage;
|
|
52
54
|
private setQueueStatus;
|
|
53
55
|
private endConversation;
|
|
54
56
|
private sendConversationEmail;
|
package/types.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export declare const isVideoPreparedAction: (action: EngineAction) => action is
|
|
|
116
116
|
export declare const isChatButtonClickedAction: (action: EngineAction) => action is ChatButtonClickedAction;
|
|
117
117
|
export declare const isEndVideoButtonClickedAction: (action: EngineAction) => action is EndVideoButtonClickedAction;
|
|
118
118
|
export declare const isChatEndedAction: (action: EngineAction) => action is ChatEndedAction;
|
|
119
|
+
export type EngineErrorType = 'chat-request-error' | 'chat-join-error' | 'chat-engine-error' | 'chat-write-error' | 'chat-email-session-error' | 'chat-unknown-error';
|
|
119
120
|
export type AuthenticationInfo = {
|
|
120
121
|
authenticated: boolean;
|
|
121
122
|
name?: string;
|