@wix/app-extensions 1.0.76 → 1.0.77

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.
@@ -2454,6 +2454,20 @@ interface WidgetComponentData {
2454
2454
  mpaNavigation?: MpaNavigationWithLiterals;
2455
2455
  /** Add widget to site home page (supported only in server installation currently) */
2456
2456
  addToHomePage?: boolean;
2457
+ /** When true, this iframe runs with the platform. */
2458
+ iframeWithPlatform?: boolean;
2459
+ /** When true, this widget should use server-side rendered SEO. */
2460
+ useSsrSeo?: boolean;
2461
+ /** When true, SEO is enabled for this widget. */
2462
+ seoEnabled?: boolean | null;
2463
+ /** When true, users can stretch this widget. */
2464
+ canBeStretched?: boolean | null;
2465
+ /** When true, this widget is stretched by default on desktop. */
2466
+ shouldBeStretchedByDefault?: boolean | null;
2467
+ /** When true, this widget is stretched by default on mobile. */
2468
+ shouldBeStretchedByDefaultMobile?: boolean | null;
2469
+ /** When true, this widget should be prefetched. */
2470
+ preFetch?: boolean | null;
2457
2471
  }
2458
2472
  /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
2459
2473
  /** @internal */
@@ -2756,6 +2770,31 @@ interface PageComponentData {
2756
2770
  fullPageDesktopOnly?: boolean | null;
2757
2771
  /** When true, this page is used as a landing page on mobile */
2758
2772
  landingPageInMobile?: boolean | null;
2773
+ /**
2774
+ * Identifier used in the public appPage.id field.
2775
+ * @maxLength 512
2776
+ */
2777
+ appPageIdentifier?: string | null;
2778
+ /** When true, this app page is indexable. */
2779
+ appPageIndexable?: boolean | null;
2780
+ /** When true, this app page is displayed as a full page. */
2781
+ appPageFullPage?: boolean | null;
2782
+ /** Order used for installing and sorting this app page. */
2783
+ appPageOrder?: number | null;
2784
+ /** When true, SEO is enabled for this page. */
2785
+ seoEnabled?: boolean | null;
2786
+ /** When true, users can stretch this page. */
2787
+ canBeStretched?: boolean | null;
2788
+ /** When true, this page is stretched by default on desktop. */
2789
+ shouldBeStretchedByDefault?: boolean | null;
2790
+ /** When true, this page is stretched by default on mobile. */
2791
+ shouldBeStretchedByDefaultMobile?: boolean | null;
2792
+ /** When true, this page should be prefetched. */
2793
+ preFetch?: boolean | null;
2794
+ /** When true, this page can be added only once. */
2795
+ addOnlyOnce?: boolean | null;
2796
+ /** When true, this page should use server-side rendered SEO. */
2797
+ useSsrSeo?: boolean;
2759
2798
  }
2760
2799
  /** @internal */
2761
2800
  interface Padding {
@@ -3099,6 +3138,10 @@ interface PageOutOfIframeComponentData {
3099
3138
  * @internal
3100
3139
  */
3101
3140
  migratingToOoi?: boolean | null;
3141
+ /** When true, deleting this page deletes the app. */
3142
+ shouldDeleteAppWhenDeleted?: boolean;
3143
+ /** When true, this iframe runs with the platform. */
3144
+ iframeWithPlatform?: boolean;
3102
3145
  }
3103
3146
  /** Create a collection of native Editor components that loads directly in the Editor DOM */
3104
3147
  /** @internal */
@@ -24423,6 +24466,8 @@ interface EditorContextProvider {
24423
24466
  schemaUrl?: string | null;
24424
24467
  /** Source-navigation actions this provider exposes */
24425
24468
  actions?: ContextActions;
24469
+ /** Display groups for the context provider, used to group data items in the editor for better UX */
24470
+ displayGroups?: Record<string, DisplayGroupItem>;
24426
24471
  }
24427
24472
  /** @internal */
24428
24473
  interface EditorContextProviderResources {