@findhotel/sapi 1.14.4 → 1.14.6-beta.0
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.
|
@@ -53,7 +53,7 @@ export interface OffersRequest {
|
|
|
53
53
|
cugDeals?: CugDeals;
|
|
54
54
|
tier?: UserTier;
|
|
55
55
|
language: Language;
|
|
56
|
-
deviceType
|
|
56
|
+
deviceType?: DeviceType;
|
|
57
57
|
anonymousId: AnonymousId;
|
|
58
58
|
currency: Currency;
|
|
59
59
|
originId?: string;
|
|
@@ -63,7 +63,7 @@ export interface OffersRequest {
|
|
|
63
63
|
getAllOffers: boolean;
|
|
64
64
|
preferredRate?: number;
|
|
65
65
|
label?: string;
|
|
66
|
-
countryCode
|
|
66
|
+
countryCode?: Country;
|
|
67
67
|
variations: string[];
|
|
68
68
|
metadata?: string;
|
|
69
69
|
filters?: string;
|
|
@@ -45,7 +45,7 @@ export interface OffersRequest {
|
|
|
45
45
|
cugDeals?: string;
|
|
46
46
|
tier?: UserTier;
|
|
47
47
|
language: Language;
|
|
48
|
-
deviceType
|
|
48
|
+
deviceType?: DeviceType;
|
|
49
49
|
anonymousId: AnonymousId;
|
|
50
50
|
currency: Currency;
|
|
51
51
|
originId?: string;
|
|
@@ -55,7 +55,7 @@ export interface OffersRequest {
|
|
|
55
55
|
getAllOffers: boolean;
|
|
56
56
|
preferredRate?: number;
|
|
57
57
|
label?: string;
|
|
58
|
-
countryCode
|
|
58
|
+
countryCode?: Country;
|
|
59
59
|
variations: string;
|
|
60
60
|
metadata?: string;
|
|
61
61
|
filters?: string;
|
|
@@ -15,11 +15,11 @@ export interface ClientOptions {
|
|
|
15
15
|
/** Currency code for selected user currency */
|
|
16
16
|
currency: Currency;
|
|
17
17
|
/** Country code for selected user origin country */
|
|
18
|
-
countryCode
|
|
18
|
+
countryCode?: Country;
|
|
19
19
|
/** Displayed page size */
|
|
20
20
|
pageSize?: number;
|
|
21
21
|
/** User's device type */
|
|
22
|
-
deviceType
|
|
22
|
+
deviceType?: DeviceType;
|
|
23
23
|
/** Used to identify SAPI Cli interface on the RAA backend */
|
|
24
24
|
sapiCliKey?: string;
|
|
25
25
|
/** Algolia client options used for debugging and setting additional options like timeouts etc. */
|