dplus_common_v1 0.2.52 → 0.2.54

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,6 +1,11 @@
1
1
  import { TCountryDetail } from "../types/types-i18n/t-country.js";
2
2
  import { TCountryMetadataI18nDetail } from "../types/types-i18n/t-country-metadata-i18n.js";
3
3
  import { DplusGetListDataResponse } from "./dplus-response-types.js";
4
+ import { TMapCountryFolderWithFolderInfo } from "../types/types-map/t-map-country-folder.js";
5
+ import { TMapCountryEventWithEventInfo } from "../types/types-map/t-map-country-event.js";
6
+ import { TCityInfoForCountryDetail } from "../types/types-city/t-city.js";
7
+ import { TCategoryInfoForCountryDetail } from "../types/types-category/t-category.js";
8
+ import { TStagInfoForCountryDetail } from "../types/types-stag/t-stag.js";
4
9
  /**
5
10
  * 국가 상세 응답 타입 For Admin
6
11
  */
@@ -18,4 +23,9 @@ export type ResponseCountryDetailForUserFront = {
18
23
  countryInfo: TCountryDetail;
19
24
  metadataI18n: DplusGetListDataResponse<TCountryMetadataI18nDetail>;
20
25
  };
26
+ cities: DplusGetListDataResponse<TCityInfoForCountryDetail>;
27
+ categories: DplusGetListDataResponse<TCategoryInfoForCountryDetail>;
28
+ stags?: DplusGetListDataResponse<TStagInfoForCountryDetail>;
29
+ mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithFolderInfo>;
30
+ mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithEventInfo>;
21
31
  };
@@ -0,0 +1,10 @@
1
+ import { DplusGetListDataResponse } from "./dplus-response-types.js";
2
+ import { TPlace } from "../types/types-place/t-place.js";
3
+ import { TEventCard } from "../types/types-event/t-event.js";
4
+ /**
5
+ * PLACE 상세 응답 타입 For User Front
6
+ */
7
+ export type ResponsePlaceDetailForUserFront = {
8
+ placeDetail: TPlace;
9
+ placeEvent?: DplusGetListDataResponse<TEventCard>;
10
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=dplus-response-place.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dplus-response-place.js","sourceRoot":"","sources":["../../src/dplus-types/dplus-response-place.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.2.52",
3
+ "version": "0.2.54",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"