@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.
@@ -4237,6 +4237,11 @@ interface BackOfficePage extends BackOfficePageAssetOneOf {
4237
4237
  * @maxSize 50
4238
4238
  */
4239
4239
  pageAnchors?: PageAnchor[];
4240
+ /**
4241
+ * Determines how the page layout is rendered.
4242
+ * Allowed values: "standard_view", "builder_view", "expanded_view", default: "standard_view".
4243
+ */
4244
+ layoutMode?: LayoutModeWithLiterals;
4240
4245
  }
4241
4246
  /** @oneof */
4242
4247
  interface BackOfficePageAssetOneOf {
@@ -4324,6 +4329,13 @@ interface UrlParam {
4324
4329
  */
4325
4330
  description?: string;
4326
4331
  }
4332
+ declare enum LayoutMode {
4333
+ STANDARD_VIEW = "STANDARD_VIEW",
4334
+ BUILDER_VIEW = "BUILDER_VIEW",
4335
+ EXPANDED_VIEW = "EXPANDED_VIEW"
4336
+ }
4337
+ /** @enumType */
4338
+ type LayoutModeWithLiterals = LayoutMode | 'STANDARD_VIEW' | 'BUILDER_VIEW' | 'EXPANDED_VIEW';
4327
4339
  interface AdditionalFeesSPIConfig {
4328
4340
  /**
4329
4341
  * Base URI where the endpoints are called.
@@ -6342,7 +6354,7 @@ declare enum CardStylesType {
6342
6354
  }
6343
6355
  /** @enumType */
6344
6356
  type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
6345
- declare enum Alignment {
6357
+ declare enum CardStylesAlignment {
6346
6358
  /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
6347
6359
  START = "START",
6348
6360
  /** Content centered */
@@ -6351,7 +6363,7 @@ declare enum Alignment {
6351
6363
  END = "END"
6352
6364
  }
6353
6365
  /** @enumType */
6354
- type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
6366
+ type CardStylesAlignmentWithLiterals = CardStylesAlignment | 'START' | 'CENTER' | 'END';
6355
6367
  declare enum Layout {
6356
6368
  /** Elements stacked vertically */
6357
6369
  STACKED = "STACKED",
@@ -6479,7 +6491,7 @@ interface CardStyles {
6479
6491
  /** Card type. Defaults to `CONTAINED`. */
6480
6492
  type?: CardStylesTypeWithLiterals;
6481
6493
  /** Content alignment. Defaults to `START`. */
6482
- alignment?: AlignmentWithLiterals;
6494
+ alignment?: CardStylesAlignmentWithLiterals;
6483
6495
  /** Layout for title and price. Defaults to `STACKED`. */
6484
6496
  titlePriceLayout?: LayoutWithLiterals;
6485
6497
  /**
@@ -9414,7 +9426,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
9414
9426
  /** Input returns selected products as value. */
9415
9427
  paymentOptions?: Payment;
9416
9428
  /** Input returns multiline address as value. */
9417
- multilineAddressOptions?: MultilineAddress;
9429
+ multilineAddressOptions?: Address;
9430
+ /** Input returns scheduling as value. */
9431
+ schedulingOptions?: Scheduling;
9432
+ /** Input returns multiline address as value. */
9433
+ addressOptions?: Address;
9418
9434
  /**
9419
9435
  * Definition of a target where the value of field belongs.
9420
9436
  * @minLength 1
@@ -9462,7 +9478,11 @@ interface InputFieldInputTypeOptionsOneOf {
9462
9478
  /** Input returns selected products as value. */
9463
9479
  paymentOptions?: Payment;
9464
9480
  /** Input returns multiline address as value. */
9465
- multilineAddressOptions?: MultilineAddress;
9481
+ multilineAddressOptions?: Address;
9482
+ /** Input returns scheduling as value. */
9483
+ schedulingOptions?: Scheduling;
9484
+ /** Input returns multiline address as value. */
9485
+ addressOptions?: Address;
9466
9486
  }
9467
9487
  interface StringType extends StringTypeFormatOptionsOneOf {
9468
9488
  /** DATE format options */
@@ -9565,10 +9585,11 @@ declare enum StringComponentType {
9565
9585
  PHONE_INPUT = "PHONE_INPUT",
9566
9586
  DATE_INPUT = "DATE_INPUT",
9567
9587
  TIME_INPUT = "TIME_INPUT",
9568
- DATE_PICKER = "DATE_PICKER"
9588
+ DATE_PICKER = "DATE_PICKER",
9589
+ SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
9569
9590
  }
9570
9591
  /** @enumType */
9571
- type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER';
9592
+ type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
9572
9593
  interface TextInput {
9573
9594
  /**
9574
9595
  * Label of the field
@@ -9592,7 +9613,101 @@ interface TextInput {
9592
9613
  * @maxLength 20000
9593
9614
  */
9594
9615
  default?: string | null;
9616
+ /** Media item. Media, associated with field, like image. */
9617
+ media?: MediaItem;
9618
+ /** Settings for media item */
9619
+ mediaSettings?: MediaSettings;
9620
+ }
9621
+ interface MediaItem extends MediaItemMediaOneOf {
9622
+ /** WixMedia image. */
9623
+ image?: CommonImage;
9624
+ }
9625
+ /** @oneof */
9626
+ interface MediaItemMediaOneOf {
9627
+ /** WixMedia image. */
9628
+ image?: CommonImage;
9629
+ }
9630
+ interface CommonImage {
9631
+ /**
9632
+ * WixMedia image ID.
9633
+ * @maxLength 100
9634
+ */
9635
+ _id?: string;
9636
+ /**
9637
+ * Image URL.
9638
+ * @maxLength 2000
9639
+ */
9640
+ url?: string;
9641
+ /**
9642
+ * Original image height.
9643
+ * @readonly
9644
+ */
9645
+ height?: number;
9646
+ /**
9647
+ * Original image width.
9648
+ * @readonly
9649
+ */
9650
+ width?: number;
9651
+ /**
9652
+ * Image alt text.
9653
+ * @maxLength 1000
9654
+ */
9655
+ altText?: string | null;
9656
+ /**
9657
+ * Image filename.
9658
+ * @readonly
9659
+ * @maxLength 1000
9660
+ */
9661
+ filename?: string | null;
9662
+ }
9663
+ interface MediaSettings {
9664
+ /**
9665
+ * Specifies where image should be displayed.
9666
+ * Default: BELOW
9667
+ */
9668
+ imagePosition?: ImagePositionWithLiterals;
9669
+ /**
9670
+ * Specifies image alignment.
9671
+ * Default: CENTER
9672
+ */
9673
+ imageAlignment?: AlignmentWithLiterals;
9674
+ /**
9675
+ * Defines how an image should be resized to fit.
9676
+ * Default: COVER
9677
+ */
9678
+ imageFit?: ImageFitWithLiterals;
9679
+ }
9680
+ declare enum ImagePosition {
9681
+ /** Undefined position. */
9682
+ UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
9683
+ /** Above label. */
9684
+ ABOVE = "ABOVE",
9685
+ /** Below label. */
9686
+ BELOW = "BELOW"
9687
+ }
9688
+ /** @enumType */
9689
+ type ImagePositionWithLiterals = ImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'ABOVE' | 'BELOW';
9690
+ declare enum Alignment {
9691
+ /** Undefined alignment. */
9692
+ UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
9693
+ /** Left. */
9694
+ LEFT = "LEFT",
9695
+ /** Center. */
9696
+ CENTER = "CENTER",
9697
+ /** Right. */
9698
+ RIGHT = "RIGHT"
9699
+ }
9700
+ /** @enumType */
9701
+ type AlignmentWithLiterals = Alignment | 'UNKNOWN_ALIGNMENT' | 'LEFT' | 'CENTER' | 'RIGHT';
9702
+ declare enum ImageFit {
9703
+ UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
9704
+ /** 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. */
9705
+ COVER = "COVER",
9706
+ /** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
9707
+ CONTAIN = "CONTAIN"
9595
9708
  }
9709
+ /** @enumType */
9710
+ type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
9596
9711
  interface RadioGroup {
9597
9712
  /**
9598
9713
  * Label of the field
@@ -9613,12 +9728,16 @@ interface RadioGroup {
9613
9728
  */
9614
9729
  showLabel?: boolean | null;
9615
9730
  /** Option which can be specified by UoU, enabled when this object is specified. */
9616
- customOption?: RadioGroupCustomOption;
9731
+ customOption?: CustomOption;
9617
9732
  /**
9618
9733
  * Specifies the number of columns used to display the selections within the component.
9619
9734
  * Default: ONE
9620
9735
  */
9621
9736
  numberOfColumns?: NumberOfColumnsWithLiterals;
9737
+ /** Media item. Media, associated with field, like image. */
9738
+ media?: MediaItem;
9739
+ /** Settings for media item */
9740
+ mediaSettings?: MediaSettings;
9622
9741
  }
9623
9742
  interface RadioGroupOption {
9624
9743
  /**
@@ -9640,7 +9759,7 @@ interface RadioGroupOption {
9640
9759
  */
9641
9760
  _id?: string;
9642
9761
  }
9643
- interface RadioGroupCustomOption {
9762
+ interface CustomOption {
9644
9763
  /**
9645
9764
  * Label of custom option input
9646
9765
  * @maxLength 350
@@ -9685,12 +9804,16 @@ interface Dropdown {
9685
9804
  */
9686
9805
  showLabel?: boolean | null;
9687
9806
  /** Option which can be specified by UoU, enabled when this object is specified. */
9688
- customOption?: DropdownCustomOption;
9807
+ customOption?: CustomOption;
9689
9808
  /**
9690
9809
  * Placeholder of dropdown input
9691
9810
  * @maxLength 100
9692
9811
  */
9693
9812
  placeholder?: string | null;
9813
+ /** Media item. Media, associated with field, like image. */
9814
+ media?: MediaItem;
9815
+ /** Settings for media item */
9816
+ mediaSettings?: MediaSettings;
9694
9817
  }
9695
9818
  interface DropdownOption {
9696
9819
  /**
@@ -9712,18 +9835,6 @@ interface DropdownOption {
9712
9835
  */
9713
9836
  _id?: string;
9714
9837
  }
9715
- interface DropdownCustomOption {
9716
- /**
9717
- * Label of custom option input
9718
- * @maxLength 350
9719
- */
9720
- label?: string | null;
9721
- /**
9722
- * Placeholder of custom option input
9723
- * @maxLength 100
9724
- */
9725
- placeholder?: string | null;
9726
- }
9727
9838
  interface DateTimeInput {
9728
9839
  /**
9729
9840
  * Label of the field. Displayed text for the date/time input.
@@ -9752,6 +9863,10 @@ interface DateTimeInput {
9752
9863
  * @format LOCAL_DATE_TIME
9753
9864
  */
9754
9865
  default?: string | null;
9866
+ /** Media item. Media, associated with field, like image. */
9867
+ media?: MediaItem;
9868
+ /** Settings for media item */
9869
+ mediaSettings?: MediaSettings;
9755
9870
  }
9756
9871
  interface PhoneInput {
9757
9872
  /**
@@ -9782,6 +9897,10 @@ interface PhoneInput {
9782
9897
  * Default: false
9783
9898
  */
9784
9899
  showCountryFlag?: boolean;
9900
+ /** Media item. Media, associated with field, like image. */
9901
+ media?: MediaItem;
9902
+ /** Settings for media item */
9903
+ mediaSettings?: MediaSettings;
9785
9904
  }
9786
9905
  interface DateInput {
9787
9906
  /**
@@ -9806,6 +9925,10 @@ interface DateInput {
9806
9925
  * @format LOCAL_DATE
9807
9926
  */
9808
9927
  default?: string | null;
9928
+ /** Media item. Media, associated with field, like image. */
9929
+ media?: MediaItem;
9930
+ /** Settings for media item */
9931
+ mediaSettings?: MediaSettings;
9809
9932
  }
9810
9933
  interface TimeInput {
9811
9934
  /**
@@ -9835,6 +9958,10 @@ interface TimeInput {
9835
9958
  * @format LOCAL_TIME
9836
9959
  */
9837
9960
  default?: string | null;
9961
+ /** Media item. Media, associated with field, like image. */
9962
+ media?: MediaItem;
9963
+ /** Settings for media item */
9964
+ mediaSettings?: MediaSettings;
9838
9965
  }
9839
9966
  interface DatePicker {
9840
9967
  /**
@@ -9861,6 +9988,10 @@ interface DatePicker {
9861
9988
  * @format LOCAL_DATE
9862
9989
  */
9863
9990
  default?: string | null;
9991
+ /** Media item. Media, associated with field, like image. */
9992
+ media?: MediaItem;
9993
+ /** Settings for media item */
9994
+ mediaSettings?: MediaSettings;
9864
9995
  }
9865
9996
  declare enum FirstDayOfWeek {
9866
9997
  /** First day of the week is Monday. */
@@ -9870,6 +10001,49 @@ declare enum FirstDayOfWeek {
9870
10001
  }
9871
10002
  /** @enumType */
9872
10003
  type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';
10004
+ interface ServicesDropdown {
10005
+ /**
10006
+ * Label of the field
10007
+ * @maxLength 350
10008
+ */
10009
+ label?: string | null;
10010
+ /**
10011
+ * Flag identifying to hide or not label
10012
+ * Default: true
10013
+ */
10014
+ showLabel?: boolean | null;
10015
+ /**
10016
+ * Placeholder of services dropdown input
10017
+ * @maxLength 100
10018
+ */
10019
+ placeholder?: string | null;
10020
+ /**
10021
+ * List of service options to select from
10022
+ * @maxSize 400
10023
+ */
10024
+ options?: ServicesDropdownOption[];
10025
+ /** Option which can be specified by UoU, enabled when this object is specified. */
10026
+ customOption?: CustomOption;
10027
+ }
10028
+ interface ServicesDropdownOption {
10029
+ /**
10030
+ * Service name/label
10031
+ * @maxLength 400
10032
+ */
10033
+ label?: string | null;
10034
+ /**
10035
+ * Option id. Used as binding for translations. Corresponds to the Service ID.
10036
+ * @format GUID
10037
+ * @immutable
10038
+ */
10039
+ _id?: string;
10040
+ /**
10041
+ * Selectable option value, which is saved to DB. Corresponds to the Service ID.
10042
+ * @format GUID
10043
+ * @immutable
10044
+ */
10045
+ value?: string | null;
10046
+ }
9873
10047
  interface NumberType {
9874
10048
  /** Inclusive maximum value. */
9875
10049
  maximum?: number | null;
@@ -9910,6 +10084,10 @@ interface NumberInput {
9910
10084
  showLabel?: boolean | null;
9911
10085
  /** Default value for the number input */
9912
10086
  default?: number | null;
10087
+ /** Media item. Media, associated with field, like image. */
10088
+ media?: MediaItem;
10089
+ /** Settings for media item */
10090
+ mediaSettings?: MediaSettings;
9913
10091
  }
9914
10092
  interface RatingInput {
9915
10093
  /**
@@ -9930,6 +10108,10 @@ interface RatingInput {
9930
10108
  * Default: true
9931
10109
  */
9932
10110
  showLabel?: boolean | null;
10111
+ /** Media item. Media, associated with field, like image. */
10112
+ media?: MediaItem;
10113
+ /** Settings for media item */
10114
+ mediaSettings?: MediaSettings;
9933
10115
  }
9934
10116
  interface BooleanType {
9935
10117
  /**
@@ -10068,10 +10250,11 @@ interface ArrayTypeArrayItemsItemTypeOptionsOneOf {
10068
10250
  }
10069
10251
  declare enum ArrayComponentType {
10070
10252
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10071
- CHECKBOX_GROUP = "CHECKBOX_GROUP"
10253
+ CHECKBOX_GROUP = "CHECKBOX_GROUP",
10254
+ TAGS = "TAGS"
10072
10255
  }
10073
10256
  /** @enumType */
10074
- type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP';
10257
+ type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
10075
10258
  interface CheckboxGroup {
10076
10259
  /**
10077
10260
  * Label of the field
@@ -10097,50 +10280,61 @@ interface CheckboxGroup {
10097
10280
  * Default: ONE
10098
10281
  */
10099
10282
  numberOfColumns?: NumberOfColumnsWithLiterals;
10283
+ /** Media item. Media, associated with field, like image. */
10284
+ media?: MediaItem;
10285
+ /** Settings for media item */
10286
+ mediaSettings?: MediaSettings;
10100
10287
  }
10101
- interface MediaItem extends MediaItemMediaOneOf {
10102
- /** WixMedia image. */
10103
- image?: CommonImage;
10104
- }
10105
- /** @oneof */
10106
- interface MediaItemMediaOneOf {
10107
- /** WixMedia image. */
10108
- image?: CommonImage;
10109
- }
10110
- interface CommonImage {
10288
+ interface CheckboxGroupOption {
10111
10289
  /**
10112
- * WixMedia image ID.
10113
- * @maxLength 100
10290
+ * Selectable option label
10291
+ * @maxLength 400
10114
10292
  */
10115
- _id?: string;
10293
+ label?: string | null;
10294
+ /** Selectable option value, which is saved to DB. */
10295
+ value?: any;
10296
+ /** Flag identifying that option should be selected by default */
10297
+ default?: boolean;
10116
10298
  /**
10117
- * Image URL.
10118
- * @maxLength 2000
10299
+ * Option id. Used as binding for translations
10300
+ * @format GUID
10301
+ * @immutable
10119
10302
  */
10120
- url?: string;
10303
+ _id?: string;
10304
+ /** Media item. Media, associated with option, like image. */
10305
+ media?: MediaItem;
10306
+ }
10307
+ interface Tags {
10121
10308
  /**
10122
- * Original image height.
10123
- * @readonly
10309
+ * Label of the field
10310
+ * @maxLength 350
10124
10311
  */
10125
- height?: number;
10312
+ label?: string | null;
10313
+ /** Description of the field */
10314
+ description?: RichContent;
10126
10315
  /**
10127
- * Original image width.
10128
- * @readonly
10316
+ * List of options to select from
10317
+ * @maxSize 400
10129
10318
  */
10130
- width?: number;
10319
+ options?: TagsOption[];
10131
10320
  /**
10132
- * Image alt text.
10133
- * @maxLength 1000
10321
+ * Flag identifying to hide or not label
10322
+ * Default: true
10134
10323
  */
10135
- altText?: string | null;
10324
+ showLabel?: boolean | null;
10325
+ /** Option which can be specified by UoU, enabled when this object is specified. */
10326
+ customOption?: CustomOption;
10136
10327
  /**
10137
- * Image filename.
10138
- * @readonly
10139
- * @maxLength 1000
10328
+ * Specifies the number of columns used to display the selections within the component.
10329
+ * Default: ONE
10140
10330
  */
10141
- filename?: string | null;
10331
+ numberOfColumns?: NumberOfColumnsWithLiterals;
10332
+ /** Media item. Media, associated with field, like image. */
10333
+ media?: MediaItem;
10334
+ /** Settings for media item */
10335
+ mediaSettings?: MediaSettings;
10142
10336
  }
10143
- interface CheckboxGroupOption {
10337
+ interface TagsOption {
10144
10338
  /**
10145
10339
  * Selectable option label
10146
10340
  * @maxLength 400
@@ -10159,18 +10353,6 @@ interface CheckboxGroupOption {
10159
10353
  /** Media item. Media, associated with option, like image. */
10160
10354
  media?: MediaItem;
10161
10355
  }
10162
- interface CustomOption {
10163
- /**
10164
- * Label of custom option input
10165
- * @maxLength 350
10166
- */
10167
- label?: string | null;
10168
- /**
10169
- * Placeholder of custom option input
10170
- * @maxLength 100
10171
- */
10172
- placeholder?: string | null;
10173
- }
10174
10356
  declare enum WixFileComponentType {
10175
10357
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10176
10358
  FILE_UPLOAD = "FILE_UPLOAD",
@@ -10178,6 +10360,35 @@ declare enum WixFileComponentType {
10178
10360
  }
10179
10361
  /** @enumType */
10180
10362
  type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
10363
+ interface FileType {
10364
+ /**
10365
+ * Amount of files allowed to upload
10366
+ * @min 1
10367
+ * @max 30
10368
+ */
10369
+ fileLimit?: number;
10370
+ /**
10371
+ * Supported file formats for upload
10372
+ * @maxSize 5
10373
+ */
10374
+ uploadFileFormats?: UploadFileFormatWithLiterals[];
10375
+ }
10376
+ declare enum UploadFileFormat {
10377
+ /** Undefined upload file format. */
10378
+ UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
10379
+ /** Video files. */
10380
+ VIDEO = "VIDEO",
10381
+ /** Image files. */
10382
+ IMAGE = "IMAGE",
10383
+ /** Audio files. */
10384
+ AUDIO = "AUDIO",
10385
+ /** Document files. */
10386
+ DOCUMENT = "DOCUMENT",
10387
+ /** Archive files. */
10388
+ ARCHIVE = "ARCHIVE"
10389
+ }
10390
+ /** @enumType */
10391
+ type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10181
10392
  interface FileUpload {
10182
10393
  /**
10183
10394
  * Selectable option label
@@ -10206,14 +10417,18 @@ interface FileUpload {
10206
10417
  * Supported file formats for upload
10207
10418
  * @maxSize 5
10208
10419
  */
10209
- uploadFileFormats?: UploadFileFormatWithLiterals[];
10420
+ uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];
10210
10421
  /**
10211
10422
  * Custom text which appears when file is uploaded, if missing file name will be shown
10212
10423
  * @maxLength 255
10213
10424
  */
10214
10425
  explanationText?: string | null;
10426
+ /** Media item. Media, associated with field, like image. */
10427
+ media?: MediaItem;
10428
+ /** Settings for media item */
10429
+ mediaSettings?: MediaSettings;
10215
10430
  }
10216
- declare enum UploadFileFormat {
10431
+ declare enum UploadFileFormatEnumUploadFileFormat {
10217
10432
  /** Undefined upload file format. */
10218
10433
  UNDEFINED = "UNDEFINED",
10219
10434
  /** Video files. */
@@ -10228,7 +10443,7 @@ declare enum UploadFileFormat {
10228
10443
  ARCHIVE = "ARCHIVE"
10229
10444
  }
10230
10445
  /** @enumType */
10231
- type UploadFileFormatWithLiterals = UploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10446
+ type UploadFileFormatEnumUploadFileFormatWithLiterals = UploadFileFormatEnumUploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10232
10447
  interface Signature {
10233
10448
  /**
10234
10449
  * Selectable option label
@@ -10244,14 +10459,20 @@ interface Signature {
10244
10459
  description?: RichContent;
10245
10460
  /** Is image upload enabled */
10246
10461
  imageUploadEnabled?: boolean;
10462
+ /** Media item. Media, associated with field, like image. */
10463
+ media?: MediaItem;
10464
+ /** Settings for media item */
10465
+ mediaSettings?: MediaSettings;
10247
10466
  }
10248
10467
  declare enum PaymentComponentType {
10249
10468
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10250
10469
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
10251
- DONATION_INPUT = "DONATION_INPUT"
10470
+ DONATION_INPUT = "DONATION_INPUT",
10471
+ PAYMENT_INPUT = "PAYMENT_INPUT",
10472
+ FIXED_PAYMENT = "FIXED_PAYMENT"
10252
10473
  }
10253
10474
  /** @enumType */
10254
- type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT';
10475
+ type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
10255
10476
  interface PaymentType {
10256
10477
  /**
10257
10478
  * Field mapped to products.
@@ -10271,15 +10492,17 @@ interface PaymentType {
10271
10492
  maxItems?: number | null;
10272
10493
  }
10273
10494
  declare enum ProductType {
10495
+ /** Unknown product type. */
10274
10496
  UNKNOWN = "UNKNOWN",
10275
- /** Shippable (physical). */
10497
+ /** Shippable (physical) product. */
10276
10498
  SHIPPABLE = "SHIPPABLE",
10277
- /** Digital. */
10499
+ /** Digital product. */
10278
10500
  DIGITAL = "DIGITAL"
10279
10501
  }
10280
10502
  /** @enumType */
10281
10503
  type ProductTypeWithLiterals = ProductType | 'UNKNOWN' | 'SHIPPABLE' | 'DIGITAL';
10282
10504
  declare enum PriceType {
10505
+ /** Unknown price type. */
10283
10506
  UNKNOWN = "UNKNOWN",
10284
10507
  /** Fixed price. */
10285
10508
  FIXED_PRICE = "FIXED_PRICE",
@@ -10369,6 +10592,10 @@ interface ProductCheckboxGroup {
10369
10592
  * Default: COVER
10370
10593
  */
10371
10594
  imageFit?: ImageFitWithLiterals;
10595
+ /** Media item. Media, associated with field, like image. */
10596
+ media?: MediaItem;
10597
+ /** Settings for media item */
10598
+ mediaSettings?: MediaSettings;
10372
10599
  }
10373
10600
  interface ProductCheckboxGroupOption {
10374
10601
  /**
@@ -10389,15 +10616,6 @@ interface ProductCheckboxGroupOption {
10389
10616
  /** Flag identifying that option should be selected by default */
10390
10617
  default?: boolean;
10391
10618
  }
10392
- declare enum ImageFit {
10393
- UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
10394
- /** 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. */
10395
- COVER = "COVER",
10396
- /** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
10397
- CONTAIN = "CONTAIN"
10398
- }
10399
- /** @enumType */
10400
- type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
10401
10619
  interface DonationInput {
10402
10620
  /**
10403
10621
  * Label of the field.
@@ -10412,7 +10630,7 @@ interface DonationInput {
10412
10630
  */
10413
10631
  options?: DonationInputOption[];
10414
10632
  /** Option which can be specified by UoU, enabled when this object is specified. */
10415
- customOption?: CommonCustomOption;
10633
+ customOption?: CustomOption;
10416
10634
  /**
10417
10635
  * Specifies the number of columns used to display the selections within the component.
10418
10636
  * Default: ONE
@@ -10423,6 +10641,10 @@ interface DonationInput {
10423
10641
  * Default: true
10424
10642
  */
10425
10643
  showLabel?: boolean | null;
10644
+ /** Media item. Media, associated with field, like image. */
10645
+ media?: MediaItem;
10646
+ /** Settings for media item */
10647
+ mediaSettings?: MediaSettings;
10426
10648
  }
10427
10649
  interface DonationInputOption {
10428
10650
  /**
@@ -10433,24 +10655,55 @@ interface DonationInputOption {
10433
10655
  /** Flag identifying that option should be selected by default */
10434
10656
  default?: boolean;
10435
10657
  }
10436
- interface CommonCustomOption {
10658
+ interface PaymentInput {
10437
10659
  /**
10438
- * Label of custom option input
10660
+ * Label of the field.
10439
10661
  * @maxLength 350
10440
10662
  */
10441
10663
  label?: string | null;
10664
+ /** Description of the field. */
10665
+ description?: RichContent;
10666
+ /**
10667
+ * Flag identifying to hide or not label
10668
+ * Default: true
10669
+ */
10670
+ showLabel?: boolean | null;
10442
10671
  /**
10443
10672
  * Placeholder of custom option input
10444
10673
  * @maxLength 100
10445
10674
  */
10446
10675
  placeholder?: string | null;
10676
+ /** Default value for the payment input */
10677
+ default?: number | null;
10678
+ /** Media item. Media, associated with field, like image. */
10679
+ media?: MediaItem;
10680
+ /** Settings for media item */
10681
+ mediaSettings?: MediaSettings;
10447
10682
  }
10448
- declare enum MultilineAddressComponentType {
10683
+ interface FixedPayment {
10684
+ /**
10685
+ * Label of the field.
10686
+ * @maxLength 350
10687
+ */
10688
+ label?: string | null;
10689
+ /** Description of the field. */
10690
+ description?: RichContent;
10691
+ /**
10692
+ * Flag identifying to hide or not label
10693
+ * Default: true
10694
+ */
10695
+ showLabel?: boolean | null;
10696
+ /** Media item. Media, associated with field, like image. */
10697
+ media?: MediaItem;
10698
+ /** Settings for media item */
10699
+ mediaSettings?: MediaSettings;
10700
+ }
10701
+ declare enum AddressComponentType {
10449
10702
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10450
10703
  MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
10451
10704
  }
10452
10705
  /** @enumType */
10453
- type MultilineAddressComponentTypeWithLiterals = MultilineAddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
10706
+ type AddressComponentTypeWithLiterals = AddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
10454
10707
  interface MultilineAddressValidation {
10455
10708
  /**
10456
10709
  * Allowed countries. No countries treated as all.
@@ -10483,7 +10736,7 @@ interface FieldsOverrides {
10483
10736
  /** Country. */
10484
10737
  country?: FieldOverrides;
10485
10738
  }
10486
- interface ComponentsMultilineAddress {
10739
+ interface MultilineAddress {
10487
10740
  /**
10488
10741
  * Label of the field.
10489
10742
  * @maxLength 350
@@ -10535,6 +10788,118 @@ interface FieldsSettings {
10535
10788
  /** Address line 2. */
10536
10789
  addressLine2?: AddressLine2;
10537
10790
  }
10791
+ declare enum SchedulingComponentType {
10792
+ UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10793
+ APPOINTMENT = "APPOINTMENT"
10794
+ }
10795
+ /** @enumType */
10796
+ type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
10797
+ interface Appointment extends AppointmentFormatInfoOneOf {
10798
+ /** In person options for the appointment */
10799
+ inPersonOptions?: InPersonOptions;
10800
+ /** Online video conference options for the appointment */
10801
+ videoConferenceOptions?: VideoConferenceOptions;
10802
+ /** Phone options for the appointment */
10803
+ phoneOptions?: PhoneOptions;
10804
+ /**
10805
+ * Label of the field
10806
+ * @maxLength 255
10807
+ */
10808
+ label?: string | null;
10809
+ /**
10810
+ * Name of the appointment
10811
+ * @minLength 1
10812
+ * @maxLength 400
10813
+ */
10814
+ name?: string | null;
10815
+ /**
10816
+ * Duration of the appointment in minutes
10817
+ * @min 1
10818
+ * @max 44639
10819
+ */
10820
+ durationInMinutes?: number | null;
10821
+ /** Indicates whether manual approval is required for the appointment */
10822
+ manualApprovalRequired?: boolean | null;
10823
+ /**
10824
+ * ID of the staff members providing the appointment
10825
+ * @maxSize 220
10826
+ * @format GUID
10827
+ */
10828
+ staffIds?: string[] | null;
10829
+ /** The format of the appointment */
10830
+ format?: AppointmentFormatWithLiterals;
10831
+ /** Description of the field */
10832
+ description?: RichContent;
10833
+ /**
10834
+ * Flag identifying to hide or not label
10835
+ * Default: true
10836
+ */
10837
+ showLabel?: boolean | null;
10838
+ }
10839
+ /** @oneof */
10840
+ interface AppointmentFormatInfoOneOf {
10841
+ /** In person options for the appointment */
10842
+ inPersonOptions?: InPersonOptions;
10843
+ /** Online video conference options for the appointment */
10844
+ videoConferenceOptions?: VideoConferenceOptions;
10845
+ /** Phone options for the appointment */
10846
+ phoneOptions?: PhoneOptions;
10847
+ }
10848
+ interface Location extends LocationLocationInfoOneOf {
10849
+ /**
10850
+ * Custom address details
10851
+ * @maxLength 512
10852
+ */
10853
+ customAddress?: string | null;
10854
+ /**
10855
+ * ID of a business location
10856
+ * @format GUID
10857
+ */
10858
+ businessLocationId?: string | null;
10859
+ }
10860
+ /** @oneof */
10861
+ interface LocationLocationInfoOneOf {
10862
+ /**
10863
+ * Custom address details
10864
+ * @maxLength 512
10865
+ */
10866
+ customAddress?: string | null;
10867
+ /**
10868
+ * ID of a business location
10869
+ * @format GUID
10870
+ */
10871
+ businessLocationId?: string | null;
10872
+ }
10873
+ declare enum AppointmentFormat {
10874
+ UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
10875
+ IN_PERSON = "IN_PERSON",
10876
+ VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
10877
+ PHONE = "PHONE"
10878
+ }
10879
+ /** @enumType */
10880
+ type AppointmentFormatWithLiterals = AppointmentFormat | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
10881
+ interface InPersonOptions {
10882
+ /**
10883
+ * The locations details
10884
+ * @minSize 1
10885
+ * @maxSize 1
10886
+ */
10887
+ locations?: Location[];
10888
+ }
10889
+ interface VideoConferenceOptions {
10890
+ /**
10891
+ * Description or instructions for the online video conference
10892
+ * @maxLength 512
10893
+ */
10894
+ description?: string | null;
10895
+ }
10896
+ interface PhoneOptions {
10897
+ /**
10898
+ * Description or instructions for the phone appointment
10899
+ * @maxLength 512
10900
+ */
10901
+ description?: string | null;
10902
+ }
10538
10903
  declare enum InputType {
10539
10904
  UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
10540
10905
  STRING = "STRING",
@@ -10544,10 +10909,11 @@ declare enum InputType {
10544
10909
  OBJECT = "OBJECT",
10545
10910
  WIX_FILE = "WIX_FILE",
10546
10911
  PAYMENT = "PAYMENT",
10547
- MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
10912
+ SCHEDULING = "SCHEDULING",
10913
+ ADDRESS = "ADDRESS"
10548
10914
  }
10549
10915
  /** @enumType */
10550
- type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS';
10916
+ type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'SCHEDULING' | 'ADDRESS';
10551
10917
  interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
10552
10918
  /** Email info. */
10553
10919
  emailInfo?: EmailInfo;
@@ -10660,6 +11026,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
10660
11026
  timeInputOptions?: TimeInput;
10661
11027
  /** Calendar type component for selecting date */
10662
11028
  datePickerOptions?: DatePicker;
11029
+ /** Dropdown for selecting services */
11030
+ servicesDropdownOptions?: ServicesDropdown;
10663
11031
  /** Validation of field output value. */
10664
11032
  validation?: StringType;
10665
11033
  /**
@@ -10686,6 +11054,8 @@ interface _StringComponentTypeOptionsOneOf {
10686
11054
  timeInputOptions?: TimeInput;
10687
11055
  /** Calendar type component for selecting date */
10688
11056
  datePickerOptions?: DatePicker;
11057
+ /** Dropdown for selecting services */
11058
+ servicesDropdownOptions?: ServicesDropdown;
10689
11059
  }
10690
11060
  interface InputField_Number extends InputField_NumberComponentTypeOptionsOneOf {
10691
11061
  /** Number value input field */
@@ -10726,6 +11096,8 @@ interface _BooleanComponentTypeOptionsOneOf {
10726
11096
  interface _Array extends _ArrayComponentTypeOptionsOneOf {
10727
11097
  /** Checkbox group input field */
10728
11098
  checkboxGroupOptions?: CheckboxGroup;
11099
+ /** Tags input field */
11100
+ tagsOptions?: Tags;
10729
11101
  /** Validation of array type. */
10730
11102
  validation?: ArrayType;
10731
11103
  /**
@@ -10738,6 +11110,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
10738
11110
  interface _ArrayComponentTypeOptionsOneOf {
10739
11111
  /** Checkbox group input field */
10740
11112
  checkboxGroupOptions?: CheckboxGroup;
11113
+ /** Tags input field */
11114
+ tagsOptions?: Tags;
10741
11115
  }
10742
11116
  interface _Object {
10743
11117
  /** Validation of object type. */
@@ -10753,6 +11127,8 @@ interface WixFile extends WixFileComponentTypeOptionsOneOf {
10753
11127
  * @readonly
10754
11128
  */
10755
11129
  componentType?: WixFileComponentTypeWithLiterals;
11130
+ /** Validation of field type. */
11131
+ validation?: FileType;
10756
11132
  }
10757
11133
  /** @oneof */
10758
11134
  interface WixFileComponentTypeOptionsOneOf {
@@ -10766,6 +11142,10 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
10766
11142
  checkboxGroupOptions?: ProductCheckboxGroup;
10767
11143
  /** Donation input field. */
10768
11144
  donationInputOptions?: DonationInput;
11145
+ /** Payment input field. */
11146
+ paymentInputOptions?: PaymentInput;
11147
+ /** Fixed payment field. */
11148
+ fixedPaymentOptions?: FixedPayment;
10769
11149
  /**
10770
11150
  * Component type of the payment input field.
10771
11151
  * @readonly
@@ -10780,28 +11160,47 @@ interface PaymentComponentTypeOptionsOneOf {
10780
11160
  checkboxGroupOptions?: ProductCheckboxGroup;
10781
11161
  /** Donation input field. */
10782
11162
  donationInputOptions?: DonationInput;
11163
+ /** Payment input field. */
11164
+ paymentInputOptions?: PaymentInput;
11165
+ /** Fixed payment field. */
11166
+ fixedPaymentOptions?: FixedPayment;
10783
11167
  }
10784
- interface MultilineAddress extends MultilineAddressComponentTypeOptionsOneOf {
11168
+ interface Address extends AddressComponentTypeOptionsOneOf {
10785
11169
  /** Multiline address input field. */
10786
- multilineAddressOptions?: ComponentsMultilineAddress;
11170
+ multilineAddressOptions?: MultilineAddress;
10787
11171
  /**
10788
11172
  * Component type of the multiline address field.
10789
11173
  * @readonly
10790
11174
  */
10791
- componentType?: MultilineAddressComponentTypeWithLiterals;
11175
+ componentType?: AddressComponentTypeWithLiterals;
10792
11176
  /** Validation of multiline address field output value. */
10793
11177
  validation?: MultilineAddressValidation;
10794
11178
  }
10795
11179
  /** @oneof */
10796
- interface MultilineAddressComponentTypeOptionsOneOf {
11180
+ interface AddressComponentTypeOptionsOneOf {
10797
11181
  /** Multiline address input field. */
10798
- multilineAddressOptions?: ComponentsMultilineAddress;
11182
+ multilineAddressOptions?: MultilineAddress;
11183
+ }
11184
+ interface Scheduling extends SchedulingComponentTypeOptionsOneOf {
11185
+ /** Appointment input field */
11186
+ appointmentOptions?: Appointment;
11187
+ /**
11188
+ * Component type of the scheduling input field
11189
+ * @readonly
11190
+ */
11191
+ componentType?: SchedulingComponentTypeWithLiterals;
11192
+ }
11193
+ /** @oneof */
11194
+ interface SchedulingComponentTypeOptionsOneOf {
11195
+ /** Appointment input field */
11196
+ appointmentOptions?: Appointment;
10799
11197
  }
10800
11198
  interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
10801
11199
  /** Component displaying rich content */
10802
11200
  richContentOptions?: RichContentOptions;
10803
11201
  /** Page navigation component resolving as navigation or submit buttons */
10804
11202
  pageNavigationOptions?: PageNavigationOptions;
11203
+ /** Type of the display field */
10805
11204
  displayFieldType?: DisplayFieldTypeWithLiterals;
10806
11205
  }
10807
11206
  /** @oneof */
@@ -10887,12 +11286,14 @@ interface BreakPoint {
10887
11286
  */
10888
11287
  sections?: BreakPointSection[];
10889
11288
  }
10890
- interface ItemLayout {
11289
+ interface ItemLayout extends ItemLayoutItemOneOf {
10891
11290
  /**
10892
11291
  * Form field reference id.
10893
11292
  * @format GUID
10894
11293
  */
10895
11294
  fieldId?: string;
11295
+ /** Group info, defining that this item is a group of multiple fields */
11296
+ group?: Group;
10896
11297
  /** Horizontal coordinate in the grid. */
10897
11298
  row?: number | null;
10898
11299
  /** Vertical coordinate in the grid. */
@@ -10902,6 +11303,29 @@ interface ItemLayout {
10902
11303
  /** Width. */
10903
11304
  height?: number | null;
10904
11305
  }
11306
+ /** @oneof */
11307
+ interface ItemLayoutItemOneOf {
11308
+ /**
11309
+ * Form field reference id.
11310
+ * @format GUID
11311
+ */
11312
+ fieldId?: string;
11313
+ /** Group info, defining that this item is a group of multiple fields */
11314
+ group?: Group;
11315
+ }
11316
+ interface Group {
11317
+ /**
11318
+ * Field group reference id.
11319
+ * @format GUID
11320
+ */
11321
+ groupId?: string;
11322
+ /**
11323
+ * Description of layouts for items.
11324
+ * @minSize 1
11325
+ * @maxSize 500
11326
+ */
11327
+ items?: ItemLayout[];
11328
+ }
10905
11329
  interface Margin {
10906
11330
  /** Horizontal value. */
10907
11331
  horizontal?: number | null;
@@ -11117,6 +11541,7 @@ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
11117
11541
  redirectOptions?: RedirectOptions;
11118
11542
  }
11119
11543
  declare enum Target {
11544
+ /** Unknown target. */
11120
11545
  UNKNOWN_TARGET = "UNKNOWN_TARGET",
11121
11546
  /** Open in the same browser tab. */
11122
11547
  SELF = "SELF",
@@ -11126,6 +11551,7 @@ declare enum Target {
11126
11551
  /** @enumType */
11127
11552
  type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
11128
11553
  declare enum SubmitSuccessAction {
11554
+ /** Unknown submit success action. */
11129
11555
  UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
11130
11556
  /** No action will be taken after submission. */
11131
11557
  NO_ACTION = "NO_ACTION",
@@ -16662,4 +17088,4 @@ interface ListDataExtensionSchemasOptions {
16662
17088
  */
16663
17089
  declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>>;
16664
17090
 
16665
- 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 };
17091
+ 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 };