@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
|
@@ -13790,13 +13790,19 @@ declare enum VectorArtCategoryTypes {
|
|
|
13790
13790
|
SHAPE_BASIC = "SHAPE_BASIC",
|
|
13791
13791
|
/** Vector Art Shapes - mapped to SHAPE_ART */
|
|
13792
13792
|
SHAPE_ART = "SHAPE_ART",
|
|
13793
|
-
/** Social Icons -
|
|
13793
|
+
/** Social Icons - deprecated use SHAPE_SOCIAL instead */
|
|
13794
13794
|
ICON_SOCIAL = "ICON_SOCIAL",
|
|
13795
13795
|
/** Location Icons - mapped to SHAPE_LOCATION */
|
|
13796
|
-
SHAPE_LOCATION = "SHAPE_LOCATION"
|
|
13796
|
+
SHAPE_LOCATION = "SHAPE_LOCATION",
|
|
13797
|
+
/** Documents Icons - mapped to SHAPE_DOCUMENTS */
|
|
13798
|
+
SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
|
|
13799
|
+
/** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
|
|
13800
|
+
SHAPE_SOCIAL = "SHAPE_SOCIAL",
|
|
13801
|
+
/** Arrow Icons - mapped to SHAPE_ARROWS */
|
|
13802
|
+
SHAPE_ARROWS = "SHAPE_ARROWS"
|
|
13797
13803
|
}
|
|
13798
13804
|
/** @enumType */
|
|
13799
|
-
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
|
|
13805
|
+
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
|
|
13800
13806
|
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
13801
13807
|
interface CustomEnum {
|
|
13802
13808
|
/**
|
|
@@ -13856,12 +13862,39 @@ interface CustomEnumOptionCssProperty {
|
|
|
13856
13862
|
value?: string;
|
|
13857
13863
|
}
|
|
13858
13864
|
interface CssNumber {
|
|
13859
|
-
/**
|
|
13865
|
+
/**
|
|
13866
|
+
* @deprecated
|
|
13867
|
+
* @replacedBy min
|
|
13868
|
+
* @targetRemovalDate 2025-11-30
|
|
13869
|
+
*/
|
|
13860
13870
|
minimum?: number | null;
|
|
13861
|
-
/**
|
|
13871
|
+
/**
|
|
13872
|
+
* Indicates minimum value required for the number
|
|
13873
|
+
* @format DECIMAL_VALUE
|
|
13874
|
+
*/
|
|
13875
|
+
min?: string | null;
|
|
13876
|
+
/**
|
|
13877
|
+
* @deprecated
|
|
13878
|
+
* @replacedBy max
|
|
13879
|
+
* @targetRemovalDate 2025-11-30
|
|
13880
|
+
*/
|
|
13862
13881
|
maximum?: number | null;
|
|
13863
|
-
/**
|
|
13882
|
+
/**
|
|
13883
|
+
* Indicates maximum value allowed for the number
|
|
13884
|
+
* @format DECIMAL_VALUE
|
|
13885
|
+
*/
|
|
13886
|
+
max?: string | null;
|
|
13887
|
+
/**
|
|
13888
|
+
* @deprecated
|
|
13889
|
+
* @replacedBy multiplier
|
|
13890
|
+
* @targetRemovalDate 2025-11-30
|
|
13891
|
+
*/
|
|
13864
13892
|
multipleOf?: number | null;
|
|
13893
|
+
/**
|
|
13894
|
+
* The multiplier for the number value
|
|
13895
|
+
* @format DECIMAL_VALUE
|
|
13896
|
+
*/
|
|
13897
|
+
multiplier?: string | null;
|
|
13865
13898
|
}
|
|
13866
13899
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
13867
13900
|
/** An optional object to define limitations on the text input */
|
|
@@ -14034,12 +14067,39 @@ interface Option {
|
|
|
14034
14067
|
displayName?: string;
|
|
14035
14068
|
}
|
|
14036
14069
|
interface _Number {
|
|
14037
|
-
/**
|
|
14070
|
+
/**
|
|
14071
|
+
* @deprecated
|
|
14072
|
+
* @replacedBy min
|
|
14073
|
+
* @targetRemovalDate 2025-11-30
|
|
14074
|
+
*/
|
|
14038
14075
|
minimum?: number | null;
|
|
14039
|
-
/**
|
|
14076
|
+
/**
|
|
14077
|
+
* Indicates minimum value required for the number
|
|
14078
|
+
* @format DECIMAL_VALUE
|
|
14079
|
+
*/
|
|
14080
|
+
min?: string | null;
|
|
14081
|
+
/**
|
|
14082
|
+
* @deprecated
|
|
14083
|
+
* @replacedBy max
|
|
14084
|
+
* @targetRemovalDate 2025-11-30
|
|
14085
|
+
*/
|
|
14040
14086
|
maximum?: number | null;
|
|
14041
|
-
/**
|
|
14087
|
+
/**
|
|
14088
|
+
* Indicates maximum value allowed for the number
|
|
14089
|
+
* @format DECIMAL_VALUE
|
|
14090
|
+
*/
|
|
14091
|
+
max?: string | null;
|
|
14092
|
+
/**
|
|
14093
|
+
* @deprecated
|
|
14094
|
+
* @replacedBy multiplier
|
|
14095
|
+
* @targetRemovalDate 2025-11-30
|
|
14096
|
+
*/
|
|
14042
14097
|
multipleOf?: number | null;
|
|
14098
|
+
/**
|
|
14099
|
+
* The multiplier for the number value
|
|
14100
|
+
* @format DECIMAL_VALUE
|
|
14101
|
+
*/
|
|
14102
|
+
multiplier?: string | null;
|
|
14043
14103
|
}
|
|
14044
14104
|
interface A11y {
|
|
14045
14105
|
/**
|
|
@@ -2110,6 +2110,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
|
|
|
2110
2110
|
VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
|
|
2111
2111
|
VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
2112
2112
|
VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
2113
|
+
VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
2114
|
+
VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
2115
|
+
VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
2113
2116
|
return VectorArtCategoryTypes2;
|
|
2114
2117
|
})(VectorArtCategoryTypes || {});
|
|
2115
2118
|
var CssDataType = /* @__PURE__ */ ((CssDataType2) => {
|