trand_common_v1 0.2.50 → 0.2.52
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.
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { TCategoryDetail, TCategoryListForPublic } from "../types/t-category";
|
|
2
2
|
import { TCategoryI18n } from "../types/t-category-i18n";
|
|
3
3
|
import { TCategoryMetadataI18n } from "../types/t-category-metadata-i18n";
|
|
4
|
-
import { TCityDetail
|
|
4
|
+
import { TCityDetail } from "../types/t-city";
|
|
5
5
|
import { TCityI18n } from "../types/t-city-i18n";
|
|
6
6
|
import { TCityImage } from "../types/t-city-image";
|
|
7
7
|
import { TCityMetadataI18n } from "../types/t-city-metadata-i18n";
|
|
8
8
|
import { TCompletedYouTubeChannelDetail } from "../types/t-completed-youtube-channel";
|
|
9
9
|
import { TCompletedYouTubeVideoDetail, TCompletedYouTubeVideoListForPublicFront } from "../types/t-completed-youtube-video";
|
|
10
|
-
import { TContentDetail
|
|
10
|
+
import { TContentDetail } from "../types/t-content";
|
|
11
11
|
import { TContentGPPhoto } from "../types/t-content-gp-photo";
|
|
12
12
|
import { TContentI18n } from "../types/t-content-i18n";
|
|
13
13
|
import { TContentImage } from "../types/t-content-image";
|
|
@@ -40,7 +40,7 @@ import { TStagDetail, TStagListForContentDetail } from "../types/t-stag";
|
|
|
40
40
|
import { TStagI18n } from "../types/t-stag-i18n";
|
|
41
41
|
import { TStagImage } from "../types/t-stag-image";
|
|
42
42
|
import { TStagMetadataI18n } from "../types/t-stag-metadata-i18n";
|
|
43
|
-
import { TStreetDetail,
|
|
43
|
+
import { TStreetDetail, TStreetListForCityDetail } from "../types/t-street";
|
|
44
44
|
import { TStreetI18n } from "../types/t-street-i18n";
|
|
45
45
|
import { TStreetImage } from "../types/t-street-image";
|
|
46
46
|
import { TStreetMetadataI18n } from "../types/t-street-metadata-i18n";
|
|
@@ -309,9 +309,9 @@ export type ResponseSearchResult = {
|
|
|
309
309
|
start: number;
|
|
310
310
|
limit: number;
|
|
311
311
|
serverTime: string;
|
|
312
|
-
cities: ResponseItemsFlat<
|
|
313
|
-
streets: ResponseItemsFlat<
|
|
314
|
-
contents: ResponseItemsFlat<
|
|
312
|
+
cities: ResponseItemsFlat<TCityDetail>;
|
|
313
|
+
streets: ResponseItemsFlat<TStreetDetail>;
|
|
314
|
+
contents: ResponseItemsFlat<TContentDetail>;
|
|
315
315
|
};
|
|
316
316
|
export type ResponseTrandAPI<T> = {
|
|
317
317
|
success: boolean;
|