From 112a0ee51d74e97a06a578d685fa176ba63de3d8 Mon Sep 17 00:00:00 2001 From: Andreja Kogovsek Date: Wed, 20 Dec 2023 10:15:46 +0000 Subject: [PATCH] fix: amend board types and rating sources --- src/Stays/StaysTypes.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Stays/StaysTypes.ts b/src/Stays/StaysTypes.ts index 5929696d..a2129cc0 100644 --- a/src/Stays/StaysTypes.ts +++ b/src/Stays/StaysTypes.ts @@ -16,7 +16,7 @@ export interface StaysRating { /** * The source of this rating. Possible values: `"aaa"` (American Automobile Association Diamond Rating), `"northstar"` (Northstar Crown Rating), `"priceline"` (Priceline star rating) */ - source: 'aaa' | 'northstar' | 'priceline' + source: 'aaa' | 'northstar' | 'priceline' | 'bookingcom' /** * The rating value. This is an integer from 1 to 5 regardless of the `source`. @@ -85,7 +85,12 @@ export interface StaysRate { /** * The type of boarding offered by this rate. */ - board_type: 'room_only' | 'breakfast' | 'all_inclusive' + board_type: + | 'room_only' + | 'breakfast' + | 'half_board' + | 'full_board' + | 'all_inclusive' /** * A timeline that contains policies, such as possible refunds, once this rate has been booked. This is sorted in ascending chronological order.