@wix/auto_sdk_data-extension-schema_schemas 1.0.201 → 1.0.203
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 +67 -51
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +67 -51
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +67 -51
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +67 -51
- 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 +67 -51
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +67 -51
- 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 +67 -51
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +67 -51
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5706,7 +5706,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
5706
5706
|
interface Stop {
|
|
5707
5707
|
/**
|
|
5708
5708
|
* Stop color as hex value.
|
|
5709
|
-
* @
|
|
5709
|
+
* @maxLength 19
|
|
5710
5710
|
*/
|
|
5711
5711
|
color?: string | null;
|
|
5712
5712
|
/** Stop position (0-1). */
|
|
@@ -5747,7 +5747,7 @@ interface StylesBackground {
|
|
|
5747
5747
|
type?: BackgroundTypeWithLiterals;
|
|
5748
5748
|
/**
|
|
5749
5749
|
* Background color as a hexadecimal value.
|
|
5750
|
-
* @
|
|
5750
|
+
* @maxLength 19
|
|
5751
5751
|
*/
|
|
5752
5752
|
color?: string | null;
|
|
5753
5753
|
/** Gradient configuration. */
|
|
@@ -5854,33 +5854,33 @@ interface Styles {
|
|
|
5854
5854
|
borderRadius?: number | null;
|
|
5855
5855
|
/**
|
|
5856
5856
|
* Border color as a hexadecimal value.
|
|
5857
|
-
* @
|
|
5857
|
+
* @maxLength 19
|
|
5858
5858
|
*/
|
|
5859
5859
|
borderColor?: string | null;
|
|
5860
5860
|
/**
|
|
5861
5861
|
* Border color as a hexadecimal value (hover state).
|
|
5862
|
-
* @
|
|
5862
|
+
* @maxLength 19
|
|
5863
5863
|
*/
|
|
5864
5864
|
borderColorHover?: string | null;
|
|
5865
5865
|
/**
|
|
5866
5866
|
* Text color as a hexadecimal value.
|
|
5867
|
-
* @
|
|
5867
|
+
* @maxLength 19
|
|
5868
5868
|
*/
|
|
5869
5869
|
textColor?: string | null;
|
|
5870
5870
|
/**
|
|
5871
5871
|
* Text color as a hexadecimal value (hover state).
|
|
5872
|
-
* @
|
|
5872
|
+
* @maxLength 19
|
|
5873
5873
|
*/
|
|
5874
5874
|
textColorHover?: string | null;
|
|
5875
5875
|
/**
|
|
5876
5876
|
* Deprecated: Use `background` instead.
|
|
5877
|
-
* @
|
|
5877
|
+
* @maxLength 19
|
|
5878
5878
|
* @deprecated
|
|
5879
5879
|
*/
|
|
5880
5880
|
backgroundColor?: string | null;
|
|
5881
5881
|
/**
|
|
5882
5882
|
* Deprecated: Use `backgroundHover` instead.
|
|
5883
|
-
* @
|
|
5883
|
+
* @maxLength 19
|
|
5884
5884
|
* @deprecated
|
|
5885
5885
|
*/
|
|
5886
5886
|
backgroundColorHover?: string | null;
|
|
@@ -6332,7 +6332,7 @@ interface ImageDataStylesBorder {
|
|
|
6332
6332
|
width?: number | null;
|
|
6333
6333
|
/**
|
|
6334
6334
|
* Border color as a hexadecimal value.
|
|
6335
|
-
* @
|
|
6335
|
+
* @maxLength 19
|
|
6336
6336
|
*/
|
|
6337
6337
|
color?: string | null;
|
|
6338
6338
|
/** Border radius in pixels. */
|
|
@@ -6373,22 +6373,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
6373
6373
|
interface LinkPreviewDataStyles {
|
|
6374
6374
|
/**
|
|
6375
6375
|
* Background color as a hexadecimal value.
|
|
6376
|
-
* @
|
|
6376
|
+
* @maxLength 19
|
|
6377
6377
|
*/
|
|
6378
6378
|
backgroundColor?: string | null;
|
|
6379
6379
|
/**
|
|
6380
6380
|
* Title color as a hexadecimal value.
|
|
6381
|
-
* @
|
|
6381
|
+
* @maxLength 19
|
|
6382
6382
|
*/
|
|
6383
6383
|
titleColor?: string | null;
|
|
6384
6384
|
/**
|
|
6385
6385
|
* Subtitle color as a hexadecimal value.
|
|
6386
|
-
* @
|
|
6386
|
+
* @maxLength 19
|
|
6387
6387
|
*/
|
|
6388
6388
|
subtitleColor?: string | null;
|
|
6389
6389
|
/**
|
|
6390
6390
|
* Link color as a hexadecimal value.
|
|
6391
|
-
* @
|
|
6391
|
+
* @maxLength 19
|
|
6392
6392
|
*/
|
|
6393
6393
|
linkColor?: string | null;
|
|
6394
6394
|
/** Border width in pixels. */
|
|
@@ -6397,7 +6397,7 @@ interface LinkPreviewDataStyles {
|
|
|
6397
6397
|
borderRadius?: number | null;
|
|
6398
6398
|
/**
|
|
6399
6399
|
* Border color as a hexadecimal value.
|
|
6400
|
-
* @
|
|
6400
|
+
* @maxLength 19
|
|
6401
6401
|
*/
|
|
6402
6402
|
borderColor?: string | null;
|
|
6403
6403
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -6548,19 +6548,19 @@ interface BackgroundGradient {
|
|
|
6548
6548
|
angle?: number | null;
|
|
6549
6549
|
/**
|
|
6550
6550
|
* The start color as a hexademical value.
|
|
6551
|
-
* @
|
|
6551
|
+
* @maxLength 19
|
|
6552
6552
|
*/
|
|
6553
6553
|
startColor?: string | null;
|
|
6554
6554
|
/**
|
|
6555
6555
|
* The end color as a hexademical value.
|
|
6556
|
-
* @
|
|
6556
|
+
* @maxLength 19
|
|
6557
6557
|
*/
|
|
6558
6558
|
lastColor?: string | null;
|
|
6559
6559
|
}
|
|
6560
6560
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
6561
6561
|
/**
|
|
6562
6562
|
* The background color as a hexademical value.
|
|
6563
|
-
* @
|
|
6563
|
+
* @maxLength 19
|
|
6564
6564
|
*/
|
|
6565
6565
|
color?: string | null;
|
|
6566
6566
|
/** An image to use for the background. */
|
|
@@ -6574,7 +6574,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
6574
6574
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
6575
6575
|
/**
|
|
6576
6576
|
* The background color as a hexademical value.
|
|
6577
|
-
* @
|
|
6577
|
+
* @maxLength 19
|
|
6578
6578
|
*/
|
|
6579
6579
|
color?: string | null;
|
|
6580
6580
|
/** An image to use for the background. */
|
|
@@ -6888,32 +6888,32 @@ interface ButtonStyles {
|
|
|
6888
6888
|
borderRadius?: number | null;
|
|
6889
6889
|
/**
|
|
6890
6890
|
* Border color as a hexadecimal value.
|
|
6891
|
-
* @
|
|
6891
|
+
* @maxLength 19
|
|
6892
6892
|
*/
|
|
6893
6893
|
borderColor?: string | null;
|
|
6894
6894
|
/**
|
|
6895
6895
|
* Text color as a hexadecimal value.
|
|
6896
|
-
* @
|
|
6896
|
+
* @maxLength 19
|
|
6897
6897
|
*/
|
|
6898
6898
|
textColor?: string | null;
|
|
6899
6899
|
/**
|
|
6900
6900
|
* Background color as a hexadecimal value.
|
|
6901
|
-
* @
|
|
6901
|
+
* @maxLength 19
|
|
6902
6902
|
*/
|
|
6903
6903
|
backgroundColor?: string | null;
|
|
6904
6904
|
/**
|
|
6905
6905
|
* Border color as a hexadecimal value (hover state).
|
|
6906
|
-
* @
|
|
6906
|
+
* @maxLength 19
|
|
6907
6907
|
*/
|
|
6908
6908
|
borderColorHover?: string | null;
|
|
6909
6909
|
/**
|
|
6910
6910
|
* Text color as a hexadecimal value (hover state).
|
|
6911
|
-
* @
|
|
6911
|
+
* @maxLength 19
|
|
6912
6912
|
*/
|
|
6913
6913
|
textColorHover?: string | null;
|
|
6914
6914
|
/**
|
|
6915
6915
|
* Background color as a hexadecimal value (hover state).
|
|
6916
|
-
* @
|
|
6916
|
+
* @maxLength 19
|
|
6917
6917
|
*/
|
|
6918
6918
|
backgroundColorHover?: string | null;
|
|
6919
6919
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -6930,7 +6930,7 @@ interface ImageStyles {
|
|
|
6930
6930
|
resizing?: ResizingWithLiterals;
|
|
6931
6931
|
/**
|
|
6932
6932
|
* Image border color as a hexadecimal value.
|
|
6933
|
-
* @
|
|
6933
|
+
* @maxLength 19
|
|
6934
6934
|
*/
|
|
6935
6935
|
borderColor?: string | null;
|
|
6936
6936
|
/** Image border width in pixels. */
|
|
@@ -6943,17 +6943,17 @@ interface RibbonStyles {
|
|
|
6943
6943
|
ribbonText?: string | null;
|
|
6944
6944
|
/**
|
|
6945
6945
|
* Ribbon background color as a hexadecimal value.
|
|
6946
|
-
* @
|
|
6946
|
+
* @maxLength 19
|
|
6947
6947
|
*/
|
|
6948
6948
|
backgroundColor?: string | null;
|
|
6949
6949
|
/**
|
|
6950
6950
|
* Ribbon text color as a hexadecimal value.
|
|
6951
|
-
* @
|
|
6951
|
+
* @maxLength 19
|
|
6952
6952
|
*/
|
|
6953
6953
|
textColor?: string | null;
|
|
6954
6954
|
/**
|
|
6955
6955
|
* Ribbon border color as a hexadecimal value.
|
|
6956
|
-
* @
|
|
6956
|
+
* @maxLength 19
|
|
6957
6957
|
*/
|
|
6958
6958
|
borderColor?: string | null;
|
|
6959
6959
|
/** Ribbon border width in pixels. */
|
|
@@ -6966,12 +6966,12 @@ interface RibbonStyles {
|
|
|
6966
6966
|
interface CardStyles {
|
|
6967
6967
|
/**
|
|
6968
6968
|
* Card background color as a hexadecimal value.
|
|
6969
|
-
* @
|
|
6969
|
+
* @maxLength 19
|
|
6970
6970
|
*/
|
|
6971
6971
|
backgroundColor?: string | null;
|
|
6972
6972
|
/**
|
|
6973
6973
|
* Card border color as a hexadecimal value.
|
|
6974
|
-
* @
|
|
6974
|
+
* @maxLength 19
|
|
6975
6975
|
*/
|
|
6976
6976
|
borderColor?: string | null;
|
|
6977
6977
|
/** Card border width in pixels. */
|
|
@@ -6986,12 +6986,12 @@ interface CardStyles {
|
|
|
6986
6986
|
titlePriceLayout?: LayoutWithLiterals;
|
|
6987
6987
|
/**
|
|
6988
6988
|
* Title text color as a hexadecimal value.
|
|
6989
|
-
* @
|
|
6989
|
+
* @maxLength 19
|
|
6990
6990
|
*/
|
|
6991
6991
|
titleColor?: string | null;
|
|
6992
6992
|
/**
|
|
6993
6993
|
* Text color as a hexadecimal value.
|
|
6994
|
-
* @
|
|
6994
|
+
* @maxLength 19
|
|
6995
6995
|
*/
|
|
6996
6996
|
textColor?: string | null;
|
|
6997
6997
|
}
|
|
@@ -7173,29 +7173,29 @@ interface CellStyle {
|
|
|
7173
7173
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
7174
7174
|
/**
|
|
7175
7175
|
* Cell background color as a hexadecimal value.
|
|
7176
|
-
* @
|
|
7176
|
+
* @maxLength 19
|
|
7177
7177
|
*/
|
|
7178
7178
|
backgroundColor?: string | null;
|
|
7179
7179
|
}
|
|
7180
7180
|
interface BorderColors {
|
|
7181
7181
|
/**
|
|
7182
7182
|
* Left border color as a hexadecimal value.
|
|
7183
|
-
* @
|
|
7183
|
+
* @maxLength 19
|
|
7184
7184
|
*/
|
|
7185
7185
|
left?: string | null;
|
|
7186
7186
|
/**
|
|
7187
7187
|
* Right border color as a hexadecimal value.
|
|
7188
|
-
* @
|
|
7188
|
+
* @maxLength 19
|
|
7189
7189
|
*/
|
|
7190
7190
|
right?: string | null;
|
|
7191
7191
|
/**
|
|
7192
7192
|
* Top border color as a hexadecimal value.
|
|
7193
|
-
* @
|
|
7193
|
+
* @maxLength 19
|
|
7194
7194
|
*/
|
|
7195
7195
|
top?: string | null;
|
|
7196
7196
|
/**
|
|
7197
7197
|
* Bottom border color as a hexadecimal value.
|
|
7198
|
-
* @
|
|
7198
|
+
* @maxLength 19
|
|
7199
7199
|
*/
|
|
7200
7200
|
bottom?: string | null;
|
|
7201
7201
|
}
|
|
@@ -7270,7 +7270,7 @@ interface CaptionData {
|
|
|
7270
7270
|
interface LayoutData {
|
|
7271
7271
|
/**
|
|
7272
7272
|
* Deprecated: Use `background` instead.
|
|
7273
|
-
* @
|
|
7273
|
+
* @maxLength 19
|
|
7274
7274
|
* @deprecated
|
|
7275
7275
|
*/
|
|
7276
7276
|
backgroundColor?: string | null;
|
|
@@ -7278,7 +7278,7 @@ interface LayoutData {
|
|
|
7278
7278
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
7279
7279
|
/**
|
|
7280
7280
|
* Border color as a hexadecimal value.
|
|
7281
|
-
* @
|
|
7281
|
+
* @maxLength 19
|
|
7282
7282
|
*/
|
|
7283
7283
|
borderColor?: string | null;
|
|
7284
7284
|
/** Border width in pixels. */
|
|
@@ -7287,7 +7287,7 @@ interface LayoutData {
|
|
|
7287
7287
|
borderRadius?: number | null;
|
|
7288
7288
|
/**
|
|
7289
7289
|
* Deprecated: Use `backdrop` instead.
|
|
7290
|
-
* @
|
|
7290
|
+
* @maxLength 19
|
|
7291
7291
|
* @deprecated
|
|
7292
7292
|
*/
|
|
7293
7293
|
backdropColor?: string | null;
|
|
@@ -7425,7 +7425,7 @@ interface LayoutDataBackground {
|
|
|
7425
7425
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
7426
7426
|
/**
|
|
7427
7427
|
* Background color as a hexadecimal value.
|
|
7428
|
-
* @
|
|
7428
|
+
* @maxLength 19
|
|
7429
7429
|
*/
|
|
7430
7430
|
color?: string | null;
|
|
7431
7431
|
/** Gradient configuration. */
|
|
@@ -7437,7 +7437,7 @@ interface Backdrop {
|
|
|
7437
7437
|
type?: BackdropTypeWithLiterals;
|
|
7438
7438
|
/**
|
|
7439
7439
|
* Backdrop color as a hexadecimal value.
|
|
7440
|
-
* @
|
|
7440
|
+
* @maxLength 19
|
|
7441
7441
|
*/
|
|
7442
7442
|
color?: string | null;
|
|
7443
7443
|
/** Gradient configuration. */
|
|
@@ -7458,7 +7458,7 @@ interface ShapeData {
|
|
|
7458
7458
|
interface ShapeDataStyles {
|
|
7459
7459
|
/**
|
|
7460
7460
|
* Shape fill color as a hexadecimal value.
|
|
7461
|
-
* @
|
|
7461
|
+
* @maxLength 19
|
|
7462
7462
|
*/
|
|
7463
7463
|
color?: string | null;
|
|
7464
7464
|
/** Map of original color keys to their new color values. */
|
|
@@ -7517,7 +7517,7 @@ interface CardDataBackground {
|
|
|
7517
7517
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
7518
7518
|
/**
|
|
7519
7519
|
* Background color as a hexadecimal value.
|
|
7520
|
-
* @
|
|
7520
|
+
* @maxLength 19
|
|
7521
7521
|
*/
|
|
7522
7522
|
color?: string | null;
|
|
7523
7523
|
/** Gradient configuration. */
|
|
@@ -7544,7 +7544,7 @@ interface TocData {
|
|
|
7544
7544
|
itemSpacing?: number | null;
|
|
7545
7545
|
/**
|
|
7546
7546
|
* Optional override for the text color.
|
|
7547
|
-
* @
|
|
7547
|
+
* @maxLength 19
|
|
7548
7548
|
*/
|
|
7549
7549
|
color?: string | null;
|
|
7550
7550
|
/** Indentation style. Default: NESTED. */
|
|
@@ -7586,7 +7586,10 @@ interface SmartBlockData {
|
|
|
7586
7586
|
orientation?: string | null;
|
|
7587
7587
|
/** Column size controlling cells per row. */
|
|
7588
7588
|
columnSize?: ColumnSizeWithLiterals;
|
|
7589
|
-
/**
|
|
7589
|
+
/**
|
|
7590
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
7591
|
+
* @maxLength 19
|
|
7592
|
+
*/
|
|
7590
7593
|
borderColor?: string | null;
|
|
7591
7594
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
7592
7595
|
borderWidth?: number | null;
|
|
@@ -7645,7 +7648,10 @@ interface SmartBlockCellData {
|
|
|
7645
7648
|
label?: string | null;
|
|
7646
7649
|
/** Shape file details. */
|
|
7647
7650
|
shape?: Media;
|
|
7648
|
-
/**
|
|
7651
|
+
/**
|
|
7652
|
+
* Border color of the cell.
|
|
7653
|
+
* @maxLength 19
|
|
7654
|
+
*/
|
|
7649
7655
|
borderColor?: string | null;
|
|
7650
7656
|
/** Border width in pixels. */
|
|
7651
7657
|
borderWidth?: number | null;
|
|
@@ -7653,11 +7659,20 @@ interface SmartBlockCellData {
|
|
|
7653
7659
|
borderRadius?: number | null;
|
|
7654
7660
|
/** The type of the parent smart block (must match parent). */
|
|
7655
7661
|
type?: SmartBlockDataTypeWithLiterals;
|
|
7656
|
-
/**
|
|
7662
|
+
/**
|
|
7663
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
7664
|
+
* @maxLength 19
|
|
7665
|
+
*/
|
|
7657
7666
|
accentColor?: string | null;
|
|
7658
|
-
/**
|
|
7667
|
+
/**
|
|
7668
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
7669
|
+
* @maxLength 19
|
|
7670
|
+
*/
|
|
7659
7671
|
backgroundColor?: string | null;
|
|
7660
|
-
/**
|
|
7672
|
+
/**
|
|
7673
|
+
* Shape fill color as a hexadecimal value.
|
|
7674
|
+
* @maxLength 19
|
|
7675
|
+
*/
|
|
7661
7676
|
shapeColor?: string | null;
|
|
7662
7677
|
}
|
|
7663
7678
|
interface V1Metadata {
|
|
@@ -14725,8 +14740,9 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
14725
14740
|
template?: TemplateContainer;
|
|
14726
14741
|
/**
|
|
14727
14742
|
* A DOM Selector that will allow us to target it in the editor
|
|
14728
|
-
* @minLength 2
|
|
14729
14743
|
* @maxLength 100
|
|
14744
|
+
* @deprecated A DOM Selector that will allow us to target it in the editor
|
|
14745
|
+
* @targetRemovalDate 2026-05-31
|
|
14730
14746
|
*/
|
|
14731
14747
|
selector?: string;
|
|
14732
14748
|
/** The type of Container to be rendered */
|