@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
|
@@ -78,7 +78,8 @@ interface TicketDefinition {
|
|
|
78
78
|
saleStatus?: SaleStatusEnumStatusWithLiterals;
|
|
79
79
|
/**
|
|
80
80
|
* Ticket sales information. <br> <br>
|
|
81
|
-
* **Note:** This field is only returned when `
|
|
81
|
+
* **Note:** This field is only returned when `SALES_DETAILS` is specified in `field` in the request.
|
|
82
|
+
* @readonly
|
|
82
83
|
*/
|
|
83
84
|
salesDetails?: SalesDetails;
|
|
84
85
|
/**
|
|
@@ -92,12 +93,14 @@ interface TicketDefinition {
|
|
|
92
93
|
extendedFields?: ExtendedFields;
|
|
93
94
|
/**
|
|
94
95
|
* Information about the even the ticket is for. <br>
|
|
95
|
-
* **Note:** This field is only returned when `
|
|
96
|
+
* **Note:** This field is only returned when `EVENT_DETAILS` is specified in `field` in the request.
|
|
97
|
+
* @readonly
|
|
96
98
|
*/
|
|
97
99
|
eventDetails?: EventDetails;
|
|
98
100
|
/**
|
|
99
101
|
* Seating information including available seats and areas for this ticket definition. <br>
|
|
100
|
-
* **Note:** This field is only returned when `
|
|
102
|
+
* **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).
|
|
103
|
+
* @readonly
|
|
101
104
|
*/
|
|
102
105
|
seatingDetails?: SeatingDetails;
|
|
103
106
|
}
|
|
@@ -543,7 +546,7 @@ interface SeatingDetails {
|
|
|
543
546
|
}
|
|
544
547
|
interface AvailablePlace {
|
|
545
548
|
/**
|
|
546
|
-
* Place ID in the format `{
|
|
549
|
+
* Place ID in the format `{sectionId}-{elementId}-{label}`. For example, `0-1-A5`.
|
|
547
550
|
* @minLength 1
|
|
548
551
|
* @maxLength 20
|
|
549
552
|
* @readonly
|
|
@@ -557,21 +560,25 @@ interface AvailablePlace {
|
|
|
557
560
|
*/
|
|
558
561
|
label?: string;
|
|
559
562
|
/**
|
|
560
|
-
*
|
|
563
|
+
* High-level division of the venue, where the place is located, such as `Orchestra`, `Balcony`, or `VIP Section`.
|
|
561
564
|
* @minLength 1
|
|
562
565
|
* @maxLength 20
|
|
563
566
|
* @readonly
|
|
564
567
|
*/
|
|
565
568
|
sectionLabel?: string | null;
|
|
566
569
|
/**
|
|
567
|
-
*
|
|
570
|
+
* Seating element within the section, such as `Row`, `Table`, or `General Admission`.
|
|
568
571
|
* @minLength 1
|
|
569
572
|
* @maxLength 50
|
|
570
573
|
* @readonly
|
|
571
574
|
*/
|
|
572
575
|
elementLabel?: string | null;
|
|
573
576
|
/**
|
|
574
|
-
* Available capacity at this place.
|
|
577
|
+
* Available capacity at this place.
|
|
578
|
+
*
|
|
579
|
+
* For general seating type returns the number of remaining spots.
|
|
580
|
+
*
|
|
581
|
+
* 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.
|
|
575
582
|
* @max 50000
|
|
576
583
|
* @readonly
|
|
577
584
|
*/
|
|
@@ -1869,7 +1876,7 @@ interface Label {
|
|
|
1869
1876
|
* It enables configuration of form titles, response labels, "thank you" messages, and call-to-action texts.
|
|
1870
1877
|
*/
|
|
1871
1878
|
interface FormMessages {
|
|
1872
|
-
/** RSVP form
|
|
1879
|
+
/** [RSVP form](https://dev.wix.com/docs/rest/business-solutions/events/rsvp-v2/introduction) messages. */
|
|
1873
1880
|
rsvp?: RsvpFormMessages;
|
|
1874
1881
|
/** Checkout form messages. */
|
|
1875
1882
|
checkout?: CheckoutFormMessages;
|
|
@@ -5223,7 +5230,8 @@ interface UpdateTicketDefinition {
|
|
|
5223
5230
|
saleStatus?: SaleStatusEnumStatusWithLiterals;
|
|
5224
5231
|
/**
|
|
5225
5232
|
* Ticket sales information. <br> <br>
|
|
5226
|
-
* **Note:** This field is only returned when `
|
|
5233
|
+
* **Note:** This field is only returned when `SALES_DETAILS` is specified in `field` in the request.
|
|
5234
|
+
* @readonly
|
|
5227
5235
|
*/
|
|
5228
5236
|
salesDetails?: SalesDetails;
|
|
5229
5237
|
/**
|
|
@@ -5237,12 +5245,14 @@ interface UpdateTicketDefinition {
|
|
|
5237
5245
|
extendedFields?: ExtendedFields;
|
|
5238
5246
|
/**
|
|
5239
5247
|
* Information about the even the ticket is for. <br>
|
|
5240
|
-
* **Note:** This field is only returned when `
|
|
5248
|
+
* **Note:** This field is only returned when `EVENT_DETAILS` is specified in `field` in the request.
|
|
5249
|
+
* @readonly
|
|
5241
5250
|
*/
|
|
5242
5251
|
eventDetails?: EventDetails;
|
|
5243
5252
|
/**
|
|
5244
5253
|
* Seating information including available seats and areas for this ticket definition. <br>
|
|
5245
|
-
* **Note:** This field is only returned when `
|
|
5254
|
+
* **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).
|
|
5255
|
+
* @readonly
|
|
5246
5256
|
*/
|
|
5247
5257
|
seatingDetails?: SeatingDetails;
|
|
5248
5258
|
}
|