@telia-ace/ace-chat-flamingo 1.1.123-rc.10 → 1.1.123-rc.11
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/index.js +122 -204
- package/index.mjs +1303 -1465
- package/package.json +3 -3
- package/provider.d.ts +1 -4
- package/ui/{logout-confirm-dialog.d.ts → auth-session-end-confirm-dialog.d.ts} +2 -2
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.11",
|
|
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.11",
|
|
6
|
+
"@telia-ace/widget-conversation-flamingo": "1.1.123-rc.11",
|
|
7
7
|
"rxjs": "^7.8.2",
|
|
8
8
|
"lit": "^3.0.2",
|
|
9
9
|
"@teliads/icons": "^8.4.0",
|
package/provider.d.ts
CHANGED
|
@@ -13,14 +13,12 @@ export declare class ChatProvider extends ConversationProvider {
|
|
|
13
13
|
private readonly idHubUrl;
|
|
14
14
|
private readonly shouldUseAuth;
|
|
15
15
|
private readonly idHubEidType;
|
|
16
|
-
private logoutTimer;
|
|
17
16
|
private readonly disconnected$;
|
|
18
17
|
private engine?;
|
|
19
18
|
private idHubClient?;
|
|
20
19
|
private agentUsername;
|
|
21
20
|
private videoConfirmDialogEntry;
|
|
22
21
|
private quitConfirmDialogEntry;
|
|
23
|
-
private logoutConfirmDialogEntry;
|
|
24
22
|
private authenticationCardEntry;
|
|
25
23
|
private conversationOption;
|
|
26
24
|
private _conversationOptions;
|
|
@@ -77,8 +75,7 @@ export declare class ChatProvider extends ConversationProvider {
|
|
|
77
75
|
private showVideoConfirmDialog;
|
|
78
76
|
private showVideoIFrame;
|
|
79
77
|
private showChatOverVideo;
|
|
80
|
-
private
|
|
81
|
-
private showLogoutConfirmDialog;
|
|
78
|
+
private endAuthenticatedSession;
|
|
82
79
|
private removeVideo;
|
|
83
80
|
private addHeaderOptions;
|
|
84
81
|
private removeHeaderOptions;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class AuthSessionEndConfirmDialog extends LitElement {
|
|
3
3
|
static styles: import('lit').CSSResult[];
|
|
4
4
|
private application;
|
|
5
5
|
firstUpdated(): void;
|
|
6
|
-
private
|
|
6
|
+
private onEnd;
|
|
7
7
|
private onCancel;
|
|
8
8
|
private dispatchResult;
|
|
9
9
|
render(): import('lit-html').TemplateResult<1>;
|