@wix/app-extensions 1.0.46 → 1.0.48
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/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +6 -2
- package/build/trusted/cjs/index.js +1 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +6 -2
- package/build/trusted/es/index.mjs +1 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5774,11 +5774,13 @@ declare enum BackOfficeHostingPlatforms {
|
|
|
5774
5774
|
/** Base44 Platform */
|
|
5775
5775
|
BASE44_PLATFORM = "BASE44_PLATFORM",
|
|
5776
5776
|
/** Payments by Wix Back Office */
|
|
5777
|
-
PAYMENTS_BO = "PAYMENTS_BO"
|
|
5777
|
+
PAYMENTS_BO = "PAYMENTS_BO",
|
|
5778
|
+
/** Symphony Giza host */
|
|
5779
|
+
SYMPHONY = "SYMPHONY"
|
|
5778
5780
|
}
|
|
5779
5781
|
/** @enumType */
|
|
5780
5782
|
/** @internal */
|
|
5781
|
-
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';
|
|
5783
|
+
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';
|
|
5782
5784
|
/** Definitions of common slots properties */
|
|
5783
5785
|
/** @internal */
|
|
5784
5786
|
interface SlotData extends SlotDataSlotTypeOneOf {
|
|
@@ -20521,6 +20523,8 @@ interface DisplayFilters {
|
|
|
20521
20523
|
cssCustomProperties?: DisplayFilter;
|
|
20522
20524
|
/** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
|
|
20523
20525
|
states?: DisplayFilter;
|
|
20526
|
+
/** DisplayFilter for presets, defines which presets to hide or show, uses the preset key in the presets map, optional */
|
|
20527
|
+
presets?: DisplayFilter;
|
|
20524
20528
|
}
|
|
20525
20529
|
/**
|
|
20526
20530
|
* The logic of the display filter is to define the minimal requirement
|
|
@@ -895,6 +895,7 @@ var BackOfficeHostingPlatforms = /* @__PURE__ */ ((BackOfficeHostingPlatforms2)
|
|
|
895
895
|
BackOfficeHostingPlatforms2["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
896
896
|
BackOfficeHostingPlatforms2["BASE44_PLATFORM"] = "BASE44_PLATFORM";
|
|
897
897
|
BackOfficeHostingPlatforms2["PAYMENTS_BO"] = "PAYMENTS_BO";
|
|
898
|
+
BackOfficeHostingPlatforms2["SYMPHONY"] = "SYMPHONY";
|
|
898
899
|
return BackOfficeHostingPlatforms2;
|
|
899
900
|
})(BackOfficeHostingPlatforms || {});
|
|
900
901
|
var DtsDefinitionType = /* @__PURE__ */ ((DtsDefinitionType2) => {
|