trand_common_v1 0.2.97 → 0.2.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.
|
@@ -8,6 +8,7 @@ import { TCityMetadataI18n } from "../types/t-city-metadata-i18n";
|
|
|
8
8
|
import { TCompletedYouTubeChannelDetail } from "../types/t-completed-youtube-channel";
|
|
9
9
|
import { TCompletedYouTubeVideoDetail, TCompletedYouTubeVideoListForPublicFront } from "../types/t-completed-youtube-video";
|
|
10
10
|
import { TContentDetail } from "../types/t-content";
|
|
11
|
+
import { TContentBusinessHours } from "../types/t-content-business-hours";
|
|
11
12
|
import { TContentGPPhoto } from "../types/t-content-gp-photo";
|
|
12
13
|
import { TContentI18n } from "../types/t-content-i18n";
|
|
13
14
|
import { TContentImage } from "../types/t-content-image";
|
|
@@ -357,6 +358,7 @@ export type ResponseStagDetailForPublic = {
|
|
|
357
358
|
*/
|
|
358
359
|
export type ResponseContentDetailForAdmin = {
|
|
359
360
|
content: TContentDetail;
|
|
361
|
+
businessHours?: TContentBusinessHours[];
|
|
360
362
|
googlePlaceData?: TGooglePlaceData;
|
|
361
363
|
tripAdvisorData?: TTripAdvisorData;
|
|
362
364
|
showTimetable?: TContentShowTimetable[];
|
|
@@ -379,6 +381,7 @@ export type ResponseContentDetailForAdmin = {
|
|
|
379
381
|
*/
|
|
380
382
|
export type ResponseContentDetailForPublic = {
|
|
381
383
|
content: TContentDetail;
|
|
384
|
+
businessHours?: TContentBusinessHours[];
|
|
382
385
|
cityDetail?: {
|
|
383
386
|
city_code: string;
|
|
384
387
|
name: string;
|