From 8ee077c8793215ddcdb953c68a06328c0f4c3da9 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Wed, 2 Oct 2024 19:28:01 +0200 Subject: [PATCH] Added two new undocumented fields directionsInformationURL and contactVenueEmail --- src/schemas/index.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/schemas/index.ts b/src/schemas/index.ts index 38978d4..63b642b 100644 --- a/src/schemas/index.ts +++ b/src/schemas/index.ts @@ -98,6 +98,18 @@ export interface PassProps { * Event Ticket */ preferredStyleSchemes?: PreferredStyleSchemes; + + /** + * New field for iOS 18 + * Event Ticket + */ + directionsInformationURL?: string; + + /** + * New field for iOS 18 + * Event Ticket + */ + contactVenueEmail?: string; } /** @@ -199,6 +211,18 @@ export const OverridablePassProps = Joi.object({ * of the properties */ parkingInformationURL: Joi.string().regex(URL_REGEX), + + /** + * New field for iOS 18 + * Event Ticket + */ + directionsInformationURL: Joi.string(), + + /** + * New field for iOS 18 + * Event Ticket + */ + contactVenueEmail: Joi.string(), }).with("webServiceURL", "authenticationToken"); export const PassProps = Joi.object<