mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 13:25:19 +00:00
Added support to new semantic property eventLiveMessage
This commit is contained in:
@@ -142,6 +142,16 @@ export interface Semantics {
|
|||||||
entranceDescription?: string;
|
entranceDescription?: string;
|
||||||
|
|
||||||
eventEndDate?: 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;
|
eventName?: string;
|
||||||
eventStartDate?: string;
|
eventStartDate?: string;
|
||||||
eventType?:
|
eventType?:
|
||||||
@@ -280,6 +290,16 @@ export const Semantics = Joi.object<Semantics>().keys({
|
|||||||
|
|
||||||
eventEndDate: Joi.string(),
|
eventEndDate: Joi.string(),
|
||||||
eventName: 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(),
|
eventStartDate: Joi.string(),
|
||||||
eventType: Joi.string().regex(
|
eventType: Joi.string().regex(
|
||||||
/(PKEventTypeGeneric|PKEventTypeLivePerformance|PKEventTypeMovie|PKEventTypeSports|PKEventTypeConference|PKEventTypeConvention|PKEventTypeWorkshop|PKEventTypeSocialGathering)/,
|
/(PKEventTypeGeneric|PKEventTypeLivePerformance|PKEventTypeMovie|PKEventTypeSports|PKEventTypeConference|PKEventTypeConvention|PKEventTypeWorkshop|PKEventTypeSocialGathering)/,
|
||||||
|
|||||||
Reference in New Issue
Block a user