From 68d875bb17954f181d4a1d99a06ae268b50f1a11 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Mon, 7 Oct 2024 01:50:00 +0200 Subject: [PATCH] Fixed tailgatingAllowed type to be boolean --- src/schemas/Semantics.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schemas/Semantics.ts b/src/schemas/Semantics.ts index 6dc0838..ea8c778 100644 --- a/src/schemas/Semantics.ts +++ b/src/schemas/Semantics.ts @@ -264,7 +264,7 @@ export interface Semantics { * For newly-introduced event tickets * in iOS 18 */ - tailgatingAllowed?: number; + tailgatingAllowed?: boolean; totalPrice?: SemanticTagType.CurrencyAmount; transitProvider?: string; @@ -468,7 +468,7 @@ export const Semantics = Joi.object().keys({ silenceRequested: Joi.boolean(), sportName: Joi.string(), - tailgatingAllowed: Joi.number(), + tailgatingAllowed: Joi.boolean(), totalPrice: CurrencyAmount, transitProvider: Joi.string(),