@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.
@@ -13862,12 +13862,39 @@ interface CustomEnumOptionCssProperty {
13862
13862
  value?: string;
13863
13863
  }
13864
13864
  interface CssNumber {
13865
- /** Indicates minimum value required for the number */
13865
+ /**
13866
+ * @deprecated
13867
+ * @replacedBy min
13868
+ * @targetRemovalDate 2025-11-30
13869
+ */
13866
13870
  minimum?: number | null;
13867
- /** 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
+ */
13868
13881
  maximum?: number | null;
13869
- /** 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
+ */
13870
13892
  multipleOf?: number | null;
13893
+ /**
13894
+ * The multiplier for the number value
13895
+ * @format DECIMAL_VALUE
13896
+ */
13897
+ multiplier?: string | null;
13871
13898
  }
13872
13899
  interface DataItem extends DataItemSelectedDataTypeOneOf {
13873
13900
  /** An optional object to define limitations on the text input */
@@ -14040,12 +14067,39 @@ interface Option {
14040
14067
  displayName?: string;
14041
14068
  }
14042
14069
  interface _Number {
14043
- /** Indicates minimum value required for the number */
14070
+ /**
14071
+ * @deprecated
14072
+ * @replacedBy min
14073
+ * @targetRemovalDate 2025-11-30
14074
+ */
14044
14075
  minimum?: number | null;
14045
- /** 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
+ */
14046
14086
  maximum?: number | null;
14047
- /** 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
+ */
14048
14097
  multipleOf?: number | null;
14098
+ /**
14099
+ * The multiplier for the number value
14100
+ * @format DECIMAL_VALUE
14101
+ */
14102
+ multiplier?: string | null;
14049
14103
  }
14050
14104
  interface A11y {
14051
14105
  /**