trand_common_v1 0.2.77 → 0.2.79

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.
@@ -90,6 +90,7 @@ export type ResponseCityDetailForPublic = {
90
90
  streets?: TStreetListForCityDetail[];
91
91
  mapCityContent?: ResponseItemsPaired<TMapCityContent, TContentDetail>;
92
92
  mapCityYouTubeVideo?: ResponseItemsPaired<TMapCityYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
93
+ mapCityYouTubeVideoShorts?: ResponseItemsPaired<TMapCityYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
93
94
  mapCityInstagram?: ResponseItemsPaired<TMapCityInstagram, TInstagramContent>;
94
95
  };
95
96
  /**
@@ -120,6 +121,7 @@ export type ResponseStreetDetailForPublic = {
120
121
  metadataI18n?: TStreetMetadataI18n;
121
122
  mapStreetContent?: ResponseItemsPaired<TMapStreetContent, TContentDetail>;
122
123
  mapStreetYouTubeVideo?: ResponseItemsPaired<TMapStreetYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
124
+ mapStreetYouTubeVideoShorts?: ResponseItemsPaired<TMapStreetYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
123
125
  mapStreetInstagram?: ResponseItemsPaired<TMapStreetInstagram, TInstagramContent>;
124
126
  };
125
127
  /**
@@ -150,6 +152,7 @@ export type ResponseCategoryDetailForPublic = {
150
152
  metadataI18n?: TCategoryMetadataI18n;
151
153
  mapCategoryContent?: ResponseItemsPaired<TMapCategoryContent, TContentDetail>;
152
154
  mapCategoryYouTubeVideo?: ResponseItemsPaired<TMapCategoryYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
155
+ mapCategoryYouTubeVideoShorts?: ResponseItemsPaired<TMapCategoryYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
153
156
  mapCategoryInstagram?: ResponseItemsPaired<TMapCategoryInstagram, TInstagramContent>;
154
157
  };
155
158
  /**
@@ -180,6 +183,7 @@ export type ResponseStagDetailForPublic = {
180
183
  metadataI18n?: TStagMetadataI18n;
181
184
  mapStagContent?: ResponseItemsPaired<TMapStagContent, TContentDetail>;
182
185
  mapStagYouTubeVideo?: ResponseItemsPaired<TMapStagYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
186
+ mapStagYouTubeVideoShorts?: ResponseItemsPaired<TMapStagYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
183
187
  mapStagInstagram?: ResponseItemsPaired<TMapStagInstagram, TInstagramContent>;
184
188
  };
185
189
  /**
@@ -262,6 +266,7 @@ export type ResponseContentDetailForPublic = {
262
266
  }[];
263
267
  mapContentInstagram?: ResponseItemsPaired<TMapContentInstagram, TInstagramContent>;
264
268
  mapContentYouTubeVideo?: ResponseItemsPaired<TMapContentYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
269
+ mapContentYouTubeVideoShorts?: ResponseItemsPaired<TMapContentYouTubeVideo, TCompletedYouTubeVideoListForPublicFront>;
265
270
  mapContentStag?: ResponseItemsPaired<TMapStagContent, TStagListForContentDetail>;
266
271
  mapContentTag?: ResponseItemsPaired<TMapTagContent, TTag>;
267
272
  };
@@ -316,6 +321,20 @@ export type ResponseMetadata = {
316
321
  i18n?: TCityI18n | TStreetI18n | TCategoryI18n | TStagI18n | TContentI18n;
317
322
  metadataI18n?: TCityMetadataI18n | TStreetMetadataI18n | TCategoryMetadataI18n | TStagMetadataI18n | TContentMetadataI18n;
318
323
  };
324
+ /**
325
+ * Response Street List By City For Public
326
+ */
327
+ export type ResponseStreetListForPublic = {
328
+ cityInfo: {
329
+ city_code: string;
330
+ name: string;
331
+ native: string;
332
+ name_ko: string;
333
+ name_i18n: string;
334
+ description_i18n: string;
335
+ };
336
+ items: TStreetDetail[];
337
+ } & ResponseListBase;
319
338
  export type ResponseSearchResult = {
320
339
  q: string;
321
340
  start: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.77",
3
+ "version": "0.2.79",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"