trand_common_v1 0.2.23 → 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,6 +99,9 @@ export type ResponseStreetDetailForAdmin = {
99
99
  */
100
100
  export type ResponseStreetDetailForPublic = {
101
101
  content: TStreetDetail;
102
+ cityDetail: {
103
+ name: string;
104
+ };
102
105
  images?: TRelatedImage[];
103
106
  i18n?: TRelatedI18n[];
104
107
  metadataI18n?: TRelatedMetadataI18n[];
@@ -158,11 +161,13 @@ export type ResponseCategoryDetailForPublic = {
158
161
  mapCategorySelectedInstagram?: TMapTypeAndSelectedInstagram[];
159
162
  };
160
163
  /**
161
- * Response Category Detai By City For Public
164
+ * Response Category Detail By City For Public
162
165
  */
163
166
  export type ResponseCategoryDetailByCityForPublic = {
164
167
  content: TCategoryDetail;
165
- cityDetail: TCityDetail;
168
+ cityDetail: {
169
+ name: string;
170
+ };
166
171
  subCategories?: TCategoryListForAdmin[];
167
172
  i18n?: TRelatedI18n[];
168
173
  metadataI18n?: TRelatedMetadataI18n[];
@@ -221,6 +226,33 @@ export type ResponseStagDetailForPublic = {
221
226
  }[];
222
227
  mapStagSelectedInstagram?: TMapTypeAndSelectedInstagram[];
223
228
  };
229
+ /**
230
+ * Response Stag Detail By City For Public
231
+ */
232
+ export type ResponseStagDetailByCityForPublic = {
233
+ content: TStagDetail;
234
+ cityDetail: {
235
+ name: string;
236
+ };
237
+ images?: TRelatedImage[];
238
+ i18n?: TRelatedI18n[];
239
+ metadataI18n?: TRelatedMetadataI18n[];
240
+ mapStagContent?: {
241
+ map: TMapTypeAndContent;
242
+ content: TContentListForPublicFrontList;
243
+ }[];
244
+ mapStagSelectedContent?: TMapTypeAndSelectedContent[];
245
+ mapStagYouTubeVideo?: {
246
+ map: TMapTypeAndYouTubeVideo;
247
+ content: TCompletedYouTubeVideoListForPublicFront;
248
+ }[];
249
+ mapStagSelectedYouTubeVideo?: TMapTypeAndSelectedYouTubeVideo[];
250
+ mapStagInstagram?: {
251
+ map: TMapTypeAndInstagram;
252
+ content: TInstagramContent;
253
+ }[];
254
+ mapStagSelectedInstagram?: TMapTypeAndSelectedInstagram[];
255
+ };
224
256
  /**
225
257
  * Response Completed YouTube Video Detail For Admin
226
258
  */
@@ -251,8 +283,8 @@ export type ResponseCompletedYouTubeChannelDetailForAdmin = {
251
283
  */
252
284
  export type ResponseContentDetailForAdmin = {
253
285
  content: TContentDetail;
254
- googlePlaceData?: TGooglePlaceData[];
255
- tripAdvisorData?: TTripAdvisorData[];
286
+ googlePlaceData?: TGooglePlaceData;
287
+ tripAdvisorData?: TTripAdvisorData;
256
288
  showTimetable?: TContentShowTimetable[];
257
289
  price?: TContentPrice[];
258
290
  image?: TContentImage[];
@@ -275,6 +307,7 @@ export type ResponseContentDetailForAdmin = {
275
307
  */
276
308
  export type ResponseContentDetailForPublic = {
277
309
  content: TContentDetail;
310
+ cityDetail: TCityDetail;
278
311
  showTimetable?: TContentShowTimetable[];
279
312
  price?: TContentPrice[];
280
313
  image?: TContentImage[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.23",
3
+ "version": "0.2.25",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"