@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +60 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +60 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +60 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +60 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +60 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +60 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +60 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +60 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -13879,12 +13879,39 @@ interface CustomEnumOptionCssProperty {
|
|
|
13879
13879
|
value?: string;
|
|
13880
13880
|
}
|
|
13881
13881
|
interface CssNumber {
|
|
13882
|
-
/**
|
|
13882
|
+
/**
|
|
13883
|
+
* @deprecated
|
|
13884
|
+
* @replacedBy min
|
|
13885
|
+
* @targetRemovalDate 2025-11-30
|
|
13886
|
+
*/
|
|
13883
13887
|
minimum?: number | null;
|
|
13884
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
14087
|
+
/**
|
|
14088
|
+
* @deprecated
|
|
14089
|
+
* @replacedBy min
|
|
14090
|
+
* @targetRemovalDate 2025-11-30
|
|
14091
|
+
*/
|
|
14061
14092
|
minimum?: number | null;
|
|
14062
|
-
/**
|
|
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
|
-
/**
|
|
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
|
/**
|