@chaibuilder/sdk 2.0.0-beta.74 → 2.0.0-beta.76

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/core.d.ts CHANGED
@@ -90,6 +90,7 @@ export declare interface ChaiBuilderEditorProps {
90
90
  * Optional pageId. If not provided, a random pageId will be generated
91
91
  */
92
92
  pageId?: string;
93
+ pageExternalData?: Record<string, any>;
93
94
  themePresets?: Record<string, Partial<ChaiBuilderThemeValues>>[];
94
95
  themeOptions?: ChaiBuilderThemeOptions | ((defaultThemeOptions: ChaiBuilderThemeOptions) => ChaiBuilderThemeOptions);
95
96
  theme?: Partial<ChaiBuilderThemeValues>;
@@ -610,3 +611,9 @@ export declare const useWrapperBlock: () => ChaiBlock_2;
610
611
  declare type VariableKey = string;
611
612
 
612
613
  export { }
614
+
615
+ declare global {
616
+ interface Window {
617
+ clarity: any;
618
+ }
619
+ }