@wix/app-extensions 1.0.75 → 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.
@@ -214,6 +214,20 @@ interface WidgetComponentData {
214
214
  settingsEndpointUrlV1Template?: string | null;
215
215
  /** Add widget to site home page (supported only in server installation currently) */
216
216
  addToHomePage?: boolean;
217
+ /** When true, this iframe runs with the platform. */
218
+ iframeWithPlatform?: boolean;
219
+ /** When true, this widget should use server-side rendered SEO. */
220
+ useSsrSeo?: boolean;
221
+ /** When true, SEO is enabled for this widget. */
222
+ seoEnabled?: boolean | null;
223
+ /** When true, users can stretch this widget. */
224
+ canBeStretched?: boolean | null;
225
+ /** When true, this widget is stretched by default on desktop. */
226
+ shouldBeStretchedByDefault?: boolean | null;
227
+ /** When true, this widget is stretched by default on mobile. */
228
+ shouldBeStretchedByDefaultMobile?: boolean | null;
229
+ /** When true, this widget should be prefetched. */
230
+ preFetch?: boolean | null;
217
231
  }
218
232
  /** An iframe to be displayed as a full page on the user’s site */
219
233
  interface PageComponentData {
@@ -296,6 +310,31 @@ interface PageComponentData {
296
310
  fullPageDesktopOnly?: boolean | null;
297
311
  /** When true, this page is used as a landing page on mobile */
298
312
  landingPageInMobile?: boolean | null;
313
+ /**
314
+ * Identifier used in the public appPage.id field.
315
+ * @maxLength 512
316
+ */
317
+ appPageIdentifier?: string | null;
318
+ /** When true, this app page is indexable. */
319
+ appPageIndexable?: boolean | null;
320
+ /** When true, this app page is displayed as a full page. */
321
+ appPageFullPage?: boolean | null;
322
+ /** Order used for installing and sorting this app page. */
323
+ appPageOrder?: number | null;
324
+ /** When true, SEO is enabled for this page. */
325
+ seoEnabled?: boolean | null;
326
+ /** When true, users can stretch this page. */
327
+ canBeStretched?: boolean | null;
328
+ /** When true, this page is stretched by default on desktop. */
329
+ shouldBeStretchedByDefault?: boolean | null;
330
+ /** When true, this page is stretched by default on mobile. */
331
+ shouldBeStretchedByDefaultMobile?: boolean | null;
332
+ /** When true, this page should be prefetched. */
333
+ preFetch?: boolean | null;
334
+ /** When true, this page can be added only once. */
335
+ addOnlyOnce?: boolean | null;
336
+ /** When true, this page should use server-side rendered SEO. */
337
+ useSsrSeo?: boolean;
299
338
  }
300
339
  /**
301
340
  * An iframe that opens in the user’s Wix Dashboard,