trand_common_v1 0.2.36 → 0.2.38
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.
|
@@ -2,7 +2,7 @@ import { TCategoryDetail, TCategoryListForAdmin, TCategoryListForPublic } from "
|
|
|
2
2
|
import { TCityDetail } from "../types/t-city";
|
|
3
3
|
import { TCompletedYouTubeChannelDetail } from "../types/t-completed-youtube-channel";
|
|
4
4
|
import { TCompletedYouTubeVideoDetail, TCompletedYouTubeVideoListForPublicFront } from "../types/t-completed-youtube-video";
|
|
5
|
-
import { TContentDetail
|
|
5
|
+
import { TContentDetail } from "../types/t-content";
|
|
6
6
|
import { TContentGPPhoto } from "../types/t-content-gp-photo";
|
|
7
7
|
import { TContentI18n } from "../types/t-content-i18n";
|
|
8
8
|
import { TContentImage } from "../types/t-content-image";
|
|
@@ -66,7 +66,7 @@ export type ResponseCityDetailForPublic = {
|
|
|
66
66
|
streets?: TStreetListForCityDetail[];
|
|
67
67
|
mapCityContent?: {
|
|
68
68
|
map: TMapTypeAndContent;
|
|
69
|
-
content:
|
|
69
|
+
content: TContentDetail;
|
|
70
70
|
}[];
|
|
71
71
|
mapCitySelectedContent?: TMapTypeAndSelectedContent[];
|
|
72
72
|
mapCityYouTubeVideo?: {
|
|
@@ -108,7 +108,7 @@ export type ResponseStreetDetailForPublic = {
|
|
|
108
108
|
metadataI18n?: TRelatedMetadataI18n;
|
|
109
109
|
mapStreetContent?: {
|
|
110
110
|
map: TMapTypeAndContent;
|
|
111
|
-
content:
|
|
111
|
+
content: TContentDetail;
|
|
112
112
|
}[];
|
|
113
113
|
mapStreetSelectedContent?: TMapTypeAndSelectedContent[];
|
|
114
114
|
mapStreetYouTubeVideo?: {
|
|
@@ -147,7 +147,7 @@ export type ResponseCategoryDetailForPublic = {
|
|
|
147
147
|
metadataI18n?: TRelatedMetadataI18n;
|
|
148
148
|
mapCategoryContent?: {
|
|
149
149
|
map: TMapTypeAndContent;
|
|
150
|
-
content:
|
|
150
|
+
content: TContentDetail;
|
|
151
151
|
}[];
|
|
152
152
|
mapCategorySelectedContent?: TMapTypeAndSelectedContent[];
|
|
153
153
|
mapCategoryYouTubeVideo?: {
|
|
@@ -174,7 +174,7 @@ export type ResponseCategoryDetailByCityForPublic = {
|
|
|
174
174
|
metadataI18n?: TRelatedMetadataI18n;
|
|
175
175
|
mapCategoryContent?: {
|
|
176
176
|
map: TMapTypeAndContent;
|
|
177
|
-
content:
|
|
177
|
+
content: TContentDetail;
|
|
178
178
|
}[];
|
|
179
179
|
mapCategorySelectedContent?: TMapTypeAndSelectedContent[];
|
|
180
180
|
mapCategoryYouTubeVideo?: {
|
|
@@ -213,7 +213,7 @@ export type ResponseStagDetailForPublic = {
|
|
|
213
213
|
metadataI18n?: TRelatedMetadataI18n;
|
|
214
214
|
mapStagContent?: {
|
|
215
215
|
map: TMapTypeAndContent;
|
|
216
|
-
content:
|
|
216
|
+
content: TContentDetail;
|
|
217
217
|
}[];
|
|
218
218
|
mapStagSelectedContent?: TMapTypeAndSelectedContent[];
|
|
219
219
|
mapStagYouTubeVideo?: {
|
|
@@ -240,7 +240,7 @@ export type ResponseStagDetailByCityForPublic = {
|
|
|
240
240
|
metadataI18n?: TRelatedMetadataI18n;
|
|
241
241
|
mapStagContent?: {
|
|
242
242
|
map: TMapTypeAndContent;
|
|
243
|
-
content:
|
|
243
|
+
content: TContentDetail;
|
|
244
244
|
}[];
|
|
245
245
|
mapStagSelectedContent?: TMapTypeAndSelectedContent[];
|
|
246
246
|
mapStagYouTubeVideo?: {
|