Added support to Semantics.Seat[].venueEntranceGate

This commit is contained in:
Alexander Cerutti
2024-06-14 22:46:59 +02:00
parent bab4117cb0
commit f252833bcd

View File

@@ -39,6 +39,12 @@ declare namespace SemanticTagType {
seatIdentifier?: string; seatIdentifier?: string;
seatType?: string; seatType?: string;
seatDescription?: string; seatDescription?: string;
/**
* For newly-introduced event tickets
* in iOS 18
*/
venueEntranceGate?: string;
} }
interface WifiNetwork { interface WifiNetwork {
@@ -70,6 +76,7 @@ const seat = Joi.object<SemanticTagType.Seat>().keys({
seatIdentifier: Joi.string(), seatIdentifier: Joi.string(),
seatType: Joi.string(), seatType: Joi.string(),
seatDescription: Joi.string(), seatDescription: Joi.string(),
venueEntranceGate: Joi.string(),
}); });
const location = Joi.object<SemanticTagType.Location>().keys({ const location = Joi.object<SemanticTagType.Location>().keys({