@telia-ace/ace-chat-flamingo 1.1.123-rc.32 → 1.1.123-rc.34

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@telia-ace/ace-chat-flamingo",
3
- "version": "1.1.123-rc.32",
3
+ "version": "1.1.123-rc.34",
4
4
  "dependencies": {
5
- "@telia-ace/widget-core-flamingo": "1.1.123-rc.32",
6
- "@telia-ace/widget-conversation-flamingo": "1.1.123-rc.32",
5
+ "@telia-ace/widget-core-flamingo": "1.1.123-rc.34",
6
+ "@telia-ace/widget-conversation-flamingo": "1.1.123-rc.34",
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,7 @@ export declare class ChatProvider extends ConversationProvider {
49
49
  private startChat;
50
50
  private restartNewChat;
51
51
  private handleChatEngineError;
52
+ private resetChatState;
52
53
  private setQueueStatus;
53
54
  private endConversation;
54
55
  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;