From 9cd268351945426159e873cede4261a552bfab4e Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 5 Oct 2024 20:06:08 +0200 Subject: [PATCH] Added support to new semantic property eventLiveMessage --- src/schemas/Semantics.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/schemas/Semantics.ts b/src/schemas/Semantics.ts index 806bc59..eac979f 100644 --- a/src/schemas/Semantics.ts +++ b/src/schemas/Semantics.ts @@ -142,6 +142,16 @@ export interface Semantics { entranceDescription?: string; eventEndDate?: string; + + /** + * For newly-introduced event tickets + * in iOS 18 + * + * This seem to exists but it is not + * known yet what it does... + */ + eventLiveMessage?: string; + eventName?: string; eventStartDate?: string; eventType?: @@ -280,6 +290,16 @@ export const Semantics = Joi.object().keys({ eventEndDate: Joi.string(), eventName: Joi.string(), + + /** + * For newly-introduced event tickets + * in iOS 18 + * + * This seem to exists but it is not + * known yet what it does... + */ + eventLiveMessage: Joi.string(), + eventStartDate: Joi.string(), eventType: Joi.string().regex( /(PKEventTypeGeneric|PKEventTypeLivePerformance|PKEventTypeMovie|PKEventTypeSports|PKEventTypeConference|PKEventTypeConvention|PKEventTypeWorkshop|PKEventTypeSocialGathering)/,