@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +21 -11
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +21 -11
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +21 -11
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +21 -11
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -8
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -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 `
|
|
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 `
|
|
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 `
|
|
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 `{
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
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
|
|
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;
|