@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
package/build/cjs/index.d.ts
CHANGED
|
@@ -237,6 +237,8 @@ interface WidgetComponentData {
|
|
|
237
237
|
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
238
238
|
/** When true, this widget should be prefetched. */
|
|
239
239
|
preFetch?: boolean | null;
|
|
240
|
+
/** When true, this extension is excluded from the app installation flow. */
|
|
241
|
+
excludeFromAppInstallation?: boolean;
|
|
240
242
|
}
|
|
241
243
|
/** An iframe to be displayed as a full page on the user’s site */
|
|
242
244
|
interface PageComponentData {
|
|
@@ -344,6 +346,8 @@ interface PageComponentData {
|
|
|
344
346
|
addOnlyOnce?: boolean | null;
|
|
345
347
|
/** When true, this page should use server-side rendered SEO. */
|
|
346
348
|
useSsrSeo?: boolean;
|
|
349
|
+
/** When true, this extension is excluded from the app installation flow. */
|
|
350
|
+
excludeFromAppInstallation?: boolean;
|
|
347
351
|
}
|
|
348
352
|
/**
|
|
349
353
|
* An iframe that opens in the user’s Wix Dashboard,
|