Fixed tailgatingAllowed type to be boolean

This commit is contained in:
Alexander Cerutti
2024-10-07 01:50:00 +02:00
parent 22f77d7cee
commit 68d875bb17

View File

@@ -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<Semantics>().keys({
silenceRequested: Joi.boolean(),
sportName: Joi.string(),
tailgatingAllowed: Joi.number(),
tailgatingAllowed: Joi.boolean(),
totalPrice: CurrencyAmount,
transitProvider: Joi.string(),