trand_common_v1 0.1.146 → 0.1.148
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.
|
@@ -847,11 +847,11 @@ export type GooglePlaceData = {
|
|
|
847
847
|
rating: number | null;
|
|
848
848
|
user_rating_count: number | null;
|
|
849
849
|
periods: string | null;
|
|
850
|
-
weekly_descriptions:
|
|
850
|
+
weekly_descriptions: JSON | null;
|
|
851
851
|
utc_offset_minutes: number | null;
|
|
852
852
|
timezone: string | null;
|
|
853
853
|
business_status: string | null;
|
|
854
|
-
photos:
|
|
854
|
+
photos: JSON | null;
|
|
855
855
|
directions_uri: string | null;
|
|
856
856
|
place_uri: string | null;
|
|
857
857
|
reviews_uri: string | null;
|
|
@@ -890,18 +890,18 @@ export type TripAdvisorData = {
|
|
|
890
890
|
review_rating_5: number | null;
|
|
891
891
|
photo_count: number | null;
|
|
892
892
|
see_all_photos: string | null;
|
|
893
|
-
periods:
|
|
893
|
+
periods: JSON | null;
|
|
894
894
|
weekly_text: string | null;
|
|
895
895
|
category_name: string | null;
|
|
896
896
|
category_localized_name: string | null;
|
|
897
|
-
subcategories:
|
|
898
|
-
groups:
|
|
899
|
-
trip_types_business:
|
|
900
|
-
trip_types_couples:
|
|
901
|
-
trip_types_solo:
|
|
902
|
-
trip_types_family:
|
|
903
|
-
trip_types_friends:
|
|
904
|
-
awards:
|
|
897
|
+
subcategories: JSON | null;
|
|
898
|
+
groups: JSON | null;
|
|
899
|
+
trip_types_business: number | null;
|
|
900
|
+
trip_types_couples: number | null;
|
|
901
|
+
trip_types_solo: number | null;
|
|
902
|
+
trip_types_family: number | null;
|
|
903
|
+
trip_types_friends: number | null;
|
|
904
|
+
awards: JSON | null;
|
|
905
905
|
fetched_at: string | null;
|
|
906
906
|
};
|
|
907
907
|
export type ContentI18n = {
|