@wix/auto_sdk_data-extension-schema_schemas 1.0.242 → 1.0.244

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.
@@ -952,6 +952,20 @@ interface WidgetComponentData {
952
952
  settingsEndpointUrlV1Template?: string | null;
953
953
  /** Add widget to site home page (supported only in server installation currently) */
954
954
  addToHomePage?: boolean;
955
+ /** When true, this iframe runs with the platform. */
956
+ iframeWithPlatform?: boolean;
957
+ /** When true, this widget should use server-side rendered SEO. */
958
+ useSsrSeo?: boolean;
959
+ /** When true, SEO is enabled for this widget. */
960
+ seoEnabled?: boolean | null;
961
+ /** When true, users can stretch this widget. */
962
+ canBeStretched?: boolean | null;
963
+ /** When true, this widget is stretched by default on desktop. */
964
+ shouldBeStretchedByDefault?: boolean | null;
965
+ /** When true, this widget is stretched by default on mobile. */
966
+ shouldBeStretchedByDefaultMobile?: boolean | null;
967
+ /** When true, this widget should be prefetched. */
968
+ preFetch?: boolean | null;
955
969
  }
956
970
  /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
957
971
  interface FixedPositionOptions {
@@ -20098,6 +20112,8 @@ interface EditorContextProvider {
20098
20112
  moduleConfiguration?: EditorContextProviderModuleConfiguration;
20099
20113
  /** Source-navigation actions this provider exposes */
20100
20114
  actions?: ContextActions;
20115
+ /** Display groups for the context provider, used to group data items in the editor for better UX */
20116
+ displayGroups?: Record<string, DisplayGroupItem>;
20101
20117
  }
20102
20118
  interface EditorContextProviderResources {
20103
20119
  /** The ESM bundle for this component in runtime */