@wix/auto_sdk_events_ticket-definitions-v-2 1.0.58 → 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 +11 -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 +11 -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 +11 -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 +11 -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
|
@@ -3928,53 +3928,55 @@ interface EventUpdated {
|
|
|
3928
3928
|
/** Updated event */
|
|
3929
3929
|
event?: Event;
|
|
3930
3930
|
}
|
|
3931
|
+
/** Triggers when seating plan category summaries are updated. */
|
|
3931
3932
|
interface SeatingPlanCategoriesSummaryUpdated {
|
|
3932
3933
|
/**
|
|
3933
|
-
* Seating plan
|
|
3934
|
+
* Seating plan ID.
|
|
3934
3935
|
* @format GUID
|
|
3935
3936
|
*/
|
|
3936
3937
|
seatingPlanId?: string;
|
|
3937
|
-
/** External seating plan
|
|
3938
|
+
/** External seating plan ID. */
|
|
3938
3939
|
externalSeatingPlanId?: string | null;
|
|
3939
3940
|
/**
|
|
3940
|
-
*
|
|
3941
|
+
* Updated category capacity and reservation counts.
|
|
3941
3942
|
* @maxSize 100
|
|
3942
3943
|
*/
|
|
3943
3944
|
categories?: CategoryDetails[];
|
|
3944
3945
|
/**
|
|
3945
|
-
* Summary revision.
|
|
3946
|
+
* Summary revision number for cache invalidation.
|
|
3946
3947
|
* @readonly
|
|
3947
3948
|
*/
|
|
3948
3949
|
revision?: string | null;
|
|
3949
3950
|
}
|
|
3951
|
+
/** Category capacity and reservation summary. */
|
|
3950
3952
|
interface CategoryDetails {
|
|
3951
3953
|
/**
|
|
3952
|
-
* Seating
|
|
3954
|
+
* Seating Plan ID.
|
|
3953
3955
|
* @format GUID
|
|
3954
3956
|
* @readonly
|
|
3955
3957
|
*/
|
|
3956
3958
|
seatingPlanId?: string | null;
|
|
3957
3959
|
/**
|
|
3958
|
-
* External
|
|
3960
|
+
* External Seating Plan ID used for integration with third-party systems.
|
|
3959
3961
|
* @minLength 1
|
|
3960
3962
|
* @maxLength 100
|
|
3961
3963
|
* @readonly
|
|
3962
3964
|
*/
|
|
3963
3965
|
externalSeatingPlanId?: string | null;
|
|
3964
3966
|
/**
|
|
3965
|
-
* External category
|
|
3967
|
+
* External Category ID used for mapping to venue-specific category names. For example, `VIP` or `ORCHESTRA`.
|
|
3966
3968
|
* @minLength 1
|
|
3967
3969
|
* @maxLength 100
|
|
3968
3970
|
* @readonly
|
|
3969
3971
|
*/
|
|
3970
3972
|
externalCategoryId?: string | null;
|
|
3971
3973
|
/**
|
|
3972
|
-
* Total capacity in
|
|
3974
|
+
* Total seating capacity available in category.
|
|
3973
3975
|
* @readonly
|
|
3974
3976
|
*/
|
|
3975
3977
|
totalCapacity?: number | null;
|
|
3976
3978
|
/**
|
|
3977
|
-
*
|
|
3979
|
+
* Number of seats currently reserved in category.
|
|
3978
3980
|
* @readonly
|
|
3979
3981
|
*/
|
|
3980
3982
|
reserved?: number | null;
|