trand_common_v1 0.1.153 → 0.1.155
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.
|
@@ -824,9 +824,8 @@ export type ContentInsert = {
|
|
|
824
824
|
content_code: string;
|
|
825
825
|
} & Partial<Omit<Content, "country_code" | "content_code">>;
|
|
826
826
|
export type ContentUpdate = {
|
|
827
|
-
country_code: string;
|
|
828
827
|
content_code: string;
|
|
829
|
-
} & Partial<Omit<Content, "
|
|
828
|
+
} & Partial<Omit<Content, "content_code">>;
|
|
830
829
|
export type GooglePlaceData = {
|
|
831
830
|
content_code: string;
|
|
832
831
|
google_place_id: string | null;
|
|
@@ -847,7 +846,7 @@ export type GooglePlaceData = {
|
|
|
847
846
|
rating: number | null;
|
|
848
847
|
user_rating_count: number | null;
|
|
849
848
|
periods: string | null;
|
|
850
|
-
|
|
849
|
+
weekday_descriptions: JSON | null;
|
|
851
850
|
utc_offset_minutes: number | null;
|
|
852
851
|
timezone: string | null;
|
|
853
852
|
business_status: string | null;
|