mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 13:25:19 +00:00
Added undocumented semantics entranceDescription and attendeeName
This commit is contained in:
@@ -96,6 +96,13 @@ export interface Semantics {
|
||||
|
||||
airlineCode?: string;
|
||||
artistIDs?: string[];
|
||||
|
||||
/**
|
||||
* For newly-introduced event tickets
|
||||
* in iOS 18
|
||||
*/
|
||||
attendeeName?: string;
|
||||
|
||||
awayTeamAbbreviation?: string;
|
||||
awayTeamLocation?: string;
|
||||
awayTeamName?: string;
|
||||
@@ -128,6 +135,12 @@ export interface Semantics {
|
||||
destinationTerminal?: string;
|
||||
duration?: number;
|
||||
|
||||
/**
|
||||
* For newly-introduced event tickets
|
||||
* in iOS 18
|
||||
*/
|
||||
entranceDescription?: string;
|
||||
|
||||
eventEndDate?: string;
|
||||
eventName?: string;
|
||||
eventStartDate?: string;
|
||||
@@ -220,6 +233,13 @@ export const Semantics = Joi.object<Semantics>().keys({
|
||||
|
||||
airlineCode: Joi.string(),
|
||||
artistIDs: Joi.array().items(Joi.string()),
|
||||
|
||||
/**
|
||||
* For newly-introduced event tickets
|
||||
* in iOS 18
|
||||
*/
|
||||
attendeeName: Joi.string(),
|
||||
|
||||
awayTeamAbbreviation: Joi.string(),
|
||||
awayTeamLocation: Joi.string(),
|
||||
awayTeamName: Joi.string(),
|
||||
@@ -252,6 +272,12 @@ export const Semantics = Joi.object<Semantics>().keys({
|
||||
destinationTerminal: Joi.string(),
|
||||
duration: Joi.number(),
|
||||
|
||||
/**
|
||||
* For newly-introduced event tickets
|
||||
* in iOS 18
|
||||
*/
|
||||
entranceDescription: Joi.string(),
|
||||
|
||||
eventEndDate: Joi.string(),
|
||||
eventName: Joi.string(),
|
||||
eventStartDate: Joi.string(),
|
||||
|
||||
Reference in New Issue
Block a user