@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.
@@ -13879,12 +13879,39 @@ interface CustomEnumOptionCssProperty {
13879
13879
  value?: string;
13880
13880
  }
13881
13881
  interface CssNumber {
13882
- /** Indicates minimum value required for the number */
13882
+ /**
13883
+ * @deprecated
13884
+ * @replacedBy min
13885
+ * @targetRemovalDate 2025-11-30
13886
+ */
13883
13887
  minimum?: number | null;
13884
- /** Indicates maximum value allowed for the number */
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
+ */
13885
13898
  maximum?: number | null;
13886
- /** The multiplier for the number value */
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
+ */
13887
13909
  multipleOf?: number | null;
13910
+ /**
13911
+ * The multiplier for the number value
13912
+ * @format DECIMAL_VALUE
13913
+ */
13914
+ multiplier?: string | null;
13888
13915
  }
13889
13916
  interface DataItem extends DataItemSelectedDataTypeOneOf {
13890
13917
  /** An optional object to define limitations on the text input */
@@ -14057,12 +14084,39 @@ interface Option {
14057
14084
  displayName?: string;
14058
14085
  }
14059
14086
  interface _Number {
14060
- /** Indicates minimum value required for the number */
14087
+ /**
14088
+ * @deprecated
14089
+ * @replacedBy min
14090
+ * @targetRemovalDate 2025-11-30
14091
+ */
14061
14092
  minimum?: number | null;
14062
- /** Indicates maximum value allowed for the number */
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
+ */
14063
14103
  maximum?: number | null;
14064
- /** The multiplier for the number value */
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
+ */
14065
14114
  multipleOf?: number | null;
14115
+ /**
14116
+ * The multiplier for the number value
14117
+ * @format DECIMAL_VALUE
14118
+ */
14119
+ multiplier?: string | null;
14066
14120
  }
14067
14121
  interface A11y {
14068
14122
  /**