@ensembleapp/client-sdk 0.0.24 → 0.0.25

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/dist/index.d.ts CHANGED
@@ -341,6 +341,7 @@ declare global {
341
341
  show: () => void;
342
342
  updateConfig: (config: Partial<EmbeddableChatWidgetConfig>) => void;
343
343
  updateToken: (token: string) => void;
344
+ getVendorCardsWidget: (isProd?: boolean) => UIWidgetDefinition[];
344
345
  };
345
346
  }
346
347
  }
@@ -1,4 +1,5 @@
1
1
  import type { EmbeddableChatWidgetConfig } from './widget';
2
+ import type { UIWidgetDefinition } from './model';
2
3
 
3
4
  export interface ChatWidgetGlobal {
4
5
  init: (config: EmbeddableChatWidgetConfig) => Promise<void>;
@@ -7,6 +8,7 @@ export interface ChatWidgetGlobal {
7
8
  show: () => void;
8
9
  updateConfig: (config: Partial<EmbeddableChatWidgetConfig>) => void;
9
10
  updateToken: (token: string) => void;
11
+ getVendorCardsWidget: (isProd?: boolean) => UIWidgetDefinition[];
10
12
  }
11
13
 
12
14
  declare global {