@wix/auto_sdk_data-extension-schema_schemas 1.0.65 → 1.0.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6342,7 +6342,7 @@ declare enum CardStylesType {
6342
6342
  }
6343
6343
  /** @enumType */
6344
6344
  type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
6345
- declare enum Alignment {
6345
+ declare enum CardStylesAlignment {
6346
6346
  /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
6347
6347
  START = "START",
6348
6348
  /** Content centered */
@@ -6351,7 +6351,7 @@ declare enum Alignment {
6351
6351
  END = "END"
6352
6352
  }
6353
6353
  /** @enumType */
6354
- type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
6354
+ type CardStylesAlignmentWithLiterals = CardStylesAlignment | 'START' | 'CENTER' | 'END';
6355
6355
  declare enum Layout {
6356
6356
  /** Elements stacked vertically */
6357
6357
  STACKED = "STACKED",
@@ -6479,7 +6479,7 @@ interface CardStyles {
6479
6479
  /** Card type. Defaults to `CONTAINED`. */
6480
6480
  type?: CardStylesTypeWithLiterals;
6481
6481
  /** Content alignment. Defaults to `START`. */
6482
- alignment?: AlignmentWithLiterals;
6482
+ alignment?: CardStylesAlignmentWithLiterals;
6483
6483
  /** Layout for title and price. Defaults to `STACKED`. */
6484
6484
  titlePriceLayout?: LayoutWithLiterals;
6485
6485
  /**
@@ -9414,7 +9414,11 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
9414
9414
  /** Input returns selected products as value. */
9415
9415
  paymentOptions?: Payment;
9416
9416
  /** Input returns multiline address as value. */
9417
- multilineAddressOptions?: MultilineAddress;
9417
+ multilineAddressOptions?: Address;
9418
+ /** Input returns scheduling as value. */
9419
+ schedulingOptions?: Scheduling;
9420
+ /** Input returns multiline address as value. */
9421
+ addressOptions?: Address;
9418
9422
  /**
9419
9423
  * Definition of a target where the value of field belongs.
9420
9424
  * @minLength 1
@@ -9462,7 +9466,11 @@ interface InputFieldInputTypeOptionsOneOf {
9462
9466
  /** Input returns selected products as value. */
9463
9467
  paymentOptions?: Payment;
9464
9468
  /** Input returns multiline address as value. */
9465
- multilineAddressOptions?: MultilineAddress;
9469
+ multilineAddressOptions?: Address;
9470
+ /** Input returns scheduling as value. */
9471
+ schedulingOptions?: Scheduling;
9472
+ /** Input returns multiline address as value. */
9473
+ addressOptions?: Address;
9466
9474
  }
9467
9475
  interface StringType extends StringTypeFormatOptionsOneOf {
9468
9476
  /** DATE format options */
@@ -9565,10 +9573,11 @@ declare enum StringComponentType {
9565
9573
  PHONE_INPUT = "PHONE_INPUT",
9566
9574
  DATE_INPUT = "DATE_INPUT",
9567
9575
  TIME_INPUT = "TIME_INPUT",
9568
- DATE_PICKER = "DATE_PICKER"
9576
+ DATE_PICKER = "DATE_PICKER",
9577
+ SERVICES_DROPDOWN = "SERVICES_DROPDOWN"
9569
9578
  }
9570
9579
  /** @enumType */
9571
- type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER';
9580
+ type StringComponentTypeWithLiterals = StringComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'TEXT_INPUT' | 'RADIO_GROUP' | 'DROPDOWN' | 'DATE_TIME' | 'PHONE_INPUT' | 'DATE_INPUT' | 'TIME_INPUT' | 'DATE_PICKER' | 'SERVICES_DROPDOWN';
9572
9581
  interface TextInput {
9573
9582
  /**
9574
9583
  * Label of the field
@@ -9592,7 +9601,101 @@ interface TextInput {
9592
9601
  * @maxLength 20000
9593
9602
  */
9594
9603
  default?: string | null;
9604
+ /** Media item. Media, associated with field, like image. */
9605
+ media?: MediaItem;
9606
+ /** Settings for media item */
9607
+ mediaSettings?: MediaSettings;
9595
9608
  }
9609
+ interface MediaItem extends MediaItemMediaOneOf {
9610
+ /** WixMedia image. */
9611
+ image?: CommonImage;
9612
+ }
9613
+ /** @oneof */
9614
+ interface MediaItemMediaOneOf {
9615
+ /** WixMedia image. */
9616
+ image?: CommonImage;
9617
+ }
9618
+ interface CommonImage {
9619
+ /**
9620
+ * WixMedia image ID.
9621
+ * @maxLength 100
9622
+ */
9623
+ _id?: string;
9624
+ /**
9625
+ * Image URL.
9626
+ * @maxLength 2000
9627
+ */
9628
+ url?: string;
9629
+ /**
9630
+ * Original image height.
9631
+ * @readonly
9632
+ */
9633
+ height?: number;
9634
+ /**
9635
+ * Original image width.
9636
+ * @readonly
9637
+ */
9638
+ width?: number;
9639
+ /**
9640
+ * Image alt text.
9641
+ * @maxLength 1000
9642
+ */
9643
+ altText?: string | null;
9644
+ /**
9645
+ * Image filename.
9646
+ * @readonly
9647
+ * @maxLength 1000
9648
+ */
9649
+ filename?: string | null;
9650
+ }
9651
+ interface MediaSettings {
9652
+ /**
9653
+ * Specifies where image should be displayed.
9654
+ * Default: BELOW
9655
+ */
9656
+ imagePosition?: ImagePositionWithLiterals;
9657
+ /**
9658
+ * Specifies image alignment.
9659
+ * Default: CENTER
9660
+ */
9661
+ imageAlignment?: AlignmentWithLiterals;
9662
+ /**
9663
+ * Defines how an image should be resized to fit.
9664
+ * Default: COVER
9665
+ */
9666
+ imageFit?: ImageFitWithLiterals;
9667
+ }
9668
+ declare enum ImagePosition {
9669
+ /** Undefined position. */
9670
+ UNKNOWN_IMAGE_POSITION = "UNKNOWN_IMAGE_POSITION",
9671
+ /** Above label. */
9672
+ ABOVE = "ABOVE",
9673
+ /** Below label. */
9674
+ BELOW = "BELOW"
9675
+ }
9676
+ /** @enumType */
9677
+ type ImagePositionWithLiterals = ImagePosition | 'UNKNOWN_IMAGE_POSITION' | 'ABOVE' | 'BELOW';
9678
+ declare enum Alignment {
9679
+ /** Undefined alignment. */
9680
+ UNKNOWN_ALIGNMENT = "UNKNOWN_ALIGNMENT",
9681
+ /** Left. */
9682
+ LEFT = "LEFT",
9683
+ /** Center. */
9684
+ CENTER = "CENTER",
9685
+ /** Right. */
9686
+ RIGHT = "RIGHT"
9687
+ }
9688
+ /** @enumType */
9689
+ type AlignmentWithLiterals = Alignment | 'UNKNOWN_ALIGNMENT' | 'LEFT' | 'CENTER' | 'RIGHT';
9690
+ declare enum ImageFit {
9691
+ UNKNOWN_IMAGE_FIT = "UNKNOWN_IMAGE_FIT",
9692
+ /** 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. */
9693
+ COVER = "COVER",
9694
+ /** Image is resized to fill the element's content box. Aspect ratio may not be preserved. */
9695
+ CONTAIN = "CONTAIN"
9696
+ }
9697
+ /** @enumType */
9698
+ type ImageFitWithLiterals = ImageFit | 'UNKNOWN_IMAGE_FIT' | 'COVER' | 'CONTAIN';
9596
9699
  interface RadioGroup {
9597
9700
  /**
9598
9701
  * Label of the field
@@ -9613,12 +9716,16 @@ interface RadioGroup {
9613
9716
  */
9614
9717
  showLabel?: boolean | null;
9615
9718
  /** Option which can be specified by UoU, enabled when this object is specified. */
9616
- customOption?: RadioGroupCustomOption;
9719
+ customOption?: CustomOption;
9617
9720
  /**
9618
9721
  * Specifies the number of columns used to display the selections within the component.
9619
9722
  * Default: ONE
9620
9723
  */
9621
9724
  numberOfColumns?: NumberOfColumnsWithLiterals;
9725
+ /** Media item. Media, associated with field, like image. */
9726
+ media?: MediaItem;
9727
+ /** Settings for media item */
9728
+ mediaSettings?: MediaSettings;
9622
9729
  }
9623
9730
  interface RadioGroupOption {
9624
9731
  /**
@@ -9640,7 +9747,7 @@ interface RadioGroupOption {
9640
9747
  */
9641
9748
  _id?: string;
9642
9749
  }
9643
- interface RadioGroupCustomOption {
9750
+ interface CustomOption {
9644
9751
  /**
9645
9752
  * Label of custom option input
9646
9753
  * @maxLength 350
@@ -9685,12 +9792,16 @@ interface Dropdown {
9685
9792
  */
9686
9793
  showLabel?: boolean | null;
9687
9794
  /** Option which can be specified by UoU, enabled when this object is specified. */
9688
- customOption?: DropdownCustomOption;
9795
+ customOption?: CustomOption;
9689
9796
  /**
9690
9797
  * Placeholder of dropdown input
9691
9798
  * @maxLength 100
9692
9799
  */
9693
9800
  placeholder?: string | null;
9801
+ /** Media item. Media, associated with field, like image. */
9802
+ media?: MediaItem;
9803
+ /** Settings for media item */
9804
+ mediaSettings?: MediaSettings;
9694
9805
  }
9695
9806
  interface DropdownOption {
9696
9807
  /**
@@ -9712,18 +9823,6 @@ interface DropdownOption {
9712
9823
  */
9713
9824
  _id?: string;
9714
9825
  }
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
9826
  interface DateTimeInput {
9728
9827
  /**
9729
9828
  * Label of the field. Displayed text for the date/time input.
@@ -9752,6 +9851,10 @@ interface DateTimeInput {
9752
9851
  * @format LOCAL_DATE_TIME
9753
9852
  */
9754
9853
  default?: string | null;
9854
+ /** Media item. Media, associated with field, like image. */
9855
+ media?: MediaItem;
9856
+ /** Settings for media item */
9857
+ mediaSettings?: MediaSettings;
9755
9858
  }
9756
9859
  interface PhoneInput {
9757
9860
  /**
@@ -9782,6 +9885,10 @@ interface PhoneInput {
9782
9885
  * Default: false
9783
9886
  */
9784
9887
  showCountryFlag?: boolean;
9888
+ /** Media item. Media, associated with field, like image. */
9889
+ media?: MediaItem;
9890
+ /** Settings for media item */
9891
+ mediaSettings?: MediaSettings;
9785
9892
  }
9786
9893
  interface DateInput {
9787
9894
  /**
@@ -9806,6 +9913,10 @@ interface DateInput {
9806
9913
  * @format LOCAL_DATE
9807
9914
  */
9808
9915
  default?: string | null;
9916
+ /** Media item. Media, associated with field, like image. */
9917
+ media?: MediaItem;
9918
+ /** Settings for media item */
9919
+ mediaSettings?: MediaSettings;
9809
9920
  }
9810
9921
  interface TimeInput {
9811
9922
  /**
@@ -9835,6 +9946,10 @@ interface TimeInput {
9835
9946
  * @format LOCAL_TIME
9836
9947
  */
9837
9948
  default?: string | null;
9949
+ /** Media item. Media, associated with field, like image. */
9950
+ media?: MediaItem;
9951
+ /** Settings for media item */
9952
+ mediaSettings?: MediaSettings;
9838
9953
  }
9839
9954
  interface DatePicker {
9840
9955
  /**
@@ -9861,6 +9976,10 @@ interface DatePicker {
9861
9976
  * @format LOCAL_DATE
9862
9977
  */
9863
9978
  default?: string | null;
9979
+ /** Media item. Media, associated with field, like image. */
9980
+ media?: MediaItem;
9981
+ /** Settings for media item */
9982
+ mediaSettings?: MediaSettings;
9864
9983
  }
9865
9984
  declare enum FirstDayOfWeek {
9866
9985
  /** First day of the week is Monday. */
@@ -9870,6 +9989,49 @@ declare enum FirstDayOfWeek {
9870
9989
  }
9871
9990
  /** @enumType */
9872
9991
  type FirstDayOfWeekWithLiterals = FirstDayOfWeek | 'MONDAY' | 'SUNDAY';
9992
+ interface ServicesDropdown {
9993
+ /**
9994
+ * Label of the field
9995
+ * @maxLength 350
9996
+ */
9997
+ label?: string | null;
9998
+ /**
9999
+ * Flag identifying to hide or not label
10000
+ * Default: true
10001
+ */
10002
+ showLabel?: boolean | null;
10003
+ /**
10004
+ * Placeholder of services dropdown input
10005
+ * @maxLength 100
10006
+ */
10007
+ placeholder?: string | null;
10008
+ /**
10009
+ * List of service options to select from
10010
+ * @maxSize 400
10011
+ */
10012
+ options?: ServicesDropdownOption[];
10013
+ /** Option which can be specified by UoU, enabled when this object is specified. */
10014
+ customOption?: CustomOption;
10015
+ }
10016
+ interface ServicesDropdownOption {
10017
+ /**
10018
+ * Service name/label
10019
+ * @maxLength 400
10020
+ */
10021
+ label?: string | null;
10022
+ /**
10023
+ * Option id. Used as binding for translations. Corresponds to the Service ID.
10024
+ * @format GUID
10025
+ * @immutable
10026
+ */
10027
+ _id?: string;
10028
+ /**
10029
+ * Selectable option value, which is saved to DB. Corresponds to the Service ID.
10030
+ * @format GUID
10031
+ * @immutable
10032
+ */
10033
+ value?: string | null;
10034
+ }
9873
10035
  interface NumberType {
9874
10036
  /** Inclusive maximum value. */
9875
10037
  maximum?: number | null;
@@ -9910,6 +10072,10 @@ interface NumberInput {
9910
10072
  showLabel?: boolean | null;
9911
10073
  /** Default value for the number input */
9912
10074
  default?: number | null;
10075
+ /** Media item. Media, associated with field, like image. */
10076
+ media?: MediaItem;
10077
+ /** Settings for media item */
10078
+ mediaSettings?: MediaSettings;
9913
10079
  }
9914
10080
  interface RatingInput {
9915
10081
  /**
@@ -9930,6 +10096,10 @@ interface RatingInput {
9930
10096
  * Default: true
9931
10097
  */
9932
10098
  showLabel?: boolean | null;
10099
+ /** Media item. Media, associated with field, like image. */
10100
+ media?: MediaItem;
10101
+ /** Settings for media item */
10102
+ mediaSettings?: MediaSettings;
9933
10103
  }
9934
10104
  interface BooleanType {
9935
10105
  /**
@@ -10068,10 +10238,11 @@ interface ArrayTypeArrayItemsItemTypeOptionsOneOf {
10068
10238
  }
10069
10239
  declare enum ArrayComponentType {
10070
10240
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10071
- CHECKBOX_GROUP = "CHECKBOX_GROUP"
10241
+ CHECKBOX_GROUP = "CHECKBOX_GROUP",
10242
+ TAGS = "TAGS"
10072
10243
  }
10073
10244
  /** @enumType */
10074
- type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP';
10245
+ type ArrayComponentTypeWithLiterals = ArrayComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'TAGS';
10075
10246
  interface CheckboxGroup {
10076
10247
  /**
10077
10248
  * Label of the field
@@ -10097,50 +10268,61 @@ interface CheckboxGroup {
10097
10268
  * Default: ONE
10098
10269
  */
10099
10270
  numberOfColumns?: NumberOfColumnsWithLiterals;
10271
+ /** Media item. Media, associated with field, like image. */
10272
+ media?: MediaItem;
10273
+ /** Settings for media item */
10274
+ mediaSettings?: MediaSettings;
10100
10275
  }
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 {
10276
+ interface CheckboxGroupOption {
10111
10277
  /**
10112
- * WixMedia image ID.
10113
- * @maxLength 100
10278
+ * Selectable option label
10279
+ * @maxLength 400
10114
10280
  */
10115
- _id?: string;
10281
+ label?: string | null;
10282
+ /** Selectable option value, which is saved to DB. */
10283
+ value?: any;
10284
+ /** Flag identifying that option should be selected by default */
10285
+ default?: boolean;
10116
10286
  /**
10117
- * Image URL.
10118
- * @maxLength 2000
10287
+ * Option id. Used as binding for translations
10288
+ * @format GUID
10289
+ * @immutable
10119
10290
  */
10120
- url?: string;
10291
+ _id?: string;
10292
+ /** Media item. Media, associated with option, like image. */
10293
+ media?: MediaItem;
10294
+ }
10295
+ interface Tags {
10121
10296
  /**
10122
- * Original image height.
10123
- * @readonly
10297
+ * Label of the field
10298
+ * @maxLength 350
10124
10299
  */
10125
- height?: number;
10300
+ label?: string | null;
10301
+ /** Description of the field */
10302
+ description?: RichContent;
10126
10303
  /**
10127
- * Original image width.
10128
- * @readonly
10304
+ * List of options to select from
10305
+ * @maxSize 400
10129
10306
  */
10130
- width?: number;
10307
+ options?: TagsOption[];
10131
10308
  /**
10132
- * Image alt text.
10133
- * @maxLength 1000
10309
+ * Flag identifying to hide or not label
10310
+ * Default: true
10134
10311
  */
10135
- altText?: string | null;
10312
+ showLabel?: boolean | null;
10313
+ /** Option which can be specified by UoU, enabled when this object is specified. */
10314
+ customOption?: CustomOption;
10136
10315
  /**
10137
- * Image filename.
10138
- * @readonly
10139
- * @maxLength 1000
10316
+ * Specifies the number of columns used to display the selections within the component.
10317
+ * Default: ONE
10140
10318
  */
10141
- filename?: string | null;
10319
+ numberOfColumns?: NumberOfColumnsWithLiterals;
10320
+ /** Media item. Media, associated with field, like image. */
10321
+ media?: MediaItem;
10322
+ /** Settings for media item */
10323
+ mediaSettings?: MediaSettings;
10142
10324
  }
10143
- interface CheckboxGroupOption {
10325
+ interface TagsOption {
10144
10326
  /**
10145
10327
  * Selectable option label
10146
10328
  * @maxLength 400
@@ -10159,18 +10341,6 @@ interface CheckboxGroupOption {
10159
10341
  /** Media item. Media, associated with option, like image. */
10160
10342
  media?: MediaItem;
10161
10343
  }
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
10344
  declare enum WixFileComponentType {
10175
10345
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10176
10346
  FILE_UPLOAD = "FILE_UPLOAD",
@@ -10178,6 +10348,35 @@ declare enum WixFileComponentType {
10178
10348
  }
10179
10349
  /** @enumType */
10180
10350
  type WixFileComponentTypeWithLiterals = WixFileComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'FILE_UPLOAD' | 'SIGNATURE';
10351
+ interface FileType {
10352
+ /**
10353
+ * Amount of files allowed to upload
10354
+ * @min 1
10355
+ * @max 30
10356
+ */
10357
+ fileLimit?: number;
10358
+ /**
10359
+ * Supported file formats for upload
10360
+ * @maxSize 5
10361
+ */
10362
+ uploadFileFormats?: UploadFileFormatWithLiterals[];
10363
+ }
10364
+ declare enum UploadFileFormat {
10365
+ /** Undefined upload file format. */
10366
+ UNKNOWN_UPLOAD_FILE_FORMAT = "UNKNOWN_UPLOAD_FILE_FORMAT",
10367
+ /** Video files. */
10368
+ VIDEO = "VIDEO",
10369
+ /** Image files. */
10370
+ IMAGE = "IMAGE",
10371
+ /** Audio files. */
10372
+ AUDIO = "AUDIO",
10373
+ /** Document files. */
10374
+ DOCUMENT = "DOCUMENT",
10375
+ /** Archive files. */
10376
+ ARCHIVE = "ARCHIVE"
10377
+ }
10378
+ /** @enumType */
10379
+ type UploadFileFormatWithLiterals = UploadFileFormat | 'UNKNOWN_UPLOAD_FILE_FORMAT' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10181
10380
  interface FileUpload {
10182
10381
  /**
10183
10382
  * Selectable option label
@@ -10206,14 +10405,18 @@ interface FileUpload {
10206
10405
  * Supported file formats for upload
10207
10406
  * @maxSize 5
10208
10407
  */
10209
- uploadFileFormats?: UploadFileFormatWithLiterals[];
10408
+ uploadFileFormats?: UploadFileFormatEnumUploadFileFormatWithLiterals[];
10210
10409
  /**
10211
10410
  * Custom text which appears when file is uploaded, if missing file name will be shown
10212
10411
  * @maxLength 255
10213
10412
  */
10214
10413
  explanationText?: string | null;
10414
+ /** Media item. Media, associated with field, like image. */
10415
+ media?: MediaItem;
10416
+ /** Settings for media item */
10417
+ mediaSettings?: MediaSettings;
10215
10418
  }
10216
- declare enum UploadFileFormat {
10419
+ declare enum UploadFileFormatEnumUploadFileFormat {
10217
10420
  /** Undefined upload file format. */
10218
10421
  UNDEFINED = "UNDEFINED",
10219
10422
  /** Video files. */
@@ -10228,7 +10431,7 @@ declare enum UploadFileFormat {
10228
10431
  ARCHIVE = "ARCHIVE"
10229
10432
  }
10230
10433
  /** @enumType */
10231
- type UploadFileFormatWithLiterals = UploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10434
+ type UploadFileFormatEnumUploadFileFormatWithLiterals = UploadFileFormatEnumUploadFileFormat | 'UNDEFINED' | 'VIDEO' | 'IMAGE' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
10232
10435
  interface Signature {
10233
10436
  /**
10234
10437
  * Selectable option label
@@ -10244,14 +10447,20 @@ interface Signature {
10244
10447
  description?: RichContent;
10245
10448
  /** Is image upload enabled */
10246
10449
  imageUploadEnabled?: boolean;
10450
+ /** Media item. Media, associated with field, like image. */
10451
+ media?: MediaItem;
10452
+ /** Settings for media item */
10453
+ mediaSettings?: MediaSettings;
10247
10454
  }
10248
10455
  declare enum PaymentComponentType {
10249
10456
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10250
10457
  CHECKBOX_GROUP = "CHECKBOX_GROUP",
10251
- DONATION_INPUT = "DONATION_INPUT"
10458
+ DONATION_INPUT = "DONATION_INPUT",
10459
+ PAYMENT_INPUT = "PAYMENT_INPUT",
10460
+ FIXED_PAYMENT = "FIXED_PAYMENT"
10252
10461
  }
10253
10462
  /** @enumType */
10254
- type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT';
10463
+ type PaymentComponentTypeWithLiterals = PaymentComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'CHECKBOX_GROUP' | 'DONATION_INPUT' | 'PAYMENT_INPUT' | 'FIXED_PAYMENT';
10255
10464
  interface PaymentType {
10256
10465
  /**
10257
10466
  * Field mapped to products.
@@ -10271,15 +10480,17 @@ interface PaymentType {
10271
10480
  maxItems?: number | null;
10272
10481
  }
10273
10482
  declare enum ProductType {
10483
+ /** Unknown product type. */
10274
10484
  UNKNOWN = "UNKNOWN",
10275
- /** Shippable (physical). */
10485
+ /** Shippable (physical) product. */
10276
10486
  SHIPPABLE = "SHIPPABLE",
10277
- /** Digital. */
10487
+ /** Digital product. */
10278
10488
  DIGITAL = "DIGITAL"
10279
10489
  }
10280
10490
  /** @enumType */
10281
10491
  type ProductTypeWithLiterals = ProductType | 'UNKNOWN' | 'SHIPPABLE' | 'DIGITAL';
10282
10492
  declare enum PriceType {
10493
+ /** Unknown price type. */
10283
10494
  UNKNOWN = "UNKNOWN",
10284
10495
  /** Fixed price. */
10285
10496
  FIXED_PRICE = "FIXED_PRICE",
@@ -10369,6 +10580,10 @@ interface ProductCheckboxGroup {
10369
10580
  * Default: COVER
10370
10581
  */
10371
10582
  imageFit?: ImageFitWithLiterals;
10583
+ /** Media item. Media, associated with field, like image. */
10584
+ media?: MediaItem;
10585
+ /** Settings for media item */
10586
+ mediaSettings?: MediaSettings;
10372
10587
  }
10373
10588
  interface ProductCheckboxGroupOption {
10374
10589
  /**
@@ -10389,15 +10604,6 @@ interface ProductCheckboxGroupOption {
10389
10604
  /** Flag identifying that option should be selected by default */
10390
10605
  default?: boolean;
10391
10606
  }
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
10607
  interface DonationInput {
10402
10608
  /**
10403
10609
  * Label of the field.
@@ -10412,7 +10618,7 @@ interface DonationInput {
10412
10618
  */
10413
10619
  options?: DonationInputOption[];
10414
10620
  /** Option which can be specified by UoU, enabled when this object is specified. */
10415
- customOption?: CommonCustomOption;
10621
+ customOption?: CustomOption;
10416
10622
  /**
10417
10623
  * Specifies the number of columns used to display the selections within the component.
10418
10624
  * Default: ONE
@@ -10423,6 +10629,10 @@ interface DonationInput {
10423
10629
  * Default: true
10424
10630
  */
10425
10631
  showLabel?: boolean | null;
10632
+ /** Media item. Media, associated with field, like image. */
10633
+ media?: MediaItem;
10634
+ /** Settings for media item */
10635
+ mediaSettings?: MediaSettings;
10426
10636
  }
10427
10637
  interface DonationInputOption {
10428
10638
  /**
@@ -10433,24 +10643,55 @@ interface DonationInputOption {
10433
10643
  /** Flag identifying that option should be selected by default */
10434
10644
  default?: boolean;
10435
10645
  }
10436
- interface CommonCustomOption {
10646
+ interface PaymentInput {
10437
10647
  /**
10438
- * Label of custom option input
10648
+ * Label of the field.
10439
10649
  * @maxLength 350
10440
10650
  */
10441
10651
  label?: string | null;
10652
+ /** Description of the field. */
10653
+ description?: RichContent;
10654
+ /**
10655
+ * Flag identifying to hide or not label
10656
+ * Default: true
10657
+ */
10658
+ showLabel?: boolean | null;
10442
10659
  /**
10443
10660
  * Placeholder of custom option input
10444
10661
  * @maxLength 100
10445
10662
  */
10446
10663
  placeholder?: string | null;
10664
+ /** Default value for the payment input */
10665
+ default?: number | null;
10666
+ /** Media item. Media, associated with field, like image. */
10667
+ media?: MediaItem;
10668
+ /** Settings for media item */
10669
+ mediaSettings?: MediaSettings;
10447
10670
  }
10448
- declare enum MultilineAddressComponentType {
10671
+ interface FixedPayment {
10672
+ /**
10673
+ * Label of the field.
10674
+ * @maxLength 350
10675
+ */
10676
+ label?: string | null;
10677
+ /** Description of the field. */
10678
+ description?: RichContent;
10679
+ /**
10680
+ * Flag identifying to hide or not label
10681
+ * Default: true
10682
+ */
10683
+ showLabel?: boolean | null;
10684
+ /** Media item. Media, associated with field, like image. */
10685
+ media?: MediaItem;
10686
+ /** Settings for media item */
10687
+ mediaSettings?: MediaSettings;
10688
+ }
10689
+ declare enum AddressComponentType {
10449
10690
  UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10450
10691
  MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
10451
10692
  }
10452
10693
  /** @enumType */
10453
- type MultilineAddressComponentTypeWithLiterals = MultilineAddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
10694
+ type AddressComponentTypeWithLiterals = AddressComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'MULTILINE_ADDRESS';
10454
10695
  interface MultilineAddressValidation {
10455
10696
  /**
10456
10697
  * Allowed countries. No countries treated as all.
@@ -10483,7 +10724,7 @@ interface FieldsOverrides {
10483
10724
  /** Country. */
10484
10725
  country?: FieldOverrides;
10485
10726
  }
10486
- interface ComponentsMultilineAddress {
10727
+ interface MultilineAddress {
10487
10728
  /**
10488
10729
  * Label of the field.
10489
10730
  * @maxLength 350
@@ -10535,6 +10776,118 @@ interface FieldsSettings {
10535
10776
  /** Address line 2. */
10536
10777
  addressLine2?: AddressLine2;
10537
10778
  }
10779
+ declare enum SchedulingComponentType {
10780
+ UNKNOWN_COMPONENT_TYPE = "UNKNOWN_COMPONENT_TYPE",
10781
+ APPOINTMENT = "APPOINTMENT"
10782
+ }
10783
+ /** @enumType */
10784
+ type SchedulingComponentTypeWithLiterals = SchedulingComponentType | 'UNKNOWN_COMPONENT_TYPE' | 'APPOINTMENT';
10785
+ interface Appointment extends AppointmentFormatInfoOneOf {
10786
+ /** In person options for the appointment */
10787
+ inPersonOptions?: InPersonOptions;
10788
+ /** Online video conference options for the appointment */
10789
+ videoConferenceOptions?: VideoConferenceOptions;
10790
+ /** Phone options for the appointment */
10791
+ phoneOptions?: PhoneOptions;
10792
+ /**
10793
+ * Label of the field
10794
+ * @maxLength 255
10795
+ */
10796
+ label?: string | null;
10797
+ /**
10798
+ * Name of the appointment
10799
+ * @minLength 1
10800
+ * @maxLength 400
10801
+ */
10802
+ name?: string | null;
10803
+ /**
10804
+ * Duration of the appointment in minutes
10805
+ * @min 1
10806
+ * @max 44639
10807
+ */
10808
+ durationInMinutes?: number | null;
10809
+ /** Indicates whether manual approval is required for the appointment */
10810
+ manualApprovalRequired?: boolean | null;
10811
+ /**
10812
+ * ID of the staff members providing the appointment
10813
+ * @maxSize 220
10814
+ * @format GUID
10815
+ */
10816
+ staffIds?: string[] | null;
10817
+ /** The format of the appointment */
10818
+ format?: AppointmentFormatWithLiterals;
10819
+ /** Description of the field */
10820
+ description?: RichContent;
10821
+ /**
10822
+ * Flag identifying to hide or not label
10823
+ * Default: true
10824
+ */
10825
+ showLabel?: boolean | null;
10826
+ }
10827
+ /** @oneof */
10828
+ interface AppointmentFormatInfoOneOf {
10829
+ /** In person options for the appointment */
10830
+ inPersonOptions?: InPersonOptions;
10831
+ /** Online video conference options for the appointment */
10832
+ videoConferenceOptions?: VideoConferenceOptions;
10833
+ /** Phone options for the appointment */
10834
+ phoneOptions?: PhoneOptions;
10835
+ }
10836
+ interface Location extends LocationLocationInfoOneOf {
10837
+ /**
10838
+ * Custom address details
10839
+ * @maxLength 512
10840
+ */
10841
+ customAddress?: string | null;
10842
+ /**
10843
+ * ID of a business location
10844
+ * @format GUID
10845
+ */
10846
+ businessLocationId?: string | null;
10847
+ }
10848
+ /** @oneof */
10849
+ interface LocationLocationInfoOneOf {
10850
+ /**
10851
+ * Custom address details
10852
+ * @maxLength 512
10853
+ */
10854
+ customAddress?: string | null;
10855
+ /**
10856
+ * ID of a business location
10857
+ * @format GUID
10858
+ */
10859
+ businessLocationId?: string | null;
10860
+ }
10861
+ declare enum AppointmentFormat {
10862
+ UNKNOWN_FORMAT_TYPE = "UNKNOWN_FORMAT_TYPE",
10863
+ IN_PERSON = "IN_PERSON",
10864
+ VIDEO_CONFERENCE = "VIDEO_CONFERENCE",
10865
+ PHONE = "PHONE"
10866
+ }
10867
+ /** @enumType */
10868
+ type AppointmentFormatWithLiterals = AppointmentFormat | 'UNKNOWN_FORMAT_TYPE' | 'IN_PERSON' | 'VIDEO_CONFERENCE' | 'PHONE';
10869
+ interface InPersonOptions {
10870
+ /**
10871
+ * The locations details
10872
+ * @minSize 1
10873
+ * @maxSize 1
10874
+ */
10875
+ locations?: Location[];
10876
+ }
10877
+ interface VideoConferenceOptions {
10878
+ /**
10879
+ * Description or instructions for the online video conference
10880
+ * @maxLength 512
10881
+ */
10882
+ description?: string | null;
10883
+ }
10884
+ interface PhoneOptions {
10885
+ /**
10886
+ * Description or instructions for the phone appointment
10887
+ * @maxLength 512
10888
+ */
10889
+ description?: string | null;
10890
+ }
10538
10891
  declare enum InputType {
10539
10892
  UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
10540
10893
  STRING = "STRING",
@@ -10544,10 +10897,11 @@ declare enum InputType {
10544
10897
  OBJECT = "OBJECT",
10545
10898
  WIX_FILE = "WIX_FILE",
10546
10899
  PAYMENT = "PAYMENT",
10547
- MULTILINE_ADDRESS = "MULTILINE_ADDRESS"
10900
+ SCHEDULING = "SCHEDULING",
10901
+ ADDRESS = "ADDRESS"
10548
10902
  }
10549
10903
  /** @enumType */
10550
- type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS';
10904
+ type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'SCHEDULING' | 'ADDRESS';
10551
10905
  interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
10552
10906
  /** Email info. */
10553
10907
  emailInfo?: EmailInfo;
@@ -10660,6 +11014,8 @@ interface _String extends _StringComponentTypeOptionsOneOf {
10660
11014
  timeInputOptions?: TimeInput;
10661
11015
  /** Calendar type component for selecting date */
10662
11016
  datePickerOptions?: DatePicker;
11017
+ /** Dropdown for selecting services */
11018
+ servicesDropdownOptions?: ServicesDropdown;
10663
11019
  /** Validation of field output value. */
10664
11020
  validation?: StringType;
10665
11021
  /**
@@ -10686,6 +11042,8 @@ interface _StringComponentTypeOptionsOneOf {
10686
11042
  timeInputOptions?: TimeInput;
10687
11043
  /** Calendar type component for selecting date */
10688
11044
  datePickerOptions?: DatePicker;
11045
+ /** Dropdown for selecting services */
11046
+ servicesDropdownOptions?: ServicesDropdown;
10689
11047
  }
10690
11048
  interface InputField_Number extends InputField_NumberComponentTypeOptionsOneOf {
10691
11049
  /** Number value input field */
@@ -10726,6 +11084,8 @@ interface _BooleanComponentTypeOptionsOneOf {
10726
11084
  interface _Array extends _ArrayComponentTypeOptionsOneOf {
10727
11085
  /** Checkbox group input field */
10728
11086
  checkboxGroupOptions?: CheckboxGroup;
11087
+ /** Tags input field */
11088
+ tagsOptions?: Tags;
10729
11089
  /** Validation of array type. */
10730
11090
  validation?: ArrayType;
10731
11091
  /**
@@ -10738,6 +11098,8 @@ interface _Array extends _ArrayComponentTypeOptionsOneOf {
10738
11098
  interface _ArrayComponentTypeOptionsOneOf {
10739
11099
  /** Checkbox group input field */
10740
11100
  checkboxGroupOptions?: CheckboxGroup;
11101
+ /** Tags input field */
11102
+ tagsOptions?: Tags;
10741
11103
  }
10742
11104
  interface _Object {
10743
11105
  /** Validation of object type. */
@@ -10753,6 +11115,8 @@ interface WixFile extends WixFileComponentTypeOptionsOneOf {
10753
11115
  * @readonly
10754
11116
  */
10755
11117
  componentType?: WixFileComponentTypeWithLiterals;
11118
+ /** Validation of field type. */
11119
+ validation?: FileType;
10756
11120
  }
10757
11121
  /** @oneof */
10758
11122
  interface WixFileComponentTypeOptionsOneOf {
@@ -10766,6 +11130,10 @@ interface Payment extends PaymentComponentTypeOptionsOneOf {
10766
11130
  checkboxGroupOptions?: ProductCheckboxGroup;
10767
11131
  /** Donation input field. */
10768
11132
  donationInputOptions?: DonationInput;
11133
+ /** Payment input field. */
11134
+ paymentInputOptions?: PaymentInput;
11135
+ /** Fixed payment field. */
11136
+ fixedPaymentOptions?: FixedPayment;
10769
11137
  /**
10770
11138
  * Component type of the payment input field.
10771
11139
  * @readonly
@@ -10780,28 +11148,47 @@ interface PaymentComponentTypeOptionsOneOf {
10780
11148
  checkboxGroupOptions?: ProductCheckboxGroup;
10781
11149
  /** Donation input field. */
10782
11150
  donationInputOptions?: DonationInput;
11151
+ /** Payment input field. */
11152
+ paymentInputOptions?: PaymentInput;
11153
+ /** Fixed payment field. */
11154
+ fixedPaymentOptions?: FixedPayment;
10783
11155
  }
10784
- interface MultilineAddress extends MultilineAddressComponentTypeOptionsOneOf {
11156
+ interface Address extends AddressComponentTypeOptionsOneOf {
10785
11157
  /** Multiline address input field. */
10786
- multilineAddressOptions?: ComponentsMultilineAddress;
11158
+ multilineAddressOptions?: MultilineAddress;
10787
11159
  /**
10788
11160
  * Component type of the multiline address field.
10789
11161
  * @readonly
10790
11162
  */
10791
- componentType?: MultilineAddressComponentTypeWithLiterals;
11163
+ componentType?: AddressComponentTypeWithLiterals;
10792
11164
  /** Validation of multiline address field output value. */
10793
11165
  validation?: MultilineAddressValidation;
10794
11166
  }
10795
11167
  /** @oneof */
10796
- interface MultilineAddressComponentTypeOptionsOneOf {
11168
+ interface AddressComponentTypeOptionsOneOf {
10797
11169
  /** Multiline address input field. */
10798
- multilineAddressOptions?: ComponentsMultilineAddress;
11170
+ multilineAddressOptions?: MultilineAddress;
11171
+ }
11172
+ interface Scheduling extends SchedulingComponentTypeOptionsOneOf {
11173
+ /** Appointment input field */
11174
+ appointmentOptions?: Appointment;
11175
+ /**
11176
+ * Component type of the scheduling input field
11177
+ * @readonly
11178
+ */
11179
+ componentType?: SchedulingComponentTypeWithLiterals;
11180
+ }
11181
+ /** @oneof */
11182
+ interface SchedulingComponentTypeOptionsOneOf {
11183
+ /** Appointment input field */
11184
+ appointmentOptions?: Appointment;
10799
11185
  }
10800
11186
  interface DisplayField extends DisplayFieldDisplayFieldTypeOptionsOneOf {
10801
11187
  /** Component displaying rich content */
10802
11188
  richContentOptions?: RichContentOptions;
10803
11189
  /** Page navigation component resolving as navigation or submit buttons */
10804
11190
  pageNavigationOptions?: PageNavigationOptions;
11191
+ /** Type of the display field */
10805
11192
  displayFieldType?: DisplayFieldTypeWithLiterals;
10806
11193
  }
10807
11194
  /** @oneof */
@@ -10887,12 +11274,14 @@ interface BreakPoint {
10887
11274
  */
10888
11275
  sections?: BreakPointSection[];
10889
11276
  }
10890
- interface ItemLayout {
11277
+ interface ItemLayout extends ItemLayoutItemOneOf {
10891
11278
  /**
10892
11279
  * Form field reference id.
10893
11280
  * @format GUID
10894
11281
  */
10895
11282
  fieldId?: string;
11283
+ /** Group info, defining that this item is a group of multiple fields */
11284
+ group?: Group;
10896
11285
  /** Horizontal coordinate in the grid. */
10897
11286
  row?: number | null;
10898
11287
  /** Vertical coordinate in the grid. */
@@ -10902,6 +11291,29 @@ interface ItemLayout {
10902
11291
  /** Width. */
10903
11292
  height?: number | null;
10904
11293
  }
11294
+ /** @oneof */
11295
+ interface ItemLayoutItemOneOf {
11296
+ /**
11297
+ * Form field reference id.
11298
+ * @format GUID
11299
+ */
11300
+ fieldId?: string;
11301
+ /** Group info, defining that this item is a group of multiple fields */
11302
+ group?: Group;
11303
+ }
11304
+ interface Group {
11305
+ /**
11306
+ * Field group reference id.
11307
+ * @format GUID
11308
+ */
11309
+ groupId?: string;
11310
+ /**
11311
+ * Description of layouts for items.
11312
+ * @minSize 1
11313
+ * @maxSize 500
11314
+ */
11315
+ items?: ItemLayout[];
11316
+ }
10905
11317
  interface Margin {
10906
11318
  /** Horizontal value. */
10907
11319
  horizontal?: number | null;
@@ -11117,6 +11529,7 @@ interface SubmitSettingsSubmitSuccessActionOptionsOneOf {
11117
11529
  redirectOptions?: RedirectOptions;
11118
11530
  }
11119
11531
  declare enum Target {
11532
+ /** Unknown target. */
11120
11533
  UNKNOWN_TARGET = "UNKNOWN_TARGET",
11121
11534
  /** Open in the same browser tab. */
11122
11535
  SELF = "SELF",
@@ -11126,6 +11539,7 @@ declare enum Target {
11126
11539
  /** @enumType */
11127
11540
  type TargetWithLiterals = Target | 'UNKNOWN_TARGET' | 'SELF' | 'BLANK';
11128
11541
  declare enum SubmitSuccessAction {
11542
+ /** Unknown submit success action. */
11129
11543
  UNKNOWN_SUBMIT_SUCCESS_ACTION = "UNKNOWN_SUBMIT_SUCCESS_ACTION",
11130
11544
  /** No action will be taken after submission. */
11131
11545
  NO_ACTION = "NO_ACTION",
@@ -16662,4 +17076,4 @@ interface ListDataExtensionSchemasOptions {
16662
17076
  */
16663
17077
  declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`, 2>>;
16664
17078
 
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 };
17079
+ export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundBackgroundMediaModeOneOf, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, ImagePosition, type ImagePositionWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };