@superfeedback/widget 0.0.9 → 0.0.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/README.md CHANGED
@@ -96,5 +96,4 @@ The widget automatically routes tickets based on your configuration in the dashb
96
96
  | :--- | :--- | :--- |
97
97
  | **Jira** | Project Management | ✅ Supported |
98
98
  | **GitHub** | Issue Tracking | ✅ Supported |
99
- | **Slack** | Communication | ✅ Supported |
100
99
  | **Asana** | Project Management | ✅ Supported |
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ declare type Config = {
13
13
 
14
14
  export declare interface InitOptions {
15
15
  apiKey?: string;
16
+ appId?: string;
16
17
  readonly?: boolean;
17
18
  defaultOpen?: boolean;
18
19
  config?: Partial<Config>;
@@ -24,7 +25,10 @@ export declare class Superfeedback {
24
25
  private static readonly CONTAINER_ID;
25
26
  private app;
26
27
  private container;
28
+ private sessionTracker;
29
+ private isLoading;
27
30
  constructor(options: InitOptions);
31
+ private loadWidget;
28
32
  static init(options: InitOptions | string): Superfeedback;
29
33
  destroy(): void;
30
34
  }