mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 21:25:26 +00:00
Added support to Semantics.Seat[].venueEntranceGate
This commit is contained in:
@@ -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({
|
||||||
|
|||||||
Reference in New Issue
Block a user