@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
|
@@ -1208,6 +1208,31 @@ interface PageComponentData {
|
|
|
1208
1208
|
fullPageDesktopOnly?: boolean | null;
|
|
1209
1209
|
/** When true, this page is used as a landing page on mobile */
|
|
1210
1210
|
landingPageInMobile?: boolean | null;
|
|
1211
|
+
/**
|
|
1212
|
+
* Identifier used in the public appPage.id field.
|
|
1213
|
+
* @maxLength 512
|
|
1214
|
+
*/
|
|
1215
|
+
appPageIdentifier?: string | null;
|
|
1216
|
+
/** When true, this app page is indexable. */
|
|
1217
|
+
appPageIndexable?: boolean | null;
|
|
1218
|
+
/** When true, this app page is displayed as a full page. */
|
|
1219
|
+
appPageFullPage?: boolean | null;
|
|
1220
|
+
/** Order used for installing and sorting this app page. */
|
|
1221
|
+
appPageOrder?: number | null;
|
|
1222
|
+
/** When true, SEO is enabled for this page. */
|
|
1223
|
+
seoEnabled?: boolean | null;
|
|
1224
|
+
/** When true, users can stretch this page. */
|
|
1225
|
+
canBeStretched?: boolean | null;
|
|
1226
|
+
/** When true, this page is stretched by default on desktop. */
|
|
1227
|
+
shouldBeStretchedByDefault?: boolean | null;
|
|
1228
|
+
/** When true, this page is stretched by default on mobile. */
|
|
1229
|
+
shouldBeStretchedByDefaultMobile?: boolean | null;
|
|
1230
|
+
/** When true, this page should be prefetched. */
|
|
1231
|
+
preFetch?: boolean | null;
|
|
1232
|
+
/** When true, this page can be added only once. */
|
|
1233
|
+
addOnlyOnce?: boolean | null;
|
|
1234
|
+
/** When true, this page should use server-side rendered SEO. */
|
|
1235
|
+
useSsrSeo?: boolean;
|
|
1211
1236
|
}
|
|
1212
1237
|
interface Padding {
|
|
1213
1238
|
desktop?: DisplayProperties;
|
|
@@ -1478,6 +1503,10 @@ interface PageOutOfIframeComponentData {
|
|
|
1478
1503
|
builderConfigUrlTemplate?: string | null;
|
|
1479
1504
|
/** Whether to render the component in the Editor as React (true) or as an iframe (false) */
|
|
1480
1505
|
ooiInEditor?: boolean | null;
|
|
1506
|
+
/** When true, deleting this page deletes the app. */
|
|
1507
|
+
shouldDeleteAppWhenDeleted?: boolean;
|
|
1508
|
+
/** When true, this iframe runs with the platform. */
|
|
1509
|
+
iframeWithPlatform?: boolean;
|
|
1481
1510
|
}
|
|
1482
1511
|
/** Create a collection of native Editor components that loads directly in the Editor DOM */
|
|
1483
1512
|
interface PlatfromComponentData {
|
|
@@ -3842,10 +3871,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3842
3871
|
/** Symphony Giza host */
|
|
3843
3872
|
SYMPHONY = "SYMPHONY",
|
|
3844
3873
|
/** BMR Giza host */
|
|
3845
|
-
BMR = "BMR"
|
|
3874
|
+
BMR = "BMR",
|
|
3875
|
+
/** Wixel dashboard (user-facing) */
|
|
3876
|
+
WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
|
|
3846
3877
|
}
|
|
3847
3878
|
/** @enumType */
|
|
3848
|
-
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';
|
|
3879
|
+
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';
|
|
3849
3880
|
/** Definitions of common slots properties */
|
|
3850
3881
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3851
3882
|
/** Widget-specific slot. */
|
|
@@ -21466,6 +21497,10 @@ interface DataExtensionSchemaCreatedEnvelope {
|
|
|
21466
21497
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21467
21498
|
* @permissionScope Set Up Automations
|
|
21468
21499
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21500
|
+
* @permissionScope Manage google ads campaigns
|
|
21501
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21502
|
+
* @permissionScope View google ads campaigns
|
|
21503
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21469
21504
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21470
21505
|
* @webhook
|
|
21471
21506
|
* @eventType wix.data_extensions.v1.data_extension_schema_created
|
|
@@ -21509,6 +21544,10 @@ interface DataExtensionSchemaDeletedEnvelope {
|
|
|
21509
21544
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21510
21545
|
* @permissionScope Set Up Automations
|
|
21511
21546
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21547
|
+
* @permissionScope Manage google ads campaigns
|
|
21548
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21549
|
+
* @permissionScope View google ads campaigns
|
|
21550
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21512
21551
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21513
21552
|
* @webhook
|
|
21514
21553
|
* @eventType wix.data_extensions.v1.data_extension_schema_deleted
|
|
@@ -21555,6 +21594,10 @@ interface DataExtensionSchemaUpdatedEnvelope {
|
|
|
21555
21594
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21556
21595
|
* @permissionScope Set Up Automations
|
|
21557
21596
|
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
21597
|
+
* @permissionScope Manage google ads campaigns
|
|
21598
|
+
* @permissionScopeId SCOPE.PROMOTE.MANAGE-GOOGLE-ADS
|
|
21599
|
+
* @permissionScope View google ads campaigns
|
|
21600
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-GOOGLE-ADS
|
|
21558
21601
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21559
21602
|
* @webhook
|
|
21560
21603
|
* @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) => {
|