@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -3957,53 +3957,55 @@ interface EventUpdated {
|
|
|
3957
3957
|
/** Updated event */
|
|
3958
3958
|
event?: Event;
|
|
3959
3959
|
}
|
|
3960
|
+
/** Triggers when seating plan category summaries are updated. */
|
|
3960
3961
|
interface SeatingPlanCategoriesSummaryUpdated {
|
|
3961
3962
|
/**
|
|
3962
|
-
* Seating plan
|
|
3963
|
+
* Seating plan ID.
|
|
3963
3964
|
* @format GUID
|
|
3964
3965
|
*/
|
|
3965
3966
|
seatingPlanId?: string;
|
|
3966
|
-
/** External seating plan
|
|
3967
|
+
/** External seating plan ID. */
|
|
3967
3968
|
externalSeatingPlanId?: string | null;
|
|
3968
3969
|
/**
|
|
3969
|
-
*
|
|
3970
|
+
* Updated category capacity and reservation counts.
|
|
3970
3971
|
* @maxSize 100
|
|
3971
3972
|
*/
|
|
3972
3973
|
categories?: CategoryDetails[];
|
|
3973
3974
|
/**
|
|
3974
|
-
* Summary revision.
|
|
3975
|
+
* Summary revision number for cache invalidation.
|
|
3975
3976
|
* @readonly
|
|
3976
3977
|
*/
|
|
3977
3978
|
revision?: string | null;
|
|
3978
3979
|
}
|
|
3980
|
+
/** Category capacity and reservation summary. */
|
|
3979
3981
|
interface CategoryDetails {
|
|
3980
3982
|
/**
|
|
3981
|
-
* Seating
|
|
3983
|
+
* Seating Plan ID.
|
|
3982
3984
|
* @format GUID
|
|
3983
3985
|
* @readonly
|
|
3984
3986
|
*/
|
|
3985
3987
|
seatingPlanId?: string | null;
|
|
3986
3988
|
/**
|
|
3987
|
-
* External
|
|
3989
|
+
* External Seating Plan ID used for integration with third-party systems.
|
|
3988
3990
|
* @minLength 1
|
|
3989
3991
|
* @maxLength 100
|
|
3990
3992
|
* @readonly
|
|
3991
3993
|
*/
|
|
3992
3994
|
externalSeatingPlanId?: string | null;
|
|
3993
3995
|
/**
|
|
3994
|
-
* External category
|
|
3996
|
+
* External Category ID used for mapping to venue-specific category names. For example, `VIP` or `ORCHESTRA`.
|
|
3995
3997
|
* @minLength 1
|
|
3996
3998
|
* @maxLength 100
|
|
3997
3999
|
* @readonly
|
|
3998
4000
|
*/
|
|
3999
4001
|
externalCategoryId?: string | null;
|
|
4000
4002
|
/**
|
|
4001
|
-
* Total capacity in
|
|
4003
|
+
* Total seating capacity available in category.
|
|
4002
4004
|
* @readonly
|
|
4003
4005
|
*/
|
|
4004
4006
|
totalCapacity?: number | null;
|
|
4005
4007
|
/**
|
|
4006
|
-
*
|
|
4008
|
+
* Number of seats currently reserved in category.
|
|
4007
4009
|
* @readonly
|
|
4008
4010
|
*/
|
|
4009
4011
|
reserved?: number | null;
|