@telia-ace/widget-core-flamingo 1.1.120-rc.12 → 1.1.120-rc.14

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.
@@ -22,7 +22,6 @@ export declare class Application {
22
22
  triggerIcon?: TriggerIcon;
23
23
  anchor: WidgetAnchor;
24
24
  autoActivate: boolean;
25
- userData: any;
26
25
  private plugins;
27
26
  private componentResolver;
28
27
  private components;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telia-ace/widget-core-flamingo",
3
- "version": "1.1.120-rc.12",
3
+ "version": "1.1.120-rc.14",
4
4
  "dependencies": {
5
5
  "lit": "^3.0.2",
6
6
  "@teliads/icons": "^8.4.0",
package/types.d.ts CHANGED
@@ -72,3 +72,9 @@ export type InitConfig = {
72
72
  };
73
73
  export type PluginType = (app: Application) => Promise<void>;
74
74
  export type WidgetAnchor = 'BottomRight' | 'BottomLeft';
75
+ export declare enum AuthState {
76
+ NonAuthenticated = "non-authenticated",
77
+ Authenticating = "authenticating",
78
+ Authenticated = "authenticated",
79
+ ChatEnded = "chat-ended"
80
+ }