@wix/auto_sdk_data-extension-schema_schemas 1.0.243 → 1.0.244
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -959,6 +959,20 @@ interface WidgetComponentData {
|
|
|
959
959
|
settingsEndpointUrlV1Template?: string | null;
|
|
960
960
|
/** Add widget to site home page (supported only in server installation currently) */
|
|
961
961
|
addToHomePage?: boolean;
|
|
962
|
+
/** When true, this iframe runs with the platform. */
|
|
963
|
+
iframeWithPlatform?: boolean;
|
|
964
|
+
/** When true, this widget should use server-side rendered SEO. */
|
|
965
|
+
useSsrSeo?: boolean;
|
|
966
|
+
/** When true, SEO is enabled for this widget. */
|
|
967
|
+
seoEnabled?: boolean | null;
|
|
968
|
+
/** When true, users can stretch this widget. */
|
|
969
|
+
canBeStretched?: boolean | null;
|
|
970
|
+
/** When true, this widget is stretched by default on desktop. */
|
|
971
|
+
shouldBeStretchedByDefault?: boolean | null;
|
|
972
|
+
/** When true, this widget is stretched by default on mobile. */
|
|
973
|
+
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
974
|
+
/** When true, this widget should be prefetched. */
|
|
975
|
+
preFetch?: boolean | null;
|
|
962
976
|
}
|
|
963
977
|
/** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
|
|
964
978
|
interface FixedPositionOptions {
|