@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
|
@@ -13807,13 +13807,19 @@ declare enum VectorArtCategoryTypes {
|
|
|
13807
13807
|
SHAPE_BASIC = "SHAPE_BASIC",
|
|
13808
13808
|
/** Vector Art Shapes - mapped to SHAPE_ART */
|
|
13809
13809
|
SHAPE_ART = "SHAPE_ART",
|
|
13810
|
-
/** Social Icons -
|
|
13810
|
+
/** Social Icons - deprecated use SHAPE_SOCIAL instead */
|
|
13811
13811
|
ICON_SOCIAL = "ICON_SOCIAL",
|
|
13812
13812
|
/** Location Icons - mapped to SHAPE_LOCATION */
|
|
13813
|
-
SHAPE_LOCATION = "SHAPE_LOCATION"
|
|
13813
|
+
SHAPE_LOCATION = "SHAPE_LOCATION",
|
|
13814
|
+
/** Documents Icons - mapped to SHAPE_DOCUMENTS */
|
|
13815
|
+
SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
|
|
13816
|
+
/** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
|
|
13817
|
+
SHAPE_SOCIAL = "SHAPE_SOCIAL",
|
|
13818
|
+
/** Arrow Icons - mapped to SHAPE_ARROWS */
|
|
13819
|
+
SHAPE_ARROWS = "SHAPE_ARROWS"
|
|
13814
13820
|
}
|
|
13815
13821
|
/** @enumType */
|
|
13816
|
-
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
|
|
13822
|
+
type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
|
|
13817
13823
|
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
13818
13824
|
interface CustomEnum {
|
|
13819
13825
|
/**
|
|
@@ -13873,12 +13879,39 @@ interface CustomEnumOptionCssProperty {
|
|
|
13873
13879
|
value?: string;
|
|
13874
13880
|
}
|
|
13875
13881
|
interface CssNumber {
|
|
13876
|
-
/**
|
|
13882
|
+
/**
|
|
13883
|
+
* @deprecated
|
|
13884
|
+
* @replacedBy min
|
|
13885
|
+
* @targetRemovalDate 2025-11-30
|
|
13886
|
+
*/
|
|
13877
13887
|
minimum?: number | null;
|
|
13878
|
-
/**
|
|
13888
|
+
/**
|
|
13889
|
+
* Indicates minimum value required for the number
|
|
13890
|
+
* @format DECIMAL_VALUE
|
|
13891
|
+
*/
|
|
13892
|
+
min?: string | null;
|
|
13893
|
+
/**
|
|
13894
|
+
* @deprecated
|
|
13895
|
+
* @replacedBy max
|
|
13896
|
+
* @targetRemovalDate 2025-11-30
|
|
13897
|
+
*/
|
|
13879
13898
|
maximum?: number | null;
|
|
13880
|
-
/**
|
|
13899
|
+
/**
|
|
13900
|
+
* Indicates maximum value allowed for the number
|
|
13901
|
+
* @format DECIMAL_VALUE
|
|
13902
|
+
*/
|
|
13903
|
+
max?: string | null;
|
|
13904
|
+
/**
|
|
13905
|
+
* @deprecated
|
|
13906
|
+
* @replacedBy multiplier
|
|
13907
|
+
* @targetRemovalDate 2025-11-30
|
|
13908
|
+
*/
|
|
13881
13909
|
multipleOf?: number | null;
|
|
13910
|
+
/**
|
|
13911
|
+
* The multiplier for the number value
|
|
13912
|
+
* @format DECIMAL_VALUE
|
|
13913
|
+
*/
|
|
13914
|
+
multiplier?: string | null;
|
|
13882
13915
|
}
|
|
13883
13916
|
interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
13884
13917
|
/** An optional object to define limitations on the text input */
|
|
@@ -14051,12 +14084,39 @@ interface Option {
|
|
|
14051
14084
|
displayName?: string;
|
|
14052
14085
|
}
|
|
14053
14086
|
interface _Number {
|
|
14054
|
-
/**
|
|
14087
|
+
/**
|
|
14088
|
+
* @deprecated
|
|
14089
|
+
* @replacedBy min
|
|
14090
|
+
* @targetRemovalDate 2025-11-30
|
|
14091
|
+
*/
|
|
14055
14092
|
minimum?: number | null;
|
|
14056
|
-
/**
|
|
14093
|
+
/**
|
|
14094
|
+
* Indicates minimum value required for the number
|
|
14095
|
+
* @format DECIMAL_VALUE
|
|
14096
|
+
*/
|
|
14097
|
+
min?: string | null;
|
|
14098
|
+
/**
|
|
14099
|
+
* @deprecated
|
|
14100
|
+
* @replacedBy max
|
|
14101
|
+
* @targetRemovalDate 2025-11-30
|
|
14102
|
+
*/
|
|
14057
14103
|
maximum?: number | null;
|
|
14058
|
-
/**
|
|
14104
|
+
/**
|
|
14105
|
+
* Indicates maximum value allowed for the number
|
|
14106
|
+
* @format DECIMAL_VALUE
|
|
14107
|
+
*/
|
|
14108
|
+
max?: string | null;
|
|
14109
|
+
/**
|
|
14110
|
+
* @deprecated
|
|
14111
|
+
* @replacedBy multiplier
|
|
14112
|
+
* @targetRemovalDate 2025-11-30
|
|
14113
|
+
*/
|
|
14059
14114
|
multipleOf?: number | null;
|
|
14115
|
+
/**
|
|
14116
|
+
* The multiplier for the number value
|
|
14117
|
+
* @format DECIMAL_VALUE
|
|
14118
|
+
*/
|
|
14119
|
+
multiplier?: string | null;
|
|
14060
14120
|
}
|
|
14061
14121
|
interface A11y {
|
|
14062
14122
|
/**
|
|
@@ -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) => {
|