@wix/app-extensions 1.0.127 → 1.0.130
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.d.ts +6 -0
- package/build/cjs/index.js +38 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +6 -0
- package/build/es/index.mjs +36 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +125 -3
- package/build/trusted/cjs/index.js +38 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +125 -3
- package/build/trusted/es/index.mjs +36 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -500,6 +500,12 @@ interface CatalogSPIConfig {
|
|
|
500
500
|
allItemsDiscount?: DiscountConfig;
|
|
501
501
|
/** Configuration details for discounts applied to specific items in the catalog. */
|
|
502
502
|
specificItemsDiscount?: DiscountConfig;
|
|
503
|
+
/**
|
|
504
|
+
* The purchase types this catalog's items support (one-time and/or subscription).
|
|
505
|
+
* Used by the discount-rule editor to offer only the purchase-type options relevant to this catalog.
|
|
506
|
+
* When not set, no restriction is declared and all purchase types are offered.
|
|
507
|
+
*/
|
|
508
|
+
purchaseTypeSupport?: PurchaseTypeSupport;
|
|
503
509
|
}
|
|
504
510
|
interface GiftCardProviderConfig {
|
|
505
511
|
/** The URL of the SPI implementation */
|
package/build/es/index.mjs
CHANGED
|
@@ -917,6 +917,39 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
917
917
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
918
918
|
return BannerPosition2;
|
|
919
919
|
})(BannerPosition || {});
|
|
920
|
+
var LayerEffect = /* @__PURE__ */ ((LayerEffect2) => {
|
|
921
|
+
LayerEffect2["CENTER"] = "CENTER";
|
|
922
|
+
LayerEffect2["FADE_TO_TOP"] = "FADE_TO_TOP";
|
|
923
|
+
LayerEffect2["FADE_TO_BOTTOM"] = "FADE_TO_BOTTOM";
|
|
924
|
+
return LayerEffect2;
|
|
925
|
+
})(LayerEffect || {});
|
|
926
|
+
var Shape = /* @__PURE__ */ ((Shape2) => {
|
|
927
|
+
Shape2["ELLIPSE"] = "ELLIPSE";
|
|
928
|
+
Shape2["TILT"] = "TILT";
|
|
929
|
+
Shape2["LIQUID"] = "LIQUID";
|
|
930
|
+
Shape2["LEFT_WAVE"] = "LEFT_WAVE";
|
|
931
|
+
Shape2["PAINT_SCRIBBLE"] = "PAINT_SCRIBBLE";
|
|
932
|
+
Shape2["INVERTED_ELLIPSE"] = "INVERTED_ELLIPSE";
|
|
933
|
+
Shape2["RIGHT_WAVE"] = "RIGHT_WAVE";
|
|
934
|
+
Shape2["DUNES"] = "DUNES";
|
|
935
|
+
Shape2["WAVES"] = "WAVES";
|
|
936
|
+
Shape2["TRIANGLE"] = "TRIANGLE";
|
|
937
|
+
Shape2["SEMI_ELLIPSE"] = "SEMI_ELLIPSE";
|
|
938
|
+
Shape2["PLANTS"] = "PLANTS";
|
|
939
|
+
Shape2["LAYERED_ELLIPSE"] = "LAYERED_ELLIPSE";
|
|
940
|
+
Shape2["PIXELS"] = "PIXELS";
|
|
941
|
+
Shape2["PAINT"] = "PAINT";
|
|
942
|
+
Shape2["CLOUDS"] = "CLOUDS";
|
|
943
|
+
Shape2["OPTICAL_ILLUSION"] = "OPTICAL_ILLUSION";
|
|
944
|
+
Shape2["STRIPES"] = "STRIPES";
|
|
945
|
+
Shape2["BLOBS"] = "BLOBS";
|
|
946
|
+
Shape2["SEMI_CIRCLES"] = "SEMI_CIRCLES";
|
|
947
|
+
Shape2["HILL"] = "HILL";
|
|
948
|
+
Shape2["BRUSH"] = "BRUSH";
|
|
949
|
+
Shape2["PEAKS"] = "PEAKS";
|
|
950
|
+
Shape2["ANGLED_TRIANGLE"] = "ANGLED_TRIANGLE";
|
|
951
|
+
return Shape2;
|
|
952
|
+
})(Shape || {});
|
|
920
953
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
921
954
|
BackdropType2["COLOR"] = "COLOR";
|
|
922
955
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -2023,6 +2056,7 @@ var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
|
|
|
2023
2056
|
A11yAttributes2["tag"] = "tag";
|
|
2024
2057
|
A11yAttributes2["ariaMultiline"] = "ariaMultiline";
|
|
2025
2058
|
A11yAttributes2["ariaInvalid"] = "ariaInvalid";
|
|
2059
|
+
A11yAttributes2["lang"] = "lang";
|
|
2026
2060
|
return A11yAttributes2;
|
|
2027
2061
|
})(A11yAttributes || {});
|
|
2028
2062
|
var LinkType = /* @__PURE__ */ ((LinkType2) => {
|
|
@@ -6120,6 +6154,7 @@ export {
|
|
|
6120
6154
|
InterfaceConfigurationType,
|
|
6121
6155
|
ItemField,
|
|
6122
6156
|
ItemType,
|
|
6157
|
+
LayerEffect,
|
|
6123
6158
|
Layout,
|
|
6124
6159
|
LayoutDataBackgroundType,
|
|
6125
6160
|
LayoutDataImagePosition,
|
|
@@ -6214,6 +6249,7 @@ export {
|
|
|
6214
6249
|
ScopeSeparator,
|
|
6215
6250
|
ScopeType,
|
|
6216
6251
|
ScriptType,
|
|
6252
|
+
Shape,
|
|
6217
6253
|
SidebarDataType,
|
|
6218
6254
|
SidebarEntityType,
|
|
6219
6255
|
SignatureEncoding,
|