@wix/app-extensions 1.0.76 → 1.0.78

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 */
@@ -5832,11 +5875,13 @@ declare enum BackOfficeHostingPlatforms {
5832
5875
  /** Symphony Giza host */
5833
5876
  SYMPHONY = "SYMPHONY",
5834
5877
  /** BMR Giza host */
5835
- BMR = "BMR"
5878
+ BMR = "BMR",
5879
+ /** Wixel dashboard (user-facing) */
5880
+ WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
5836
5881
  }
5837
5882
  /** @enumType */
5838
5883
  /** @internal */
5839
- type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO' | 'SYMPHONY' | 'BMR';
5884
+ type BackOfficeHostingPlatformsWithLiterals = BackOfficeHostingPlatforms | 'NO_HOSTING_PLATFORM' | 'BUSINESS_MANAGER' | 'ACCOUNT_MANAGER' | 'DEV_CENTER' | 'ENTERPRISE' | 'PARTNERS_DASHBOARD' | 'FINANCIALS_INTERNAL_BO' | 'FED_GUILD_POC' | 'STUDIO_DASHBOARD' | 'CHANNELS' | 'DATA_TOOLS' | 'PSP_BACKOFFICE' | 'RISE_PLATFORM_ACCOUNT_DASHBOARD' | 'DEMO_DASHBOARD_ENTERPRISE' | 'AI_SCHEDULING_ASSISTANT_DASHBOARD' | 'GETTING_PAID' | 'DATA' | 'LITE_DASHBOARD' | 'PICASSO_EDITOR' | 'BASE44_DASHBOARD_POC' | 'WIXEL_EDITOR' | 'BASE44_PLATFORM' | 'PAYMENTS_BO' | 'SYMPHONY' | 'BMR' | 'WIXEL_DASHBOARD';
5840
5885
  /** Definitions of common slots properties */
5841
5886
  /** @internal */
5842
5887
  interface SlotData extends SlotDataSlotTypeOneOf {
@@ -24423,6 +24468,8 @@ interface EditorContextProvider {
24423
24468
  schemaUrl?: string | null;
24424
24469
  /** Source-navigation actions this provider exposes */
24425
24470
  actions?: ContextActions;
24471
+ /** Display groups for the context provider, used to group data items in the editor for better UX */
24472
+ displayGroups?: Record<string, DisplayGroupItem>;
24426
24473
  }
24427
24474
  /** @internal */
24428
24475
  interface EditorContextProviderResources {
@@ -363,6 +363,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
363
363
  BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
364
364
  BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
365
365
  BackOfficeHostingPlatforms2["BMR"] = "BMR";
366
+ BackOfficeHostingPlatforms2["WIXEL_DASHBOARD"] = "WIXEL_DASHBOARD";
366
367
  return BackOfficeHostingPlatforms2;
367
368
  })(BackOfficeHostingPlatforms || {});
368
369
  var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {