Changed where new key venueEntranceGate is placed

This commit is contained in:
Alexander Cerutti
2024-10-02 01:50:34 +02:00
parent a4dbdc875c
commit e6e90a4960

View File

@@ -49,12 +49,6 @@ 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 {
@@ -95,7 +89,6 @@ 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({
@@ -230,6 +223,12 @@ export interface Semantics {
*/ */
venueRegionName?: string; venueRegionName?: string;
/**
* For newly-introduced event tickets
* in iOS 18
*/
venueEntranceGate?: string;
wifiAccess?: SemanticTagType.WifiNetwork[]; wifiAccess?: SemanticTagType.WifiNetwork[];
} }
@@ -347,4 +346,6 @@ export const Semantics = Joi.object<Semantics>().keys({
venueRoom: Joi.string(), venueRoom: Joi.string(),
wifiAccess: Joi.array().items(WifiNetwork), wifiAccess: Joi.array().items(WifiNetwork),
venueEntranceGate: Joi.string(),
}); });