@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.
@@ -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 - mapped to ICON_SOCIAL */
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
- /** Indicates minimum value required for the number */
13865
+ /**
13866
+ * @deprecated
13867
+ * @replacedBy min
13868
+ * @targetRemovalDate 2025-11-30
13869
+ */
13860
13870
  minimum?: number | null;
13861
- /** Indicates maximum value allowed for the number */
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
- /** The multiplier for the number value */
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
- /** Indicates minimum value required for the number */
14070
+ /**
14071
+ * @deprecated
14072
+ * @replacedBy min
14073
+ * @targetRemovalDate 2025-11-30
14074
+ */
14038
14075
  minimum?: number | null;
14039
- /** Indicates maximum value allowed for the number */
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
- /** The multiplier for the number value */
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
  /**
@@ -2373,6 +2373,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
2373
2373
  VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
2374
2374
  VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
2375
2375
  VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
2376
+ VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
2377
+ VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
2378
+ VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
2376
2379
  return VectorArtCategoryTypes2;
2377
2380
  })(VectorArtCategoryTypes || {});
2378
2381
  var CssDataType = /* @__PURE__ */ ((CssDataType2) => {