@wix/auto_sdk_data-extension-schema_schemas 1.0.204 → 1.0.205

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.
@@ -5689,7 +5689,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
5689
5689
  interface Stop {
5690
5690
  /**
5691
5691
  * Stop color as hex value.
5692
- * @format COLOR_HEX
5692
+ * @maxLength 19
5693
5693
  */
5694
5694
  color?: string | null;
5695
5695
  /** Stop position (0-1). */
@@ -5730,7 +5730,7 @@ interface StylesBackground {
5730
5730
  type?: BackgroundTypeWithLiterals;
5731
5731
  /**
5732
5732
  * Background color as a hexadecimal value.
5733
- * @format COLOR_HEX
5733
+ * @maxLength 19
5734
5734
  */
5735
5735
  color?: string | null;
5736
5736
  /** Gradient configuration. */
@@ -5837,33 +5837,33 @@ interface Styles {
5837
5837
  borderRadius?: number | null;
5838
5838
  /**
5839
5839
  * Border color as a hexadecimal value.
5840
- * @format COLOR_HEX
5840
+ * @maxLength 19
5841
5841
  */
5842
5842
  borderColor?: string | null;
5843
5843
  /**
5844
5844
  * Border color as a hexadecimal value (hover state).
5845
- * @format COLOR_HEX
5845
+ * @maxLength 19
5846
5846
  */
5847
5847
  borderColorHover?: string | null;
5848
5848
  /**
5849
5849
  * Text color as a hexadecimal value.
5850
- * @format COLOR_HEX
5850
+ * @maxLength 19
5851
5851
  */
5852
5852
  textColor?: string | null;
5853
5853
  /**
5854
5854
  * Text color as a hexadecimal value (hover state).
5855
- * @format COLOR_HEX
5855
+ * @maxLength 19
5856
5856
  */
5857
5857
  textColorHover?: string | null;
5858
5858
  /**
5859
5859
  * Deprecated: Use `background` instead.
5860
- * @format COLOR_HEX
5860
+ * @maxLength 19
5861
5861
  * @deprecated
5862
5862
  */
5863
5863
  backgroundColor?: string | null;
5864
5864
  /**
5865
5865
  * Deprecated: Use `backgroundHover` instead.
5866
- * @format COLOR_HEX
5866
+ * @maxLength 19
5867
5867
  * @deprecated
5868
5868
  */
5869
5869
  backgroundColorHover?: string | null;
@@ -6315,7 +6315,7 @@ interface ImageDataStylesBorder {
6315
6315
  width?: number | null;
6316
6316
  /**
6317
6317
  * Border color as a hexadecimal value.
6318
- * @format COLOR_HEX
6318
+ * @maxLength 19
6319
6319
  */
6320
6320
  color?: string | null;
6321
6321
  /** Border radius in pixels. */
@@ -6356,22 +6356,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
6356
6356
  interface LinkPreviewDataStyles {
6357
6357
  /**
6358
6358
  * Background color as a hexadecimal value.
6359
- * @format COLOR_HEX
6359
+ * @maxLength 19
6360
6360
  */
6361
6361
  backgroundColor?: string | null;
6362
6362
  /**
6363
6363
  * Title color as a hexadecimal value.
6364
- * @format COLOR_HEX
6364
+ * @maxLength 19
6365
6365
  */
6366
6366
  titleColor?: string | null;
6367
6367
  /**
6368
6368
  * Subtitle color as a hexadecimal value.
6369
- * @format COLOR_HEX
6369
+ * @maxLength 19
6370
6370
  */
6371
6371
  subtitleColor?: string | null;
6372
6372
  /**
6373
6373
  * Link color as a hexadecimal value.
6374
- * @format COLOR_HEX
6374
+ * @maxLength 19
6375
6375
  */
6376
6376
  linkColor?: string | null;
6377
6377
  /** Border width in pixels. */
@@ -6380,7 +6380,7 @@ interface LinkPreviewDataStyles {
6380
6380
  borderRadius?: number | null;
6381
6381
  /**
6382
6382
  * Border color as a hexadecimal value.
6383
- * @format COLOR_HEX
6383
+ * @maxLength 19
6384
6384
  */
6385
6385
  borderColor?: string | null;
6386
6386
  /** Position of thumbnail. Defaults to `START`. */
@@ -6531,19 +6531,19 @@ interface BackgroundGradient {
6531
6531
  angle?: number | null;
6532
6532
  /**
6533
6533
  * The start color as a hexademical value.
6534
- * @format COLOR_HEX
6534
+ * @maxLength 19
6535
6535
  */
6536
6536
  startColor?: string | null;
6537
6537
  /**
6538
6538
  * The end color as a hexademical value.
6539
- * @format COLOR_HEX
6539
+ * @maxLength 19
6540
6540
  */
6541
6541
  lastColor?: string | null;
6542
6542
  }
6543
6543
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
6544
6544
  /**
6545
6545
  * The background color as a hexademical value.
6546
- * @format COLOR_HEX
6546
+ * @maxLength 19
6547
6547
  */
6548
6548
  color?: string | null;
6549
6549
  /** An image to use for the background. */
@@ -6557,7 +6557,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
6557
6557
  interface PollDesignBackgroundBackgroundOneOf {
6558
6558
  /**
6559
6559
  * The background color as a hexademical value.
6560
- * @format COLOR_HEX
6560
+ * @maxLength 19
6561
6561
  */
6562
6562
  color?: string | null;
6563
6563
  /** An image to use for the background. */
@@ -6871,32 +6871,32 @@ interface ButtonStyles {
6871
6871
  borderRadius?: number | null;
6872
6872
  /**
6873
6873
  * Border color as a hexadecimal value.
6874
- * @format COLOR_HEX
6874
+ * @maxLength 19
6875
6875
  */
6876
6876
  borderColor?: string | null;
6877
6877
  /**
6878
6878
  * Text color as a hexadecimal value.
6879
- * @format COLOR_HEX
6879
+ * @maxLength 19
6880
6880
  */
6881
6881
  textColor?: string | null;
6882
6882
  /**
6883
6883
  * Background color as a hexadecimal value.
6884
- * @format COLOR_HEX
6884
+ * @maxLength 19
6885
6885
  */
6886
6886
  backgroundColor?: string | null;
6887
6887
  /**
6888
6888
  * Border color as a hexadecimal value (hover state).
6889
- * @format COLOR_HEX
6889
+ * @maxLength 19
6890
6890
  */
6891
6891
  borderColorHover?: string | null;
6892
6892
  /**
6893
6893
  * Text color as a hexadecimal value (hover state).
6894
- * @format COLOR_HEX
6894
+ * @maxLength 19
6895
6895
  */
6896
6896
  textColorHover?: string | null;
6897
6897
  /**
6898
6898
  * Background color as a hexadecimal value (hover state).
6899
- * @format COLOR_HEX
6899
+ * @maxLength 19
6900
6900
  */
6901
6901
  backgroundColorHover?: string | null;
6902
6902
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -6913,7 +6913,7 @@ interface ImageStyles {
6913
6913
  resizing?: ResizingWithLiterals;
6914
6914
  /**
6915
6915
  * Image border color as a hexadecimal value.
6916
- * @format COLOR_HEX
6916
+ * @maxLength 19
6917
6917
  */
6918
6918
  borderColor?: string | null;
6919
6919
  /** Image border width in pixels. */
@@ -6926,17 +6926,17 @@ interface RibbonStyles {
6926
6926
  ribbonText?: string | null;
6927
6927
  /**
6928
6928
  * Ribbon background color as a hexadecimal value.
6929
- * @format COLOR_HEX
6929
+ * @maxLength 19
6930
6930
  */
6931
6931
  backgroundColor?: string | null;
6932
6932
  /**
6933
6933
  * Ribbon text color as a hexadecimal value.
6934
- * @format COLOR_HEX
6934
+ * @maxLength 19
6935
6935
  */
6936
6936
  textColor?: string | null;
6937
6937
  /**
6938
6938
  * Ribbon border color as a hexadecimal value.
6939
- * @format COLOR_HEX
6939
+ * @maxLength 19
6940
6940
  */
6941
6941
  borderColor?: string | null;
6942
6942
  /** Ribbon border width in pixels. */
@@ -6949,12 +6949,12 @@ interface RibbonStyles {
6949
6949
  interface CardStyles {
6950
6950
  /**
6951
6951
  * Card background color as a hexadecimal value.
6952
- * @format COLOR_HEX
6952
+ * @maxLength 19
6953
6953
  */
6954
6954
  backgroundColor?: string | null;
6955
6955
  /**
6956
6956
  * Card border color as a hexadecimal value.
6957
- * @format COLOR_HEX
6957
+ * @maxLength 19
6958
6958
  */
6959
6959
  borderColor?: string | null;
6960
6960
  /** Card border width in pixels. */
@@ -6969,12 +6969,12 @@ interface CardStyles {
6969
6969
  titlePriceLayout?: LayoutWithLiterals;
6970
6970
  /**
6971
6971
  * Title text color as a hexadecimal value.
6972
- * @format COLOR_HEX
6972
+ * @maxLength 19
6973
6973
  */
6974
6974
  titleColor?: string | null;
6975
6975
  /**
6976
6976
  * Text color as a hexadecimal value.
6977
- * @format COLOR_HEX
6977
+ * @maxLength 19
6978
6978
  */
6979
6979
  textColor?: string | null;
6980
6980
  }
@@ -7156,29 +7156,29 @@ interface CellStyle {
7156
7156
  verticalAlignment?: VerticalAlignmentWithLiterals;
7157
7157
  /**
7158
7158
  * Cell background color as a hexadecimal value.
7159
- * @format COLOR_HEX
7159
+ * @maxLength 19
7160
7160
  */
7161
7161
  backgroundColor?: string | null;
7162
7162
  }
7163
7163
  interface BorderColors {
7164
7164
  /**
7165
7165
  * Left border color as a hexadecimal value.
7166
- * @format COLOR_HEX
7166
+ * @maxLength 19
7167
7167
  */
7168
7168
  left?: string | null;
7169
7169
  /**
7170
7170
  * Right border color as a hexadecimal value.
7171
- * @format COLOR_HEX
7171
+ * @maxLength 19
7172
7172
  */
7173
7173
  right?: string | null;
7174
7174
  /**
7175
7175
  * Top border color as a hexadecimal value.
7176
- * @format COLOR_HEX
7176
+ * @maxLength 19
7177
7177
  */
7178
7178
  top?: string | null;
7179
7179
  /**
7180
7180
  * Bottom border color as a hexadecimal value.
7181
- * @format COLOR_HEX
7181
+ * @maxLength 19
7182
7182
  */
7183
7183
  bottom?: string | null;
7184
7184
  }
@@ -7253,7 +7253,7 @@ interface CaptionData {
7253
7253
  interface LayoutData {
7254
7254
  /**
7255
7255
  * Deprecated: Use `background` instead.
7256
- * @format COLOR_HEX
7256
+ * @maxLength 19
7257
7257
  * @deprecated
7258
7258
  */
7259
7259
  backgroundColor?: string | null;
@@ -7261,7 +7261,7 @@ interface LayoutData {
7261
7261
  backgroundImage?: LayoutDataBackgroundImage;
7262
7262
  /**
7263
7263
  * Border color as a hexadecimal value.
7264
- * @format COLOR_HEX
7264
+ * @maxLength 19
7265
7265
  */
7266
7266
  borderColor?: string | null;
7267
7267
  /** Border width in pixels. */
@@ -7270,7 +7270,7 @@ interface LayoutData {
7270
7270
  borderRadius?: number | null;
7271
7271
  /**
7272
7272
  * Deprecated: Use `backdrop` instead.
7273
- * @format COLOR_HEX
7273
+ * @maxLength 19
7274
7274
  * @deprecated
7275
7275
  */
7276
7276
  backdropColor?: string | null;
@@ -7408,7 +7408,7 @@ interface LayoutDataBackground {
7408
7408
  type?: LayoutDataBackgroundTypeWithLiterals;
7409
7409
  /**
7410
7410
  * Background color as a hexadecimal value.
7411
- * @format COLOR_HEX
7411
+ * @maxLength 19
7412
7412
  */
7413
7413
  color?: string | null;
7414
7414
  /** Gradient configuration. */
@@ -7420,7 +7420,7 @@ interface Backdrop {
7420
7420
  type?: BackdropTypeWithLiterals;
7421
7421
  /**
7422
7422
  * Backdrop color as a hexadecimal value.
7423
- * @format COLOR_HEX
7423
+ * @maxLength 19
7424
7424
  */
7425
7425
  color?: string | null;
7426
7426
  /** Gradient configuration. */
@@ -7441,7 +7441,7 @@ interface ShapeData {
7441
7441
  interface ShapeDataStyles {
7442
7442
  /**
7443
7443
  * Shape fill color as a hexadecimal value.
7444
- * @format COLOR_HEX
7444
+ * @maxLength 19
7445
7445
  */
7446
7446
  color?: string | null;
7447
7447
  /** Map of original color keys to their new color values. */
@@ -7500,7 +7500,7 @@ interface CardDataBackground {
7500
7500
  type?: CardDataBackgroundTypeWithLiterals;
7501
7501
  /**
7502
7502
  * Background color as a hexadecimal value.
7503
- * @format COLOR_HEX
7503
+ * @maxLength 19
7504
7504
  */
7505
7505
  color?: string | null;
7506
7506
  /** Gradient configuration. */
@@ -7527,7 +7527,7 @@ interface TocData {
7527
7527
  itemSpacing?: number | null;
7528
7528
  /**
7529
7529
  * Optional override for the text color.
7530
- * @format COLOR_HEX
7530
+ * @maxLength 19
7531
7531
  */
7532
7532
  color?: string | null;
7533
7533
  /** Indentation style. Default: NESTED. */
@@ -7569,7 +7569,10 @@ interface SmartBlockData {
7569
7569
  orientation?: string | null;
7570
7570
  /** Column size controlling cells per row. */
7571
7571
  columnSize?: ColumnSizeWithLiterals;
7572
- /** Border color (for SOLID_JOINED_BOXES variant). */
7572
+ /**
7573
+ * Border color (for SOLID_JOINED_BOXES variant).
7574
+ * @maxLength 19
7575
+ */
7573
7576
  borderColor?: string | null;
7574
7577
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
7575
7578
  borderWidth?: number | null;
@@ -7628,7 +7631,10 @@ interface SmartBlockCellData {
7628
7631
  label?: string | null;
7629
7632
  /** Shape file details. */
7630
7633
  shape?: Media;
7631
- /** Border color of the cell. */
7634
+ /**
7635
+ * Border color of the cell.
7636
+ * @maxLength 19
7637
+ */
7632
7638
  borderColor?: string | null;
7633
7639
  /** Border width in pixels. */
7634
7640
  borderWidth?: number | null;
@@ -7636,11 +7642,20 @@ interface SmartBlockCellData {
7636
7642
  borderRadius?: number | null;
7637
7643
  /** The type of the parent smart block (must match parent). */
7638
7644
  type?: SmartBlockDataTypeWithLiterals;
7639
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
7645
+ /**
7646
+ * Accent color for non-background variants (e.g., line, bullet, label color).
7647
+ * @maxLength 19
7648
+ */
7640
7649
  accentColor?: string | null;
7641
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
7650
+ /**
7651
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
7652
+ * @maxLength 19
7653
+ */
7642
7654
  backgroundColor?: string | null;
7643
- /** Shape fill color as a hexadecimal value. */
7655
+ /**
7656
+ * Shape fill color as a hexadecimal value.
7657
+ * @maxLength 19
7658
+ */
7644
7659
  shapeColor?: string | null;
7645
7660
  }
7646
7661
  interface V1Metadata {