@wix/auto_sdk_data-extension-schema_schemas 1.0.65 → 1.0.66
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.d.ts +1 -1
- package/build/cjs/index.js +70 -21
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +511 -97
- package/build/cjs/index.typings.js +70 -21
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +64 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +511 -97
- package/build/es/index.typings.mjs +64 -20
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +70 -21
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +511 -97
- package/build/internal/cjs/index.typings.js +70 -21
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +64 -20
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +511 -97
- package/build/internal/es/index.typings.mjs +64 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -6325,7 +6325,7 @@ declare enum CardStylesType {
|
|
|
6325
6325
|
}
|
|
6326
6326
|
/** @enumType */
|
|
6327
6327
|
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
6328
|
-
declare enum
|
|
6328
|
+
declare enum CardStylesAlignment {
|
|
6329
6329
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
6330
6330
|
START = "START",
|
|
6331
6331
|
/** Content centered */
|
|
@@ -6334,7 +6334,7 @@ declare enum Alignment {
|
|
|
6334
6334
|
END = "END"
|
|
6335
6335
|
}
|
|
6336
6336
|
/** @enumType */
|
|
6337
|
-
type
|
|
6337
|
+
type CardStylesAlignmentWithLiterals = CardStylesAlignment | 'START' | 'CENTER' | 'END';
|
|
6338
6338
|
declare enum Layout {
|
|
6339
6339
|
/** Elements stacked vertically */
|
|
6340
6340
|
STACKED = "STACKED",
|
|
@@ -6462,7 +6462,7 @@ interface CardStyles {
|
|
|
6462
6462
|
/** Card type. Defaults to `CONTAINED`. */
|
|
6463
6463
|
type?: CardStylesTypeWithLiterals;
|
|
6464
6464
|
/** Content alignment. Defaults to `START`. */
|
|
6465
|
-
alignment?:
|
|
6465
|
+
alignment?: CardStylesAlignmentWithLiterals;
|
|
6466
6466
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
6467
6467
|
titlePriceLayout?: LayoutWithLiterals;
|
|
6468
6468
|
/**
|
|
@@ -9397,7 +9397,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
9397
9397
|
/** Input returns selected products as value. */
|
|
9398
9398
|
paymentOptions?: Payment;
|
|
9399
9399
|
/** Input returns multiline address as value. */
|
|
9400
|
-
multilineAddressOptions?:
|
|
9400
|
+
multilineAddressOptions?: Address;
|
|
9401
|
+
/** Input returns scheduling as value. */
|
|
9402
|
+
schedulingOptions?: Scheduling;
|
|
9403
|
+
/** Input returns multiline address as value. */
|
|
9404
|
+
addressOptions?: Address;
|
|
9401
9405
|
/**
|
|
9402
9406
|
* Definition of a target where the value of field belongs.
|
|
9403
9407
|
* @minLength 1
|
|
@@ -9445,7 +9449,11 @@ interface InputFieldInputTypeOptionsOneOf {
|
|
|
9445
9449
|
/** Input returns selected products as value. */
|
|
9446
9450
|
paymentOptions?: Payment;
|
|
9447
9451
|
/** Input returns multiline address as value. */
|
|
9448
|
-
multilineAddressOptions?:
|
|
9452
|
+
multilineAddressOptions?: Address;
|
|
9453
|
+
/** Input returns scheduling as value. */
|
|
9454
|
+
schedulingOptions?: Scheduling;
|
|
9455
|
+
/** Input returns multiline address as value. */
|
|
9456
|
+
addressOptions?: Address;
|
|
9449
9457
|
}
|
|
9450
9458
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
9451
9459
|
/** DATE format options */
|
|
@@ -9548,10 +9556,11 @@ declare enum StringComponentType {
|
|
|
9548
9556
|
PHONE_INPUT = "PHONE_INPUT",
|
|
9549
9557
|
DATE_INPUT = "DATE_INPUT",
|
|
9550
9558
|
TIME_INPUT = "TIME_INPUT",
|
|
9551
|
-
DATE_PICKER = "DATE_PICKER"
|
|
9559
|
+
DATE_PICKER = "DATE_PICKER",
|
|
9560
|
+
SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
|
|
9552
9561
|
}
|
|
9553
9562
|
/** @enumType */
|
|
9554
|
-
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER';
|
|
9563
|
+
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
|
|
9555
9564
|
interface TextInput {
|
|
9556
9565
|
/**
|
|
9557
9566
|
* Label of the field
|
|
@@ -9575,7 +9584,101 @@ interface TextInput {
|
|
|
9575
9584
|
* @maxLength 20000
|
|
9576
9585
|
*/
|
|
9577
9586
|
default?: string | null;
|
|
9587
|
+
/** Media item. Media, associated with field, like image. */
|
|
9588
|
+
media?: MediaItem;
|
|
9589
|
+
/** Settings for media item */
|
|
9590
|
+
mediaSettings?: MediaSettings;
|
|
9578
9591
|
}
|
|
9592
|
+
interface MediaItem extends MediaItemMediaOneOf {
|
|
9593
|
+
/** WixMedia image. */
|
|
9594
|
+
image?: CommonImage;
|
|
9595
|
+
}
|
|
9596
|
+
/** @oneof */
|
|
9597
|
+
interface MediaItemMediaOneOf {
|
|
9598
|
+
/** WixMedia image. */
|
|
9599
|
+
image?: CommonImage;
|
|
9600
|
+
}
|
|
9601
|
+
interface CommonImage {
|
|
9602
|
+
/**
|
|
9603
|
+
* WixMedia image ID.
|
|
9604
|
+
* @maxLength 100
|
|
9605
|
+
*/
|
|
9606
|
+
_id?: string;
|
|
9607
|
+
/**
|
|
9608
|
+
* Image URL.
|
|
9609
|
+
* @maxLength 2000
|
|
9610
|
+
*/
|
|
9611
|
+
url?: string;
|
|
9612
|
+
/**
|
|
9613
|
+
* Original image height.
|
|
9614
|
+
* @readonly
|
|
9615
|
+
*/
|
|
9616
|
+
height?: number;
|
|
9617
|
+
/**
|
|
9618
|
+
* Original image width.
|
|
9619
|
+
* @readonly
|
|
9620
|
+
*/
|
|
9621
|
+
width?: number;
|
|
9622
|
+
/**
|
|
9623
|
+
* Image alt text.
|
|
9624
|
+
* @maxLength 1000
|
|
9625
|
+
*/
|
|
9626
|
+
altText?: string | null;
|
|
9627
|
+
/**
|
|
9628
|
+
* Image filename.
|
|
9629
|
+
* @readonly
|
|
9630
|
+
* @maxLength 1000
|
|
9631
|
+
*/
|
|
9632
|
+
filename?: string | null;
|
|
9633
|
+
}
|
|
9634
|
+
interface MediaSettings {
|
|
9635
|
+
/**
|
|
9636
|
+
* Specifies where image should be displayed.
|
|
9637
|
+
* Default: BELOW
|
|
9638
|
+
*/
|
|
9639
|
+
imagePosition?: ImagePositionWithLiterals;
|
|
9640
|
+
/**
|
|
9641
|
+
* Specifies image alignment.
|
|
9642
|
+
* Default: CENTER
|
|
9643
|
+
*/
|
|
9644
|
+
imageAlignment?: AlignmentWithLiterals;
|
|
9645
|
+
/**
|
|
9646
|
+
* Defines how an image should be resized to fit.
|
|
9647
|
+
* Default: COVER
|
|
9648
|
+
*/
|
|
9649
|
+
imageFit?: ImageFitWithLiterals;
|
|
9650
|
+
}
|
|
9651
|
+
declare enum ImagePosition {
|
|
9652
|
+
/** Undefined position. */
|
|
9653
|
+
UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
|
|
9654
|
+
/** Above label. */
|
|
9655
|
+
ABOVE = "ABOVE",
|
|
9656
|
+
/** Below label. */
|
|
9657
|
+
BELOW = "BELOW"
|
|
9658
|
+
}
|
|
9659
|
+
/** @enumType */
|
|
9660
|
+
type ImagePositionWithLiterals = ImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'ABOVE' | 'BELOW';
|
|
9661
|
+
declare enum Alignment {
|
|
9662
|
+
/** Undefined alignment. */
|
|
9663
|
+
UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
|
|
9664
|
+
/** Left. */
|
|
9665
|
+
LEFT = "LEFT",
|
|
9666
|
+
/** Center. */
|
|
9667
|
+
CENTER = "CENTER",
|
|
9668
|
+
/** Right. */
|
|
9669
|
+
RIGHT = "RIGHT"
|
|
9670
|
+
}
|
|
9671
|
+
/** @enumType */
|
|
9672
|
+
type AlignmentWithLiterals = Alignment | 'UNKNOWN_ALIGNMENT' | 'LEFT' | 'CENTER' | 'RIGHT';
|
|
9673
|
+
declare enum ImageFit {
|
|
9674
|
+
UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
|
|
9675
|
+
/** Image is scaled to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios do not match. */
|
|
9676
|
+
COVER = "COVER",
|
|
9677
|
+
/** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
|
|
9678
|
+
CONTAIN = "CONTAIN"
|
|
9679
|
+
}
|
|
9680
|
+
/** @enumType */
|
|
9681
|
+
type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
|
|
9579
9682
|
interface RadioGroup {
|
|
9580
9683
|
/**
|
|
9581
9684
|
* Label of the field
|
|
@@ -9596,12 +9699,16 @@ interface RadioGroup {
|
|
|
9596
9699
|
*/
|
|
9597
9700
|
showLabel?: boolean | null;
|
|
9598
9701
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
9599
|
-
customOption?:
|
|
9702
|
+
customOption?: CustomOption;
|
|
9600
9703
|
/**
|
|
9601
9704
|
* Specifies the number of columns used to display the selections within the component.
|
|
9602
9705
|
* Default: ONE
|
|
9603
9706
|
*/
|
|
9604
9707
|
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
9708
|
+
/** Media item. Media, associated with field, like image. */
|
|
9709
|
+
media?: MediaItem;
|
|
9710
|
+
/** Settings for media item */
|
|
9711
|
+
mediaSettings?: MediaSettings;
|
|
9605
9712
|
}
|
|
9606
9713
|
interface RadioGroupOption {
|
|
9607
9714
|
/**
|
|
@@ -9623,7 +9730,7 @@ interface RadioGroupOption {
|
|
|
9623
9730
|
*/
|
|
9624
9731
|
_id?: string;
|
|
9625
9732
|
}
|
|
9626
|
-
interface
|
|
9733
|
+
interface CustomOption {
|
|
9627
9734
|
/**
|
|
9628
9735
|
* Label of custom option input
|
|
9629
9736
|
* @maxLength 350
|
|
@@ -9668,12 +9775,16 @@ interface Dropdown {
|
|
|
9668
9775
|
*/
|
|
9669
9776
|
showLabel?: boolean | null;
|
|
9670
9777
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
9671
|
-
customOption?:
|
|
9778
|
+
customOption?: CustomOption;
|
|
9672
9779
|
/**
|
|
9673
9780
|
* Placeholder of dropdown input
|
|
9674
9781
|
* @maxLength 100
|
|
9675
9782
|
*/
|
|
9676
9783
|
placeholder?: string | null;
|
|
9784
|
+
/** Media item. Media, associated with field, like image. */
|
|
9785
|
+
media?: MediaItem;
|
|
9786
|
+
/** Settings for media item */
|
|
9787
|
+
mediaSettings?: MediaSettings;
|
|
9677
9788
|
}
|
|
9678
9789
|
interface DropdownOption {
|
|
9679
9790
|
/**
|
|
@@ -9695,18 +9806,6 @@ interface DropdownOption {
|
|
|
9695
9806
|
*/
|
|
9696
9807
|
_id?: string;
|
|
9697
9808
|
}
|
|
9698
|
-
interface DropdownCustomOption {
|
|
9699
|
-
/**
|
|
9700
|
-
* Label of custom option input
|
|
9701
|
-
* @maxLength 350
|
|
9702
|
-
*/
|
|
9703
|
-
label?: string | null;
|
|
9704
|
-
/**
|
|
9705
|
-
* Placeholder of custom option input
|
|
9706
|
-
* @maxLength 100
|
|
9707
|
-
*/
|
|
9708
|
-
placeholder?: string | null;
|
|
9709
|
-
}
|
|
9710
9809
|
interface DateTimeInput {
|
|
9711
9810
|
/**
|
|
9712
9811
|
* Label of the field. Displayed text for the date/time input.
|
|
@@ -9735,6 +9834,10 @@ interface DateTimeInput {
|
|
|
9735
9834
|
* @format LOCAL_DATE_TIME
|
|
9736
9835
|
*/
|
|
9737
9836
|
default?: string | null;
|
|
9837
|
+
/** Media item. Media, associated with field, like image. */
|
|
9838
|
+
media?: MediaItem;
|
|
9839
|
+
/** Settings for media item */
|
|
9840
|
+
mediaSettings?: MediaSettings;
|
|
9738
9841
|
}
|
|
9739
9842
|
interface PhoneInput {
|
|
9740
9843
|
/**
|
|
@@ -9765,6 +9868,10 @@ interface PhoneInput {
|
|
|
9765
9868
|
* Default: false
|
|
9766
9869
|
*/
|
|
9767
9870
|
showCountryFlag?: boolean;
|
|
9871
|
+
/** Media item. Media, associated with field, like image. */
|
|
9872
|
+
media?: MediaItem;
|
|
9873
|
+
/** Settings for media item */
|
|
9874
|
+
mediaSettings?: MediaSettings;
|
|
9768
9875
|
}
|
|
9769
9876
|
interface DateInput {
|
|
9770
9877
|
/**
|
|
@@ -9789,6 +9896,10 @@ interface DateInput {
|
|
|
9789
9896
|
* @format LOCAL_DATE
|
|
9790
9897
|
*/
|
|
9791
9898
|
default?: string | null;
|
|
9899
|
+
/** Media item. Media, associated with field, like image. */
|
|
9900
|
+
media?: MediaItem;
|
|
9901
|
+
/** Settings for media item */
|
|
9902
|
+
mediaSettings?: MediaSettings;
|
|
9792
9903
|
}
|
|
9793
9904
|
interface TimeInput {
|
|
9794
9905
|
/**
|
|
@@ -9818,6 +9929,10 @@ interface TimeInput {
|
|
|
9818
9929
|
* @format LOCAL_TIME
|
|
9819
9930
|
*/
|
|
9820
9931
|
default?: string | null;
|
|
9932
|
+
/** Media item. Media, associated with field, like image. */
|
|
9933
|
+
media?: MediaItem;
|
|
9934
|
+
/** Settings for media item */
|
|
9935
|
+
mediaSettings?: MediaSettings;
|
|
9821
9936
|
}
|
|
9822
9937
|
interface DatePicker {
|
|
9823
9938
|
/**
|
|
@@ -9844,6 +9959,10 @@ interface DatePicker {
|
|
|
9844
9959
|
* @format LOCAL_DATE
|
|
9845
9960
|
*/
|
|
9846
9961
|
default?: string | null;
|
|
9962
|
+
/** Media item. Media, associated with field, like image. */
|
|
9963
|
+
media?: MediaItem;
|
|
9964
|
+
/** Settings for media item */
|
|
9965
|
+
mediaSettings?: MediaSettings;
|
|
9847
9966
|
}
|
|
9848
9967
|
declare enum FirstDayOfWeek {
|
|
9849
9968
|
/** First day of the week is Monday. */
|
|
@@ -9853,6 +9972,49 @@ declare enum FirstDayOfWeek {
|
|
|
9853
9972
|
}
|
|
9854
9973
|
/** @enumType */
|
|
9855
9974
|
type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';
|
|
9975
|
+
interface ServicesDropdown {
|
|
9976
|
+
/**
|
|
9977
|
+
* Label of the field
|
|
9978
|
+
* @maxLength 350
|
|
9979
|
+
*/
|
|
9980
|
+
label?: string | null;
|
|
9981
|
+
/**
|
|
9982
|
+
* Flag identifying to hide or not label
|
|
9983
|
+
* Default: true
|
|
9984
|
+
*/
|
|
9985
|
+
showLabel?: boolean | null;
|
|
9986
|
+
/**
|
|
9987
|
+
* Placeholder of services dropdown input
|
|
9988
|
+
* @maxLength 100
|
|
9989
|
+
*/
|
|
9990
|
+
placeholder?: string | null;
|
|
9991
|
+
/**
|
|
9992
|
+
* List of service options to select from
|
|
9993
|
+
* @maxSize 400
|
|
9994
|
+
*/
|
|
9995
|
+
options?: ServicesDropdownOption[];
|
|
9996
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
9997
|
+
customOption?: CustomOption;
|
|
9998
|
+
}
|
|
9999
|
+
interface ServicesDropdownOption {
|
|
10000
|
+
/**
|
|
10001
|
+
* Service name/label
|
|
10002
|
+
* @maxLength 400
|
|
10003
|
+
*/
|
|
10004
|
+
label?: string | null;
|
|
10005
|
+
/**
|
|
10006
|
+
* Option id. Used as binding for translations. Corresponds to the Service ID.
|
|
10007
|
+
* @format GUID
|
|
10008
|
+
* @immutable
|
|
10009
|
+
*/
|
|
10010
|
+
_id?: string;
|
|
10011
|
+
/**
|
|
10012
|
+
* Selectable option value, which is saved to DB. Corresponds to the Service ID.
|
|
10013
|
+
* @format GUID
|
|
10014
|
+
* @immutable
|
|
10015
|
+
*/
|
|
10016
|
+
value?: string | null;
|
|
10017
|
+
}
|
|
9856
10018
|
interface NumberType {
|
|
9857
10019
|
/** Inclusive maximum value. */
|
|
9858
10020
|
maximum?: number | null;
|
|
@@ -9893,6 +10055,10 @@ interface NumberInput {
|
|
|
9893
10055
|
showLabel?: boolean | null;
|
|
9894
10056
|
/** Default value for the number input */
|
|
9895
10057
|
default?: number | null;
|
|
10058
|
+
/** Media item. Media, associated with field, like image. */
|
|
10059
|
+
media?: MediaItem;
|
|
10060
|
+
/** Settings for media item */
|
|
10061
|
+
mediaSettings?: MediaSettings;
|
|
9896
10062
|
}
|
|
9897
10063
|
interface RatingInput {
|
|
9898
10064
|
/**
|
|
@@ -9913,6 +10079,10 @@ interface RatingInput {
|
|
|
9913
10079
|
* Default: true
|
|
9914
10080
|
*/
|
|
9915
10081
|
showLabel?: boolean | null;
|
|
10082
|
+
/** Media item. Media, associated with field, like image. */
|
|
10083
|
+
media?: MediaItem;
|
|
10084
|
+
/** Settings for media item */
|
|
10085
|
+
mediaSettings?: MediaSettings;
|
|
9916
10086
|
}
|
|
9917
10087
|
interface BooleanType {
|
|
9918
10088
|
/**
|
|
@@ -10051,10 +10221,11 @@ interface ArrayTypeArrayItemsItemTypeOptionsOneOf {
|
|
|
10051
10221
|
}
|
|
10052
10222
|
declare enum ArrayComponentType {
|
|
10053
10223
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10054
|
-
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
10224
|
+
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
10225
|
+
TAGS = "TAGS"
|
|
10055
10226
|
}
|
|
10056
10227
|
/** @enumType */
|
|
10057
|
-
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP';
|
|
10228
|
+
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
|
|
10058
10229
|
interface CheckboxGroup {
|
|
10059
10230
|
/**
|
|
10060
10231
|
* Label of the field
|
|
@@ -10080,50 +10251,61 @@ interface CheckboxGroup {
|
|
|
10080
10251
|
* Default: ONE
|
|
10081
10252
|
*/
|
|
10082
10253
|
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
10254
|
+
/** Media item. Media, associated with field, like image. */
|
|
10255
|
+
media?: MediaItem;
|
|
10256
|
+
/** Settings for media item */
|
|
10257
|
+
mediaSettings?: MediaSettings;
|
|
10083
10258
|
}
|
|
10084
|
-
interface
|
|
10085
|
-
/** WixMedia image. */
|
|
10086
|
-
image?: CommonImage;
|
|
10087
|
-
}
|
|
10088
|
-
/** @oneof */
|
|
10089
|
-
interface MediaItemMediaOneOf {
|
|
10090
|
-
/** WixMedia image. */
|
|
10091
|
-
image?: CommonImage;
|
|
10092
|
-
}
|
|
10093
|
-
interface CommonImage {
|
|
10259
|
+
interface CheckboxGroupOption {
|
|
10094
10260
|
/**
|
|
10095
|
-
*
|
|
10096
|
-
* @maxLength
|
|
10261
|
+
* Selectable option label
|
|
10262
|
+
* @maxLength 400
|
|
10097
10263
|
*/
|
|
10098
|
-
|
|
10264
|
+
label?: string | null;
|
|
10265
|
+
/** Selectable option value, which is saved to DB. */
|
|
10266
|
+
value?: any;
|
|
10267
|
+
/** Flag identifying that option should be selected by default */
|
|
10268
|
+
default?: boolean;
|
|
10099
10269
|
/**
|
|
10100
|
-
*
|
|
10101
|
-
* @
|
|
10270
|
+
* Option id. Used as binding for translations
|
|
10271
|
+
* @format GUID
|
|
10272
|
+
* @immutable
|
|
10102
10273
|
*/
|
|
10103
|
-
|
|
10274
|
+
_id?: string;
|
|
10275
|
+
/** Media item. Media, associated with option, like image. */
|
|
10276
|
+
media?: MediaItem;
|
|
10277
|
+
}
|
|
10278
|
+
interface Tags {
|
|
10104
10279
|
/**
|
|
10105
|
-
*
|
|
10106
|
-
* @
|
|
10280
|
+
* Label of the field
|
|
10281
|
+
* @maxLength 350
|
|
10107
10282
|
*/
|
|
10108
|
-
|
|
10283
|
+
label?: string | null;
|
|
10284
|
+
/** Description of the field */
|
|
10285
|
+
description?: RichContent;
|
|
10109
10286
|
/**
|
|
10110
|
-
*
|
|
10111
|
-
* @
|
|
10287
|
+
* List of options to select from
|
|
10288
|
+
* @maxSize 400
|
|
10112
10289
|
*/
|
|
10113
|
-
|
|
10290
|
+
options?: TagsOption[];
|
|
10114
10291
|
/**
|
|
10115
|
-
*
|
|
10116
|
-
*
|
|
10292
|
+
* Flag identifying to hide or not label
|
|
10293
|
+
* Default: true
|
|
10117
10294
|
*/
|
|
10118
|
-
|
|
10295
|
+
showLabel?: boolean | null;
|
|
10296
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
10297
|
+
customOption?: CustomOption;
|
|
10119
10298
|
/**
|
|
10120
|
-
*
|
|
10121
|
-
*
|
|
10122
|
-
* @maxLength 1000
|
|
10299
|
+
* Specifies the number of columns used to display the selections within the component.
|
|
10300
|
+
* Default: ONE
|
|
10123
10301
|
*/
|
|
10124
|
-
|
|
10302
|
+
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
10303
|
+
/** Media item. Media, associated with field, like image. */
|
|
10304
|
+
media?: MediaItem;
|
|
10305
|
+
/** Settings for media item */
|
|
10306
|
+
mediaSettings?: MediaSettings;
|
|
10125
10307
|
}
|
|
10126
|
-
interface
|
|
10308
|
+
interface TagsOption {
|
|
10127
10309
|
/**
|
|
10128
10310
|
* Selectable option label
|
|
10129
10311
|
* @maxLength 400
|
|
@@ -10142,18 +10324,6 @@ interface CheckboxGroupOption {
|
|
|
10142
10324
|
/** Media item. Media, associated with option, like image. */
|
|
10143
10325
|
media?: MediaItem;
|
|
10144
10326
|
}
|
|
10145
|
-
interface CustomOption {
|
|
10146
|
-
/**
|
|
10147
|
-
* Label of custom option input
|
|
10148
|
-
* @maxLength 350
|
|
10149
|
-
*/
|
|
10150
|
-
label?: string | null;
|
|
10151
|
-
/**
|
|
10152
|
-
* Placeholder of custom option input
|
|
10153
|
-
* @maxLength 100
|
|
10154
|
-
*/
|
|
10155
|
-
placeholder?: string | null;
|
|
10156
|
-
}
|
|
10157
10327
|
declare enum WixFileComponentType {
|
|
10158
10328
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10159
10329
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
@@ -10161,6 +10331,35 @@ declare enum WixFileComponentType {
|
|
|
10161
10331
|
}
|
|
10162
10332
|
/** @enumType */
|
|
10163
10333
|
type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
|
|
10334
|
+
interface FileType {
|
|
10335
|
+
/**
|
|
10336
|
+
* Amount of files allowed to upload
|
|
10337
|
+
* @min 1
|
|
10338
|
+
* @max 30
|
|
10339
|
+
*/
|
|
10340
|
+
fileLimit?: number;
|
|
10341
|
+
/**
|
|
10342
|
+
* Supported file formats for upload
|
|
10343
|
+
* @maxSize 5
|
|
10344
|
+
*/
|
|
10345
|
+
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
10346
|
+
}
|
|
10347
|
+
declare enum UploadFileFormat {
|
|
10348
|
+
/** Undefined upload file format. */
|
|
10349
|
+
UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
|
|
10350
|
+
/** Video files. */
|
|
10351
|
+
VIDEO = "VIDEO",
|
|
10352
|
+
/** Image files. */
|
|
10353
|
+
IMAGE = "IMAGE",
|
|
10354
|
+
/** Audio files. */
|
|
10355
|
+
AUDIO = "AUDIO",
|
|
10356
|
+
/** Document files. */
|
|
10357
|
+
DOCUMENT = "DOCUMENT",
|
|
10358
|
+
/** Archive files. */
|
|
10359
|
+
ARCHIVE = "ARCHIVE"
|
|
10360
|
+
}
|
|
10361
|
+
/** @enumType */
|
|
10362
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
10164
10363
|
interface FileUpload {
|
|
10165
10364
|
/**
|
|
10166
10365
|
* Selectable option label
|
|
@@ -10189,14 +10388,18 @@ interface FileUpload {
|
|
|
10189
10388
|
* Supported file formats for upload
|
|
10190
10389
|
* @maxSize 5
|
|
10191
10390
|
*/
|
|
10192
|
-
uploadFileFormats?:
|
|
10391
|
+
uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];
|
|
10193
10392
|
/**
|
|
10194
10393
|
* Custom text which appears when file is uploaded, if missing file name will be shown
|
|
10195
10394
|
* @maxLength 255
|
|
10196
10395
|
*/
|
|
10197
10396
|
explanationText?: string | null;
|
|
10397
|
+
/** Media item. Media, associated with field, like image. */
|
|
10398
|
+
media?: MediaItem;
|
|
10399
|
+
/** Settings for media item */
|
|
10400
|
+
mediaSettings?: MediaSettings;
|
|
10198
10401
|
}
|
|
10199
|
-
declare enum
|
|
10402
|
+
declare enum UploadFileFormatEnumUploadFileFormat {
|
|
10200
10403
|
/** Undefined upload file format. */
|
|
10201
10404
|
UNDEFINED = "UNDEFINED",
|
|
10202
10405
|
/** Video files. */
|
|
@@ -10211,7 +10414,7 @@ declare enum UploadFileFormat {
|
|
|
10211
10414
|
ARCHIVE = "ARCHIVE"
|
|
10212
10415
|
}
|
|
10213
10416
|
/** @enumType */
|
|
10214
|
-
type
|
|
10417
|
+
type UploadFileFormatEnumUploadFileFormatWithLiterals = UploadFileFormatEnumUploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
10215
10418
|
interface Signature {
|
|
10216
10419
|
/**
|
|
10217
10420
|
* Selectable option label
|
|
@@ -10227,14 +10430,20 @@ interface Signature {
|
|
|
10227
10430
|
description?: RichContent;
|
|
10228
10431
|
/** Is image upload enabled */
|
|
10229
10432
|
imageUploadEnabled?: boolean;
|
|
10433
|
+
/** Media item. Media, associated with field, like image. */
|
|
10434
|
+
media?: MediaItem;
|
|
10435
|
+
/** Settings for media item */
|
|
10436
|
+
mediaSettings?: MediaSettings;
|
|
10230
10437
|
}
|
|
10231
10438
|
declare enum PaymentComponentType {
|
|
10232
10439
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10233
10440
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
10234
|
-
DONATION_INPUT = "DONATION_INPUT"
|
|
10441
|
+
DONATION_INPUT = "DONATION_INPUT",
|
|
10442
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
10443
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
10235
10444
|
}
|
|
10236
10445
|
/** @enumType */
|
|
10237
|
-
type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT';
|
|
10446
|
+
type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
|
|
10238
10447
|
interface PaymentType {
|
|
10239
10448
|
/**
|
|
10240
10449
|
* Field mapped to products.
|
|
@@ -10254,15 +10463,17 @@ interface PaymentType {
|
|
|
10254
10463
|
maxItems?: number | null;
|
|
10255
10464
|
}
|
|
10256
10465
|
declare enum ProductType {
|
|
10466
|
+
/** Unknown product type. */
|
|
10257
10467
|
UNKNOWN = "UNKNOWN",
|
|
10258
|
-
/** Shippable (physical). */
|
|
10468
|
+
/** Shippable (physical) product. */
|
|
10259
10469
|
SHIPPABLE = "SHIPPABLE",
|
|
10260
|
-
/** Digital. */
|
|
10470
|
+
/** Digital product. */
|
|
10261
10471
|
DIGITAL = "DIGITAL"
|
|
10262
10472
|
}
|
|
10263
10473
|
/** @enumType */
|
|
10264
10474
|
type ProductTypeWithLiterals = ProductType | 'UNKNOWN' | 'SHIPPABLE' | 'DIGITAL';
|
|
10265
10475
|
declare enum PriceType {
|
|
10476
|
+
/** Unknown price type. */
|
|
10266
10477
|
UNKNOWN = "UNKNOWN",
|
|
10267
10478
|
/** Fixed price. */
|
|
10268
10479
|
FIXED_PRICE = "FIXED_PRICE",
|
|
@@ -10352,6 +10563,10 @@ interface ProductCheckboxGroup {
|
|
|
10352
10563
|
* Default: COVER
|
|
10353
10564
|
*/
|
|
10354
10565
|
imageFit?: ImageFitWithLiterals;
|
|
10566
|
+
/** Media item. Media, associated with field, like image. */
|
|
10567
|
+
media?: MediaItem;
|
|
10568
|
+
/** Settings for media item */
|
|
10569
|
+
mediaSettings?: MediaSettings;
|
|
10355
10570
|
}
|
|
10356
10571
|
interface ProductCheckboxGroupOption {
|
|
10357
10572
|
/**
|
|
@@ -10372,15 +10587,6 @@ interface ProductCheckboxGroupOption {
|
|
|
10372
10587
|
/** Flag identifying that option should be selected by default */
|
|
10373
10588
|
default?: boolean;
|
|
10374
10589
|
}
|
|
10375
|
-
declare enum ImageFit {
|
|
10376
|
-
UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
|
|
10377
|
-
/** Image is scaled to maintain its aspect ratio while filling the element's entire content box. Portions of the image may be clipped if the aspect ratios do not match. */
|
|
10378
|
-
COVER = "COVER",
|
|
10379
|
-
/** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
|
|
10380
|
-
CONTAIN = "CONTAIN"
|
|
10381
|
-
}
|
|
10382
|
-
/** @enumType */
|
|
10383
|
-
type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
|
|
10384
10590
|
interface DonationInput {
|
|
10385
10591
|
/**
|
|
10386
10592
|
* Label of the field.
|
|
@@ -10395,7 +10601,7 @@ interface DonationInput {
|
|
|
10395
10601
|
*/
|
|
10396
10602
|
options?: DonationInputOption[];
|
|
10397
10603
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
10398
|
-
customOption?:
|
|
10604
|
+
customOption?: CustomOption;
|
|
10399
10605
|
/**
|
|
10400
10606
|
* Specifies the number of columns used to display the selections within the component.
|
|
10401
10607
|
* Default: ONE
|
|
@@ -10406,6 +10612,10 @@ interface DonationInput {
|
|
|
10406
10612
|
* Default: true
|
|
10407
10613
|
*/
|
|
10408
10614
|
showLabel?: boolean | null;
|
|
10615
|
+
/** Media item. Media, associated with field, like image. */
|
|
10616
|
+
media?: MediaItem;
|
|
10617
|
+
/** Settings for media item */
|
|
10618
|
+
mediaSettings?: MediaSettings;
|
|
10409
10619
|
}
|
|
10410
10620
|
interface DonationInputOption {
|
|
10411
10621
|
/**
|
|
@@ -10416,24 +10626,55 @@ interface DonationInputOption {
|
|
|
10416
10626
|
/** Flag identifying that option should be selected by default */
|
|
10417
10627
|
default?: boolean;
|
|
10418
10628
|
}
|
|
10419
|
-
interface
|
|
10629
|
+
interface PaymentInput {
|
|
10420
10630
|
/**
|
|
10421
|
-
* Label of
|
|
10631
|
+
* Label of the field.
|
|
10422
10632
|
* @maxLength 350
|
|
10423
10633
|
*/
|
|
10424
10634
|
label?: string | null;
|
|
10635
|
+
/** Description of the field. */
|
|
10636
|
+
description?: RichContent;
|
|
10637
|
+
/**
|
|
10638
|
+
* Flag identifying to hide or not label
|
|
10639
|
+
* Default: true
|
|
10640
|
+
*/
|
|
10641
|
+
showLabel?: boolean | null;
|
|
10425
10642
|
/**
|
|
10426
10643
|
* Placeholder of custom option input
|
|
10427
10644
|
* @maxLength 100
|
|
10428
10645
|
*/
|
|
10429
10646
|
placeholder?: string | null;
|
|
10647
|
+
/** Default value for the payment input */
|
|
10648
|
+
default?: number | null;
|
|
10649
|
+
/** Media item. Media, associated with field, like image. */
|
|
10650
|
+
media?: MediaItem;
|
|
10651
|
+
/** Settings for media item */
|
|
10652
|
+
mediaSettings?: MediaSettings;
|
|
10430
10653
|
}
|
|
10431
|
-
|
|
10654
|
+
interface FixedPayment {
|
|
10655
|
+
/**
|
|
10656
|
+
* Label of the field.
|
|
10657
|
+
* @maxLength 350
|
|
10658
|
+
*/
|
|
10659
|
+
label?: string | null;
|
|
10660
|
+
/** Description of the field. */
|
|
10661
|
+
description?: RichContent;
|
|
10662
|
+
/**
|
|
10663
|
+
* Flag identifying to hide or not label
|
|
10664
|
+
* Default: true
|
|
10665
|
+
*/
|
|
10666
|
+
showLabel?: boolean | null;
|
|
10667
|
+
/** Media item. Media, associated with field, like image. */
|
|
10668
|
+
media?: MediaItem;
|
|
10669
|
+
/** Settings for media item */
|
|
10670
|
+
mediaSettings?: MediaSettings;
|
|
10671
|
+
}
|
|
10672
|
+
declare enum AddressComponentType {
|
|
10432
10673
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10433
10674
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
10434
10675
|
}
|
|
10435
10676
|
/** @enumType */
|
|
10436
|
-
type
|
|
10677
|
+
type AddressComponentTypeWithLiterals = AddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
|
|
10437
10678
|
interface MultilineAddressValidation {
|
|
10438
10679
|
/**
|
|
10439
10680
|
* Allowed countries. No countries treated as all.
|
|
@@ -10466,7 +10707,7 @@ interface FieldsOverrides {
|
|
|
10466
10707
|
/** Country. */
|
|
10467
10708
|
country?: FieldOverrides;
|
|
10468
10709
|
}
|
|
10469
|
-
interface
|
|
10710
|
+
interface MultilineAddress {
|
|
10470
10711
|
/**
|
|
10471
10712
|
* Label of the field.
|
|
10472
10713
|
* @maxLength 350
|
|
@@ -10518,6 +10759,118 @@ interface FieldsSettings {
|
|
|
10518
10759
|
/** Address line 2. */
|
|
10519
10760
|
addressLine2?: AddressLine2;
|
|
10520
10761
|
}
|
|
10762
|
+
declare enum SchedulingComponentType {
|
|
10763
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10764
|
+
APPOINTMENT = "APPOINTMENT"
|
|
10765
|
+
}
|
|
10766
|
+
/** @enumType */
|
|
10767
|
+
type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
|
|
10768
|
+
interface Appointment extends AppointmentFormatInfoOneOf {
|
|
10769
|
+
/** In person options for the appointment */
|
|
10770
|
+
inPersonOptions?: InPersonOptions;
|
|
10771
|
+
/** Online video conference options for the appointment */
|
|
10772
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
10773
|
+
/** Phone options for the appointment */
|
|
10774
|
+
phoneOptions?: PhoneOptions;
|
|
10775
|
+
/**
|
|
10776
|
+
* Label of the field
|
|
10777
|
+
* @maxLength 255
|
|
10778
|
+
*/
|
|
10779
|
+
label?: string | null;
|
|
10780
|
+
/**
|
|
10781
|
+
* Name of the appointment
|
|
10782
|
+
* @minLength 1
|
|
10783
|
+
* @maxLength 400
|
|
10784
|
+
*/
|
|
10785
|
+
name?: string | null;
|
|
10786
|
+
/**
|
|
10787
|
+
* Duration of the appointment in minutes
|
|
10788
|
+
* @min 1
|
|
10789
|
+
* @max 44639
|
|
10790
|
+
*/
|
|
10791
|
+
durationInMinutes?: number | null;
|
|
10792
|
+
/** Indicates whether manual approval is required for the appointment */
|
|
10793
|
+
manualApprovalRequired?: boolean | null;
|
|
10794
|
+
/**
|
|
10795
|
+
* ID of the staff members providing the appointment
|
|
10796
|
+
* @maxSize 220
|
|
10797
|
+
* @format GUID
|
|
10798
|
+
*/
|
|
10799
|
+
staffIds?: string[] | null;
|
|
10800
|
+
/** The format of the appointment */
|
|
10801
|
+
format?: AppointmentFormatWithLiterals;
|
|
10802
|
+
/** Description of the field */
|
|
10803
|
+
description?: RichContent;
|
|
10804
|
+
/**
|
|
10805
|
+
* Flag identifying to hide or not label
|
|
10806
|
+
* Default: true
|
|
10807
|
+
*/
|
|
10808
|
+
showLabel?: boolean | null;
|
|
10809
|
+
}
|
|
10810
|
+
/** @oneof */
|
|
10811
|
+
interface AppointmentFormatInfoOneOf {
|
|
10812
|
+
/** In person options for the appointment */
|
|
10813
|
+
inPersonOptions?: InPersonOptions;
|
|
10814
|
+
/** Online video conference options for the appointment */
|
|
10815
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
10816
|
+
/** Phone options for the appointment */
|
|
10817
|
+
phoneOptions?: PhoneOptions;
|
|
10818
|
+
}
|
|
10819
|
+
interface Location extends LocationLocationInfoOneOf {
|
|
10820
|
+
/**
|
|
10821
|
+
* Custom address details
|
|
10822
|
+
* @maxLength 512
|
|
10823
|
+
*/
|
|
10824
|
+
customAddress?: string | null;
|
|
10825
|
+
/**
|
|
10826
|
+
* ID of a business location
|
|
10827
|
+
* @format GUID
|
|
10828
|
+
*/
|
|
10829
|
+
businessLocationId?: string | null;
|
|
10830
|
+
}
|
|
10831
|
+
/** @oneof */
|
|
10832
|
+
interface LocationLocationInfoOneOf {
|
|
10833
|
+
/**
|
|
10834
|
+
* Custom address details
|
|
10835
|
+
* @maxLength 512
|
|
10836
|
+
*/
|
|
10837
|
+
customAddress?: string | null;
|
|
10838
|
+
/**
|
|
10839
|
+
* ID of a business location
|
|
10840
|
+
* @format GUID
|
|
10841
|
+
*/
|
|
10842
|
+
businessLocationId?: string | null;
|
|
10843
|
+
}
|
|
10844
|
+
declare enum AppointmentFormat {
|
|
10845
|
+
UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
|
|
10846
|
+
IN_PERSON = "IN_PERSON",
|
|
10847
|
+
VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
|
|
10848
|
+
PHONE = "PHONE"
|
|
10849
|
+
}
|
|
10850
|
+
/** @enumType */
|
|
10851
|
+
type AppointmentFormatWithLiterals = AppointmentFormat | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
10852
|
+
interface InPersonOptions {
|
|
10853
|
+
/**
|
|
10854
|
+
* The locations details
|
|
10855
|
+
* @minSize 1
|
|
10856
|
+
* @maxSize 1
|
|
10857
|
+
*/
|
|
10858
|
+
locations?: Location[];
|
|
10859
|
+
}
|
|
10860
|
+
interface VideoConferenceOptions {
|
|
10861
|
+
/**
|
|
10862
|
+
* Description or instructions for the online video conference
|
|
10863
|
+
* @maxLength 512
|
|
10864
|
+
*/
|
|
10865
|
+
description?: string | null;
|
|
10866
|
+
}
|
|
10867
|
+
interface PhoneOptions {
|
|
10868
|
+
/**
|
|
10869
|
+
* Description or instructions for the phone appointment
|
|
10870
|
+
* @maxLength 512
|
|
10871
|
+
*/
|
|
10872
|
+
description?: string | null;
|
|
10873
|
+
}
|
|
10521
10874
|
declare enum InputType {
|
|
10522
10875
|
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
10523
10876
|
STRING = "STRING",
|
|
@@ -10527,10 +10880,11 @@ declare enum InputType {
|
|
|
10527
10880
|
OBJECT = "OBJECT",
|
|
10528
10881
|
WIX_FILE = "WIX_FILE",
|
|
10529
10882
|
PAYMENT = "PAYMENT",
|
|
10530
|
-
|
|
10883
|
+
SCHEDULING = "SCHEDULING",
|
|
10884
|
+
ADDRESS = "ADDRESS"
|
|
10531
10885
|
}
|
|
10532
10886
|
/** @enumType */
|
|
10533
|
-
type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | '
|
|
10887
|
+
type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'SCHEDULING' | 'ADDRESS';
|
|
10534
10888
|
interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
|
|
10535
10889
|
/** Email info. */
|
|
10536
10890
|
emailInfo?: EmailInfo;
|
|
@@ -10643,6 +10997,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
|
|
|
10643
10997
|
timeInputOptions?: TimeInput;
|
|
10644
10998
|
/** Calendar type component for selecting date */
|
|
10645
10999
|
datePickerOptions?: DatePicker;
|
|
11000
|
+
/** Dropdown for selecting services */
|
|
11001
|
+
servicesDropdownOptions?: ServicesDropdown;
|
|
10646
11002
|
/** Validation of field output value. */
|
|
10647
11003
|
validation?: StringType;
|
|
10648
11004
|
/**
|
|
@@ -10669,6 +11025,8 @@ interface _StringComponentTypeOptionsOneOf {
|
|
|
10669
11025
|
timeInputOptions?: TimeInput;
|
|
10670
11026
|
/** Calendar type component for selecting date */
|
|
10671
11027
|
datePickerOptions?: DatePicker;
|
|
11028
|
+
/** Dropdown for selecting services */
|
|
11029
|
+
servicesDropdownOptions?: ServicesDropdown;
|
|
10672
11030
|
}
|
|
10673
11031
|
interface InputField_Number extends InputField_NumberComponentTypeOptionsOneOf {
|
|
10674
11032
|
/** Number value input field */
|
|
@@ -10709,6 +11067,8 @@ interface _BooleanComponentTypeOptionsOneOf {
|
|
|
10709
11067
|
interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
10710
11068
|
/** Checkbox group input field */
|
|
10711
11069
|
checkboxGroupOptions?: CheckboxGroup;
|
|
11070
|
+
/** Tags input field */
|
|
11071
|
+
tagsOptions?: Tags;
|
|
10712
11072
|
/** Validation of array type. */
|
|
10713
11073
|
validation?: ArrayType;
|
|
10714
11074
|
/**
|
|
@@ -10721,6 +11081,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
|
10721
11081
|
interface _ArrayComponentTypeOptionsOneOf {
|
|
10722
11082
|
/** Checkbox group input field */
|
|
10723
11083
|
checkboxGroupOptions?: CheckboxGroup;
|
|
11084
|
+
/** Tags input field */
|
|
11085
|
+
tagsOptions?: Tags;
|
|
10724
11086
|
}
|
|
10725
11087
|
interface _Object {
|
|
10726
11088
|
/** Validation of object type. */
|
|
@@ -10736,6 +11098,8 @@ interface WixFile extends WixFileComponentTypeOptionsOneOf {
|
|
|
10736
11098
|
* @readonly
|
|
10737
11099
|
*/
|
|
10738
11100
|
componentType?: WixFileComponentTypeWithLiterals;
|
|
11101
|
+
/** Validation of field type. */
|
|
11102
|
+
validation?: FileType;
|
|
10739
11103
|
}
|
|
10740
11104
|
/** @oneof */
|
|
10741
11105
|
interface WixFileComponentTypeOptionsOneOf {
|
|
@@ -10749,6 +11113,10 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
10749
11113
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
10750
11114
|
/** Donation input field. */
|
|
10751
11115
|
donationInputOptions?: DonationInput;
|
|
11116
|
+
/** Payment input field. */
|
|
11117
|
+
paymentInputOptions?: PaymentInput;
|
|
11118
|
+
/** Fixed payment field. */
|
|
11119
|
+
fixedPaymentOptions?: FixedPayment;
|
|
10752
11120
|
/**
|
|
10753
11121
|
* Component type of the payment input field.
|
|
10754
11122
|
* @readonly
|
|
@@ -10763,28 +11131,47 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
10763
11131
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
10764
11132
|
/** Donation input field. */
|
|
10765
11133
|
donationInputOptions?: DonationInput;
|
|
11134
|
+
/** Payment input field. */
|
|
11135
|
+
paymentInputOptions?: PaymentInput;
|
|
11136
|
+
/** Fixed payment field. */
|
|
11137
|
+
fixedPaymentOptions?: FixedPayment;
|
|
10766
11138
|
}
|
|
10767
|
-
interface
|
|
11139
|
+
interface Address extends AddressComponentTypeOptionsOneOf {
|
|
10768
11140
|
/** Multiline address input field. */
|
|
10769
|
-
multilineAddressOptions?:
|
|
11141
|
+
multilineAddressOptions?: MultilineAddress;
|
|
10770
11142
|
/**
|
|
10771
11143
|
* Component type of the multiline address field.
|
|
10772
11144
|
* @readonly
|
|
10773
11145
|
*/
|
|
10774
|
-
componentType?:
|
|
11146
|
+
componentType?: AddressComponentTypeWithLiterals;
|
|
10775
11147
|
/** Validation of multiline address field output value. */
|
|
10776
11148
|
validation?: MultilineAddressValidation;
|
|
10777
11149
|
}
|
|
10778
11150
|
/** @oneof */
|
|
10779
|
-
interface
|
|
11151
|
+
interface AddressComponentTypeOptionsOneOf {
|
|
10780
11152
|
/** Multiline address input field. */
|
|
10781
|
-
multilineAddressOptions?:
|
|
11153
|
+
multilineAddressOptions?: MultilineAddress;
|
|
11154
|
+
}
|
|
11155
|
+
interface Scheduling extends SchedulingComponentTypeOptionsOneOf {
|
|
11156
|
+
/** Appointment input field */
|
|
11157
|
+
appointmentOptions?: Appointment;
|
|
11158
|
+
/**
|
|
11159
|
+
* Component type of the scheduling input field
|
|
11160
|
+
* @readonly
|
|
11161
|
+
*/
|
|
11162
|
+
componentType?: SchedulingComponentTypeWithLiterals;
|
|
11163
|
+
}
|
|
11164
|
+
/** @oneof */
|
|
11165
|
+
interface SchedulingComponentTypeOptionsOneOf {
|
|
11166
|
+
/** Appointment input field */
|
|
11167
|
+
appointmentOptions?: Appointment;
|
|
10782
11168
|
}
|
|
10783
11169
|
interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
10784
11170
|
/** Component displaying rich content */
|
|
10785
11171
|
richContentOptions?: RichContentOptions;
|
|
10786
11172
|
/** Page navigation component resolving as navigation or submit buttons */
|
|
10787
11173
|
pageNavigationOptions?: PageNavigationOptions;
|
|
11174
|
+
/** Type of the display field */
|
|
10788
11175
|
displayFieldType?: DisplayFieldTypeWithLiterals;
|
|
10789
11176
|
}
|
|
10790
11177
|
/** @oneof */
|
|
@@ -10870,12 +11257,14 @@ interface BreakPoint {
|
|
|
10870
11257
|
*/
|
|
10871
11258
|
sections?: BreakPointSection[];
|
|
10872
11259
|
}
|
|
10873
|
-
interface ItemLayout {
|
|
11260
|
+
interface ItemLayout extends ItemLayoutItemOneOf {
|
|
10874
11261
|
/**
|
|
10875
11262
|
* Form field reference id.
|
|
10876
11263
|
* @format GUID
|
|
10877
11264
|
*/
|
|
10878
11265
|
fieldId?: string;
|
|
11266
|
+
/** Group info, defining that this item is a group of multiple fields */
|
|
11267
|
+
group?: Group;
|
|
10879
11268
|
/** Horizontal coordinate in the grid. */
|
|
10880
11269
|
row?: number | null;
|
|
10881
11270
|
/** Vertical coordinate in the grid. */
|
|
@@ -10885,6 +11274,29 @@ interface ItemLayout {
|
|
|
10885
11274
|
/** Width. */
|
|
10886
11275
|
height?: number | null;
|
|
10887
11276
|
}
|
|
11277
|
+
/** @oneof */
|
|
11278
|
+
interface ItemLayoutItemOneOf {
|
|
11279
|
+
/**
|
|
11280
|
+
* Form field reference id.
|
|
11281
|
+
* @format GUID
|
|
11282
|
+
*/
|
|
11283
|
+
fieldId?: string;
|
|
11284
|
+
/** Group info, defining that this item is a group of multiple fields */
|
|
11285
|
+
group?: Group;
|
|
11286
|
+
}
|
|
11287
|
+
interface Group {
|
|
11288
|
+
/**
|
|
11289
|
+
* Field group reference id.
|
|
11290
|
+
* @format GUID
|
|
11291
|
+
*/
|
|
11292
|
+
groupId?: string;
|
|
11293
|
+
/**
|
|
11294
|
+
* Description of layouts for items.
|
|
11295
|
+
* @minSize 1
|
|
11296
|
+
* @maxSize 500
|
|
11297
|
+
*/
|
|
11298
|
+
items?: ItemLayout[];
|
|
11299
|
+
}
|
|
10888
11300
|
interface Margin {
|
|
10889
11301
|
/** Horizontal value. */
|
|
10890
11302
|
horizontal?: number | null;
|
|
@@ -11100,6 +11512,7 @@ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
|
11100
11512
|
redirectOptions?: RedirectOptions;
|
|
11101
11513
|
}
|
|
11102
11514
|
declare enum Target {
|
|
11515
|
+
/** Unknown target. */
|
|
11103
11516
|
UNKNOWN_TARGET = "UNKNOWN_TARGET",
|
|
11104
11517
|
/** Open in the same browser tab. */
|
|
11105
11518
|
SELF = "SELF",
|
|
@@ -11109,6 +11522,7 @@ declare enum Target {
|
|
|
11109
11522
|
/** @enumType */
|
|
11110
11523
|
type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
|
|
11111
11524
|
declare enum SubmitSuccessAction {
|
|
11525
|
+
/** Unknown submit success action. */
|
|
11112
11526
|
UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
|
|
11113
11527
|
/** No action will be taken after submission. */
|
|
11114
11528
|
NO_ACTION = "NO_ACTION",
|
|
@@ -16645,4 +17059,4 @@ interface ListDataExtensionSchemasOptions {
|
|
|
16645
17059
|
*/
|
|
16646
17060
|
declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>>;
|
|
16647
17061
|
|
|
16648
|
-
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundBackgroundMediaModeOneOf, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonCustomOption, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsMultilineAddress, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownCustomOption, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, MultilineAddressComponentType, type MultilineAddressComponentTypeOptionsOneOf, type MultilineAddressComponentTypeWithLiterals, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupCustomOption, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServiceTrigger, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|
|
17062
|
+
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundBackgroundMediaModeOneOf, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, ImagePosition, type ImagePositionWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|