@wix/auto_sdk_events_ticket-definitions-v-2 1.0.36 → 1.0.38

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.
@@ -14,17 +14,17 @@ interface TicketDefinition {
14
14
  */
15
15
  eventId?: string | null;
16
16
  /**
17
- * Revision number, which increments by 1 each time the ticket definition is updated. To prevent conflicting changes, the existing revision must be used when updating a ticket definition.
17
+ * Revision number, which increments by 1 each time the ticket definition is updated. To prevent conflicting changes, the existing `revision` must be used when updating a ticket definition.
18
18
  * @readonly
19
19
  */
20
20
  revision?: string | null;
21
21
  /**
22
- * Date and time when the ticket definition was created.
22
+ * Date and time the ticket definition was created.
23
23
  * @readonly
24
24
  */
25
25
  _createdDate?: Date | null;
26
26
  /**
27
- * Date and time when the ticket definition was updated.
27
+ * Date and time the ticket definition was updated.
28
28
  * @readonly
29
29
  */
30
30
  _updatedDate?: Date | null;
@@ -44,7 +44,7 @@ interface TicketDefinition {
44
44
  * @maxLength 1000
45
45
  */
46
46
  policyText?: string | null;
47
- /** Whether this ticket definition is hidden to site visitors and can't be purchased. */
47
+ /** Whether this ticket definition is hidden from site visitors and can't be purchased. */
48
48
  hidden?: boolean;
49
49
  /**
50
50
  * Whether the ticket has a limited maximum quantity.
@@ -60,7 +60,7 @@ interface TicketDefinition {
60
60
  actualLimit?: number | null;
61
61
  /** Ticket pricing method. */
62
62
  pricingMethod?: PricingMethod;
63
- /** Whether fee is included in the ticket price or customer pays it additionally at checkout. */
63
+ /** Type of ticket service fee to collect. */
64
64
  feeType?: FeeTypeEnumTypeWithLiterals;
65
65
  /** Ticket sale period. */
66
66
  salePeriod?: SalePeriod;
@@ -70,13 +70,13 @@ interface TicketDefinition {
70
70
  */
71
71
  saleStatus?: SaleStatusEnumStatusWithLiterals;
72
72
  /**
73
- * Ticket sales information. <br>
74
- * **Note:** This field is only returned when `SALES_DETAILS` fieldset is included in the request.
73
+ * Ticket sales information. <br> <br>
74
+ * **Note:** This field is only returned when `"SALES_DETAILS"` is specified in `field` in the request.
75
75
  */
76
76
  salesDetails?: SalesDetails;
77
77
  /**
78
- * Number of tickets that can be purchased per checkout. <br>
79
- * **Note:** If the `actuaLimit` or `salesDetails.unsoldCount` field value is smaller than `limitPerCheckout`, then it overrides this field.
78
+ * Number of tickets that can be purchased per checkout. <br> <br>
79
+ * **Note:** If the `actualLimit` or `salesDetails.unsoldCount` field value is smaller than `limitPerCheckout`, then it overrides this field.
80
80
  * @readonly
81
81
  * @max 50
82
82
  */
@@ -84,15 +84,15 @@ interface TicketDefinition {
84
84
  /** Data extensions. */
85
85
  extendedFields?: ExtendedFields;
86
86
  /**
87
- * Associated event information. <br>
88
- * **Note:** This field is only returned when `EVENT_DETAILS` fieldset is included in the request.
87
+ * Information about the even the ticket is for. <br>
88
+ * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
89
89
  */
90
90
  eventDetails?: EventDetails;
91
91
  }
92
92
  interface SalePeriod {
93
- /** Ticket sale start timestamp. */
93
+ /** Date and time the ticket sale starts. */
94
94
  startDate?: Date | null;
95
- /** Ticket sale end timestamp. */
95
+ /** Date and time the ticket sale ends. */
96
96
  endDate?: Date | null;
97
97
  /** Whether to display the ticket if it's not available to buy. */
98
98
  displayNotOnSale?: boolean;
@@ -100,7 +100,7 @@ interface SalePeriod {
100
100
  interface PricingMethod extends PricingMethodPriceOneOf {
101
101
  /** Same ticket price for everyone. */
102
102
  fixedPrice?: CommonMoney;
103
- /** Guests choose how much they'd like to pay for the ticket. You can set the minimum price, or make the ticket free(enter `0` in the request). The price can be updated to a higher amount by a guest during the checkout. */
103
+ /** Guests choose how much they'd like to pay for the ticket. You can set the minimum price, or specify `"0"` in the request to make the ticket free. The price can be updated to a higher amount by a guest during the checkout. */
104
104
  guestPrice?: CommonMoney;
105
105
  /** Sets of various ticket prices. For example, you can charge different prices for children and adults. */
106
106
  pricingOptions?: PricingOptions;
@@ -110,7 +110,7 @@ interface PricingMethod extends PricingMethodPriceOneOf {
110
110
  */
111
111
  pricingType?: PricingTypeEnumTypeWithLiterals;
112
112
  /**
113
- * Whether the ticket is free. To create a free ticket, enter `0` in the `pricingMethod.fixedPrice.value` field.
113
+ * Whether the ticket is free. To create a free ticket, enter `"0"` in `pricingMethod.fixedPrice.value`.
114
114
  * @readonly
115
115
  */
116
116
  free?: boolean;
@@ -119,7 +119,7 @@ interface PricingMethod extends PricingMethodPriceOneOf {
119
119
  interface PricingMethodPriceOneOf {
120
120
  /** Same ticket price for everyone. */
121
121
  fixedPrice?: CommonMoney;
122
- /** Guests choose how much they'd like to pay for the ticket. You can set the minimum price, or make the ticket free(enter `0` in the request). The price can be updated to a higher amount by a guest during the checkout. */
122
+ /** Guests choose how much they'd like to pay for the ticket. You can set the minimum price, or specify `"0"` in the request to make the ticket free. The price can be updated to a higher amount by a guest during the checkout. */
123
123
  guestPrice?: CommonMoney;
124
124
  /** Sets of various ticket prices. For example, you can charge different prices for children and adults. */
125
125
  pricingOptions?: PricingOptions;
@@ -142,7 +142,7 @@ interface CommonMoney {
142
142
  }
143
143
  interface PricingOptions {
144
144
  /**
145
- * Ticket price option details.
145
+ * Ticket price options.
146
146
  * @maxSize 100
147
147
  */
148
148
  optionDetails?: OptionDetails[];
@@ -175,11 +175,11 @@ type PricingTypeEnumTypeWithLiterals = PricingTypeEnumType | 'UNKNOWN_PRICING_TY
175
175
  declare enum FeeTypeEnumType {
176
176
  /** Unknown fee type. */
177
177
  UNKNOWN_FEE_TYPE = "UNKNOWN_FEE_TYPE",
178
- /** The fee is deducted from the ticket price for a seller. For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
178
+ /** The fee is deducted from the ticket price for a seller. <br><br> For example, if you're selling tickets for $10, then a ticket service fee of $0.25 will be deducted from the price and you'll get $9.75. */
179
179
  FEE_INCLUDED = "FEE_INCLUDED",
180
- /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
180
+ /** The fee is shown in addition to the ticket price at checkout and a guest pays the fee. <br><br> For example, if you sell tickets for $10, a customer will see a ticket service fee of $0.25 and will pay $10.25 in total. */
181
181
  FEE_ADDED_AT_CHECKOUT = "FEE_ADDED_AT_CHECKOUT",
182
- /** Ticket service fee is not collected. Available only for free tickets and legacy users. */
182
+ /** Ticket service fee isn't collected. Available only for free tickets and legacy Wix users. */
183
183
  NO_FEE = "NO_FEE"
184
184
  }
185
185
  /** @enumType */
@@ -187,18 +187,18 @@ type FeeTypeEnumTypeWithLiterals = FeeTypeEnumType | 'UNKNOWN_FEE_TYPE' | 'FEE_I
187
187
  declare enum SaleStatusEnumStatus {
188
188
  /** Undefined sale status. */
189
189
  UNKNOWN_SALE_STATUS = "UNKNOWN_SALE_STATUS",
190
- /** Tickets are not on sale yet. */
190
+ /** Tickets aren't on sale yet. */
191
191
  SALE_SCHEDULED = "SALE_SCHEDULED",
192
192
  /** Tickets are on sale. */
193
193
  SALE_STARTED = "SALE_STARTED",
194
- /** Tickets are not on sale. */
194
+ /** Tickets are no longer on sale. */
195
195
  SALE_ENDED = "SALE_ENDED"
196
196
  }
197
197
  /** @enumType */
198
198
  type SaleStatusEnumStatusWithLiterals = SaleStatusEnumStatus | 'UNKNOWN_SALE_STATUS' | 'SALE_SCHEDULED' | 'SALE_STARTED' | 'SALE_ENDED';
199
199
  interface SalesDetails {
200
200
  /**
201
- * Number of tickets that have not been purchased yet. The field is `null` if the ticket quantity is unlimited.
201
+ * Number of tickets that haven't been purchased yet. The field is `null` if the ticket quantity is unlimited.
202
202
  * @readonly
203
203
  */
204
204
  unsoldCount?: number | null;
@@ -238,7 +238,7 @@ interface EventDetails {
238
238
  */
239
239
  title?: string | null;
240
240
  /**
241
- * Event short description.
241
+ * Short description of the event.
242
242
  * @maxLength 500
243
243
  * @readonly
244
244
  */
@@ -249,7 +249,7 @@ interface EventDetails {
249
249
  */
250
250
  location?: Location;
251
251
  /**
252
- * Event date and time settings.
252
+ * Event date and time settings.
253
253
  * @readonly
254
254
  */
255
255
  dateAndTimeSettings?: DateAndTimeSettings;
@@ -768,7 +768,7 @@ interface UpdateTicketDefinitionSortIndexResponse {
768
768
  ticketDefinition?: TicketDefinition;
769
769
  }
770
770
  interface QueryTicketDefinitionsRequest {
771
- /** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
771
+ /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details. */
772
772
  query: QueryV2;
773
773
  /**
774
774
  * Predefined sets of fields to return.
@@ -863,7 +863,7 @@ interface Cursors {
863
863
  prev?: string | null;
864
864
  }
865
865
  interface QueryAvailableTicketDefinitionsRequest {
866
- /** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
866
+ /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details. */
867
867
  query: QueryV2;
868
868
  /**
869
869
  * Predefined sets of fields to return.
@@ -962,7 +962,7 @@ interface CopiedTicketDefinition {
962
962
  ticketDefinitionId?: string;
963
963
  }
964
964
  interface UpdateFeeTypesBasedOnSettingsRequest {
965
- /** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
965
+ /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details. */
966
966
  query?: QueryV2;
967
967
  }
968
968
  interface UpdateFeeTypesBasedOnSettingsResponse {
@@ -1519,7 +1519,7 @@ interface Money {
1519
1519
  */
1520
1520
  amount?: string;
1521
1521
  /**
1522
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
1522
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
1523
1523
  * @format CURRENCY
1524
1524
  */
1525
1525
  currency?: string;
@@ -2485,7 +2485,7 @@ interface DividerData {
2485
2485
  /** Divider width. */
2486
2486
  width?: WidthWithLiterals;
2487
2487
  /** Divider alignment. */
2488
- alignment?: AlignmentWithLiterals;
2488
+ alignment?: DividerDataAlignmentWithLiterals;
2489
2489
  }
2490
2490
  declare enum LineStyle {
2491
2491
  /** Single Line */
@@ -2509,7 +2509,7 @@ declare enum Width {
2509
2509
  }
2510
2510
  /** @enumType */
2511
2511
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
2512
- declare enum Alignment {
2512
+ declare enum DividerDataAlignment {
2513
2513
  /** Center alignment */
2514
2514
  CENTER = "CENTER",
2515
2515
  /** Left alignment */
@@ -2518,7 +2518,7 @@ declare enum Alignment {
2518
2518
  RIGHT = "RIGHT"
2519
2519
  }
2520
2520
  /** @enumType */
2521
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
2521
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2522
2522
  interface FileData {
2523
2523
  /** Styling for the file's container. */
2524
2524
  containerData?: PluginContainerData;
@@ -2643,7 +2643,7 @@ interface ItemDataOneOf {
2643
2643
  }
2644
2644
  interface GalleryOptions {
2645
2645
  /** Gallery layout. */
2646
- layout?: Layout;
2646
+ layout?: GalleryOptionsLayout;
2647
2647
  /** Styling for gallery items. */
2648
2648
  item?: ItemStyle;
2649
2649
  /** Styling for gallery thumbnail images. */
@@ -2703,7 +2703,7 @@ declare enum ThumbnailsAlignment {
2703
2703
  }
2704
2704
  /** @enumType */
2705
2705
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
2706
- interface Layout {
2706
+ interface GalleryOptionsLayout {
2707
2707
  /** Gallery layout type. */
2708
2708
  type?: LayoutTypeWithLiterals;
2709
2709
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -2865,7 +2865,7 @@ interface LinkPreviewData {
2865
2865
  /** Styling for the link preview. */
2866
2866
  styles?: LinkPreviewDataStyles;
2867
2867
  }
2868
- declare enum Position {
2868
+ declare enum StylesPosition {
2869
2869
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
2870
2870
  START = "START",
2871
2871
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -2876,7 +2876,7 @@ declare enum Position {
2876
2876
  HIDDEN = "HIDDEN"
2877
2877
  }
2878
2878
  /** @enumType */
2879
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
2879
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
2880
2880
  interface LinkPreviewDataStyles {
2881
2881
  /**
2882
2882
  * Background color as a hexadecimal value.
@@ -2908,7 +2908,7 @@ interface LinkPreviewDataStyles {
2908
2908
  */
2909
2909
  borderColor?: string | null;
2910
2910
  /** Position of thumbnail. Defaults to `START`. */
2911
- thumbnailPosition?: PositionWithLiterals;
2911
+ thumbnailPosition?: StylesPositionWithLiterals;
2912
2912
  }
2913
2913
  interface MapData {
2914
2914
  /** Styling for the map's container. */
@@ -3262,6 +3262,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
3262
3262
  url?: string | null;
3263
3263
  /** An image for the embedded content. */
3264
3264
  image?: Media;
3265
+ /** Whether to hide the image. */
3266
+ hideImage?: boolean | null;
3267
+ /** Whether to hide the title. */
3268
+ hideTitle?: boolean | null;
3269
+ /** Whether to hide the price. */
3270
+ hidePrice?: boolean | null;
3271
+ /** Whether to hide the description (Event and Booking). */
3272
+ hideDescription?: boolean | null;
3273
+ /** Whether to hide the date and time (Event). */
3274
+ hideDateTime?: boolean | null;
3275
+ /** Whether to hide the location (Event). */
3276
+ hideLocation?: boolean | null;
3277
+ /** Whether to hide the duration (Booking). */
3278
+ hideDuration?: boolean | null;
3279
+ /** Whether to hide the button. */
3280
+ hideButton?: boolean | null;
3281
+ /** Whether to hide the ribbon. */
3282
+ hideRibbon?: boolean | null;
3283
+ /** Button styling options. */
3284
+ buttonStyles?: ButtonStyles;
3285
+ /** Image styling options. */
3286
+ imageStyles?: ImageStyles;
3287
+ /** Ribbon styling options. */
3288
+ ribbonStyles?: RibbonStyles;
3289
+ /** Card styling options. */
3290
+ cardStyles?: CardStyles;
3265
3291
  }
3266
3292
  /** @oneof */
3267
3293
  interface AppEmbedDataAppDataOneOf {
@@ -3270,6 +3296,66 @@ interface AppEmbedDataAppDataOneOf {
3270
3296
  /** Data for embedded Wix Events content. */
3271
3297
  eventData?: EventData;
3272
3298
  }
3299
+ declare enum Position {
3300
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
3301
+ START = "START",
3302
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
3303
+ END = "END",
3304
+ /** Image positioned at the top */
3305
+ TOP = "TOP"
3306
+ }
3307
+ /** @enumType */
3308
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
3309
+ declare enum AspectRatio {
3310
+ /** 1:1 aspect ratio */
3311
+ SQUARE = "SQUARE",
3312
+ /** 16:9 aspect ratio */
3313
+ RECTANGLE = "RECTANGLE"
3314
+ }
3315
+ /** @enumType */
3316
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
3317
+ declare enum Resizing {
3318
+ /** Fill the container, may crop the image */
3319
+ FILL = "FILL",
3320
+ /** Fit the image within the container */
3321
+ FIT = "FIT"
3322
+ }
3323
+ /** @enumType */
3324
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
3325
+ declare enum Placement {
3326
+ /** Ribbon placed on the image */
3327
+ IMAGE = "IMAGE",
3328
+ /** Ribbon placed on the product information */
3329
+ PRODUCT_INFO = "PRODUCT_INFO"
3330
+ }
3331
+ /** @enumType */
3332
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
3333
+ declare enum CardStylesType {
3334
+ /** Card with visible border and background */
3335
+ CONTAINED = "CONTAINED",
3336
+ /** Card without visible border */
3337
+ FRAMELESS = "FRAMELESS"
3338
+ }
3339
+ /** @enumType */
3340
+ type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
3341
+ declare enum Alignment {
3342
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
3343
+ START = "START",
3344
+ /** Content centered */
3345
+ CENTER = "CENTER",
3346
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
3347
+ END = "END"
3348
+ }
3349
+ /** @enumType */
3350
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
3351
+ declare enum Layout {
3352
+ /** Elements stacked vertically */
3353
+ STACKED = "STACKED",
3354
+ /** Elements arranged horizontally */
3355
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
3356
+ }
3357
+ /** @enumType */
3358
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
3273
3359
  declare enum AppType {
3274
3360
  PRODUCT = "PRODUCT",
3275
3361
  EVENT = "EVENT",
@@ -3287,6 +3373,122 @@ interface EventData {
3287
3373
  /** Event location. */
3288
3374
  location?: string | null;
3289
3375
  }
3376
+ interface ButtonStyles {
3377
+ /** Text to display on the button. */
3378
+ buttonText?: string | null;
3379
+ /** Border width in pixels. */
3380
+ borderWidth?: number | null;
3381
+ /** Border radius in pixels. */
3382
+ borderRadius?: number | null;
3383
+ /**
3384
+ * Border color as a hexadecimal value.
3385
+ * @format COLOR_HEX
3386
+ */
3387
+ borderColor?: string | null;
3388
+ /**
3389
+ * Text color as a hexadecimal value.
3390
+ * @format COLOR_HEX
3391
+ */
3392
+ textColor?: string | null;
3393
+ /**
3394
+ * Background color as a hexadecimal value.
3395
+ * @format COLOR_HEX
3396
+ */
3397
+ backgroundColor?: string | null;
3398
+ /**
3399
+ * Border color as a hexadecimal value (hover state).
3400
+ * @format COLOR_HEX
3401
+ */
3402
+ borderColorHover?: string | null;
3403
+ /**
3404
+ * Text color as a hexadecimal value (hover state).
3405
+ * @format COLOR_HEX
3406
+ */
3407
+ textColorHover?: string | null;
3408
+ /**
3409
+ * Background color as a hexadecimal value (hover state).
3410
+ * @format COLOR_HEX
3411
+ */
3412
+ backgroundColorHover?: string | null;
3413
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
3414
+ buttonSize?: string | null;
3415
+ }
3416
+ interface ImageStyles {
3417
+ /** Whether to hide the image. */
3418
+ hideImage?: boolean | null;
3419
+ /** Position of image. Defaults to `START`. */
3420
+ imagePosition?: PositionWithLiterals;
3421
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
3422
+ aspectRatio?: AspectRatioWithLiterals;
3423
+ /** How the image should be resized. Defaults to `FILL`. */
3424
+ resizing?: ResizingWithLiterals;
3425
+ /**
3426
+ * Image border color as a hexadecimal value.
3427
+ * @format COLOR_HEX
3428
+ */
3429
+ borderColor?: string | null;
3430
+ /** Image border width in pixels. */
3431
+ borderWidth?: number | null;
3432
+ /** Image border radius in pixels. */
3433
+ borderRadius?: number | null;
3434
+ }
3435
+ interface RibbonStyles {
3436
+ /** Text to display on the ribbon. */
3437
+ ribbonText?: string | null;
3438
+ /**
3439
+ * Ribbon background color as a hexadecimal value.
3440
+ * @format COLOR_HEX
3441
+ */
3442
+ backgroundColor?: string | null;
3443
+ /**
3444
+ * Ribbon text color as a hexadecimal value.
3445
+ * @format COLOR_HEX
3446
+ */
3447
+ textColor?: string | null;
3448
+ /**
3449
+ * Ribbon border color as a hexadecimal value.
3450
+ * @format COLOR_HEX
3451
+ */
3452
+ borderColor?: string | null;
3453
+ /** Ribbon border width in pixels. */
3454
+ borderWidth?: number | null;
3455
+ /** Ribbon border radius in pixels. */
3456
+ borderRadius?: number | null;
3457
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
3458
+ ribbonPlacement?: PlacementWithLiterals;
3459
+ }
3460
+ interface CardStyles {
3461
+ /**
3462
+ * Card background color as a hexadecimal value.
3463
+ * @format COLOR_HEX
3464
+ */
3465
+ backgroundColor?: string | null;
3466
+ /**
3467
+ * Card border color as a hexadecimal value.
3468
+ * @format COLOR_HEX
3469
+ */
3470
+ borderColor?: string | null;
3471
+ /** Card border width in pixels. */
3472
+ borderWidth?: number | null;
3473
+ /** Card border radius in pixels. */
3474
+ borderRadius?: number | null;
3475
+ /** Card type. Defaults to `CONTAINED`. */
3476
+ type?: CardStylesTypeWithLiterals;
3477
+ /** Content alignment. Defaults to `START`. */
3478
+ alignment?: AlignmentWithLiterals;
3479
+ /** Layout for title and price. Defaults to `STACKED`. */
3480
+ titlePriceLayout?: LayoutWithLiterals;
3481
+ /**
3482
+ * Title text color as a hexadecimal value.
3483
+ * @format COLOR_HEX
3484
+ */
3485
+ titleColor?: string | null;
3486
+ /**
3487
+ * Text color as a hexadecimal value.
3488
+ * @format COLOR_HEX
3489
+ */
3490
+ textColor?: string | null;
3491
+ }
3290
3492
  interface VideoData {
3291
3493
  /** Styling for the video's container. */
3292
3494
  containerData?: PluginContainerData;
@@ -4335,7 +4537,7 @@ interface EventTicketingSummary {
4335
4537
  */
4336
4538
  _updatedDate?: Date | null;
4337
4539
  /**
4338
- * Whether all tickets are sold for this event.
4540
+ * Whether all tickets are sold out for this event.
4339
4541
  * @readonly
4340
4542
  */
4341
4543
  soldOut?: boolean | null;
@@ -4402,9 +4604,9 @@ interface ReservationCreated {
4402
4604
  counts?: ReservationCount[];
4403
4605
  }
4404
4606
  declare enum ReservationStatus {
4405
- /** The Reservation is pending confirmation. It will expire after a certain amount of time. */
4607
+ /** The reservation is pending confirmation. It will expire after a certain amount of time. */
4406
4608
  RESERVATION_PENDING = "RESERVATION_PENDING",
4407
- /** The reservation is confirmed and will not expire. */
4609
+ /** The reservation is confirmed and won't expire. */
4408
4610
  RESERVATION_CONFIRMED = "RESERVATION_CONFIRMED",
4409
4611
  /** The reservation is canceled because it's not paid. */
4410
4612
  RESERVATION_CANCELED = "RESERVATION_CANCELED",
@@ -4600,7 +4802,7 @@ interface TicketDefinitionSaleEndedEnvelope {
4600
4802
  metadata: EventMetadata;
4601
4803
  }
4602
4804
  /**
4603
- * Triggered when a ticket sale ends. Sales details are not included in the payload.
4805
+ * Triggered when a ticket sale ends. Sales details aren't included in the response.
4604
4806
  * @permissionScope Manage Events - all permissions
4605
4807
  * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
4606
4808
  * @permissionScope Manage Events
@@ -4640,7 +4842,7 @@ interface TicketDefinitionSaleStartedEnvelope {
4640
4842
  metadata: EventMetadata;
4641
4843
  }
4642
4844
  /**
4643
- * Triggered when a ticket sale starts. Sales details are not included in the payload.
4845
+ * Triggered when a ticket sale starts. Sales details aren't included in the response.
4644
4846
  * @permissionScope Manage Events - all permissions
4645
4847
  * @permissionScopeId SCOPE.DC-EVENTS-MEGA.MANAGE-EVENTS
4646
4848
  * @permissionScope Manage Events
@@ -4679,8 +4881,7 @@ type TicketDefinitionNonNullablePaths = `hidden` | `limited` | `pricingMethod.fi
4679
4881
  /**
4680
4882
  * Creates a ticket definition.
4681
4883
  *
4682
- *
4683
- * It is allowed to create up to 100 definitions per event.
4884
+ * You may create up to 100 definitions per event.
4684
4885
  * @param ticketDefinition - Ticket definition info.
4685
4886
  * @public
4686
4887
  * @requiredField ticketDefinition
@@ -4688,7 +4889,7 @@ type TicketDefinitionNonNullablePaths = `hidden` | `limited` | `pricingMethod.fi
4688
4889
  * @requiredField ticketDefinition.feeType
4689
4890
  * @requiredField ticketDefinition.name
4690
4891
  * @requiredField ticketDefinition.pricingMethod
4691
- * @param options - Optional fields.
4892
+ * @param options - Currency info.
4692
4893
  * @permissionId WIX_EVENTS.MANAGE_TICKET_DEFINITIONS
4693
4894
  * @applicableIdentity APP
4694
4895
  * @returns Created ticket definition.
@@ -4707,7 +4908,6 @@ interface CreateTicketDefinitionOptions {
4707
4908
  /**
4708
4909
  * Updates a ticket definition.
4709
4910
  *
4710
- *
4711
4911
  * Each time the ticket definition is updated, `revision` increments by 1. The existing `revision` must be included when updating the ticket definition. This ensures you're working with the latest ticket definition and prevents unintended overwrites.
4712
4912
  * @param _id - Ticket definition ID.
4713
4913
  * @public
@@ -4738,17 +4938,17 @@ interface UpdateTicketDefinition {
4738
4938
  */
4739
4939
  eventId?: string | null;
4740
4940
  /**
4741
- * Revision number, which increments by 1 each time the ticket definition is updated. To prevent conflicting changes, the existing revision must be used when updating a ticket definition.
4941
+ * Revision number, which increments by 1 each time the ticket definition is updated. To prevent conflicting changes, the existing `revision` must be used when updating a ticket definition.
4742
4942
  * @readonly
4743
4943
  */
4744
4944
  revision?: string | null;
4745
4945
  /**
4746
- * Date and time when the ticket definition was created.
4946
+ * Date and time the ticket definition was created.
4747
4947
  * @readonly
4748
4948
  */
4749
4949
  _createdDate?: Date | null;
4750
4950
  /**
4751
- * Date and time when the ticket definition was updated.
4951
+ * Date and time the ticket definition was updated.
4752
4952
  * @readonly
4753
4953
  */
4754
4954
  _updatedDate?: Date | null;
@@ -4768,7 +4968,7 @@ interface UpdateTicketDefinition {
4768
4968
  * @maxLength 1000
4769
4969
  */
4770
4970
  policyText?: string | null;
4771
- /** Whether this ticket definition is hidden to site visitors and can't be purchased. */
4971
+ /** Whether this ticket definition is hidden from site visitors and can't be purchased. */
4772
4972
  hidden?: boolean;
4773
4973
  /**
4774
4974
  * Whether the ticket has a limited maximum quantity.
@@ -4784,7 +4984,7 @@ interface UpdateTicketDefinition {
4784
4984
  actualLimit?: number | null;
4785
4985
  /** Ticket pricing method. */
4786
4986
  pricingMethod?: PricingMethod;
4787
- /** Whether fee is included in the ticket price or customer pays it additionally at checkout. */
4987
+ /** Type of ticket service fee to collect. */
4788
4988
  feeType?: FeeTypeEnumTypeWithLiterals;
4789
4989
  /** Ticket sale period. */
4790
4990
  salePeriod?: SalePeriod;
@@ -4794,13 +4994,13 @@ interface UpdateTicketDefinition {
4794
4994
  */
4795
4995
  saleStatus?: SaleStatusEnumStatusWithLiterals;
4796
4996
  /**
4797
- * Ticket sales information. <br>
4798
- * **Note:** This field is only returned when `SALES_DETAILS` fieldset is included in the request.
4997
+ * Ticket sales information. <br> <br>
4998
+ * **Note:** This field is only returned when `"SALES_DETAILS"` is specified in `field` in the request.
4799
4999
  */
4800
5000
  salesDetails?: SalesDetails;
4801
5001
  /**
4802
- * Number of tickets that can be purchased per checkout. <br>
4803
- * **Note:** If the `actuaLimit` or `salesDetails.unsoldCount` field value is smaller than `limitPerCheckout`, then it overrides this field.
5002
+ * Number of tickets that can be purchased per checkout. <br> <br>
5003
+ * **Note:** If the `actualLimit` or `salesDetails.unsoldCount` field value is smaller than `limitPerCheckout`, then it overrides this field.
4804
5004
  * @readonly
4805
5005
  * @max 50
4806
5006
  */
@@ -4808,8 +5008,8 @@ interface UpdateTicketDefinition {
4808
5008
  /** Data extensions. */
4809
5009
  extendedFields?: ExtendedFields;
4810
5010
  /**
4811
- * Associated event information. <br>
4812
- * **Note:** This field is only returned when `EVENT_DETAILS` fieldset is included in the request.
5011
+ * Information about the even the ticket is for. <br>
5012
+ * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
4813
5013
  */
4814
5014
  eventDetails?: EventDetails;
4815
5015
  }
@@ -4821,7 +5021,7 @@ interface UpdateTicketDefinitionOptions {
4821
5021
  fields?: FieldWithLiterals[];
4822
5022
  }
4823
5023
  /**
4824
- * Retrieves a ticket definition by ID.
5024
+ * Retrieves a ticket definition.
4825
5025
  * @param ticketDefinitionId - Ticket definition ID.
4826
5026
  * @public
4827
5027
  * @requiredField ticketDefinitionId
@@ -4840,7 +5040,7 @@ interface GetTicketDefinitionOptions {
4840
5040
  fields?: FieldWithLiterals[];
4841
5041
  }
4842
5042
  /**
4843
- * Permanently deletes a ticket definition.
5043
+ * Deletes a ticket definition.
4844
5044
  * @param ticketDefinitionId - ID of the ticket definition to delete.
4845
5045
  * @public
4846
5046
  * @requiredField ticketDefinitionId
@@ -4850,8 +5050,8 @@ interface GetTicketDefinitionOptions {
4850
5050
  */
4851
5051
  declare function deleteTicketDefinition(ticketDefinitionId: string): Promise<void>;
4852
5052
  /**
4853
- * Changes ticket definitions order in an event dashboard and the list of available tickets in the ticket picker.
4854
- * > **Note:** It is possible to use both `beforeTicketDefinitionId` and `afterTicketDefinitionId` at the same time but only the last one defined will be executed.
5053
+ * Adjusts the order in which ticket definitions display in an event dashboard, as well as the order of available tickets displayed in the ticket picker.
5054
+ * > **Note:** You may use both `beforeTicketDefinitionId` and `afterTicketDefinitionId` but only the last one provided takes effect.
4855
5055
  * @param eventId - Event ID.
4856
5056
  * @public
4857
5057
  * @requiredField eventId
@@ -4965,9 +5165,9 @@ interface TicketDefinitionsQueryBuilder {
4965
5165
  find: () => Promise<TicketDefinitionsQueryResult>;
4966
5166
  }
4967
5167
  /**
4968
- * Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
5168
+ * Retrieves a list of available ticket definitions with the specified paging, filtering, and sorting.
4969
5169
  *
4970
- * This endpoint retrieves ticket definitions that aren't in the `hidden` state. The available ticket definitions can be retrieved by site visitors.
5170
+ * This method retrieves ticket definitions that aren't in the `hidden` state. The available ticket definitions can be retrieved by site visitors.
4971
5171
  *
4972
5172
  * > **Note:** You need the `WIX_EVENTS.READ_TICKET_DEFINITIONS` permission to get the `salesDetails` field values.
4973
5173
  *
@@ -4977,8 +5177,8 @@ interface TicketDefinitionsQueryBuilder {
4977
5177
  * - `paging.offset` is `0`
4978
5178
  *
4979
5179
  * For field support for filters and sorting, see [Ticket Definitions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/ticket-definition-v3/filter-and-sort).
4980
- * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
4981
- * @param query - Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details.
5180
+ * To learn about working with _Query_ methods, see [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language).
5181
+ * @param query - Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details.
4982
5182
  * @public
4983
5183
  * @requiredField query
4984
5184
  * @param options - Optional fields.
@@ -5072,4 +5272,4 @@ interface ChangeCurrencyOptions {
5072
5272
  currency: string;
5073
5273
  }
5074
5274
 
5075
- export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, type ReservationCount, type ReservationCreated, ReservationStatus, type ReservationStatusWithLiterals, type ReservationUpdated, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type TicketQuantity, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
5275
+ export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, type ReservationCount, type ReservationCreated, ReservationStatus, type ReservationStatusWithLiterals, type ReservationUpdated, Resizing, type ResizingWithLiterals, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type TicketQuantity, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };