@wix/auto_sdk_data-extension-schema_schemas 1.0.65 → 1.0.67
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 +78 -21
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +523 -97
- package/build/cjs/index.typings.js +78 -21
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +71 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +523 -97
- package/build/es/index.typings.mjs +71 -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 +78 -21
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +523 -97
- package/build/internal/cjs/index.typings.js +78 -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 +71 -20
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +523 -97
- package/build/internal/es/index.typings.mjs +71 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4220,6 +4220,11 @@ interface BackOfficePage extends BackOfficePageAssetOneOf {
|
|
|
4220
4220
|
* @maxSize 50
|
|
4221
4221
|
*/
|
|
4222
4222
|
pageAnchors?: PageAnchor[];
|
|
4223
|
+
/**
|
|
4224
|
+
* Determines how the page layout is rendered.
|
|
4225
|
+
* Allowed values: "standard_view", "builder_view", "expanded_view", default: "standard_view".
|
|
4226
|
+
*/
|
|
4227
|
+
layoutMode?: LayoutModeWithLiterals;
|
|
4223
4228
|
}
|
|
4224
4229
|
/** @oneof */
|
|
4225
4230
|
interface BackOfficePageAssetOneOf {
|
|
@@ -4307,6 +4312,13 @@ interface UrlParam {
|
|
|
4307
4312
|
*/
|
|
4308
4313
|
description?: string;
|
|
4309
4314
|
}
|
|
4315
|
+
declare enum LayoutMode {
|
|
4316
|
+
STANDARD_VIEW = "STANDARD_VIEW",
|
|
4317
|
+
BUILDER_VIEW = "BUILDER_VIEW",
|
|
4318
|
+
EXPANDED_VIEW = "EXPANDED_VIEW"
|
|
4319
|
+
}
|
|
4320
|
+
/** @enumType */
|
|
4321
|
+
type LayoutModeWithLiterals = LayoutMode | 'STANDARD_VIEW' | 'BUILDER_VIEW' | 'EXPANDED_VIEW';
|
|
4310
4322
|
interface AdditionalFeesSPIConfig {
|
|
4311
4323
|
/**
|
|
4312
4324
|
* Base URI where the endpoints are called.
|
|
@@ -6325,7 +6337,7 @@ declare enum CardStylesType {
|
|
|
6325
6337
|
}
|
|
6326
6338
|
/** @enumType */
|
|
6327
6339
|
type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
|
|
6328
|
-
declare enum
|
|
6340
|
+
declare enum CardStylesAlignment {
|
|
6329
6341
|
/** Content aligned to start (left in LTR layouts, right in RTL layouts) */
|
|
6330
6342
|
START = "START",
|
|
6331
6343
|
/** Content centered */
|
|
@@ -6334,7 +6346,7 @@ declare enum Alignment {
|
|
|
6334
6346
|
END = "END"
|
|
6335
6347
|
}
|
|
6336
6348
|
/** @enumType */
|
|
6337
|
-
type
|
|
6349
|
+
type CardStylesAlignmentWithLiterals = CardStylesAlignment | 'START' | 'CENTER' | 'END';
|
|
6338
6350
|
declare enum Layout {
|
|
6339
6351
|
/** Elements stacked vertically */
|
|
6340
6352
|
STACKED = "STACKED",
|
|
@@ -6462,7 +6474,7 @@ interface CardStyles {
|
|
|
6462
6474
|
/** Card type. Defaults to `CONTAINED`. */
|
|
6463
6475
|
type?: CardStylesTypeWithLiterals;
|
|
6464
6476
|
/** Content alignment. Defaults to `START`. */
|
|
6465
|
-
alignment?:
|
|
6477
|
+
alignment?: CardStylesAlignmentWithLiterals;
|
|
6466
6478
|
/** Layout for title and price. Defaults to `STACKED`. */
|
|
6467
6479
|
titlePriceLayout?: LayoutWithLiterals;
|
|
6468
6480
|
/**
|
|
@@ -9397,7 +9409,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
9397
9409
|
/** Input returns selected products as value. */
|
|
9398
9410
|
paymentOptions?: Payment;
|
|
9399
9411
|
/** Input returns multiline address as value. */
|
|
9400
|
-
multilineAddressOptions?:
|
|
9412
|
+
multilineAddressOptions?: Address;
|
|
9413
|
+
/** Input returns scheduling as value. */
|
|
9414
|
+
schedulingOptions?: Scheduling;
|
|
9415
|
+
/** Input returns multiline address as value. */
|
|
9416
|
+
addressOptions?: Address;
|
|
9401
9417
|
/**
|
|
9402
9418
|
* Definition of a target where the value of field belongs.
|
|
9403
9419
|
* @minLength 1
|
|
@@ -9445,7 +9461,11 @@ interface InputFieldInputTypeOptionsOneOf {
|
|
|
9445
9461
|
/** Input returns selected products as value. */
|
|
9446
9462
|
paymentOptions?: Payment;
|
|
9447
9463
|
/** Input returns multiline address as value. */
|
|
9448
|
-
multilineAddressOptions?:
|
|
9464
|
+
multilineAddressOptions?: Address;
|
|
9465
|
+
/** Input returns scheduling as value. */
|
|
9466
|
+
schedulingOptions?: Scheduling;
|
|
9467
|
+
/** Input returns multiline address as value. */
|
|
9468
|
+
addressOptions?: Address;
|
|
9449
9469
|
}
|
|
9450
9470
|
interface StringType extends StringTypeFormatOptionsOneOf {
|
|
9451
9471
|
/** DATE format options */
|
|
@@ -9548,10 +9568,11 @@ declare enum StringComponentType {
|
|
|
9548
9568
|
PHONE_INPUT = "PHONE_INPUT",
|
|
9549
9569
|
DATE_INPUT = "DATE_INPUT",
|
|
9550
9570
|
TIME_INPUT = "TIME_INPUT",
|
|
9551
|
-
DATE_PICKER = "DATE_PICKER"
|
|
9571
|
+
DATE_PICKER = "DATE_PICKER",
|
|
9572
|
+
SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
|
|
9552
9573
|
}
|
|
9553
9574
|
/** @enumType */
|
|
9554
|
-
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER';
|
|
9575
|
+
type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
|
|
9555
9576
|
interface TextInput {
|
|
9556
9577
|
/**
|
|
9557
9578
|
* Label of the field
|
|
@@ -9575,7 +9596,101 @@ interface TextInput {
|
|
|
9575
9596
|
* @maxLength 20000
|
|
9576
9597
|
*/
|
|
9577
9598
|
default?: string | null;
|
|
9599
|
+
/** Media item. Media, associated with field, like image. */
|
|
9600
|
+
media?: MediaItem;
|
|
9601
|
+
/** Settings for media item */
|
|
9602
|
+
mediaSettings?: MediaSettings;
|
|
9603
|
+
}
|
|
9604
|
+
interface MediaItem extends MediaItemMediaOneOf {
|
|
9605
|
+
/** WixMedia image. */
|
|
9606
|
+
image?: CommonImage;
|
|
9607
|
+
}
|
|
9608
|
+
/** @oneof */
|
|
9609
|
+
interface MediaItemMediaOneOf {
|
|
9610
|
+
/** WixMedia image. */
|
|
9611
|
+
image?: CommonImage;
|
|
9612
|
+
}
|
|
9613
|
+
interface CommonImage {
|
|
9614
|
+
/**
|
|
9615
|
+
* WixMedia image ID.
|
|
9616
|
+
* @maxLength 100
|
|
9617
|
+
*/
|
|
9618
|
+
_id?: string;
|
|
9619
|
+
/**
|
|
9620
|
+
* Image URL.
|
|
9621
|
+
* @maxLength 2000
|
|
9622
|
+
*/
|
|
9623
|
+
url?: string;
|
|
9624
|
+
/**
|
|
9625
|
+
* Original image height.
|
|
9626
|
+
* @readonly
|
|
9627
|
+
*/
|
|
9628
|
+
height?: number;
|
|
9629
|
+
/**
|
|
9630
|
+
* Original image width.
|
|
9631
|
+
* @readonly
|
|
9632
|
+
*/
|
|
9633
|
+
width?: number;
|
|
9634
|
+
/**
|
|
9635
|
+
* Image alt text.
|
|
9636
|
+
* @maxLength 1000
|
|
9637
|
+
*/
|
|
9638
|
+
altText?: string | null;
|
|
9639
|
+
/**
|
|
9640
|
+
* Image filename.
|
|
9641
|
+
* @readonly
|
|
9642
|
+
* @maxLength 1000
|
|
9643
|
+
*/
|
|
9644
|
+
filename?: string | null;
|
|
9645
|
+
}
|
|
9646
|
+
interface MediaSettings {
|
|
9647
|
+
/**
|
|
9648
|
+
* Specifies where image should be displayed.
|
|
9649
|
+
* Default: BELOW
|
|
9650
|
+
*/
|
|
9651
|
+
imagePosition?: ImagePositionWithLiterals;
|
|
9652
|
+
/**
|
|
9653
|
+
* Specifies image alignment.
|
|
9654
|
+
* Default: CENTER
|
|
9655
|
+
*/
|
|
9656
|
+
imageAlignment?: AlignmentWithLiterals;
|
|
9657
|
+
/**
|
|
9658
|
+
* Defines how an image should be resized to fit.
|
|
9659
|
+
* Default: COVER
|
|
9660
|
+
*/
|
|
9661
|
+
imageFit?: ImageFitWithLiterals;
|
|
9662
|
+
}
|
|
9663
|
+
declare enum ImagePosition {
|
|
9664
|
+
/** Undefined position. */
|
|
9665
|
+
UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
|
|
9666
|
+
/** Above label. */
|
|
9667
|
+
ABOVE = "ABOVE",
|
|
9668
|
+
/** Below label. */
|
|
9669
|
+
BELOW = "BELOW"
|
|
9670
|
+
}
|
|
9671
|
+
/** @enumType */
|
|
9672
|
+
type ImagePositionWithLiterals = ImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'ABOVE' | 'BELOW';
|
|
9673
|
+
declare enum Alignment {
|
|
9674
|
+
/** Undefined alignment. */
|
|
9675
|
+
UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
|
|
9676
|
+
/** Left. */
|
|
9677
|
+
LEFT = "LEFT",
|
|
9678
|
+
/** Center. */
|
|
9679
|
+
CENTER = "CENTER",
|
|
9680
|
+
/** Right. */
|
|
9681
|
+
RIGHT = "RIGHT"
|
|
9682
|
+
}
|
|
9683
|
+
/** @enumType */
|
|
9684
|
+
type AlignmentWithLiterals = Alignment | 'UNKNOWN_ALIGNMENT' | 'LEFT' | 'CENTER' | 'RIGHT';
|
|
9685
|
+
declare enum ImageFit {
|
|
9686
|
+
UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
|
|
9687
|
+
/** 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. */
|
|
9688
|
+
COVER = "COVER",
|
|
9689
|
+
/** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
|
|
9690
|
+
CONTAIN = "CONTAIN"
|
|
9578
9691
|
}
|
|
9692
|
+
/** @enumType */
|
|
9693
|
+
type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
|
|
9579
9694
|
interface RadioGroup {
|
|
9580
9695
|
/**
|
|
9581
9696
|
* Label of the field
|
|
@@ -9596,12 +9711,16 @@ interface RadioGroup {
|
|
|
9596
9711
|
*/
|
|
9597
9712
|
showLabel?: boolean | null;
|
|
9598
9713
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
9599
|
-
customOption?:
|
|
9714
|
+
customOption?: CustomOption;
|
|
9600
9715
|
/**
|
|
9601
9716
|
* Specifies the number of columns used to display the selections within the component.
|
|
9602
9717
|
* Default: ONE
|
|
9603
9718
|
*/
|
|
9604
9719
|
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
9720
|
+
/** Media item. Media, associated with field, like image. */
|
|
9721
|
+
media?: MediaItem;
|
|
9722
|
+
/** Settings for media item */
|
|
9723
|
+
mediaSettings?: MediaSettings;
|
|
9605
9724
|
}
|
|
9606
9725
|
interface RadioGroupOption {
|
|
9607
9726
|
/**
|
|
@@ -9623,7 +9742,7 @@ interface RadioGroupOption {
|
|
|
9623
9742
|
*/
|
|
9624
9743
|
_id?: string;
|
|
9625
9744
|
}
|
|
9626
|
-
interface
|
|
9745
|
+
interface CustomOption {
|
|
9627
9746
|
/**
|
|
9628
9747
|
* Label of custom option input
|
|
9629
9748
|
* @maxLength 350
|
|
@@ -9668,12 +9787,16 @@ interface Dropdown {
|
|
|
9668
9787
|
*/
|
|
9669
9788
|
showLabel?: boolean | null;
|
|
9670
9789
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
9671
|
-
customOption?:
|
|
9790
|
+
customOption?: CustomOption;
|
|
9672
9791
|
/**
|
|
9673
9792
|
* Placeholder of dropdown input
|
|
9674
9793
|
* @maxLength 100
|
|
9675
9794
|
*/
|
|
9676
9795
|
placeholder?: string | null;
|
|
9796
|
+
/** Media item. Media, associated with field, like image. */
|
|
9797
|
+
media?: MediaItem;
|
|
9798
|
+
/** Settings for media item */
|
|
9799
|
+
mediaSettings?: MediaSettings;
|
|
9677
9800
|
}
|
|
9678
9801
|
interface DropdownOption {
|
|
9679
9802
|
/**
|
|
@@ -9695,18 +9818,6 @@ interface DropdownOption {
|
|
|
9695
9818
|
*/
|
|
9696
9819
|
_id?: string;
|
|
9697
9820
|
}
|
|
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
9821
|
interface DateTimeInput {
|
|
9711
9822
|
/**
|
|
9712
9823
|
* Label of the field. Displayed text for the date/time input.
|
|
@@ -9735,6 +9846,10 @@ interface DateTimeInput {
|
|
|
9735
9846
|
* @format LOCAL_DATE_TIME
|
|
9736
9847
|
*/
|
|
9737
9848
|
default?: string | null;
|
|
9849
|
+
/** Media item. Media, associated with field, like image. */
|
|
9850
|
+
media?: MediaItem;
|
|
9851
|
+
/** Settings for media item */
|
|
9852
|
+
mediaSettings?: MediaSettings;
|
|
9738
9853
|
}
|
|
9739
9854
|
interface PhoneInput {
|
|
9740
9855
|
/**
|
|
@@ -9765,6 +9880,10 @@ interface PhoneInput {
|
|
|
9765
9880
|
* Default: false
|
|
9766
9881
|
*/
|
|
9767
9882
|
showCountryFlag?: boolean;
|
|
9883
|
+
/** Media item. Media, associated with field, like image. */
|
|
9884
|
+
media?: MediaItem;
|
|
9885
|
+
/** Settings for media item */
|
|
9886
|
+
mediaSettings?: MediaSettings;
|
|
9768
9887
|
}
|
|
9769
9888
|
interface DateInput {
|
|
9770
9889
|
/**
|
|
@@ -9789,6 +9908,10 @@ interface DateInput {
|
|
|
9789
9908
|
* @format LOCAL_DATE
|
|
9790
9909
|
*/
|
|
9791
9910
|
default?: string | null;
|
|
9911
|
+
/** Media item. Media, associated with field, like image. */
|
|
9912
|
+
media?: MediaItem;
|
|
9913
|
+
/** Settings for media item */
|
|
9914
|
+
mediaSettings?: MediaSettings;
|
|
9792
9915
|
}
|
|
9793
9916
|
interface TimeInput {
|
|
9794
9917
|
/**
|
|
@@ -9818,6 +9941,10 @@ interface TimeInput {
|
|
|
9818
9941
|
* @format LOCAL_TIME
|
|
9819
9942
|
*/
|
|
9820
9943
|
default?: string | null;
|
|
9944
|
+
/** Media item. Media, associated with field, like image. */
|
|
9945
|
+
media?: MediaItem;
|
|
9946
|
+
/** Settings for media item */
|
|
9947
|
+
mediaSettings?: MediaSettings;
|
|
9821
9948
|
}
|
|
9822
9949
|
interface DatePicker {
|
|
9823
9950
|
/**
|
|
@@ -9844,6 +9971,10 @@ interface DatePicker {
|
|
|
9844
9971
|
* @format LOCAL_DATE
|
|
9845
9972
|
*/
|
|
9846
9973
|
default?: string | null;
|
|
9974
|
+
/** Media item. Media, associated with field, like image. */
|
|
9975
|
+
media?: MediaItem;
|
|
9976
|
+
/** Settings for media item */
|
|
9977
|
+
mediaSettings?: MediaSettings;
|
|
9847
9978
|
}
|
|
9848
9979
|
declare enum FirstDayOfWeek {
|
|
9849
9980
|
/** First day of the week is Monday. */
|
|
@@ -9853,6 +9984,49 @@ declare enum FirstDayOfWeek {
|
|
|
9853
9984
|
}
|
|
9854
9985
|
/** @enumType */
|
|
9855
9986
|
type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';
|
|
9987
|
+
interface ServicesDropdown {
|
|
9988
|
+
/**
|
|
9989
|
+
* Label of the field
|
|
9990
|
+
* @maxLength 350
|
|
9991
|
+
*/
|
|
9992
|
+
label?: string | null;
|
|
9993
|
+
/**
|
|
9994
|
+
* Flag identifying to hide or not label
|
|
9995
|
+
* Default: true
|
|
9996
|
+
*/
|
|
9997
|
+
showLabel?: boolean | null;
|
|
9998
|
+
/**
|
|
9999
|
+
* Placeholder of services dropdown input
|
|
10000
|
+
* @maxLength 100
|
|
10001
|
+
*/
|
|
10002
|
+
placeholder?: string | null;
|
|
10003
|
+
/**
|
|
10004
|
+
* List of service options to select from
|
|
10005
|
+
* @maxSize 400
|
|
10006
|
+
*/
|
|
10007
|
+
options?: ServicesDropdownOption[];
|
|
10008
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
10009
|
+
customOption?: CustomOption;
|
|
10010
|
+
}
|
|
10011
|
+
interface ServicesDropdownOption {
|
|
10012
|
+
/**
|
|
10013
|
+
* Service name/label
|
|
10014
|
+
* @maxLength 400
|
|
10015
|
+
*/
|
|
10016
|
+
label?: string | null;
|
|
10017
|
+
/**
|
|
10018
|
+
* Option id. Used as binding for translations. Corresponds to the Service ID.
|
|
10019
|
+
* @format GUID
|
|
10020
|
+
* @immutable
|
|
10021
|
+
*/
|
|
10022
|
+
_id?: string;
|
|
10023
|
+
/**
|
|
10024
|
+
* Selectable option value, which is saved to DB. Corresponds to the Service ID.
|
|
10025
|
+
* @format GUID
|
|
10026
|
+
* @immutable
|
|
10027
|
+
*/
|
|
10028
|
+
value?: string | null;
|
|
10029
|
+
}
|
|
9856
10030
|
interface NumberType {
|
|
9857
10031
|
/** Inclusive maximum value. */
|
|
9858
10032
|
maximum?: number | null;
|
|
@@ -9893,6 +10067,10 @@ interface NumberInput {
|
|
|
9893
10067
|
showLabel?: boolean | null;
|
|
9894
10068
|
/** Default value for the number input */
|
|
9895
10069
|
default?: number | null;
|
|
10070
|
+
/** Media item. Media, associated with field, like image. */
|
|
10071
|
+
media?: MediaItem;
|
|
10072
|
+
/** Settings for media item */
|
|
10073
|
+
mediaSettings?: MediaSettings;
|
|
9896
10074
|
}
|
|
9897
10075
|
interface RatingInput {
|
|
9898
10076
|
/**
|
|
@@ -9913,6 +10091,10 @@ interface RatingInput {
|
|
|
9913
10091
|
* Default: true
|
|
9914
10092
|
*/
|
|
9915
10093
|
showLabel?: boolean | null;
|
|
10094
|
+
/** Media item. Media, associated with field, like image. */
|
|
10095
|
+
media?: MediaItem;
|
|
10096
|
+
/** Settings for media item */
|
|
10097
|
+
mediaSettings?: MediaSettings;
|
|
9916
10098
|
}
|
|
9917
10099
|
interface BooleanType {
|
|
9918
10100
|
/**
|
|
@@ -10051,10 +10233,11 @@ interface ArrayTypeArrayItemsItemTypeOptionsOneOf {
|
|
|
10051
10233
|
}
|
|
10052
10234
|
declare enum ArrayComponentType {
|
|
10053
10235
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10054
|
-
CHECKBOX_GROUP = "CHECKBOX_GROUP"
|
|
10236
|
+
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
10237
|
+
TAGS = "TAGS"
|
|
10055
10238
|
}
|
|
10056
10239
|
/** @enumType */
|
|
10057
|
-
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP';
|
|
10240
|
+
type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
|
|
10058
10241
|
interface CheckboxGroup {
|
|
10059
10242
|
/**
|
|
10060
10243
|
* Label of the field
|
|
@@ -10080,50 +10263,61 @@ interface CheckboxGroup {
|
|
|
10080
10263
|
* Default: ONE
|
|
10081
10264
|
*/
|
|
10082
10265
|
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
10266
|
+
/** Media item. Media, associated with field, like image. */
|
|
10267
|
+
media?: MediaItem;
|
|
10268
|
+
/** Settings for media item */
|
|
10269
|
+
mediaSettings?: MediaSettings;
|
|
10083
10270
|
}
|
|
10084
|
-
interface
|
|
10085
|
-
/** WixMedia image. */
|
|
10086
|
-
image?: CommonImage;
|
|
10087
|
-
}
|
|
10088
|
-
/** @oneof */
|
|
10089
|
-
interface MediaItemMediaOneOf {
|
|
10090
|
-
/** WixMedia image. */
|
|
10091
|
-
image?: CommonImage;
|
|
10092
|
-
}
|
|
10093
|
-
interface CommonImage {
|
|
10271
|
+
interface CheckboxGroupOption {
|
|
10094
10272
|
/**
|
|
10095
|
-
*
|
|
10096
|
-
* @maxLength
|
|
10273
|
+
* Selectable option label
|
|
10274
|
+
* @maxLength 400
|
|
10097
10275
|
*/
|
|
10098
|
-
|
|
10276
|
+
label?: string | null;
|
|
10277
|
+
/** Selectable option value, which is saved to DB. */
|
|
10278
|
+
value?: any;
|
|
10279
|
+
/** Flag identifying that option should be selected by default */
|
|
10280
|
+
default?: boolean;
|
|
10099
10281
|
/**
|
|
10100
|
-
*
|
|
10101
|
-
* @
|
|
10282
|
+
* Option id. Used as binding for translations
|
|
10283
|
+
* @format GUID
|
|
10284
|
+
* @immutable
|
|
10102
10285
|
*/
|
|
10103
|
-
|
|
10286
|
+
_id?: string;
|
|
10287
|
+
/** Media item. Media, associated with option, like image. */
|
|
10288
|
+
media?: MediaItem;
|
|
10289
|
+
}
|
|
10290
|
+
interface Tags {
|
|
10104
10291
|
/**
|
|
10105
|
-
*
|
|
10106
|
-
* @
|
|
10292
|
+
* Label of the field
|
|
10293
|
+
* @maxLength 350
|
|
10107
10294
|
*/
|
|
10108
|
-
|
|
10295
|
+
label?: string | null;
|
|
10296
|
+
/** Description of the field */
|
|
10297
|
+
description?: RichContent;
|
|
10109
10298
|
/**
|
|
10110
|
-
*
|
|
10111
|
-
* @
|
|
10299
|
+
* List of options to select from
|
|
10300
|
+
* @maxSize 400
|
|
10112
10301
|
*/
|
|
10113
|
-
|
|
10302
|
+
options?: TagsOption[];
|
|
10114
10303
|
/**
|
|
10115
|
-
*
|
|
10116
|
-
*
|
|
10304
|
+
* Flag identifying to hide or not label
|
|
10305
|
+
* Default: true
|
|
10117
10306
|
*/
|
|
10118
|
-
|
|
10307
|
+
showLabel?: boolean | null;
|
|
10308
|
+
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
10309
|
+
customOption?: CustomOption;
|
|
10119
10310
|
/**
|
|
10120
|
-
*
|
|
10121
|
-
*
|
|
10122
|
-
* @maxLength 1000
|
|
10311
|
+
* Specifies the number of columns used to display the selections within the component.
|
|
10312
|
+
* Default: ONE
|
|
10123
10313
|
*/
|
|
10124
|
-
|
|
10314
|
+
numberOfColumns?: NumberOfColumnsWithLiterals;
|
|
10315
|
+
/** Media item. Media, associated with field, like image. */
|
|
10316
|
+
media?: MediaItem;
|
|
10317
|
+
/** Settings for media item */
|
|
10318
|
+
mediaSettings?: MediaSettings;
|
|
10125
10319
|
}
|
|
10126
|
-
interface
|
|
10320
|
+
interface TagsOption {
|
|
10127
10321
|
/**
|
|
10128
10322
|
* Selectable option label
|
|
10129
10323
|
* @maxLength 400
|
|
@@ -10142,18 +10336,6 @@ interface CheckboxGroupOption {
|
|
|
10142
10336
|
/** Media item. Media, associated with option, like image. */
|
|
10143
10337
|
media?: MediaItem;
|
|
10144
10338
|
}
|
|
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
10339
|
declare enum WixFileComponentType {
|
|
10158
10340
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10159
10341
|
FILE_UPLOAD = "FILE_UPLOAD",
|
|
@@ -10161,6 +10343,35 @@ declare enum WixFileComponentType {
|
|
|
10161
10343
|
}
|
|
10162
10344
|
/** @enumType */
|
|
10163
10345
|
type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
|
|
10346
|
+
interface FileType {
|
|
10347
|
+
/**
|
|
10348
|
+
* Amount of files allowed to upload
|
|
10349
|
+
* @min 1
|
|
10350
|
+
* @max 30
|
|
10351
|
+
*/
|
|
10352
|
+
fileLimit?: number;
|
|
10353
|
+
/**
|
|
10354
|
+
* Supported file formats for upload
|
|
10355
|
+
* @maxSize 5
|
|
10356
|
+
*/
|
|
10357
|
+
uploadFileFormats?: UploadFileFormatWithLiterals[];
|
|
10358
|
+
}
|
|
10359
|
+
declare enum UploadFileFormat {
|
|
10360
|
+
/** Undefined upload file format. */
|
|
10361
|
+
UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
|
|
10362
|
+
/** Video files. */
|
|
10363
|
+
VIDEO = "VIDEO",
|
|
10364
|
+
/** Image files. */
|
|
10365
|
+
IMAGE = "IMAGE",
|
|
10366
|
+
/** Audio files. */
|
|
10367
|
+
AUDIO = "AUDIO",
|
|
10368
|
+
/** Document files. */
|
|
10369
|
+
DOCUMENT = "DOCUMENT",
|
|
10370
|
+
/** Archive files. */
|
|
10371
|
+
ARCHIVE = "ARCHIVE"
|
|
10372
|
+
}
|
|
10373
|
+
/** @enumType */
|
|
10374
|
+
type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
10164
10375
|
interface FileUpload {
|
|
10165
10376
|
/**
|
|
10166
10377
|
* Selectable option label
|
|
@@ -10189,14 +10400,18 @@ interface FileUpload {
|
|
|
10189
10400
|
* Supported file formats for upload
|
|
10190
10401
|
* @maxSize 5
|
|
10191
10402
|
*/
|
|
10192
|
-
uploadFileFormats?:
|
|
10403
|
+
uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];
|
|
10193
10404
|
/**
|
|
10194
10405
|
* Custom text which appears when file is uploaded, if missing file name will be shown
|
|
10195
10406
|
* @maxLength 255
|
|
10196
10407
|
*/
|
|
10197
10408
|
explanationText?: string | null;
|
|
10409
|
+
/** Media item. Media, associated with field, like image. */
|
|
10410
|
+
media?: MediaItem;
|
|
10411
|
+
/** Settings for media item */
|
|
10412
|
+
mediaSettings?: MediaSettings;
|
|
10198
10413
|
}
|
|
10199
|
-
declare enum
|
|
10414
|
+
declare enum UploadFileFormatEnumUploadFileFormat {
|
|
10200
10415
|
/** Undefined upload file format. */
|
|
10201
10416
|
UNDEFINED = "UNDEFINED",
|
|
10202
10417
|
/** Video files. */
|
|
@@ -10211,7 +10426,7 @@ declare enum UploadFileFormat {
|
|
|
10211
10426
|
ARCHIVE = "ARCHIVE"
|
|
10212
10427
|
}
|
|
10213
10428
|
/** @enumType */
|
|
10214
|
-
type
|
|
10429
|
+
type UploadFileFormatEnumUploadFileFormatWithLiterals = UploadFileFormatEnumUploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
10215
10430
|
interface Signature {
|
|
10216
10431
|
/**
|
|
10217
10432
|
* Selectable option label
|
|
@@ -10227,14 +10442,20 @@ interface Signature {
|
|
|
10227
10442
|
description?: RichContent;
|
|
10228
10443
|
/** Is image upload enabled */
|
|
10229
10444
|
imageUploadEnabled?: boolean;
|
|
10445
|
+
/** Media item. Media, associated with field, like image. */
|
|
10446
|
+
media?: MediaItem;
|
|
10447
|
+
/** Settings for media item */
|
|
10448
|
+
mediaSettings?: MediaSettings;
|
|
10230
10449
|
}
|
|
10231
10450
|
declare enum PaymentComponentType {
|
|
10232
10451
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10233
10452
|
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
10234
|
-
DONATION_INPUT = "DONATION_INPUT"
|
|
10453
|
+
DONATION_INPUT = "DONATION_INPUT",
|
|
10454
|
+
PAYMENT_INPUT = "PAYMENT_INPUT",
|
|
10455
|
+
FIXED_PAYMENT = "FIXED_PAYMENT"
|
|
10235
10456
|
}
|
|
10236
10457
|
/** @enumType */
|
|
10237
|
-
type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT';
|
|
10458
|
+
type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
|
|
10238
10459
|
interface PaymentType {
|
|
10239
10460
|
/**
|
|
10240
10461
|
* Field mapped to products.
|
|
@@ -10254,15 +10475,17 @@ interface PaymentType {
|
|
|
10254
10475
|
maxItems?: number | null;
|
|
10255
10476
|
}
|
|
10256
10477
|
declare enum ProductType {
|
|
10478
|
+
/** Unknown product type. */
|
|
10257
10479
|
UNKNOWN = "UNKNOWN",
|
|
10258
|
-
/** Shippable (physical). */
|
|
10480
|
+
/** Shippable (physical) product. */
|
|
10259
10481
|
SHIPPABLE = "SHIPPABLE",
|
|
10260
|
-
/** Digital. */
|
|
10482
|
+
/** Digital product. */
|
|
10261
10483
|
DIGITAL = "DIGITAL"
|
|
10262
10484
|
}
|
|
10263
10485
|
/** @enumType */
|
|
10264
10486
|
type ProductTypeWithLiterals = ProductType | 'UNKNOWN' | 'SHIPPABLE' | 'DIGITAL';
|
|
10265
10487
|
declare enum PriceType {
|
|
10488
|
+
/** Unknown price type. */
|
|
10266
10489
|
UNKNOWN = "UNKNOWN",
|
|
10267
10490
|
/** Fixed price. */
|
|
10268
10491
|
FIXED_PRICE = "FIXED_PRICE",
|
|
@@ -10352,6 +10575,10 @@ interface ProductCheckboxGroup {
|
|
|
10352
10575
|
* Default: COVER
|
|
10353
10576
|
*/
|
|
10354
10577
|
imageFit?: ImageFitWithLiterals;
|
|
10578
|
+
/** Media item. Media, associated with field, like image. */
|
|
10579
|
+
media?: MediaItem;
|
|
10580
|
+
/** Settings for media item */
|
|
10581
|
+
mediaSettings?: MediaSettings;
|
|
10355
10582
|
}
|
|
10356
10583
|
interface ProductCheckboxGroupOption {
|
|
10357
10584
|
/**
|
|
@@ -10372,15 +10599,6 @@ interface ProductCheckboxGroupOption {
|
|
|
10372
10599
|
/** Flag identifying that option should be selected by default */
|
|
10373
10600
|
default?: boolean;
|
|
10374
10601
|
}
|
|
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
10602
|
interface DonationInput {
|
|
10385
10603
|
/**
|
|
10386
10604
|
* Label of the field.
|
|
@@ -10395,7 +10613,7 @@ interface DonationInput {
|
|
|
10395
10613
|
*/
|
|
10396
10614
|
options?: DonationInputOption[];
|
|
10397
10615
|
/** Option which can be specified by UoU, enabled when this object is specified. */
|
|
10398
|
-
customOption?:
|
|
10616
|
+
customOption?: CustomOption;
|
|
10399
10617
|
/**
|
|
10400
10618
|
* Specifies the number of columns used to display the selections within the component.
|
|
10401
10619
|
* Default: ONE
|
|
@@ -10406,6 +10624,10 @@ interface DonationInput {
|
|
|
10406
10624
|
* Default: true
|
|
10407
10625
|
*/
|
|
10408
10626
|
showLabel?: boolean | null;
|
|
10627
|
+
/** Media item. Media, associated with field, like image. */
|
|
10628
|
+
media?: MediaItem;
|
|
10629
|
+
/** Settings for media item */
|
|
10630
|
+
mediaSettings?: MediaSettings;
|
|
10409
10631
|
}
|
|
10410
10632
|
interface DonationInputOption {
|
|
10411
10633
|
/**
|
|
@@ -10416,24 +10638,55 @@ interface DonationInputOption {
|
|
|
10416
10638
|
/** Flag identifying that option should be selected by default */
|
|
10417
10639
|
default?: boolean;
|
|
10418
10640
|
}
|
|
10419
|
-
interface
|
|
10641
|
+
interface PaymentInput {
|
|
10420
10642
|
/**
|
|
10421
|
-
* Label of
|
|
10643
|
+
* Label of the field.
|
|
10422
10644
|
* @maxLength 350
|
|
10423
10645
|
*/
|
|
10424
10646
|
label?: string | null;
|
|
10647
|
+
/** Description of the field. */
|
|
10648
|
+
description?: RichContent;
|
|
10649
|
+
/**
|
|
10650
|
+
* Flag identifying to hide or not label
|
|
10651
|
+
* Default: true
|
|
10652
|
+
*/
|
|
10653
|
+
showLabel?: boolean | null;
|
|
10425
10654
|
/**
|
|
10426
10655
|
* Placeholder of custom option input
|
|
10427
10656
|
* @maxLength 100
|
|
10428
10657
|
*/
|
|
10429
10658
|
placeholder?: string | null;
|
|
10659
|
+
/** Default value for the payment input */
|
|
10660
|
+
default?: number | null;
|
|
10661
|
+
/** Media item. Media, associated with field, like image. */
|
|
10662
|
+
media?: MediaItem;
|
|
10663
|
+
/** Settings for media item */
|
|
10664
|
+
mediaSettings?: MediaSettings;
|
|
10430
10665
|
}
|
|
10431
|
-
|
|
10666
|
+
interface FixedPayment {
|
|
10667
|
+
/**
|
|
10668
|
+
* Label of the field.
|
|
10669
|
+
* @maxLength 350
|
|
10670
|
+
*/
|
|
10671
|
+
label?: string | null;
|
|
10672
|
+
/** Description of the field. */
|
|
10673
|
+
description?: RichContent;
|
|
10674
|
+
/**
|
|
10675
|
+
* Flag identifying to hide or not label
|
|
10676
|
+
* Default: true
|
|
10677
|
+
*/
|
|
10678
|
+
showLabel?: boolean | null;
|
|
10679
|
+
/** Media item. Media, associated with field, like image. */
|
|
10680
|
+
media?: MediaItem;
|
|
10681
|
+
/** Settings for media item */
|
|
10682
|
+
mediaSettings?: MediaSettings;
|
|
10683
|
+
}
|
|
10684
|
+
declare enum AddressComponentType {
|
|
10432
10685
|
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10433
10686
|
MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
|
|
10434
10687
|
}
|
|
10435
10688
|
/** @enumType */
|
|
10436
|
-
type
|
|
10689
|
+
type AddressComponentTypeWithLiterals = AddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
|
|
10437
10690
|
interface MultilineAddressValidation {
|
|
10438
10691
|
/**
|
|
10439
10692
|
* Allowed countries. No countries treated as all.
|
|
@@ -10466,7 +10719,7 @@ interface FieldsOverrides {
|
|
|
10466
10719
|
/** Country. */
|
|
10467
10720
|
country?: FieldOverrides;
|
|
10468
10721
|
}
|
|
10469
|
-
interface
|
|
10722
|
+
interface MultilineAddress {
|
|
10470
10723
|
/**
|
|
10471
10724
|
* Label of the field.
|
|
10472
10725
|
* @maxLength 350
|
|
@@ -10518,6 +10771,118 @@ interface FieldsSettings {
|
|
|
10518
10771
|
/** Address line 2. */
|
|
10519
10772
|
addressLine2?: AddressLine2;
|
|
10520
10773
|
}
|
|
10774
|
+
declare enum SchedulingComponentType {
|
|
10775
|
+
UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
|
|
10776
|
+
APPOINTMENT = "APPOINTMENT"
|
|
10777
|
+
}
|
|
10778
|
+
/** @enumType */
|
|
10779
|
+
type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
|
|
10780
|
+
interface Appointment extends AppointmentFormatInfoOneOf {
|
|
10781
|
+
/** In person options for the appointment */
|
|
10782
|
+
inPersonOptions?: InPersonOptions;
|
|
10783
|
+
/** Online video conference options for the appointment */
|
|
10784
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
10785
|
+
/** Phone options for the appointment */
|
|
10786
|
+
phoneOptions?: PhoneOptions;
|
|
10787
|
+
/**
|
|
10788
|
+
* Label of the field
|
|
10789
|
+
* @maxLength 255
|
|
10790
|
+
*/
|
|
10791
|
+
label?: string | null;
|
|
10792
|
+
/**
|
|
10793
|
+
* Name of the appointment
|
|
10794
|
+
* @minLength 1
|
|
10795
|
+
* @maxLength 400
|
|
10796
|
+
*/
|
|
10797
|
+
name?: string | null;
|
|
10798
|
+
/**
|
|
10799
|
+
* Duration of the appointment in minutes
|
|
10800
|
+
* @min 1
|
|
10801
|
+
* @max 44639
|
|
10802
|
+
*/
|
|
10803
|
+
durationInMinutes?: number | null;
|
|
10804
|
+
/** Indicates whether manual approval is required for the appointment */
|
|
10805
|
+
manualApprovalRequired?: boolean | null;
|
|
10806
|
+
/**
|
|
10807
|
+
* ID of the staff members providing the appointment
|
|
10808
|
+
* @maxSize 220
|
|
10809
|
+
* @format GUID
|
|
10810
|
+
*/
|
|
10811
|
+
staffIds?: string[] | null;
|
|
10812
|
+
/** The format of the appointment */
|
|
10813
|
+
format?: AppointmentFormatWithLiterals;
|
|
10814
|
+
/** Description of the field */
|
|
10815
|
+
description?: RichContent;
|
|
10816
|
+
/**
|
|
10817
|
+
* Flag identifying to hide or not label
|
|
10818
|
+
* Default: true
|
|
10819
|
+
*/
|
|
10820
|
+
showLabel?: boolean | null;
|
|
10821
|
+
}
|
|
10822
|
+
/** @oneof */
|
|
10823
|
+
interface AppointmentFormatInfoOneOf {
|
|
10824
|
+
/** In person options for the appointment */
|
|
10825
|
+
inPersonOptions?: InPersonOptions;
|
|
10826
|
+
/** Online video conference options for the appointment */
|
|
10827
|
+
videoConferenceOptions?: VideoConferenceOptions;
|
|
10828
|
+
/** Phone options for the appointment */
|
|
10829
|
+
phoneOptions?: PhoneOptions;
|
|
10830
|
+
}
|
|
10831
|
+
interface Location extends LocationLocationInfoOneOf {
|
|
10832
|
+
/**
|
|
10833
|
+
* Custom address details
|
|
10834
|
+
* @maxLength 512
|
|
10835
|
+
*/
|
|
10836
|
+
customAddress?: string | null;
|
|
10837
|
+
/**
|
|
10838
|
+
* ID of a business location
|
|
10839
|
+
* @format GUID
|
|
10840
|
+
*/
|
|
10841
|
+
businessLocationId?: string | null;
|
|
10842
|
+
}
|
|
10843
|
+
/** @oneof */
|
|
10844
|
+
interface LocationLocationInfoOneOf {
|
|
10845
|
+
/**
|
|
10846
|
+
* Custom address details
|
|
10847
|
+
* @maxLength 512
|
|
10848
|
+
*/
|
|
10849
|
+
customAddress?: string | null;
|
|
10850
|
+
/**
|
|
10851
|
+
* ID of a business location
|
|
10852
|
+
* @format GUID
|
|
10853
|
+
*/
|
|
10854
|
+
businessLocationId?: string | null;
|
|
10855
|
+
}
|
|
10856
|
+
declare enum AppointmentFormat {
|
|
10857
|
+
UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
|
|
10858
|
+
IN_PERSON = "IN_PERSON",
|
|
10859
|
+
VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
|
|
10860
|
+
PHONE = "PHONE"
|
|
10861
|
+
}
|
|
10862
|
+
/** @enumType */
|
|
10863
|
+
type AppointmentFormatWithLiterals = AppointmentFormat | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
|
|
10864
|
+
interface InPersonOptions {
|
|
10865
|
+
/**
|
|
10866
|
+
* The locations details
|
|
10867
|
+
* @minSize 1
|
|
10868
|
+
* @maxSize 1
|
|
10869
|
+
*/
|
|
10870
|
+
locations?: Location[];
|
|
10871
|
+
}
|
|
10872
|
+
interface VideoConferenceOptions {
|
|
10873
|
+
/**
|
|
10874
|
+
* Description or instructions for the online video conference
|
|
10875
|
+
* @maxLength 512
|
|
10876
|
+
*/
|
|
10877
|
+
description?: string | null;
|
|
10878
|
+
}
|
|
10879
|
+
interface PhoneOptions {
|
|
10880
|
+
/**
|
|
10881
|
+
* Description or instructions for the phone appointment
|
|
10882
|
+
* @maxLength 512
|
|
10883
|
+
*/
|
|
10884
|
+
description?: string | null;
|
|
10885
|
+
}
|
|
10521
10886
|
declare enum InputType {
|
|
10522
10887
|
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
10523
10888
|
STRING = "STRING",
|
|
@@ -10527,10 +10892,11 @@ declare enum InputType {
|
|
|
10527
10892
|
OBJECT = "OBJECT",
|
|
10528
10893
|
WIX_FILE = "WIX_FILE",
|
|
10529
10894
|
PAYMENT = "PAYMENT",
|
|
10530
|
-
|
|
10895
|
+
SCHEDULING = "SCHEDULING",
|
|
10896
|
+
ADDRESS = "ADDRESS"
|
|
10531
10897
|
}
|
|
10532
10898
|
/** @enumType */
|
|
10533
|
-
type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | '
|
|
10899
|
+
type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'SCHEDULING' | 'ADDRESS';
|
|
10534
10900
|
interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
|
|
10535
10901
|
/** Email info. */
|
|
10536
10902
|
emailInfo?: EmailInfo;
|
|
@@ -10643,6 +11009,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
|
|
|
10643
11009
|
timeInputOptions?: TimeInput;
|
|
10644
11010
|
/** Calendar type component for selecting date */
|
|
10645
11011
|
datePickerOptions?: DatePicker;
|
|
11012
|
+
/** Dropdown for selecting services */
|
|
11013
|
+
servicesDropdownOptions?: ServicesDropdown;
|
|
10646
11014
|
/** Validation of field output value. */
|
|
10647
11015
|
validation?: StringType;
|
|
10648
11016
|
/**
|
|
@@ -10669,6 +11037,8 @@ interface _StringComponentTypeOptionsOneOf {
|
|
|
10669
11037
|
timeInputOptions?: TimeInput;
|
|
10670
11038
|
/** Calendar type component for selecting date */
|
|
10671
11039
|
datePickerOptions?: DatePicker;
|
|
11040
|
+
/** Dropdown for selecting services */
|
|
11041
|
+
servicesDropdownOptions?: ServicesDropdown;
|
|
10672
11042
|
}
|
|
10673
11043
|
interface InputField_Number extends InputField_NumberComponentTypeOptionsOneOf {
|
|
10674
11044
|
/** Number value input field */
|
|
@@ -10709,6 +11079,8 @@ interface _BooleanComponentTypeOptionsOneOf {
|
|
|
10709
11079
|
interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
10710
11080
|
/** Checkbox group input field */
|
|
10711
11081
|
checkboxGroupOptions?: CheckboxGroup;
|
|
11082
|
+
/** Tags input field */
|
|
11083
|
+
tagsOptions?: Tags;
|
|
10712
11084
|
/** Validation of array type. */
|
|
10713
11085
|
validation?: ArrayType;
|
|
10714
11086
|
/**
|
|
@@ -10721,6 +11093,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
|
|
|
10721
11093
|
interface _ArrayComponentTypeOptionsOneOf {
|
|
10722
11094
|
/** Checkbox group input field */
|
|
10723
11095
|
checkboxGroupOptions?: CheckboxGroup;
|
|
11096
|
+
/** Tags input field */
|
|
11097
|
+
tagsOptions?: Tags;
|
|
10724
11098
|
}
|
|
10725
11099
|
interface _Object {
|
|
10726
11100
|
/** Validation of object type. */
|
|
@@ -10736,6 +11110,8 @@ interface WixFile extends WixFileComponentTypeOptionsOneOf {
|
|
|
10736
11110
|
* @readonly
|
|
10737
11111
|
*/
|
|
10738
11112
|
componentType?: WixFileComponentTypeWithLiterals;
|
|
11113
|
+
/** Validation of field type. */
|
|
11114
|
+
validation?: FileType;
|
|
10739
11115
|
}
|
|
10740
11116
|
/** @oneof */
|
|
10741
11117
|
interface WixFileComponentTypeOptionsOneOf {
|
|
@@ -10749,6 +11125,10 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
|
|
|
10749
11125
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
10750
11126
|
/** Donation input field. */
|
|
10751
11127
|
donationInputOptions?: DonationInput;
|
|
11128
|
+
/** Payment input field. */
|
|
11129
|
+
paymentInputOptions?: PaymentInput;
|
|
11130
|
+
/** Fixed payment field. */
|
|
11131
|
+
fixedPaymentOptions?: FixedPayment;
|
|
10752
11132
|
/**
|
|
10753
11133
|
* Component type of the payment input field.
|
|
10754
11134
|
* @readonly
|
|
@@ -10763,28 +11143,47 @@ interface PaymentComponentTypeOptionsOneOf {
|
|
|
10763
11143
|
checkboxGroupOptions?: ProductCheckboxGroup;
|
|
10764
11144
|
/** Donation input field. */
|
|
10765
11145
|
donationInputOptions?: DonationInput;
|
|
11146
|
+
/** Payment input field. */
|
|
11147
|
+
paymentInputOptions?: PaymentInput;
|
|
11148
|
+
/** Fixed payment field. */
|
|
11149
|
+
fixedPaymentOptions?: FixedPayment;
|
|
10766
11150
|
}
|
|
10767
|
-
interface
|
|
11151
|
+
interface Address extends AddressComponentTypeOptionsOneOf {
|
|
10768
11152
|
/** Multiline address input field. */
|
|
10769
|
-
multilineAddressOptions?:
|
|
11153
|
+
multilineAddressOptions?: MultilineAddress;
|
|
10770
11154
|
/**
|
|
10771
11155
|
* Component type of the multiline address field.
|
|
10772
11156
|
* @readonly
|
|
10773
11157
|
*/
|
|
10774
|
-
componentType?:
|
|
11158
|
+
componentType?: AddressComponentTypeWithLiterals;
|
|
10775
11159
|
/** Validation of multiline address field output value. */
|
|
10776
11160
|
validation?: MultilineAddressValidation;
|
|
10777
11161
|
}
|
|
10778
11162
|
/** @oneof */
|
|
10779
|
-
interface
|
|
11163
|
+
interface AddressComponentTypeOptionsOneOf {
|
|
10780
11164
|
/** Multiline address input field. */
|
|
10781
|
-
multilineAddressOptions?:
|
|
11165
|
+
multilineAddressOptions?: MultilineAddress;
|
|
11166
|
+
}
|
|
11167
|
+
interface Scheduling extends SchedulingComponentTypeOptionsOneOf {
|
|
11168
|
+
/** Appointment input field */
|
|
11169
|
+
appointmentOptions?: Appointment;
|
|
11170
|
+
/**
|
|
11171
|
+
* Component type of the scheduling input field
|
|
11172
|
+
* @readonly
|
|
11173
|
+
*/
|
|
11174
|
+
componentType?: SchedulingComponentTypeWithLiterals;
|
|
11175
|
+
}
|
|
11176
|
+
/** @oneof */
|
|
11177
|
+
interface SchedulingComponentTypeOptionsOneOf {
|
|
11178
|
+
/** Appointment input field */
|
|
11179
|
+
appointmentOptions?: Appointment;
|
|
10782
11180
|
}
|
|
10783
11181
|
interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
|
|
10784
11182
|
/** Component displaying rich content */
|
|
10785
11183
|
richContentOptions?: RichContentOptions;
|
|
10786
11184
|
/** Page navigation component resolving as navigation or submit buttons */
|
|
10787
11185
|
pageNavigationOptions?: PageNavigationOptions;
|
|
11186
|
+
/** Type of the display field */
|
|
10788
11187
|
displayFieldType?: DisplayFieldTypeWithLiterals;
|
|
10789
11188
|
}
|
|
10790
11189
|
/** @oneof */
|
|
@@ -10870,12 +11269,14 @@ interface BreakPoint {
|
|
|
10870
11269
|
*/
|
|
10871
11270
|
sections?: BreakPointSection[];
|
|
10872
11271
|
}
|
|
10873
|
-
interface ItemLayout {
|
|
11272
|
+
interface ItemLayout extends ItemLayoutItemOneOf {
|
|
10874
11273
|
/**
|
|
10875
11274
|
* Form field reference id.
|
|
10876
11275
|
* @format GUID
|
|
10877
11276
|
*/
|
|
10878
11277
|
fieldId?: string;
|
|
11278
|
+
/** Group info, defining that this item is a group of multiple fields */
|
|
11279
|
+
group?: Group;
|
|
10879
11280
|
/** Horizontal coordinate in the grid. */
|
|
10880
11281
|
row?: number | null;
|
|
10881
11282
|
/** Vertical coordinate in the grid. */
|
|
@@ -10885,6 +11286,29 @@ interface ItemLayout {
|
|
|
10885
11286
|
/** Width. */
|
|
10886
11287
|
height?: number | null;
|
|
10887
11288
|
}
|
|
11289
|
+
/** @oneof */
|
|
11290
|
+
interface ItemLayoutItemOneOf {
|
|
11291
|
+
/**
|
|
11292
|
+
* Form field reference id.
|
|
11293
|
+
* @format GUID
|
|
11294
|
+
*/
|
|
11295
|
+
fieldId?: string;
|
|
11296
|
+
/** Group info, defining that this item is a group of multiple fields */
|
|
11297
|
+
group?: Group;
|
|
11298
|
+
}
|
|
11299
|
+
interface Group {
|
|
11300
|
+
/**
|
|
11301
|
+
* Field group reference id.
|
|
11302
|
+
* @format GUID
|
|
11303
|
+
*/
|
|
11304
|
+
groupId?: string;
|
|
11305
|
+
/**
|
|
11306
|
+
* Description of layouts for items.
|
|
11307
|
+
* @minSize 1
|
|
11308
|
+
* @maxSize 500
|
|
11309
|
+
*/
|
|
11310
|
+
items?: ItemLayout[];
|
|
11311
|
+
}
|
|
10888
11312
|
interface Margin {
|
|
10889
11313
|
/** Horizontal value. */
|
|
10890
11314
|
horizontal?: number | null;
|
|
@@ -11100,6 +11524,7 @@ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
|
|
|
11100
11524
|
redirectOptions?: RedirectOptions;
|
|
11101
11525
|
}
|
|
11102
11526
|
declare enum Target {
|
|
11527
|
+
/** Unknown target. */
|
|
11103
11528
|
UNKNOWN_TARGET = "UNKNOWN_TARGET",
|
|
11104
11529
|
/** Open in the same browser tab. */
|
|
11105
11530
|
SELF = "SELF",
|
|
@@ -11109,6 +11534,7 @@ declare enum Target {
|
|
|
11109
11534
|
/** @enumType */
|
|
11110
11535
|
type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
|
|
11111
11536
|
declare enum SubmitSuccessAction {
|
|
11537
|
+
/** Unknown submit success action. */
|
|
11112
11538
|
UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
|
|
11113
11539
|
/** No action will be taken after submission. */
|
|
11114
11540
|
NO_ACTION = "NO_ACTION",
|
|
@@ -16645,4 +17071,4 @@ interface ListDataExtensionSchemasOptions {
|
|
|
16645
17071
|
*/
|
|
16646
17072
|
declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>>;
|
|
16647
17073
|
|
|
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 };
|
|
17074
|
+
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, LayoutMode, type LayoutModeWithLiterals, 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 };
|