trand_common_v1 0.2.78 → 0.2.80
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.
|
@@ -321,6 +321,20 @@ export type ResponseMetadata = {
|
|
|
321
321
|
i18n?: TCityI18n | TStreetI18n | TCategoryI18n | TStagI18n | TContentI18n;
|
|
322
322
|
metadataI18n?: TCityMetadataI18n | TStreetMetadataI18n | TCategoryMetadataI18n | TStagMetadataI18n | TContentMetadataI18n;
|
|
323
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: TStreetListForCityDetail[];
|
|
337
|
+
} & ResponseListBase;
|
|
324
338
|
export type ResponseSearchResult = {
|
|
325
339
|
q: string;
|
|
326
340
|
start: number;
|