@wix/auto_sdk_events_forms 1.0.84 → 1.0.85

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.
@@ -1745,7 +1745,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
1745
1745
  interface Stop {
1746
1746
  /**
1747
1747
  * Stop color as hex value.
1748
- * @format COLOR_HEX
1748
+ * @maxLength 19
1749
1749
  */
1750
1750
  color?: string | null;
1751
1751
  /** Stop position (0-1). */
@@ -1786,7 +1786,7 @@ interface Background {
1786
1786
  type?: BackgroundTypeWithLiterals;
1787
1787
  /**
1788
1788
  * Background color as a hexadecimal value.
1789
- * @format COLOR_HEX
1789
+ * @maxLength 19
1790
1790
  */
1791
1791
  color?: string | null;
1792
1792
  /** Gradient configuration. */
@@ -1893,33 +1893,33 @@ interface Styles {
1893
1893
  borderRadius?: number | null;
1894
1894
  /**
1895
1895
  * Border color as a hexadecimal value.
1896
- * @format COLOR_HEX
1896
+ * @maxLength 19
1897
1897
  */
1898
1898
  borderColor?: string | null;
1899
1899
  /**
1900
1900
  * Border color as a hexadecimal value (hover state).
1901
- * @format COLOR_HEX
1901
+ * @maxLength 19
1902
1902
  */
1903
1903
  borderColorHover?: string | null;
1904
1904
  /**
1905
1905
  * Text color as a hexadecimal value.
1906
- * @format COLOR_HEX
1906
+ * @maxLength 19
1907
1907
  */
1908
1908
  textColor?: string | null;
1909
1909
  /**
1910
1910
  * Text color as a hexadecimal value (hover state).
1911
- * @format COLOR_HEX
1911
+ * @maxLength 19
1912
1912
  */
1913
1913
  textColorHover?: string | null;
1914
1914
  /**
1915
1915
  * Deprecated: Use `background` instead.
1916
- * @format COLOR_HEX
1916
+ * @maxLength 19
1917
1917
  * @deprecated
1918
1918
  */
1919
1919
  backgroundColor?: string | null;
1920
1920
  /**
1921
1921
  * Deprecated: Use `backgroundHover` instead.
1922
- * @format COLOR_HEX
1922
+ * @maxLength 19
1923
1923
  * @deprecated
1924
1924
  */
1925
1925
  backgroundColorHover?: string | null;
@@ -2371,7 +2371,7 @@ interface StylesBorder {
2371
2371
  width?: number | null;
2372
2372
  /**
2373
2373
  * Border color as a hexadecimal value.
2374
- * @format COLOR_HEX
2374
+ * @maxLength 19
2375
2375
  */
2376
2376
  color?: string | null;
2377
2377
  /** Border radius in pixels. */
@@ -2412,22 +2412,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
2412
2412
  interface LinkPreviewDataStyles {
2413
2413
  /**
2414
2414
  * Background color as a hexadecimal value.
2415
- * @format COLOR_HEX
2415
+ * @maxLength 19
2416
2416
  */
2417
2417
  backgroundColor?: string | null;
2418
2418
  /**
2419
2419
  * Title color as a hexadecimal value.
2420
- * @format COLOR_HEX
2420
+ * @maxLength 19
2421
2421
  */
2422
2422
  titleColor?: string | null;
2423
2423
  /**
2424
2424
  * Subtitle color as a hexadecimal value.
2425
- * @format COLOR_HEX
2425
+ * @maxLength 19
2426
2426
  */
2427
2427
  subtitleColor?: string | null;
2428
2428
  /**
2429
2429
  * Link color as a hexadecimal value.
2430
- * @format COLOR_HEX
2430
+ * @maxLength 19
2431
2431
  */
2432
2432
  linkColor?: string | null;
2433
2433
  /** Border width in pixels. */
@@ -2436,7 +2436,7 @@ interface LinkPreviewDataStyles {
2436
2436
  borderRadius?: number | null;
2437
2437
  /**
2438
2438
  * Border color as a hexadecimal value.
2439
- * @format COLOR_HEX
2439
+ * @maxLength 19
2440
2440
  */
2441
2441
  borderColor?: string | null;
2442
2442
  /** Position of thumbnail. Defaults to `START`. */
@@ -2587,19 +2587,19 @@ interface BackgroundGradient {
2587
2587
  angle?: number | null;
2588
2588
  /**
2589
2589
  * The start color as a hexademical value.
2590
- * @format COLOR_HEX
2590
+ * @maxLength 19
2591
2591
  */
2592
2592
  startColor?: string | null;
2593
2593
  /**
2594
2594
  * The end color as a hexademical value.
2595
- * @format COLOR_HEX
2595
+ * @maxLength 19
2596
2596
  */
2597
2597
  lastColor?: string | null;
2598
2598
  }
2599
2599
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2600
2600
  /**
2601
2601
  * The background color as a hexademical value.
2602
- * @format COLOR_HEX
2602
+ * @maxLength 19
2603
2603
  */
2604
2604
  color?: string | null;
2605
2605
  /** An image to use for the background. */
@@ -2613,7 +2613,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2613
2613
  interface PollDesignBackgroundBackgroundOneOf {
2614
2614
  /**
2615
2615
  * The background color as a hexademical value.
2616
- * @format COLOR_HEX
2616
+ * @maxLength 19
2617
2617
  */
2618
2618
  color?: string | null;
2619
2619
  /** An image to use for the background. */
@@ -2927,32 +2927,32 @@ interface ButtonStyles {
2927
2927
  borderRadius?: number | null;
2928
2928
  /**
2929
2929
  * Border color as a hexadecimal value.
2930
- * @format COLOR_HEX
2930
+ * @maxLength 19
2931
2931
  */
2932
2932
  borderColor?: string | null;
2933
2933
  /**
2934
2934
  * Text color as a hexadecimal value.
2935
- * @format COLOR_HEX
2935
+ * @maxLength 19
2936
2936
  */
2937
2937
  textColor?: string | null;
2938
2938
  /**
2939
2939
  * Background color as a hexadecimal value.
2940
- * @format COLOR_HEX
2940
+ * @maxLength 19
2941
2941
  */
2942
2942
  backgroundColor?: string | null;
2943
2943
  /**
2944
2944
  * Border color as a hexadecimal value (hover state).
2945
- * @format COLOR_HEX
2945
+ * @maxLength 19
2946
2946
  */
2947
2947
  borderColorHover?: string | null;
2948
2948
  /**
2949
2949
  * Text color as a hexadecimal value (hover state).
2950
- * @format COLOR_HEX
2950
+ * @maxLength 19
2951
2951
  */
2952
2952
  textColorHover?: string | null;
2953
2953
  /**
2954
2954
  * Background color as a hexadecimal value (hover state).
2955
- * @format COLOR_HEX
2955
+ * @maxLength 19
2956
2956
  */
2957
2957
  backgroundColorHover?: string | null;
2958
2958
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -2969,7 +2969,7 @@ interface ImageStyles {
2969
2969
  resizing?: ResizingWithLiterals;
2970
2970
  /**
2971
2971
  * Image border color as a hexadecimal value.
2972
- * @format COLOR_HEX
2972
+ * @maxLength 19
2973
2973
  */
2974
2974
  borderColor?: string | null;
2975
2975
  /** Image border width in pixels. */
@@ -2982,17 +2982,17 @@ interface RibbonStyles {
2982
2982
  ribbonText?: string | null;
2983
2983
  /**
2984
2984
  * Ribbon background color as a hexadecimal value.
2985
- * @format COLOR_HEX
2985
+ * @maxLength 19
2986
2986
  */
2987
2987
  backgroundColor?: string | null;
2988
2988
  /**
2989
2989
  * Ribbon text color as a hexadecimal value.
2990
- * @format COLOR_HEX
2990
+ * @maxLength 19
2991
2991
  */
2992
2992
  textColor?: string | null;
2993
2993
  /**
2994
2994
  * Ribbon border color as a hexadecimal value.
2995
- * @format COLOR_HEX
2995
+ * @maxLength 19
2996
2996
  */
2997
2997
  borderColor?: string | null;
2998
2998
  /** Ribbon border width in pixels. */
@@ -3005,12 +3005,12 @@ interface RibbonStyles {
3005
3005
  interface CardStyles {
3006
3006
  /**
3007
3007
  * Card background color as a hexadecimal value.
3008
- * @format COLOR_HEX
3008
+ * @maxLength 19
3009
3009
  */
3010
3010
  backgroundColor?: string | null;
3011
3011
  /**
3012
3012
  * Card border color as a hexadecimal value.
3013
- * @format COLOR_HEX
3013
+ * @maxLength 19
3014
3014
  */
3015
3015
  borderColor?: string | null;
3016
3016
  /** Card border width in pixels. */
@@ -3025,12 +3025,12 @@ interface CardStyles {
3025
3025
  titlePriceLayout?: LayoutWithLiterals;
3026
3026
  /**
3027
3027
  * Title text color as a hexadecimal value.
3028
- * @format COLOR_HEX
3028
+ * @maxLength 19
3029
3029
  */
3030
3030
  titleColor?: string | null;
3031
3031
  /**
3032
3032
  * Text color as a hexadecimal value.
3033
- * @format COLOR_HEX
3033
+ * @maxLength 19
3034
3034
  */
3035
3035
  textColor?: string | null;
3036
3036
  }
@@ -3212,29 +3212,29 @@ interface CellStyle {
3212
3212
  verticalAlignment?: VerticalAlignmentWithLiterals;
3213
3213
  /**
3214
3214
  * Cell background color as a hexadecimal value.
3215
- * @format COLOR_HEX
3215
+ * @maxLength 19
3216
3216
  */
3217
3217
  backgroundColor?: string | null;
3218
3218
  }
3219
3219
  interface BorderColors {
3220
3220
  /**
3221
3221
  * Left border color as a hexadecimal value.
3222
- * @format COLOR_HEX
3222
+ * @maxLength 19
3223
3223
  */
3224
3224
  left?: string | null;
3225
3225
  /**
3226
3226
  * Right border color as a hexadecimal value.
3227
- * @format COLOR_HEX
3227
+ * @maxLength 19
3228
3228
  */
3229
3229
  right?: string | null;
3230
3230
  /**
3231
3231
  * Top border color as a hexadecimal value.
3232
- * @format COLOR_HEX
3232
+ * @maxLength 19
3233
3233
  */
3234
3234
  top?: string | null;
3235
3235
  /**
3236
3236
  * Bottom border color as a hexadecimal value.
3237
- * @format COLOR_HEX
3237
+ * @maxLength 19
3238
3238
  */
3239
3239
  bottom?: string | null;
3240
3240
  }
@@ -3309,7 +3309,7 @@ interface CaptionData {
3309
3309
  interface LayoutData {
3310
3310
  /**
3311
3311
  * Deprecated: Use `background` instead.
3312
- * @format COLOR_HEX
3312
+ * @maxLength 19
3313
3313
  * @deprecated
3314
3314
  */
3315
3315
  backgroundColor?: string | null;
@@ -3317,7 +3317,7 @@ interface LayoutData {
3317
3317
  backgroundImage?: LayoutDataBackgroundImage;
3318
3318
  /**
3319
3319
  * Border color as a hexadecimal value.
3320
- * @format COLOR_HEX
3320
+ * @maxLength 19
3321
3321
  */
3322
3322
  borderColor?: string | null;
3323
3323
  /** Border width in pixels. */
@@ -3326,7 +3326,7 @@ interface LayoutData {
3326
3326
  borderRadius?: number | null;
3327
3327
  /**
3328
3328
  * Deprecated: Use `backdrop` instead.
3329
- * @format COLOR_HEX
3329
+ * @maxLength 19
3330
3330
  * @deprecated
3331
3331
  */
3332
3332
  backdropColor?: string | null;
@@ -3464,7 +3464,7 @@ interface LayoutDataBackground {
3464
3464
  type?: LayoutDataBackgroundTypeWithLiterals;
3465
3465
  /**
3466
3466
  * Background color as a hexadecimal value.
3467
- * @format COLOR_HEX
3467
+ * @maxLength 19
3468
3468
  */
3469
3469
  color?: string | null;
3470
3470
  /** Gradient configuration. */
@@ -3476,7 +3476,7 @@ interface Backdrop {
3476
3476
  type?: BackdropTypeWithLiterals;
3477
3477
  /**
3478
3478
  * Backdrop color as a hexadecimal value.
3479
- * @format COLOR_HEX
3479
+ * @maxLength 19
3480
3480
  */
3481
3481
  color?: string | null;
3482
3482
  /** Gradient configuration. */
@@ -3497,7 +3497,7 @@ interface ShapeData {
3497
3497
  interface ShapeDataStyles {
3498
3498
  /**
3499
3499
  * Shape fill color as a hexadecimal value.
3500
- * @format COLOR_HEX
3500
+ * @maxLength 19
3501
3501
  */
3502
3502
  color?: string | null;
3503
3503
  /** Map of original color keys to their new color values. */
@@ -3556,7 +3556,7 @@ interface CardDataBackground {
3556
3556
  type?: CardDataBackgroundTypeWithLiterals;
3557
3557
  /**
3558
3558
  * Background color as a hexadecimal value.
3559
- * @format COLOR_HEX
3559
+ * @maxLength 19
3560
3560
  */
3561
3561
  color?: string | null;
3562
3562
  /** Gradient configuration. */
@@ -3583,7 +3583,7 @@ interface TocData {
3583
3583
  itemSpacing?: number | null;
3584
3584
  /**
3585
3585
  * Optional override for the text color.
3586
- * @format COLOR_HEX
3586
+ * @maxLength 19
3587
3587
  */
3588
3588
  color?: string | null;
3589
3589
  /** Indentation style. Default: NESTED. */
@@ -3625,7 +3625,10 @@ interface SmartBlockData {
3625
3625
  orientation?: string | null;
3626
3626
  /** Column size controlling cells per row. */
3627
3627
  columnSize?: ColumnSizeWithLiterals;
3628
- /** Border color (for SOLID_JOINED_BOXES variant). */
3628
+ /**
3629
+ * Border color (for SOLID_JOINED_BOXES variant).
3630
+ * @maxLength 19
3631
+ */
3629
3632
  borderColor?: string | null;
3630
3633
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
3631
3634
  borderWidth?: number | null;
@@ -3684,7 +3687,10 @@ interface SmartBlockCellData {
3684
3687
  label?: string | null;
3685
3688
  /** Shape file details. */
3686
3689
  shape?: Media;
3687
- /** Border color of the cell. */
3690
+ /**
3691
+ * Border color of the cell.
3692
+ * @maxLength 19
3693
+ */
3688
3694
  borderColor?: string | null;
3689
3695
  /** Border width in pixels. */
3690
3696
  borderWidth?: number | null;
@@ -3692,11 +3698,20 @@ interface SmartBlockCellData {
3692
3698
  borderRadius?: number | null;
3693
3699
  /** The type of the parent smart block (must match parent). */
3694
3700
  type?: SmartBlockDataTypeWithLiterals;
3695
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
3701
+ /**
3702
+ * Accent color for non-background variants (e.g., line, bullet, label color).
3703
+ * @maxLength 19
3704
+ */
3696
3705
  accentColor?: string | null;
3697
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
3706
+ /**
3707
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
3708
+ * @maxLength 19
3709
+ */
3698
3710
  backgroundColor?: string | null;
3699
- /** Shape fill color as a hexadecimal value. */
3711
+ /**
3712
+ * Shape fill color as a hexadecimal value.
3713
+ * @maxLength 19
3714
+ */
3700
3715
  shapeColor?: string | null;
3701
3716
  }
3702
3717
  interface Metadata {
@@ -770,6 +770,7 @@ var EventStatus = /* @__PURE__ */ ((EventStatus2) => {
770
770
  EventStatus2["STARTED"] = "STARTED";
771
771
  EventStatus2["ENDED"] = "ENDED";
772
772
  EventStatus2["CANCELED"] = "CANCELED";
773
+ EventStatus2["DRAFT"] = "DRAFT";
773
774
  return EventStatus2;
774
775
  })(EventStatus || {});
775
776
  var EventType = /* @__PURE__ */ ((EventType2) => {