@wix/app-extensions 1.0.99 → 1.0.100
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.
- package/build/cjs/index.d.ts +4 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +4 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +4 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +4 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2476,6 +2476,8 @@ interface WidgetComponentData {
|
|
|
2476
2476
|
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
2477
2477
|
/** When true, this widget should be prefetched. */
|
|
2478
2478
|
preFetch?: boolean | null;
|
|
2479
|
+
/** When true, this extension is excluded from the app installation flow. */
|
|
2480
|
+
excludeFromAppInstallation?: boolean;
|
|
2479
2481
|
}
|
|
2480
2482
|
/** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
|
|
2481
2483
|
/** @internal */
|
|
@@ -2803,6 +2805,8 @@ interface PageComponentData {
|
|
|
2803
2805
|
addOnlyOnce?: boolean | null;
|
|
2804
2806
|
/** When true, this page should use server-side rendered SEO. */
|
|
2805
2807
|
useSsrSeo?: boolean;
|
|
2808
|
+
/** When true, this extension is excluded from the app installation flow. */
|
|
2809
|
+
excludeFromAppInstallation?: boolean;
|
|
2806
2810
|
}
|
|
2807
2811
|
/** @internal */
|
|
2808
2812
|
interface Padding {
|