@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.
@@ -959,6 +959,20 @@ interface WidgetComponentData {
959
959
  settingsEndpointUrlV1Template?: string | null;
960
960
  /** Add widget to site home page (supported only in server installation currently) */
961
961
  addToHomePage?: boolean;
962
+ /** When true, this iframe runs with the platform. */
963
+ iframeWithPlatform?: boolean;
964
+ /** When true, this widget should use server-side rendered SEO. */
965
+ useSsrSeo?: boolean;
966
+ /** When true, SEO is enabled for this widget. */
967
+ seoEnabled?: boolean | null;
968
+ /** When true, users can stretch this widget. */
969
+ canBeStretched?: boolean | null;
970
+ /** When true, this widget is stretched by default on desktop. */
971
+ shouldBeStretchedByDefault?: boolean | null;
972
+ /** When true, this widget is stretched by default on mobile. */
973
+ shouldBeStretchedByDefaultMobile?: boolean | null;
974
+ /** When true, this widget should be prefetched. */
975
+ preFetch?: boolean | null;
962
976
  }
963
977
  /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
964
978
  interface FixedPositionOptions {
@@ -20105,6 +20119,8 @@ interface EditorContextProvider {
20105
20119
  moduleConfiguration?: EditorContextProviderModuleConfiguration;
20106
20120
  /** Source-navigation actions this provider exposes */
20107
20121
  actions?: ContextActions;
20122
+ /** Display groups for the context provider, used to group data items in the editor for better UX */
20123
+ displayGroups?: Record<string, DisplayGroupItem>;
20108
20124
  }
20109
20125
  interface EditorContextProviderResources {
20110
20126
  /** The ESM bundle for this component in runtime */