@telia-ace/widget-conversation-flamingo 1.1.72-rc.0 → 1.1.72-rc.10
Sign up to get free protection for your applications and to get access to all the features.
- package/conversation-utilities.d.ts +3 -0
- package/index.d.ts +1 -0
- package/index.js +83 -68
- package/index.mjs +769 -682
- package/models/agent.d.ts +1 -1
- package/package.json +2 -2
- package/uuid.d.ts +0 -1
package/models/agent.d.ts
CHANGED
@@ -3,6 +3,6 @@ export declare class Agent {
|
|
3
3
|
name: string;
|
4
4
|
private print$;
|
5
5
|
constructor(name: string);
|
6
|
-
print(text: string, type?: string): ConversationEntry;
|
6
|
+
print(text: string, type?: string, alias?: string): ConversationEntry;
|
7
7
|
subscribe(): import("rxjs").Observable<ConversationEntry>;
|
8
8
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@telia-ace/widget-conversation-flamingo",
|
3
|
-
"version": "1.1.72-rc.
|
3
|
+
"version": "1.1.72-rc.10",
|
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.72-rc.
|
12
|
+
"@telia-ace/widget-core-flamingo": "1.1.72-rc.10",
|
13
13
|
"lit-html": "^3.0.2",
|
14
14
|
"rxjs": "^7.8.1",
|
15
15
|
"marked": "^12.0.2"
|
package/uuid.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export declare const uuid: () => `${string}-${string}-${string}-${string}-${string}`;
|