@marketrix.ai/widget 3.8.445 → 3.8.447
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/src/services/RrwebSessionRecorder.d.ts +1 -0
- package/dist/src/services/WidgetService.d.ts +2 -4
- package/dist/src/utils/validation.d.ts +0 -2
- package/dist/widget.mjs +29 -29
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -2
- package/dist/src/services/ValidationService.d.ts +0 -10
- package/dist/src/utils/apiUtils.d.ts +0 -6
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare function
|
|
3
|
-
/** Null without credentials — that is the dashboard preview, which has none. */
|
|
4
|
-
export declare function fetchWidgetSettings(mtxId?: string, mtxKey?: string): Promise<WidgetData | null>;
|
|
1
|
+
import type { MarketrixConfig } from '../types';
|
|
2
|
+
export declare function loadWidgetConfig(config: MarketrixConfig): Promise<MarketrixConfig>;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import type { WidgetSettingsData } from '../sdk';
|
|
2
|
-
export declare function isWidgetSettingsData(data: unknown): data is WidgetSettingsData;
|
|
3
1
|
export declare function isHTMLElement(element: Element | null): element is HTMLElement;
|
|
4
2
|
export declare function isHTMLScriptElement(element: Element | null): element is HTMLScriptElement;
|