trand_common_v1 0.2.24 → 0.2.25

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,7 +99,9 @@ export type ResponseStreetDetailForAdmin = {
99
99
  */
100
100
  export type ResponseStreetDetailForPublic = {
101
101
  content: TStreetDetail;
102
- cityDetail: TCityDetail;
102
+ cityDetail: {
103
+ name: string;
104
+ };
103
105
  images?: TRelatedImage[];
104
106
  i18n?: TRelatedI18n[];
105
107
  metadataI18n?: TRelatedMetadataI18n[];
@@ -163,7 +165,9 @@ export type ResponseCategoryDetailForPublic = {
163
165
  */
164
166
  export type ResponseCategoryDetailByCityForPublic = {
165
167
  content: TCategoryDetail;
166
- cityDetail: TCityDetail;
168
+ cityDetail: {
169
+ name: string;
170
+ };
167
171
  subCategories?: TCategoryListForAdmin[];
168
172
  i18n?: TRelatedI18n[];
169
173
  metadataI18n?: TRelatedMetadataI18n[];
@@ -227,7 +231,9 @@ export type ResponseStagDetailForPublic = {
227
231
  */
228
232
  export type ResponseStagDetailByCityForPublic = {
229
233
  content: TStagDetail;
230
- cityDetail: TCityDetail;
234
+ cityDetail: {
235
+ name: string;
236
+ };
231
237
  images?: TRelatedImage[];
232
238
  i18n?: TRelatedI18n[];
233
239
  metadataI18n?: TRelatedMetadataI18n[];
@@ -277,8 +283,8 @@ export type ResponseCompletedYouTubeChannelDetailForAdmin = {
277
283
  */
278
284
  export type ResponseContentDetailForAdmin = {
279
285
  content: TContentDetail;
280
- googlePlaceData?: TGooglePlaceData[];
281
- tripAdvisorData?: TTripAdvisorData[];
286
+ googlePlaceData?: TGooglePlaceData;
287
+ tripAdvisorData?: TTripAdvisorData;
282
288
  showTimetable?: TContentShowTimetable[];
283
289
  price?: TContentPrice[];
284
290
  image?: TContentImage[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.24",
3
+ "version": "0.2.25",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"