@telia-ace/widget-conversation-flamingo 1.1.65-rc.0 → 1.1.65
Sign up to get free protection for your applications and to get access to all the features.
- package/conversation.d.ts +1 -0
- package/index.js +94 -49
- package/index.mjs +1364 -1308
- package/models/conversation-provider.d.ts +2 -1
- package/package.json +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Subject } from 'rxjs';
|
1
|
+
import { BehaviorSubject, Subject } from 'rxjs';
|
2
2
|
import { ConversationMessageType } from '../types';
|
3
3
|
import { ConversationEntry } from './conversation-entry';
|
4
4
|
import { Agent } from './agent';
|
@@ -17,6 +17,7 @@ export declare class ConversationProvider {
|
|
17
17
|
protected system: System;
|
18
18
|
rehydrate$: Subject<void>;
|
19
19
|
saveToCurrentSession$: Subject<any>;
|
20
|
+
showChatOverlay$: BehaviorSubject<boolean>;
|
20
21
|
constructor(name: string, component: Conversation);
|
21
22
|
connect(_conversationOptions?: Record<string, any>): void;
|
22
23
|
disconnected(): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@telia-ace/widget-conversation-flamingo",
|
3
|
-
"version": "1.1.65
|
3
|
+
"version": "1.1.65",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org"
|
6
6
|
},
|
@@ -9,7 +9,7 @@
|
|
9
9
|
"@lit-labs/motion": "^1.0.4",
|
10
10
|
"@teliads/icons": "^8.4.0",
|
11
11
|
"@teliads/components": "^22.1.1",
|
12
|
-
"@telia-ace/widget-core-flamingo": "1.1.65
|
12
|
+
"@telia-ace/widget-core-flamingo": "1.1.65",
|
13
13
|
"lit-html": "^3.0.2",
|
14
14
|
"rxjs": "^7.8.1"
|
15
15
|
},
|