trand_common_v1 0.2.23 → 0.2.24
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.
|
@@ -99,6 +99,7 @@ export type ResponseStreetDetailForAdmin = {
|
|
|
99
99
|
*/
|
|
100
100
|
export type ResponseStreetDetailForPublic = {
|
|
101
101
|
content: TStreetDetail;
|
|
102
|
+
cityDetail: TCityDetail;
|
|
102
103
|
images?: TRelatedImage[];
|
|
103
104
|
i18n?: TRelatedI18n[];
|
|
104
105
|
metadataI18n?: TRelatedMetadataI18n[];
|
|
@@ -158,7 +159,7 @@ export type ResponseCategoryDetailForPublic = {
|
|
|
158
159
|
mapCategorySelectedInstagram?: TMapTypeAndSelectedInstagram[];
|
|
159
160
|
};
|
|
160
161
|
/**
|
|
161
|
-
* Response Category
|
|
162
|
+
* Response Category Detail By City For Public
|
|
162
163
|
*/
|
|
163
164
|
export type ResponseCategoryDetailByCityForPublic = {
|
|
164
165
|
content: TCategoryDetail;
|
|
@@ -221,6 +222,31 @@ export type ResponseStagDetailForPublic = {
|
|
|
221
222
|
}[];
|
|
222
223
|
mapStagSelectedInstagram?: TMapTypeAndSelectedInstagram[];
|
|
223
224
|
};
|
|
225
|
+
/**
|
|
226
|
+
* Response Stag Detail By City For Public
|
|
227
|
+
*/
|
|
228
|
+
export type ResponseStagDetailByCityForPublic = {
|
|
229
|
+
content: TStagDetail;
|
|
230
|
+
cityDetail: TCityDetail;
|
|
231
|
+
images?: TRelatedImage[];
|
|
232
|
+
i18n?: TRelatedI18n[];
|
|
233
|
+
metadataI18n?: TRelatedMetadataI18n[];
|
|
234
|
+
mapStagContent?: {
|
|
235
|
+
map: TMapTypeAndContent;
|
|
236
|
+
content: TContentListForPublicFrontList;
|
|
237
|
+
}[];
|
|
238
|
+
mapStagSelectedContent?: TMapTypeAndSelectedContent[];
|
|
239
|
+
mapStagYouTubeVideo?: {
|
|
240
|
+
map: TMapTypeAndYouTubeVideo;
|
|
241
|
+
content: TCompletedYouTubeVideoListForPublicFront;
|
|
242
|
+
}[];
|
|
243
|
+
mapStagSelectedYouTubeVideo?: TMapTypeAndSelectedYouTubeVideo[];
|
|
244
|
+
mapStagInstagram?: {
|
|
245
|
+
map: TMapTypeAndInstagram;
|
|
246
|
+
content: TInstagramContent;
|
|
247
|
+
}[];
|
|
248
|
+
mapStagSelectedInstagram?: TMapTypeAndSelectedInstagram[];
|
|
249
|
+
};
|
|
224
250
|
/**
|
|
225
251
|
* Response Completed YouTube Video Detail For Admin
|
|
226
252
|
*/
|
|
@@ -275,6 +301,7 @@ export type ResponseContentDetailForAdmin = {
|
|
|
275
301
|
*/
|
|
276
302
|
export type ResponseContentDetailForPublic = {
|
|
277
303
|
content: TContentDetail;
|
|
304
|
+
cityDetail: TCityDetail;
|
|
278
305
|
showTimetable?: TContentShowTimetable[];
|
|
279
306
|
price?: TContentPrice[];
|
|
280
307
|
image?: TContentImage[];
|