@wix/auto_sdk_events_ticket-definitions-v-2 1.0.57 → 1.0.59
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 +13 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -9
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -9
- 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 +13 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -9
- 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 +13 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -9
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1128,6 +1128,8 @@ interface Address extends AddressStreetOneOf {
|
|
|
1128
1128
|
addressLine2?: string | null;
|
|
1129
1129
|
/** A string containing the human-readable address of this location */
|
|
1130
1130
|
formatted?: string | null;
|
|
1131
|
+
/** Free text for human-to-human textual orientation aid purposes */
|
|
1132
|
+
hint?: string | null;
|
|
1131
1133
|
/** coordinates of the physical address */
|
|
1132
1134
|
location?: AddressLocation;
|
|
1133
1135
|
/** country full-name */
|
|
@@ -3926,53 +3928,55 @@ interface EventUpdated {
|
|
|
3926
3928
|
/** Updated event */
|
|
3927
3929
|
event?: Event;
|
|
3928
3930
|
}
|
|
3931
|
+
/** Triggers when seating plan category summaries are updated. */
|
|
3929
3932
|
interface SeatingPlanCategoriesSummaryUpdated {
|
|
3930
3933
|
/**
|
|
3931
|
-
* Seating plan
|
|
3934
|
+
* Seating plan ID.
|
|
3932
3935
|
* @format GUID
|
|
3933
3936
|
*/
|
|
3934
3937
|
seatingPlanId?: string;
|
|
3935
|
-
/** External seating plan
|
|
3938
|
+
/** External seating plan ID. */
|
|
3936
3939
|
externalSeatingPlanId?: string | null;
|
|
3937
3940
|
/**
|
|
3938
|
-
*
|
|
3941
|
+
* Updated category capacity and reservation counts.
|
|
3939
3942
|
* @maxSize 100
|
|
3940
3943
|
*/
|
|
3941
3944
|
categories?: CategoryDetails[];
|
|
3942
3945
|
/**
|
|
3943
|
-
* Summary revision.
|
|
3946
|
+
* Summary revision number for cache invalidation.
|
|
3944
3947
|
* @readonly
|
|
3945
3948
|
*/
|
|
3946
3949
|
revision?: string | null;
|
|
3947
3950
|
}
|
|
3951
|
+
/** Category capacity and reservation summary. */
|
|
3948
3952
|
interface CategoryDetails {
|
|
3949
3953
|
/**
|
|
3950
|
-
* Seating
|
|
3954
|
+
* Seating Plan ID.
|
|
3951
3955
|
* @format GUID
|
|
3952
3956
|
* @readonly
|
|
3953
3957
|
*/
|
|
3954
3958
|
seatingPlanId?: string | null;
|
|
3955
3959
|
/**
|
|
3956
|
-
* External
|
|
3960
|
+
* External Seating Plan ID used for integration with third-party systems.
|
|
3957
3961
|
* @minLength 1
|
|
3958
3962
|
* @maxLength 100
|
|
3959
3963
|
* @readonly
|
|
3960
3964
|
*/
|
|
3961
3965
|
externalSeatingPlanId?: string | null;
|
|
3962
3966
|
/**
|
|
3963
|
-
* External category
|
|
3967
|
+
* External Category ID used for mapping to venue-specific category names. For example, `VIP` or `ORCHESTRA`.
|
|
3964
3968
|
* @minLength 1
|
|
3965
3969
|
* @maxLength 100
|
|
3966
3970
|
* @readonly
|
|
3967
3971
|
*/
|
|
3968
3972
|
externalCategoryId?: string | null;
|
|
3969
3973
|
/**
|
|
3970
|
-
* Total capacity in
|
|
3974
|
+
* Total seating capacity available in category.
|
|
3971
3975
|
* @readonly
|
|
3972
3976
|
*/
|
|
3973
3977
|
totalCapacity?: number | null;
|
|
3974
3978
|
/**
|
|
3975
|
-
*
|
|
3979
|
+
* Number of seats currently reserved in category.
|
|
3976
3980
|
* @readonly
|
|
3977
3981
|
*/
|
|
3978
3982
|
reserved?: number | null;
|