@tripian/model 9.1.97 → 9.1.99

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.
@@ -10,8 +10,13 @@ export type Information = {
10
10
  bestTimeToVisit: BestTimeToVisit;
11
11
  };
12
12
  export type WifiInformation = {
13
- mobile: string;
14
- broadband: string;
13
+ mobile: string | WifiSpeed;
14
+ broadband: string | WifiSpeed;
15
+ };
16
+ export type WifiSpeed = {
17
+ rank: number;
18
+ speed_value: number;
19
+ speed: string;
15
20
  };
16
21
  export type LifeQualityIndices = {
17
22
  safetyIndex: Index;
@@ -6,4 +6,5 @@ export type PoisRequestName = {
6
6
  showBookingsOnly?: boolean;
7
7
  limit?: number;
8
8
  page?: number;
9
+ sort?: string;
9
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripian/model",
3
- "version": "9.1.97",
3
+ "version": "9.1.99",
4
4
  "description": "Tripian Inc web model",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",