@wix/auto_sdk_data-extension-schema_schemas 1.0.244 → 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.
@@ -1204,6 +1204,31 @@ interface PageComponentData {
1204
1204
  fullPageDesktopOnly?: boolean | null;
1205
1205
  /** When true, this page is used as a landing page on mobile */
1206
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;
1207
1232
  }
1208
1233
  interface Padding {
1209
1234
  desktop?: DisplayProperties;
@@ -1474,6 +1499,10 @@ interface PageOutOfIframeComponentData {
1474
1499
  builderConfigUrlTemplate?: string | null;
1475
1500
  /** Whether to render the component in the Editor as React (true) or as an iframe (false) */
1476
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;
1477
1506
  }
1478
1507
  /** Create a collection of native Editor components that loads directly in the Editor DOM */
1479
1508
  interface PlatfromComponentData {
@@ -3861,10 +3890,12 @@ declare enum BackOfficeHostingPlatforms {
3861
3890
  /** Symphony Giza host */
3862
3891
  SYMPHONY = "SYMPHONY",
3863
3892
  /** BMR Giza host */
3864
- BMR = "BMR"
3893
+ BMR = "BMR",
3894
+ /** Wixel dashboard (user-facing) */
3895
+ WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
3865
3896
  }
3866
3897
  /** @enumType */
3867
- 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';
3868
3899
  /** Definitions of common slots properties */
3869
3900
  interface SlotData extends SlotDataSlotTypeOneOf {
3870
3901
  /** Widget-specific slot. */
@@ -1126,6 +1126,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
1126
1126
  BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
1127
1127
  BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
1128
1128
  BackOfficeHostingPlatforms2["BMR"] = "BMR";
1129
+ BackOfficeHostingPlatforms2["WIXEL_DASHBOARD"] = "WIXEL_DASHBOARD";
1129
1130
  return BackOfficeHostingPlatforms2;
1130
1131
  })(BackOfficeHostingPlatforms || {});
1131
1132
  var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {