@wix/auto_sdk_data-extension-schema_schemas 1.0.243 → 1.0.245

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.
@@ -955,6 +955,20 @@ interface WidgetComponentData {
955
955
  settingsEndpointUrlV1Template?: string | null;
956
956
  /** Add widget to site home page (supported only in server installation currently) */
957
957
  addToHomePage?: boolean;
958
+ /** When true, this iframe runs with the platform. */
959
+ iframeWithPlatform?: boolean;
960
+ /** When true, this widget should use server-side rendered SEO. */
961
+ useSsrSeo?: boolean;
962
+ /** When true, SEO is enabled for this widget. */
963
+ seoEnabled?: boolean | null;
964
+ /** When true, users can stretch this widget. */
965
+ canBeStretched?: boolean | null;
966
+ /** When true, this widget is stretched by default on desktop. */
967
+ shouldBeStretchedByDefault?: boolean | null;
968
+ /** When true, this widget is stretched by default on mobile. */
969
+ shouldBeStretchedByDefaultMobile?: boolean | null;
970
+ /** When true, this widget should be prefetched. */
971
+ preFetch?: boolean | null;
958
972
  }
959
973
  /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
960
974
  interface FixedPositionOptions {
@@ -1190,6 +1204,31 @@ interface PageComponentData {
1190
1204
  fullPageDesktopOnly?: boolean | null;
1191
1205
  /** When true, this page is used as a landing page on mobile */
1192
1206
  landingPageInMobile?: boolean | null;
1207
+ /**
1208
+ * Identifier used in the public appPage.id field.
1209
+ * @maxLength 512
1210
+ */
1211
+ appPageIdentifier?: string | null;
1212
+ /** When true, this app page is indexable. */
1213
+ appPageIndexable?: boolean | null;
1214
+ /** When true, this app page is displayed as a full page. */
1215
+ appPageFullPage?: boolean | null;
1216
+ /** Order used for installing and sorting this app page. */
1217
+ appPageOrder?: number | null;
1218
+ /** When true, SEO is enabled for this page. */
1219
+ seoEnabled?: boolean | null;
1220
+ /** When true, users can stretch this page. */
1221
+ canBeStretched?: boolean | null;
1222
+ /** When true, this page is stretched by default on desktop. */
1223
+ shouldBeStretchedByDefault?: boolean | null;
1224
+ /** When true, this page is stretched by default on mobile. */
1225
+ shouldBeStretchedByDefaultMobile?: boolean | null;
1226
+ /** When true, this page should be prefetched. */
1227
+ preFetch?: boolean | null;
1228
+ /** When true, this page can be added only once. */
1229
+ addOnlyOnce?: boolean | null;
1230
+ /** When true, this page should use server-side rendered SEO. */
1231
+ useSsrSeo?: boolean;
1193
1232
  }
1194
1233
  interface Padding {
1195
1234
  desktop?: DisplayProperties;
@@ -1460,6 +1499,10 @@ interface PageOutOfIframeComponentData {
1460
1499
  builderConfigUrlTemplate?: string | null;
1461
1500
  /** Whether to render the component in the Editor as React (true) or as an iframe (false) */
1462
1501
  ooiInEditor?: boolean | null;
1502
+ /** When true, deleting this page deletes the app. */
1503
+ shouldDeleteAppWhenDeleted?: boolean;
1504
+ /** When true, this iframe runs with the platform. */
1505
+ iframeWithPlatform?: boolean;
1463
1506
  }
1464
1507
  /** Create a collection of native Editor components that loads directly in the Editor DOM */
1465
1508
  interface PlatfromComponentData {
@@ -3847,10 +3890,12 @@ declare enum BackOfficeHostingPlatforms {
3847
3890
  /** Symphony Giza host */
3848
3891
  SYMPHONY = "SYMPHONY",
3849
3892
  /** BMR Giza host */
3850
- BMR = "BMR"
3893
+ BMR = "BMR",
3894
+ /** Wixel dashboard (user-facing) */
3895
+ WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
3851
3896
  }
3852
3897
  /** @enumType */
3853
- 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';
3898
+ 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';
3854
3899
  /** Definitions of common slots properties */
3855
3900
  interface SlotData extends SlotDataSlotTypeOneOf {
3856
3901
  /** Widget-specific slot. */
package/build/es/meta.mjs CHANGED
@@ -804,6 +804,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
804
804
  BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
805
805
  BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
806
806
  BackOfficeHostingPlatforms2["BMR"] = "BMR";
807
+ BackOfficeHostingPlatforms2["WIXEL_DASHBOARD"] = "WIXEL_DASHBOARD";
807
808
  return BackOfficeHostingPlatforms2;
808
809
  })(BackOfficeHostingPlatforms || {});
809
810
  var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {