@wix/auto_sdk_data-extension-schema_schemas 1.0.244 → 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 +45 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -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 +45 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -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 +45 -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 +33 -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 +45 -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 +33 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1201,6 +1201,31 @@ interface PageComponentData {
|
|
|
1201
1201
|
fullPageDesktopOnly?: boolean | null;
|
|
1202
1202
|
/** When true, this page is used as a landing page on mobile */
|
|
1203
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;
|
|
1204
1229
|
}
|
|
1205
1230
|
interface Padding {
|
|
1206
1231
|
desktop?: DisplayProperties;
|
|
@@ -1471,6 +1496,10 @@ interface PageOutOfIframeComponentData {
|
|
|
1471
1496
|
builderConfigUrlTemplate?: string | null;
|
|
1472
1497
|
/** Whether to render the component in the Editor as React (true) or as an iframe (false) */
|
|
1473
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;
|
|
1474
1503
|
}
|
|
1475
1504
|
/** Create a collection of native Editor components that loads directly in the Editor DOM */
|
|
1476
1505
|
interface PlatfromComponentData {
|
|
@@ -3835,10 +3864,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3835
3864
|
/** Symphony Giza host */
|
|
3836
3865
|
SYMPHONY = "SYMPHONY",
|
|
3837
3866
|
/** BMR Giza host */
|
|
3838
|
-
BMR = "BMR"
|
|
3867
|
+
BMR = "BMR",
|
|
3868
|
+
/** Wixel dashboard (user-facing) */
|
|
3869
|
+
WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
|
|
3839
3870
|
}
|
|
3840
3871
|
/** @enumType */
|
|
3841
|
-
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';
|
|
3842
3873
|
/** Definitions of common slots properties */
|
|
3843
3874
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3844
3875
|
/** Widget-specific slot. */
|
|
@@ -21459,6 +21490,10 @@ interface DataExtensionSchemaCreatedEnvelope {
|
|
|
21459
21490
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21460
21491
|
* @permissionScope Set Up Automations
|
|
21461
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
|
|
21462
21497
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21463
21498
|
* @webhook
|
|
21464
21499
|
* @eventType wix.data_extensions.v1.data_extension_schema_created
|
|
@@ -21502,6 +21537,10 @@ interface DataExtensionSchemaDeletedEnvelope {
|
|
|
21502
21537
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21503
21538
|
* @permissionScope Set Up Automations
|
|
21504
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
|
|
21505
21544
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21506
21545
|
* @webhook
|
|
21507
21546
|
* @eventType wix.data_extensions.v1.data_extension_schema_deleted
|
|
@@ -21548,6 +21587,10 @@ interface DataExtensionSchemaUpdatedEnvelope {
|
|
|
21548
21587
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21549
21588
|
* @permissionScope Set Up Automations
|
|
21550
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
|
|
21551
21594
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21552
21595
|
* @webhook
|
|
21553
21596
|
* @eventType wix.data_extensions.v1.data_extension_schema_updated
|
|
@@ -1130,6 +1130,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
1130
1130
|
BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
|
|
1131
1131
|
BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
|
|
1132
1132
|
BackOfficeHostingPlatforms2["BMR"] = "BMR";
|
|
1133
|
+
BackOfficeHostingPlatforms2["WIXEL_DASHBOARD"] = "WIXEL_DASHBOARD";
|
|
1133
1134
|
return BackOfficeHostingPlatforms2;
|
|
1134
1135
|
})(BackOfficeHostingPlatforms || {});
|
|
1135
1136
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|