dplus_common_v1 0.2.53 → 0.2.55

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.
@@ -0,0 +1,27 @@
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
+ * 위치 정보가 포함된 이벤트 카드
6
+ */
7
+ export type TEventCardWithLocation = TEventCard & {
8
+ city: {
9
+ city_code: string;
10
+ name: string;
11
+ name_native: string | null;
12
+ name_display: string;
13
+ } | null;
14
+ categories: Array<{
15
+ category_code: string;
16
+ name: string;
17
+ name_display: string;
18
+ order_num: number;
19
+ }>;
20
+ };
21
+ /**
22
+ * PLACE 상세 응답 타입 For User Front
23
+ */
24
+ export type ResponsePlaceDetailForUserFront = {
25
+ placeDetail: TPlace;
26
+ placeEvent?: DplusGetListDataResponse<TEventCardWithLocation>;
27
+ };
@@ -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.53",
3
+ "version": "0.2.55",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"