@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
|
@@ -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 {
|
|
@@ -1194,6 +1208,31 @@ interface PageComponentData {
|
|
|
1194
1208
|
fullPageDesktopOnly?: boolean | null;
|
|
1195
1209
|
/** When true, this page is used as a landing page on mobile */
|
|
1196
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;
|
|
1197
1236
|
}
|
|
1198
1237
|
interface Padding {
|
|
1199
1238
|
desktop?: DisplayProperties;
|
|
@@ -1464,6 +1503,10 @@ interface PageOutOfIframeComponentData {
|
|
|
1464
1503
|
builderConfigUrlTemplate?: string | null;
|
|
1465
1504
|
/** Whether to render the component in the Editor as React (true) or as an iframe (false) */
|
|
1466
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;
|
|
1467
1510
|
}
|
|
1468
1511
|
/** Create a collection of native Editor components that loads directly in the Editor DOM */
|
|
1469
1512
|
interface PlatfromComponentData {
|
|
@@ -3828,10 +3871,12 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
3828
3871
|
/** Symphony Giza host */
|
|
3829
3872
|
SYMPHONY = "SYMPHONY",
|
|
3830
3873
|
/** BMR Giza host */
|
|
3831
|
-
BMR = "BMR"
|
|
3874
|
+
BMR = "BMR",
|
|
3875
|
+
/** Wixel dashboard (user-facing) */
|
|
3876
|
+
WIXEL_DASHBOARD = "WIXEL_DASHBOARD"
|
|
3832
3877
|
}
|
|
3833
3878
|
/** @enumType */
|
|
3834
|
-
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';
|
|
3835
3880
|
/** Definitions of common slots properties */
|
|
3836
3881
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
3837
3882
|
/** Widget-specific slot. */
|
|
@@ -21452,6 +21497,10 @@ interface DataExtensionSchemaCreatedEnvelope {
|
|
|
21452
21497
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21453
21498
|
* @permissionScope Set Up Automations
|
|
21454
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
|
|
21455
21504
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21456
21505
|
* @webhook
|
|
21457
21506
|
* @eventType wix.data_extensions.v1.data_extension_schema_created
|
|
@@ -21495,6 +21544,10 @@ interface DataExtensionSchemaDeletedEnvelope {
|
|
|
21495
21544
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21496
21545
|
* @permissionScope Set Up Automations
|
|
21497
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
|
|
21498
21551
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21499
21552
|
* @webhook
|
|
21500
21553
|
* @eventType wix.data_extensions.v1.data_extension_schema_deleted
|
|
@@ -21541,6 +21594,10 @@ interface DataExtensionSchemaUpdatedEnvelope {
|
|
|
21541
21594
|
* @permissionScopeId SCOPE.MEDIA.VIEW-SITE-ANALYTICS
|
|
21542
21595
|
* @permissionScope Set Up Automations
|
|
21543
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
|
|
21544
21601
|
* @permissionId DATA_EXTENSION_SCHEMA.READ
|
|
21545
21602
|
* @webhook
|
|
21546
21603
|
* @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) => {
|