@wix/auto_sdk_data-extension-schema_schemas 1.0.243 → 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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +59 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +47 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +59 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +47 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +59 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +47 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +59 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +47 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -952,6 +952,20 @@ interface WidgetComponentData {
|
|
|
952
952
|
settingsEndpointUrlV1Template?: string | null;
|
|
953
953
|
/** Add widget to site home page (supported only in server installation currently) */
|
|
954
954
|
addToHomePage?: boolean;
|
|
955
|
+
/** When true, this iframe runs with the platform. */
|
|
956
|
+
iframeWithPlatform?: boolean;
|
|
957
|
+
/** When true, this widget should use server-side rendered SEO. */
|
|
958
|
+
useSsrSeo?: boolean;
|
|
959
|
+
/** When true, SEO is enabled for this widget. */
|
|
960
|
+
seoEnabled?: boolean | null;
|
|
961
|
+
/** When true, users can stretch this widget. */
|
|
962
|
+
canBeStretched?: boolean | null;
|
|
963
|
+
/** When true, this widget is stretched by default on desktop. */
|
|
964
|
+
shouldBeStretchedByDefault?: boolean | null;
|
|
965
|
+
/** When true, this widget is stretched by default on mobile. */
|
|
966
|
+
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
967
|
+
/** When true, this widget should be prefetched. */
|
|
968
|
+
preFetch?: boolean | null;
|
|
955
969
|
}
|
|
956
970
|
/** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
|
|
957
971
|
interface FixedPositionOptions {
|
|
@@ -1187,6 +1201,31 @@ interface PageComponentData {
|
|
|
1187
1201
|
fullPageDesktopOnly?: boolean | null;
|
|
1188
1202
|
/** When true, this page is used as a landing page on mobile */
|
|
1189
1203
|
landingPageInMobile?: boolean | null;
|
|
1204
|
+
/**
|
|
1205
|
+
* Identifier used in the public appPage.id field.
|
|
1206
|
+
* @maxLength 512
|
|
1207
|
+
*/
|
|
1208
|
+
appPageIdentifier?: string | null;
|
|
1209
|
+
/** When true, this app page is indexable. */
|
|
1210
|
+
appPageIndexable?: boolean | null;
|
|
1211
|
+
/** When true, this app page is displayed as a full page. */
|
|
1212
|
+
appPageFullPage?: boolean | null;
|
|
1213
|
+
/** Order used for installing and sorting this app page. */
|
|
1214
|
+
appPageOrder?: number | null;
|
|
1215
|
+
/** When true, SEO is enabled for this page. */
|
|
1216
|
+
seoEnabled?: boolean | null;
|
|
1217
|
+
/** When true, users can stretch this page. */
|
|
1218
|
+
canBeStretched?: boolean | null;
|
|
1219
|
+
/** When true, this page is stretched by default on desktop. */
|
|
1220
|
+
shouldBeStretchedByDefault?: boolean | null;
|
|
1221
|
+
/** When true, this page is stretched by default on mobile. */
|
|
1222
|
+
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
1223
|
+
/** When true, this page should be prefetched. */
|
|
1224
|
+
preFetch?: boolean | null;
|
|
1225
|
+
/** When true, this page can be added only once. */
|
|
1226
|
+
addOnlyOnce?: boolean | null;
|
|
1227
|
+
/** When true, this page should use server-side rendered SEO. */
|
|
1228
|
+
useSsrSeo?: boolean;
|
|
1190
1229
|
}
|
|
1191
1230
|
interface Padding {
|
|
1192
1231
|
desktop?: DisplayProperties;
|
|
@@ -1457,6 +1496,10 @@ interface PageOutOfIframeComponentData {
|
|
|
1457
1496
|
builderConfigUrlTemplate?: string | null;
|
|
1458
1497
|
/** Whether to render the component in the Editor as React (true) or as an iframe (false) */
|
|
1459
1498
|
ooiInEditor?: boolean | null;
|
|
1499
|
+
/** When true, deleting this page deletes the app. */
|
|
1500
|
+
shouldDeleteAppWhenDeleted?: boolean;
|
|
1501
|
+
/** When true, this iframe runs with the platform. */
|
|
1502
|
+
iframeWithPlatform?: boolean;
|
|
1460
1503
|
}
|
|
1461
1504
|
/** Create a collection of native Editor components that loads directly in the Editor DOM */
|
|
1462
1505
|
interface PlatfromComponentData {
|
|
@@ -3821,10 +3864,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3821
3864
|
/** Symphony Giza host */
|
|
3822
3865
|
SYMPHONY = "SYMPHONY",
|
|
3823
3866
|
/** BMR Giza host */
|
|
3824
|
-
BMR = "BMR"
|
|
3867
|
+
BMR = "BMR",
|
|
3868
|
+
/** Wixel dashboard (user-facing) */
|
|
3869
|
+
WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
|
|
3825
3870
|
}
|
|
3826
3871
|
/** @enumType */
|
|
3827
|
-
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';
|
|
3872
|
+
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';
|
|
3828
3873
|
/** Definitions of common slots properties */
|
|
3829
3874
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3830
3875
|
/** Widget-specific slot. */
|
|
@@ -21445,6 +21490,10 @@ interface DataExtensionSchemaCreatedEnvelope {
|
|
|
21445
21490
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21446
21491
|
* @permissionScope Set Up Automations
|
|
21447
21492
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21493
|
+
* @permissionScope Manage google ads campaigns
|
|
21494
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21495
|
+
* @permissionScope View google ads campaigns
|
|
21496
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21448
21497
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21449
21498
|
* @webhook
|
|
21450
21499
|
* @eventType wix.data_extensions.v1.data_extension_schema_created
|
|
@@ -21488,6 +21537,10 @@ interface DataExtensionSchemaDeletedEnvelope {
|
|
|
21488
21537
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21489
21538
|
* @permissionScope Set Up Automations
|
|
21490
21539
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21540
|
+
* @permissionScope Manage google ads campaigns
|
|
21541
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21542
|
+
* @permissionScope View google ads campaigns
|
|
21543
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21491
21544
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21492
21545
|
* @webhook
|
|
21493
21546
|
* @eventType wix.data_extensions.v1.data_extension_schema_deleted
|
|
@@ -21534,6 +21587,10 @@ interface DataExtensionSchemaUpdatedEnvelope {
|
|
|
21534
21587
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21535
21588
|
* @permissionScope Set Up Automations
|
|
21536
21589
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21590
|
+
* @permissionScope Manage google ads campaigns
|
|
21591
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21592
|
+
* @permissionScope View google ads campaigns
|
|
21593
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21537
21594
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21538
21595
|
* @webhook
|
|
21539
21596
|
* @eventType wix.data_extensions.v1.data_extension_schema_updated
|
|
@@ -811,6 +811,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
811
811
|
BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
|
|
812
812
|
BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
|
|
813
813
|
BackOfficeHostingPlatforms2["BMR"] = "BMR";
|
|
814
|
+
BackOfficeHostingPlatforms2["WIXEL_DASHBOARD"] = "WIXEL_DASHBOARD";
|
|
814
815
|
return BackOfficeHostingPlatforms2;
|
|
815
816
|
})(BackOfficeHostingPlatforms || {});
|
|
816
817
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|