@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.
@@ -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 id
3934
+ * Seating plan ID.
3932
3935
  * @format GUID
3933
3936
  */
3934
3937
  seatingPlanId?: string;
3935
- /** External seating plan id */
3938
+ /** External seating plan ID. */
3936
3939
  externalSeatingPlanId?: string | null;
3937
3940
  /**
3938
- * Ticket counts by category
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 plan id
3954
+ * Seating Plan ID.
3951
3955
  * @format GUID
3952
3956
  * @readonly
3953
3957
  */
3954
3958
  seatingPlanId?: string | null;
3955
3959
  /**
3956
- * External seating plan id
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 id
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 the category
3974
+ * Total seating capacity available in category.
3971
3975
  * @readonly
3972
3976
  */
3973
3977
  totalCapacity?: number | null;
3974
3978
  /**
3975
- * Already reserved capacity
3979
+ * Number of seats currently reserved in category.
3976
3980
  * @readonly
3977
3981
  */
3978
3982
  reserved?: number | null;