@wix/auto_sdk_data-extension-schema_schemas 1.0.92 → 1.0.94
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 +3 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +69 -9
- package/build/cjs/index.typings.js +3 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +69 -9
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +3 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +69 -9
- package/build/es/index.typings.mjs +3 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +69 -9
- package/build/es/meta.mjs +3 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +3 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +69 -9
- package/build/internal/cjs/index.typings.js +3 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +69 -9
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +3 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +69 -9
- package/build/internal/es/index.typings.mjs +3 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +69 -9
- package/build/internal/es/meta.mjs +3 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -13816,13 +13816,19 @@ declare enum VectorArtCategoryTypes {
|
|
|
13816
13816
|
SHAPE_BASIC = "SHAPE_BASIC",
|
|
13817
13817
|
/** Vector Art Shapes - mapped to SHAPE_ART */
|
|
13818
13818
|
SHAPE_ART = "SHAPE_ART",
|
|
13819
|
-
/** Social Icons -
|
|
13819
|
+
/** Social Icons - deprecated use SHAPE_SOCIAL instead */
|
|
13820
13820
|
ICON_SOCIAL = "ICON_SOCIAL",
|
|
13821
13821
|
/** Location Icons - mapped to SHAPE_LOCATION */
|
|
13822
|
-
SHAPE_LOCATION = "SHAPE_LOCATION"
|
|
13822
|
+
SHAPE_LOCATION = "SHAPE_LOCATION",
|
|
13823
|
+
/** Documents Icons - mapped to SHAPE_DOCUMENTS */
|
|
13824
|
+
SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
|
|
13825
|
+
/** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
|
|
13826
|
+
SHAPE_SOCIAL = "SHAPE_SOCIAL",
|
|
13827
|
+
/** Arrow Icons - mapped to SHAPE_ARROWS */
|
|
13828
|
+
SHAPE_ARROWS = "SHAPE_ARROWS"
|
|
13823
13829
|
}
|
|
13824
13830
|
/** @enumType */
|
|
13825
|
-
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
|
|
13831
|
+
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
|
|
13826
13832
|
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
13827
13833
|
interface CustomEnum {
|
|
13828
13834
|
/**
|
|
@@ -13882,12 +13888,39 @@ interface CustomEnumOptionCssProperty {
|
|
|
13882
13888
|
value?: string;
|
|
13883
13889
|
}
|
|
13884
13890
|
interface CssNumber {
|
|
13885
|
-
/**
|
|
13891
|
+
/**
|
|
13892
|
+
* @deprecated
|
|
13893
|
+
* @replacedBy min
|
|
13894
|
+
* @targetRemovalDate 2025-11-30
|
|
13895
|
+
*/
|
|
13886
13896
|
minimum?: number | null;
|
|
13887
|
-
/**
|
|
13897
|
+
/**
|
|
13898
|
+
* Indicates minimum value required for the number
|
|
13899
|
+
* @format DECIMAL_VALUE
|
|
13900
|
+
*/
|
|
13901
|
+
min?: string | null;
|
|
13902
|
+
/**
|
|
13903
|
+
* @deprecated
|
|
13904
|
+
* @replacedBy max
|
|
13905
|
+
* @targetRemovalDate 2025-11-30
|
|
13906
|
+
*/
|
|
13888
13907
|
maximum?: number | null;
|
|
13889
|
-
/**
|
|
13908
|
+
/**
|
|
13909
|
+
* Indicates maximum value allowed for the number
|
|
13910
|
+
* @format DECIMAL_VALUE
|
|
13911
|
+
*/
|
|
13912
|
+
max?: string | null;
|
|
13913
|
+
/**
|
|
13914
|
+
* @deprecated
|
|
13915
|
+
* @replacedBy multiplier
|
|
13916
|
+
* @targetRemovalDate 2025-11-30
|
|
13917
|
+
*/
|
|
13890
13918
|
multipleOf?: number | null;
|
|
13919
|
+
/**
|
|
13920
|
+
* The multiplier for the number value
|
|
13921
|
+
* @format DECIMAL_VALUE
|
|
13922
|
+
*/
|
|
13923
|
+
multiplier?: string | null;
|
|
13891
13924
|
}
|
|
13892
13925
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
13893
13926
|
/** An optional object to define limitations on the text input */
|
|
@@ -14060,12 +14093,39 @@ interface Option {
|
|
|
14060
14093
|
displayName?: string;
|
|
14061
14094
|
}
|
|
14062
14095
|
interface _Number {
|
|
14063
|
-
/**
|
|
14096
|
+
/**
|
|
14097
|
+
* @deprecated
|
|
14098
|
+
* @replacedBy min
|
|
14099
|
+
* @targetRemovalDate 2025-11-30
|
|
14100
|
+
*/
|
|
14064
14101
|
minimum?: number | null;
|
|
14065
|
-
/**
|
|
14102
|
+
/**
|
|
14103
|
+
* Indicates minimum value required for the number
|
|
14104
|
+
* @format DECIMAL_VALUE
|
|
14105
|
+
*/
|
|
14106
|
+
min?: string | null;
|
|
14107
|
+
/**
|
|
14108
|
+
* @deprecated
|
|
14109
|
+
* @replacedBy max
|
|
14110
|
+
* @targetRemovalDate 2025-11-30
|
|
14111
|
+
*/
|
|
14066
14112
|
maximum?: number | null;
|
|
14067
|
-
/**
|
|
14113
|
+
/**
|
|
14114
|
+
* Indicates maximum value allowed for the number
|
|
14115
|
+
* @format DECIMAL_VALUE
|
|
14116
|
+
*/
|
|
14117
|
+
max?: string | null;
|
|
14118
|
+
/**
|
|
14119
|
+
* @deprecated
|
|
14120
|
+
* @replacedBy multiplier
|
|
14121
|
+
* @targetRemovalDate 2025-11-30
|
|
14122
|
+
*/
|
|
14068
14123
|
multipleOf?: number | null;
|
|
14124
|
+
/**
|
|
14125
|
+
* The multiplier for the number value
|
|
14126
|
+
* @format DECIMAL_VALUE
|
|
14127
|
+
*/
|
|
14128
|
+
multiplier?: string | null;
|
|
14069
14129
|
}
|
|
14070
14130
|
interface A11y {
|
|
14071
14131
|
/**
|
|
@@ -2103,6 +2103,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
|
|
|
2103
2103
|
VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
|
|
2104
2104
|
VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
2105
2105
|
VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
2106
|
+
VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
2107
|
+
VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
2108
|
+
VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
2106
2109
|
return VectorArtCategoryTypes2;
|
|
2107
2110
|
})(VectorArtCategoryTypes || {});
|
|
2108
2111
|
var CssDataType = /* @__PURE__ */ ((CssDataType2) => {
|