@findhotel/sapi 0.25.2 → 0.25.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Get sapi override parameter directly from the URL. Used only for debugging purposes.
|
|
3
|
+
*
|
|
4
|
+
* @param checkLimit - check or no the limit of sapiOverride length
|
|
3
5
|
*/
|
|
4
|
-
export declare function getSapiOverrideParameter(): string | null | undefined;
|
|
6
|
+
export declare function getSapiOverrideParameter(checkLimit?: boolean): string | null | undefined;
|
|
@@ -8,6 +8,9 @@ export interface RoomsRequestParameters {
|
|
|
8
8
|
cugDeals?: string;
|
|
9
9
|
tier?: UserTier;
|
|
10
10
|
clickedOfferId?: string;
|
|
11
|
+
clickedOfferBaseRate?: number;
|
|
12
|
+
clickedOfferTaxes?: number;
|
|
13
|
+
clickedOfferHotelFees?: number;
|
|
11
14
|
preHeat?: number;
|
|
12
15
|
}
|
|
13
16
|
export declare type RoomPackageId = string;
|