@wix/auto_sdk_data-extension-schema_schemas 1.0.203 → 1.0.204

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.
@@ -5715,7 +5715,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
5715
5715
  interface Stop {
5716
5716
  /**
5717
5717
  * Stop color as hex value.
5718
- * @maxLength 19
5718
+ * @format COLOR_HEX
5719
5719
  */
5720
5720
  color?: string | null;
5721
5721
  /** Stop position (0-1). */
@@ -5756,7 +5756,7 @@ interface StylesBackground {
5756
5756
  type?: BackgroundTypeWithLiterals;
5757
5757
  /**
5758
5758
  * Background color as a hexadecimal value.
5759
- * @maxLength 19
5759
+ * @format COLOR_HEX
5760
5760
  */
5761
5761
  color?: string | null;
5762
5762
  /** Gradient configuration. */
@@ -5863,33 +5863,33 @@ interface Styles {
5863
5863
  borderRadius?: number | null;
5864
5864
  /**
5865
5865
  * Border color as a hexadecimal value.
5866
- * @maxLength 19
5866
+ * @format COLOR_HEX
5867
5867
  */
5868
5868
  borderColor?: string | null;
5869
5869
  /**
5870
5870
  * Border color as a hexadecimal value (hover state).
5871
- * @maxLength 19
5871
+ * @format COLOR_HEX
5872
5872
  */
5873
5873
  borderColorHover?: string | null;
5874
5874
  /**
5875
5875
  * Text color as a hexadecimal value.
5876
- * @maxLength 19
5876
+ * @format COLOR_HEX
5877
5877
  */
5878
5878
  textColor?: string | null;
5879
5879
  /**
5880
5880
  * Text color as a hexadecimal value (hover state).
5881
- * @maxLength 19
5881
+ * @format COLOR_HEX
5882
5882
  */
5883
5883
  textColorHover?: string | null;
5884
5884
  /**
5885
5885
  * Deprecated: Use `background` instead.
5886
- * @maxLength 19
5886
+ * @format COLOR_HEX
5887
5887
  * @deprecated
5888
5888
  */
5889
5889
  backgroundColor?: string | null;
5890
5890
  /**
5891
5891
  * Deprecated: Use `backgroundHover` instead.
5892
- * @maxLength 19
5892
+ * @format COLOR_HEX
5893
5893
  * @deprecated
5894
5894
  */
5895
5895
  backgroundColorHover?: string | null;
@@ -6341,7 +6341,7 @@ interface ImageDataStylesBorder {
6341
6341
  width?: number | null;
6342
6342
  /**
6343
6343
  * Border color as a hexadecimal value.
6344
- * @maxLength 19
6344
+ * @format COLOR_HEX
6345
6345
  */
6346
6346
  color?: string | null;
6347
6347
  /** Border radius in pixels. */
@@ -6382,22 +6382,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
6382
6382
  interface LinkPreviewDataStyles {
6383
6383
  /**
6384
6384
  * Background color as a hexadecimal value.
6385
- * @maxLength 19
6385
+ * @format COLOR_HEX
6386
6386
  */
6387
6387
  backgroundColor?: string | null;
6388
6388
  /**
6389
6389
  * Title color as a hexadecimal value.
6390
- * @maxLength 19
6390
+ * @format COLOR_HEX
6391
6391
  */
6392
6392
  titleColor?: string | null;
6393
6393
  /**
6394
6394
  * Subtitle color as a hexadecimal value.
6395
- * @maxLength 19
6395
+ * @format COLOR_HEX
6396
6396
  */
6397
6397
  subtitleColor?: string | null;
6398
6398
  /**
6399
6399
  * Link color as a hexadecimal value.
6400
- * @maxLength 19
6400
+ * @format COLOR_HEX
6401
6401
  */
6402
6402
  linkColor?: string | null;
6403
6403
  /** Border width in pixels. */
@@ -6406,7 +6406,7 @@ interface LinkPreviewDataStyles {
6406
6406
  borderRadius?: number | null;
6407
6407
  /**
6408
6408
  * Border color as a hexadecimal value.
6409
- * @maxLength 19
6409
+ * @format COLOR_HEX
6410
6410
  */
6411
6411
  borderColor?: string | null;
6412
6412
  /** Position of thumbnail. Defaults to `START`. */
@@ -6557,19 +6557,19 @@ interface BackgroundGradient {
6557
6557
  angle?: number | null;
6558
6558
  /**
6559
6559
  * The start color as a hexademical value.
6560
- * @maxLength 19
6560
+ * @format COLOR_HEX
6561
6561
  */
6562
6562
  startColor?: string | null;
6563
6563
  /**
6564
6564
  * The end color as a hexademical value.
6565
- * @maxLength 19
6565
+ * @format COLOR_HEX
6566
6566
  */
6567
6567
  lastColor?: string | null;
6568
6568
  }
6569
6569
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
6570
6570
  /**
6571
6571
  * The background color as a hexademical value.
6572
- * @maxLength 19
6572
+ * @format COLOR_HEX
6573
6573
  */
6574
6574
  color?: string | null;
6575
6575
  /** An image to use for the background. */
@@ -6583,7 +6583,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
6583
6583
  interface PollDesignBackgroundBackgroundOneOf {
6584
6584
  /**
6585
6585
  * The background color as a hexademical value.
6586
- * @maxLength 19
6586
+ * @format COLOR_HEX
6587
6587
  */
6588
6588
  color?: string | null;
6589
6589
  /** An image to use for the background. */
@@ -6897,32 +6897,32 @@ interface ButtonStyles {
6897
6897
  borderRadius?: number | null;
6898
6898
  /**
6899
6899
  * Border color as a hexadecimal value.
6900
- * @maxLength 19
6900
+ * @format COLOR_HEX
6901
6901
  */
6902
6902
  borderColor?: string | null;
6903
6903
  /**
6904
6904
  * Text color as a hexadecimal value.
6905
- * @maxLength 19
6905
+ * @format COLOR_HEX
6906
6906
  */
6907
6907
  textColor?: string | null;
6908
6908
  /**
6909
6909
  * Background color as a hexadecimal value.
6910
- * @maxLength 19
6910
+ * @format COLOR_HEX
6911
6911
  */
6912
6912
  backgroundColor?: string | null;
6913
6913
  /**
6914
6914
  * Border color as a hexadecimal value (hover state).
6915
- * @maxLength 19
6915
+ * @format COLOR_HEX
6916
6916
  */
6917
6917
  borderColorHover?: string | null;
6918
6918
  /**
6919
6919
  * Text color as a hexadecimal value (hover state).
6920
- * @maxLength 19
6920
+ * @format COLOR_HEX
6921
6921
  */
6922
6922
  textColorHover?: string | null;
6923
6923
  /**
6924
6924
  * Background color as a hexadecimal value (hover state).
6925
- * @maxLength 19
6925
+ * @format COLOR_HEX
6926
6926
  */
6927
6927
  backgroundColorHover?: string | null;
6928
6928
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -6939,7 +6939,7 @@ interface ImageStyles {
6939
6939
  resizing?: ResizingWithLiterals;
6940
6940
  /**
6941
6941
  * Image border color as a hexadecimal value.
6942
- * @maxLength 19
6942
+ * @format COLOR_HEX
6943
6943
  */
6944
6944
  borderColor?: string | null;
6945
6945
  /** Image border width in pixels. */
@@ -6952,17 +6952,17 @@ interface RibbonStyles {
6952
6952
  ribbonText?: string | null;
6953
6953
  /**
6954
6954
  * Ribbon background color as a hexadecimal value.
6955
- * @maxLength 19
6955
+ * @format COLOR_HEX
6956
6956
  */
6957
6957
  backgroundColor?: string | null;
6958
6958
  /**
6959
6959
  * Ribbon text color as a hexadecimal value.
6960
- * @maxLength 19
6960
+ * @format COLOR_HEX
6961
6961
  */
6962
6962
  textColor?: string | null;
6963
6963
  /**
6964
6964
  * Ribbon border color as a hexadecimal value.
6965
- * @maxLength 19
6965
+ * @format COLOR_HEX
6966
6966
  */
6967
6967
  borderColor?: string | null;
6968
6968
  /** Ribbon border width in pixels. */
@@ -6975,12 +6975,12 @@ interface RibbonStyles {
6975
6975
  interface CardStyles {
6976
6976
  /**
6977
6977
  * Card background color as a hexadecimal value.
6978
- * @maxLength 19
6978
+ * @format COLOR_HEX
6979
6979
  */
6980
6980
  backgroundColor?: string | null;
6981
6981
  /**
6982
6982
  * Card border color as a hexadecimal value.
6983
- * @maxLength 19
6983
+ * @format COLOR_HEX
6984
6984
  */
6985
6985
  borderColor?: string | null;
6986
6986
  /** Card border width in pixels. */
@@ -6995,12 +6995,12 @@ interface CardStyles {
6995
6995
  titlePriceLayout?: LayoutWithLiterals;
6996
6996
  /**
6997
6997
  * Title text color as a hexadecimal value.
6998
- * @maxLength 19
6998
+ * @format COLOR_HEX
6999
6999
  */
7000
7000
  titleColor?: string | null;
7001
7001
  /**
7002
7002
  * Text color as a hexadecimal value.
7003
- * @maxLength 19
7003
+ * @format COLOR_HEX
7004
7004
  */
7005
7005
  textColor?: string | null;
7006
7006
  }
@@ -7182,29 +7182,29 @@ interface CellStyle {
7182
7182
  verticalAlignment?: VerticalAlignmentWithLiterals;
7183
7183
  /**
7184
7184
  * Cell background color as a hexadecimal value.
7185
- * @maxLength 19
7185
+ * @format COLOR_HEX
7186
7186
  */
7187
7187
  backgroundColor?: string | null;
7188
7188
  }
7189
7189
  interface BorderColors {
7190
7190
  /**
7191
7191
  * Left border color as a hexadecimal value.
7192
- * @maxLength 19
7192
+ * @format COLOR_HEX
7193
7193
  */
7194
7194
  left?: string | null;
7195
7195
  /**
7196
7196
  * Right border color as a hexadecimal value.
7197
- * @maxLength 19
7197
+ * @format COLOR_HEX
7198
7198
  */
7199
7199
  right?: string | null;
7200
7200
  /**
7201
7201
  * Top border color as a hexadecimal value.
7202
- * @maxLength 19
7202
+ * @format COLOR_HEX
7203
7203
  */
7204
7204
  top?: string | null;
7205
7205
  /**
7206
7206
  * Bottom border color as a hexadecimal value.
7207
- * @maxLength 19
7207
+ * @format COLOR_HEX
7208
7208
  */
7209
7209
  bottom?: string | null;
7210
7210
  }
@@ -7279,7 +7279,7 @@ interface CaptionData {
7279
7279
  interface LayoutData {
7280
7280
  /**
7281
7281
  * Deprecated: Use `background` instead.
7282
- * @maxLength 19
7282
+ * @format COLOR_HEX
7283
7283
  * @deprecated
7284
7284
  */
7285
7285
  backgroundColor?: string | null;
@@ -7287,7 +7287,7 @@ interface LayoutData {
7287
7287
  backgroundImage?: LayoutDataBackgroundImage;
7288
7288
  /**
7289
7289
  * Border color as a hexadecimal value.
7290
- * @maxLength 19
7290
+ * @format COLOR_HEX
7291
7291
  */
7292
7292
  borderColor?: string | null;
7293
7293
  /** Border width in pixels. */
@@ -7296,7 +7296,7 @@ interface LayoutData {
7296
7296
  borderRadius?: number | null;
7297
7297
  /**
7298
7298
  * Deprecated: Use `backdrop` instead.
7299
- * @maxLength 19
7299
+ * @format COLOR_HEX
7300
7300
  * @deprecated
7301
7301
  */
7302
7302
  backdropColor?: string | null;
@@ -7434,7 +7434,7 @@ interface LayoutDataBackground {
7434
7434
  type?: LayoutDataBackgroundTypeWithLiterals;
7435
7435
  /**
7436
7436
  * Background color as a hexadecimal value.
7437
- * @maxLength 19
7437
+ * @format COLOR_HEX
7438
7438
  */
7439
7439
  color?: string | null;
7440
7440
  /** Gradient configuration. */
@@ -7446,7 +7446,7 @@ interface Backdrop {
7446
7446
  type?: BackdropTypeWithLiterals;
7447
7447
  /**
7448
7448
  * Backdrop color as a hexadecimal value.
7449
- * @maxLength 19
7449
+ * @format COLOR_HEX
7450
7450
  */
7451
7451
  color?: string | null;
7452
7452
  /** Gradient configuration. */
@@ -7467,7 +7467,7 @@ interface ShapeData {
7467
7467
  interface ShapeDataStyles {
7468
7468
  /**
7469
7469
  * Shape fill color as a hexadecimal value.
7470
- * @maxLength 19
7470
+ * @format COLOR_HEX
7471
7471
  */
7472
7472
  color?: string | null;
7473
7473
  /** Map of original color keys to their new color values. */
@@ -7526,7 +7526,7 @@ interface CardDataBackground {
7526
7526
  type?: CardDataBackgroundTypeWithLiterals;
7527
7527
  /**
7528
7528
  * Background color as a hexadecimal value.
7529
- * @maxLength 19
7529
+ * @format COLOR_HEX
7530
7530
  */
7531
7531
  color?: string | null;
7532
7532
  /** Gradient configuration. */
@@ -7553,7 +7553,7 @@ interface TocData {
7553
7553
  itemSpacing?: number | null;
7554
7554
  /**
7555
7555
  * Optional override for the text color.
7556
- * @maxLength 19
7556
+ * @format COLOR_HEX
7557
7557
  */
7558
7558
  color?: string | null;
7559
7559
  /** Indentation style. Default: NESTED. */
@@ -7595,10 +7595,7 @@ interface SmartBlockData {
7595
7595
  orientation?: string | null;
7596
7596
  /** Column size controlling cells per row. */
7597
7597
  columnSize?: ColumnSizeWithLiterals;
7598
- /**
7599
- * Border color (for SOLID_JOINED_BOXES variant).
7600
- * @maxLength 19
7601
- */
7598
+ /** Border color (for SOLID_JOINED_BOXES variant). */
7602
7599
  borderColor?: string | null;
7603
7600
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
7604
7601
  borderWidth?: number | null;
@@ -7657,10 +7654,7 @@ interface SmartBlockCellData {
7657
7654
  label?: string | null;
7658
7655
  /** Shape file details. */
7659
7656
  shape?: Media;
7660
- /**
7661
- * Border color of the cell.
7662
- * @maxLength 19
7663
- */
7657
+ /** Border color of the cell. */
7664
7658
  borderColor?: string | null;
7665
7659
  /** Border width in pixels. */
7666
7660
  borderWidth?: number | null;
@@ -7668,20 +7662,11 @@ interface SmartBlockCellData {
7668
7662
  borderRadius?: number | null;
7669
7663
  /** The type of the parent smart block (must match parent). */
7670
7664
  type?: SmartBlockDataTypeWithLiterals;
7671
- /**
7672
- * Accent color for non-background variants (e.g., line, bullet, label color).
7673
- * @maxLength 19
7674
- */
7665
+ /** Accent color for non-background variants (e.g., line, bullet, label color). */
7675
7666
  accentColor?: string | null;
7676
- /**
7677
- * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
7678
- * @maxLength 19
7679
- */
7667
+ /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
7680
7668
  backgroundColor?: string | null;
7681
- /**
7682
- * Shape fill color as a hexadecimal value.
7683
- * @maxLength 19
7684
- */
7669
+ /** Shape fill color as a hexadecimal value. */
7685
7670
  shapeColor?: string | null;
7686
7671
  }
7687
7672
  interface V1Metadata {