@wix/auto_sdk_data-extension-schema_schemas 1.0.93 → 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.
@@ -13888,12 +13888,39 @@ interface CustomEnumOptionCssProperty {
13888
13888
  value?: string;
13889
13889
  }
13890
13890
  interface CssNumber {
13891
- /** Indicates minimum value required for the number */
13891
+ /**
13892
+ * @deprecated
13893
+ * @replacedBy min
13894
+ * @targetRemovalDate 2025-11-30
13895
+ */
13892
13896
  minimum?: number | null;
13893
- /** Indicates maximum value allowed for the number */
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
+ */
13894
13907
  maximum?: number | null;
13895
- /** The multiplier for the number value */
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
+ */
13896
13918
  multipleOf?: number | null;
13919
+ /**
13920
+ * The multiplier for the number value
13921
+ * @format DECIMAL_VALUE
13922
+ */
13923
+ multiplier?: string | null;
13897
13924
  }
13898
13925
  interface DataItem extends DataItemSelectedDataTypeOneOf {
13899
13926
  /** An optional object to define limitations on the text input */
@@ -14066,12 +14093,39 @@ interface Option {
14066
14093
  displayName?: string;
14067
14094
  }
14068
14095
  interface _Number {
14069
- /** Indicates minimum value required for the number */
14096
+ /**
14097
+ * @deprecated
14098
+ * @replacedBy min
14099
+ * @targetRemovalDate 2025-11-30
14100
+ */
14070
14101
  minimum?: number | null;
14071
- /** Indicates maximum value allowed for the number */
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
+ */
14072
14112
  maximum?: number | null;
14073
- /** The multiplier for the number value */
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
+ */
14074
14123
  multipleOf?: number | null;
14124
+ /**
14125
+ * The multiplier for the number value
14126
+ * @format DECIMAL_VALUE
14127
+ */
14128
+ multiplier?: string | null;
14075
14129
  }
14076
14130
  interface A11y {
14077
14131
  /**