@wix/auto_sdk_events_ticket-definitions-v-2 1.0.67 → 1.0.69

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.
@@ -79,7 +79,8 @@ interface TicketDefinition {
79
79
  saleStatus?: SaleStatusEnumStatusWithLiterals;
80
80
  /**
81
81
  * Ticket sales information. <br> <br>
82
- * **Note:** This field is only returned when `"SALES_DETAILS"` is specified in `field` in the request.
82
+ * **Note:** This field is only returned when `SALES_DETAILS` is specified in `field` in the request.
83
+ * @readonly
83
84
  */
84
85
  salesDetails?: SalesDetails;
85
86
  /**
@@ -93,12 +94,14 @@ interface TicketDefinition {
93
94
  extendedFields?: ExtendedFields;
94
95
  /**
95
96
  * Information about the even the ticket is for. <br>
96
- * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
97
+ * **Note:** This field is only returned when `EVENT_DETAILS` is specified in `field` in the request.
98
+ * @readonly
97
99
  */
98
100
  eventDetails?: EventDetails;
99
101
  /**
100
102
  * Seating information including available seats and areas for this ticket definition. <br>
101
- * **Note:** This field is only returned when `"SEATING_DETAILS"` is specified in `field` in the request and when the event has a seating plan.
103
+ * **Note:** This field is only returned when `SEATING_DETAILS` is specified in `field` in the request, and when the event has a [seating plan](https://support.wix.com/en/article/wix-events-creating-a-seating-map).
104
+ * @readonly
102
105
  */
103
106
  seatingDetails?: SeatingDetails;
104
107
  }
@@ -556,7 +559,7 @@ interface SeatingDetails {
556
559
  }
557
560
  interface AvailablePlace {
558
561
  /**
559
- * Place ID in the format `{section_id}-{element_id}-{label}`. For example, `0-1-A5`.
562
+ * Place ID in the format `{sectionId}-{elementId}-{label}`. For example, `0-1-A5`.
560
563
  * @minLength 1
561
564
  * @maxLength 20
562
565
  * @readonly
@@ -570,21 +573,25 @@ interface AvailablePlace {
570
573
  */
571
574
  label?: string;
572
575
  /**
573
- * Section name where this place is located. For example, `Orchestra` or `Balcony`.
576
+ * High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.
574
577
  * @minLength 1
575
578
  * @maxLength 20
576
579
  * @readonly
577
580
  */
578
581
  sectionLabel?: string | null;
579
582
  /**
580
- * Element label from the seating plan. For example, `Row A`, `Table 5`, or `General Admission`.
583
+ * Seating element within the section, such as `Row`, `Table`, or `General Admission`.
581
584
  * @minLength 1
582
585
  * @maxLength 50
583
586
  * @readonly
584
587
  */
585
588
  elementLabel?: string | null;
586
589
  /**
587
- * Available capacity at this place. For AREA type: remaining spots; for other types: 0 or 1.
590
+ * Available capacity at this place.
591
+ *
592
+ * For general seating type returns the number of remaining spots.
593
+ *
594
+ * For other types returns `1`. For example, if a table has 5 chairs, each chair is treated as a separate place, which has a capacity of 1.
588
595
  * @max 50000
589
596
  * @readonly
590
597
  */
@@ -1898,7 +1905,7 @@ interface Label {
1898
1905
  * It enables configuration of form titles, response labels, "thank you" messages, and call-to-action texts.
1899
1906
  */
1900
1907
  interface FormMessages {
1901
- /** RSVP form ([SDK](https://dev.wix.com/docs/sdk/backend-modules/events/rsvp-v2/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/events/rsvp-v2/introduction)) messages. */
1908
+ /** [RSVP form](https://dev.wix.com/docs/rest/business-solutions/events/rsvp-v2/introduction) messages. */
1902
1909
  rsvp?: RsvpFormMessages;
1903
1910
  /** Checkout form messages. */
1904
1911
  checkout?: CheckoutFormMessages;