@wix/auto_sdk_data-extension-schema_schemas 1.0.158 → 1.0.160

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.
@@ -15000,11 +15000,11 @@ declare enum FilterFunction {
15000
15000
  brightness = "brightness",
15001
15001
  /** The value used for contrast filter */
15002
15002
  contrast = "contrast",
15003
- /** The value used for drop-shadow filter */
15003
+ /** DEPRECATED - use dropShadow instead */
15004
15004
  drop_shadow = "drop_shadow",
15005
15005
  /** The value used for grayscale filter */
15006
15006
  grayscale = "grayscale",
15007
- /** The value used for hue-rotate filter */
15007
+ /** DEPRECATED - use hueRotate instead */
15008
15008
  hue_rotate = "hue_rotate",
15009
15009
  /** The value used for invert filter */
15010
15010
  invert = "invert",
@@ -15013,10 +15013,14 @@ declare enum FilterFunction {
15013
15013
  /** The value used for sepia filter */
15014
15014
  sepia = "sepia",
15015
15015
  /** The value used for saturate filter */
15016
- saturate = "saturate"
15016
+ saturate = "saturate",
15017
+ /** The value used for drop-shadow filter */
15018
+ dropShadow = "dropShadow",
15019
+ /** The value used for hue-rotate filter */
15020
+ hueRotate = "hueRotate"
15017
15021
  }
15018
15022
  /** @enumType */
15019
- type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate';
15023
+ type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate' | 'dropShadow' | 'hueRotate';
15020
15024
  interface BackdropFilter {
15021
15025
  /**
15022
15026
  * List of filter functions in case of reducing the abilities exposed to the User
@@ -15041,15 +15045,25 @@ declare enum DisplayValueEnumDisplayValue {
15041
15045
  table = "table",
15042
15046
  flex = "flex",
15043
15047
  grid = "grid",
15048
+ /** DEPRECATED - use listItem instead */
15044
15049
  list_item = "list_item",
15045
15050
  contents = "contents",
15051
+ /** DEPRECATED - use inlineBlock instead */
15046
15052
  inline_block = "inline_block",
15053
+ /** DEPRECATED - use inlineTable instead */
15047
15054
  inline_table = "inline_table",
15055
+ /** DEPRECATED - use inlineFlex instead */
15048
15056
  inline_flex = "inline_flex",
15049
- inline_grid = "inline_grid"
15057
+ /** DEPRECATED - use inlineGrid instead */
15058
+ inline_grid = "inline_grid",
15059
+ inlineBlock = "inlineBlock",
15060
+ inlineTable = "inlineTable",
15061
+ inlineFlex = "inlineFlex",
15062
+ inlineGrid = "inlineGrid",
15063
+ listItem = "listItem"
15050
15064
  }
15051
15065
  /** @enumType */
15052
- type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid';
15066
+ type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem';
15053
15067
  interface WritingMode {
15054
15068
  /**
15055
15069
  * list of writing-mode values in case we want to reduce the abilities exposed to the User
@@ -16315,6 +16329,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
16315
16329
  background?: Background;
16316
16330
  /** Additional options to refine the background-image variable */
16317
16331
  backgroundImage?: BackgroundImage;
16332
+ /** Additional options to refine the background-image variable */
16333
+ maskImage?: BackgroundImage;
16318
16334
  /**
16319
16335
  * Will be used as displayName of this css-property-item
16320
16336
  * @maxLength 100
@@ -16339,6 +16355,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
16339
16355
  background?: Background;
16340
16356
  /** Additional options to refine the background-image variable */
16341
16357
  backgroundImage?: BackgroundImage;
16358
+ /** Additional options to refine the background-image variable */
16359
+ maskImage?: BackgroundImage;
16342
16360
  }
16343
16361
  interface BackgroundImage {
16344
16362
  /**
@@ -16371,6 +16389,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
16371
16389
  background?: Background;
16372
16390
  /** Additional options to refine the background-image variable */
16373
16391
  backgroundImage?: BackgroundImage;
16392
+ /** Additional options to refine the mask-image variable */
16393
+ maskImage?: BackgroundImage;
16374
16394
  /** Additional options to refine the customEnum item */
16375
16395
  customEnum?: CustomPropertyEnum;
16376
16396
  /** Additional options to refine the number item */
@@ -16405,6 +16425,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
16405
16425
  background?: Background;
16406
16426
  /** Additional options to refine the background-image variable */
16407
16427
  backgroundImage?: BackgroundImage;
16428
+ /** Additional options to refine the mask-image variable */
16429
+ maskImage?: BackgroundImage;
16408
16430
  /** Additional options to refine the customEnum item */
16409
16431
  customEnum?: CustomPropertyEnum;
16410
16432
  /** Additional options to refine the number item */
@@ -16545,10 +16567,21 @@ declare enum CssPropertyType {
16545
16567
  strokeOpacity = "strokeOpacity",
16546
16568
  /** fill properties */
16547
16569
  fill = "fill",
16548
- fillOpacity = "fillOpacity"
16570
+ fillOpacity = "fillOpacity",
16571
+ fillRule = "fillRule",
16572
+ /** mask properties */
16573
+ mask = "mask",
16574
+ maskImage = "maskImage",
16575
+ maskMode = "maskMode",
16576
+ maskRepeat = "maskRepeat",
16577
+ maskPosition = "maskPosition",
16578
+ maskClip = "maskClip",
16579
+ maskOrigin = "maskOrigin",
16580
+ maskSize = "maskSize",
16581
+ maskComposite = "maskComposite"
16549
16582
  }
16550
16583
  /** @enumType */
16551
- type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity';
16584
+ type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity' | 'fillRule' | 'mask' | 'maskImage' | 'maskMode' | 'maskRepeat' | 'maskPosition' | 'maskClip' | 'maskOrigin' | 'maskSize' | 'maskComposite';
16552
16585
  interface CustomPropertyEnum {
16553
16586
  /** The type of the css-custom-property, used to define the type of the values allowed in the enum */
16554
16587
  cssPropertyType?: CssPropertyTypeWithLiterals;
@@ -2591,6 +2591,8 @@ var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
2591
2591
  FilterFunction2["opacity"] = "opacity";
2592
2592
  FilterFunction2["sepia"] = "sepia";
2593
2593
  FilterFunction2["saturate"] = "saturate";
2594
+ FilterFunction2["dropShadow"] = "dropShadow";
2595
+ FilterFunction2["hueRotate"] = "hueRotate";
2594
2596
  return FilterFunction2;
2595
2597
  })(FilterFunction || {});
2596
2598
  var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValue2) => {
@@ -2609,6 +2611,11 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
2609
2611
  DisplayValueEnumDisplayValue2["inline_table"] = "inline_table";
2610
2612
  DisplayValueEnumDisplayValue2["inline_flex"] = "inline_flex";
2611
2613
  DisplayValueEnumDisplayValue2["inline_grid"] = "inline_grid";
2614
+ DisplayValueEnumDisplayValue2["inlineBlock"] = "inlineBlock";
2615
+ DisplayValueEnumDisplayValue2["inlineTable"] = "inlineTable";
2616
+ DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
2617
+ DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
2618
+ DisplayValueEnumDisplayValue2["listItem"] = "listItem";
2612
2619
  return DisplayValueEnumDisplayValue2;
2613
2620
  })(DisplayValueEnumDisplayValue || {});
2614
2621
  var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
@@ -2899,6 +2906,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
2899
2906
  CssPropertyType2["strokeOpacity"] = "strokeOpacity";
2900
2907
  CssPropertyType2["fill"] = "fill";
2901
2908
  CssPropertyType2["fillOpacity"] = "fillOpacity";
2909
+ CssPropertyType2["fillRule"] = "fillRule";
2910
+ CssPropertyType2["mask"] = "mask";
2911
+ CssPropertyType2["maskImage"] = "maskImage";
2912
+ CssPropertyType2["maskMode"] = "maskMode";
2913
+ CssPropertyType2["maskRepeat"] = "maskRepeat";
2914
+ CssPropertyType2["maskPosition"] = "maskPosition";
2915
+ CssPropertyType2["maskClip"] = "maskClip";
2916
+ CssPropertyType2["maskOrigin"] = "maskOrigin";
2917
+ CssPropertyType2["maskSize"] = "maskSize";
2918
+ CssPropertyType2["maskComposite"] = "maskComposite";
2902
2919
  return CssPropertyType2;
2903
2920
  })(CssPropertyType || {});
2904
2921
  var Trigger = /* @__PURE__ */ ((Trigger2) => {