dplus_common_v1 0.1.98 → 0.1.100
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.
- package/dist/dplus-types/dplus-response-types.d.ts +19 -0
- package/dist/fields/fields-place/f-place.d.ts +111 -0
- package/dist/fields/fields-place/f-place.js +112 -0
- package/dist/fields/fields-place/f-place.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/types/types-place/t-place.d.ts +22 -0
- package/dist/types/types-place/t-place.js +2 -0
- package/dist/types/types-place/t-place.js.map +1 -0
- package/dist/types/types-tag/t-tag.d.ts +2 -0
- package/package.json +1 -1
|
@@ -266,6 +266,25 @@ export type ResponseNearbyDetailForUserFront = {
|
|
|
266
266
|
};
|
|
267
267
|
events: TEventCardForDateDetail[];
|
|
268
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* 장소 검색 결과 타입
|
|
271
|
+
*/
|
|
272
|
+
export type TPlaceSearchItem = {
|
|
273
|
+
place_id: number;
|
|
274
|
+
name_en: string;
|
|
275
|
+
name_native: string | null;
|
|
276
|
+
target_country_code: string;
|
|
277
|
+
target_city_code: string | null;
|
|
278
|
+
latitude: number | null;
|
|
279
|
+
longitude: number | null;
|
|
280
|
+
address_eng: string | null;
|
|
281
|
+
address_native: string | null;
|
|
282
|
+
google_map_url: string | null;
|
|
283
|
+
score: number;
|
|
284
|
+
distance_m: number | null;
|
|
285
|
+
created_at: string;
|
|
286
|
+
updated_at: string;
|
|
287
|
+
};
|
|
269
288
|
/**
|
|
270
289
|
* 메타데이터 응답 타입 For User Front
|
|
271
290
|
* - DB NULL 가능성을 반영하여 대부분 string | null
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
export declare const F_PLACE: {
|
|
2
|
+
place_id: {
|
|
3
|
+
id: string;
|
|
4
|
+
label: string;
|
|
5
|
+
is_required: boolean;
|
|
6
|
+
max_length: number;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
};
|
|
9
|
+
name_en: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
is_required: boolean;
|
|
13
|
+
max_length: number;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
};
|
|
16
|
+
name_native: {
|
|
17
|
+
id: string;
|
|
18
|
+
label: string;
|
|
19
|
+
is_required: boolean;
|
|
20
|
+
max_length: number;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
target_country_code: {
|
|
24
|
+
id: string;
|
|
25
|
+
label: string;
|
|
26
|
+
is_required: boolean;
|
|
27
|
+
max_length: number;
|
|
28
|
+
placeholder: string;
|
|
29
|
+
};
|
|
30
|
+
target_city_code: {
|
|
31
|
+
id: string;
|
|
32
|
+
label: string;
|
|
33
|
+
is_required: boolean;
|
|
34
|
+
max_length: number;
|
|
35
|
+
placeholder: string;
|
|
36
|
+
};
|
|
37
|
+
latitude: {
|
|
38
|
+
id: string;
|
|
39
|
+
label: string;
|
|
40
|
+
is_required: boolean;
|
|
41
|
+
max_length: number;
|
|
42
|
+
placeholder: string;
|
|
43
|
+
};
|
|
44
|
+
longitude: {
|
|
45
|
+
id: string;
|
|
46
|
+
label: string;
|
|
47
|
+
is_required: boolean;
|
|
48
|
+
max_length: number;
|
|
49
|
+
placeholder: string;
|
|
50
|
+
};
|
|
51
|
+
location: {
|
|
52
|
+
id: string;
|
|
53
|
+
label: string;
|
|
54
|
+
is_required: boolean;
|
|
55
|
+
max_length: number;
|
|
56
|
+
placeholder: string;
|
|
57
|
+
};
|
|
58
|
+
radius_m: {
|
|
59
|
+
id: string;
|
|
60
|
+
label: string;
|
|
61
|
+
is_required: boolean;
|
|
62
|
+
max_length: number;
|
|
63
|
+
placeholder: string;
|
|
64
|
+
};
|
|
65
|
+
address_eng: {
|
|
66
|
+
id: string;
|
|
67
|
+
label: string;
|
|
68
|
+
is_required: boolean;
|
|
69
|
+
max_length: number;
|
|
70
|
+
placeholder: string;
|
|
71
|
+
};
|
|
72
|
+
address_native: {
|
|
73
|
+
id: string;
|
|
74
|
+
label: string;
|
|
75
|
+
is_required: boolean;
|
|
76
|
+
max_length: number;
|
|
77
|
+
placeholder: string;
|
|
78
|
+
};
|
|
79
|
+
google_map_url: {
|
|
80
|
+
id: string;
|
|
81
|
+
label: string;
|
|
82
|
+
is_required: boolean;
|
|
83
|
+
max_length: number;
|
|
84
|
+
placeholder: string;
|
|
85
|
+
};
|
|
86
|
+
is_active: {
|
|
87
|
+
id: string;
|
|
88
|
+
label: string;
|
|
89
|
+
is_required: boolean;
|
|
90
|
+
default_value: boolean;
|
|
91
|
+
};
|
|
92
|
+
created_at: {
|
|
93
|
+
id: string;
|
|
94
|
+
label: string;
|
|
95
|
+
is_required: boolean;
|
|
96
|
+
placeholder: string;
|
|
97
|
+
};
|
|
98
|
+
created_by: {
|
|
99
|
+
id: string;
|
|
100
|
+
label: string;
|
|
101
|
+
is_required: boolean;
|
|
102
|
+
max_length: number;
|
|
103
|
+
placeholder: string;
|
|
104
|
+
};
|
|
105
|
+
updated_at: {
|
|
106
|
+
id: string;
|
|
107
|
+
label: string;
|
|
108
|
+
is_required: boolean;
|
|
109
|
+
placeholder: string;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
export const F_PLACE = {
|
|
2
|
+
place_id: {
|
|
3
|
+
id: "place_id",
|
|
4
|
+
label: "Place ID",
|
|
5
|
+
is_required: true,
|
|
6
|
+
max_length: 36,
|
|
7
|
+
placeholder: "ex. BIGSERIAL",
|
|
8
|
+
},
|
|
9
|
+
name_en: {
|
|
10
|
+
id: "name_en",
|
|
11
|
+
label: "Name (English)",
|
|
12
|
+
is_required: true,
|
|
13
|
+
max_length: 160,
|
|
14
|
+
placeholder: "ex. Seoul",
|
|
15
|
+
},
|
|
16
|
+
name_native: {
|
|
17
|
+
id: "name_native",
|
|
18
|
+
label: "Name (Native)",
|
|
19
|
+
is_required: false,
|
|
20
|
+
max_length: 160,
|
|
21
|
+
placeholder: "ex. 서울",
|
|
22
|
+
},
|
|
23
|
+
target_country_code: {
|
|
24
|
+
id: "target_country_code",
|
|
25
|
+
label: "Target Country Code",
|
|
26
|
+
is_required: true,
|
|
27
|
+
max_length: 2,
|
|
28
|
+
placeholder: "ex. KR",
|
|
29
|
+
},
|
|
30
|
+
target_city_code: {
|
|
31
|
+
id: "target_city_code",
|
|
32
|
+
label: "Target City Code",
|
|
33
|
+
is_required: false,
|
|
34
|
+
max_length: 96,
|
|
35
|
+
placeholder: "ex. seoul, jeju, bangkok, etc.",
|
|
36
|
+
},
|
|
37
|
+
latitude: {
|
|
38
|
+
id: "latitude",
|
|
39
|
+
label: "Location Latitude",
|
|
40
|
+
is_required: false,
|
|
41
|
+
max_length: 20,
|
|
42
|
+
placeholder: "NUMERIC(10, 8) ex. 37.5665",
|
|
43
|
+
},
|
|
44
|
+
longitude: {
|
|
45
|
+
id: "longitude",
|
|
46
|
+
label: "Location Longitude",
|
|
47
|
+
is_required: false,
|
|
48
|
+
max_length: 20,
|
|
49
|
+
placeholder: "NUMERIC(11, 8) ex. 126.9780",
|
|
50
|
+
},
|
|
51
|
+
location: {
|
|
52
|
+
id: "location",
|
|
53
|
+
label: "Location",
|
|
54
|
+
is_required: false,
|
|
55
|
+
max_length: 100,
|
|
56
|
+
placeholder: "ex. 010020030030030",
|
|
57
|
+
},
|
|
58
|
+
radius_m: {
|
|
59
|
+
id: "radius_m",
|
|
60
|
+
label: "Radius M",
|
|
61
|
+
is_required: false,
|
|
62
|
+
max_length: 10,
|
|
63
|
+
placeholder: "ex. 1000",
|
|
64
|
+
},
|
|
65
|
+
address_eng: {
|
|
66
|
+
id: "address_eng",
|
|
67
|
+
label: "Address Eng",
|
|
68
|
+
is_required: false,
|
|
69
|
+
max_length: 500,
|
|
70
|
+
placeholder: "ex. 123 Main St, Anytown, USA",
|
|
71
|
+
},
|
|
72
|
+
address_native: {
|
|
73
|
+
id: "address_native",
|
|
74
|
+
label: "Address Native",
|
|
75
|
+
is_required: false,
|
|
76
|
+
max_length: 500,
|
|
77
|
+
placeholder: "ex. 123 Main St, Anytown, USA",
|
|
78
|
+
},
|
|
79
|
+
google_map_url: {
|
|
80
|
+
id: "google_map_url",
|
|
81
|
+
label: "Google Map URL",
|
|
82
|
+
is_required: false,
|
|
83
|
+
max_length: 250,
|
|
84
|
+
placeholder: "ex. https://www.google.com/maps/place/?cid=1234567890",
|
|
85
|
+
},
|
|
86
|
+
is_active: {
|
|
87
|
+
id: "is_active",
|
|
88
|
+
label: "Is Active",
|
|
89
|
+
is_required: true,
|
|
90
|
+
default_value: true,
|
|
91
|
+
},
|
|
92
|
+
created_at: {
|
|
93
|
+
id: "created_at",
|
|
94
|
+
label: "Created At",
|
|
95
|
+
is_required: true,
|
|
96
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
97
|
+
},
|
|
98
|
+
created_by: {
|
|
99
|
+
id: "created_by",
|
|
100
|
+
label: "Created By",
|
|
101
|
+
is_required: false,
|
|
102
|
+
max_length: 45,
|
|
103
|
+
placeholder: "ex. JYUN",
|
|
104
|
+
},
|
|
105
|
+
updated_at: {
|
|
106
|
+
id: "updated_at",
|
|
107
|
+
label: "Updated At",
|
|
108
|
+
is_required: true,
|
|
109
|
+
placeholder: "ex. 2025-01-01 12:00:00",
|
|
110
|
+
},
|
|
111
|
+
};
|
|
112
|
+
//# sourceMappingURL=f-place.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"f-place.js","sourceRoot":"","sources":["../../../src/fields/fields-place/f-place.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export * from "./fields/fields-map/f-map-tag-event.js";
|
|
|
42
42
|
export * from "./fields/fields-map/f-map-tag-folder.js";
|
|
43
43
|
export * from "./fields/fields-map/f-map-user-event.js";
|
|
44
44
|
export * from "./fields/fields-map/f-map-user-folder.js";
|
|
45
|
+
export * from "./fields/fields-place/f-place.js";
|
|
45
46
|
export * from "./fields/fields-service-provider/f-service-provider.js";
|
|
46
47
|
export * from "./fields/fields-stag/f-stag-i18n.js";
|
|
47
48
|
export * from "./fields/fields-stag/f-stag-metadata-i18n.js";
|
|
@@ -89,6 +90,7 @@ export * from "./types/types-map/t-map-tag-event.js";
|
|
|
89
90
|
export * from "./types/types-map/t-map-tag-folder.js";
|
|
90
91
|
export * from "./types/types-map/t-map-user-event.js";
|
|
91
92
|
export * from "./types/types-map/t-map-user-folder.js";
|
|
93
|
+
export * from "./types/types-place/t-place.js";
|
|
92
94
|
export * from "./types/types-service-provider/t-service-provider.js";
|
|
93
95
|
export * from "./types/types-stag/t-stag-i18n.js";
|
|
94
96
|
export * from "./types/types-stag/t-stag-metadata-i18n.js";
|
package/dist/index.js
CHANGED
|
@@ -42,6 +42,7 @@ export * from "./fields/fields-map/f-map-tag-event.js";
|
|
|
42
42
|
export * from "./fields/fields-map/f-map-tag-folder.js";
|
|
43
43
|
export * from "./fields/fields-map/f-map-user-event.js";
|
|
44
44
|
export * from "./fields/fields-map/f-map-user-folder.js";
|
|
45
|
+
export * from "./fields/fields-place/f-place.js";
|
|
45
46
|
export * from "./fields/fields-service-provider/f-service-provider.js";
|
|
46
47
|
export * from "./fields/fields-stag/f-stag-i18n.js";
|
|
47
48
|
export * from "./fields/fields-stag/f-stag-metadata-i18n.js";
|
|
@@ -89,6 +90,7 @@ export * from "./types/types-map/t-map-tag-event.js";
|
|
|
89
90
|
export * from "./types/types-map/t-map-tag-folder.js";
|
|
90
91
|
export * from "./types/types-map/t-map-user-event.js";
|
|
91
92
|
export * from "./types/types-map/t-map-user-folder.js";
|
|
93
|
+
export * from "./types/types-place/t-place.js";
|
|
92
94
|
export * from "./types/types-service-provider/t-service-provider.js";
|
|
93
95
|
export * from "./types/types-stag/t-stag-i18n.js";
|
|
94
96
|
export * from "./types/types-stag/t-stag-metadata-i18n.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export type TPlace = {
|
|
2
|
+
place_id: number;
|
|
3
|
+
name_en: string;
|
|
4
|
+
name_native: string | null;
|
|
5
|
+
target_country_code: string;
|
|
6
|
+
target_city_code: string | null;
|
|
7
|
+
latitude: number | null;
|
|
8
|
+
longitude: number | null;
|
|
9
|
+
location: string | null;
|
|
10
|
+
radius_m: number | null;
|
|
11
|
+
address_eng: string | null;
|
|
12
|
+
address_native: string | null;
|
|
13
|
+
google_map_url: string | null;
|
|
14
|
+
is_active: boolean;
|
|
15
|
+
created_at: string;
|
|
16
|
+
created_by: string | null;
|
|
17
|
+
updated_at: string;
|
|
18
|
+
};
|
|
19
|
+
type TPlaceInsertBase = Omit<TPlace, "place_id" | "location" | "created_at" | "created_by" | "updated_at">;
|
|
20
|
+
export type TPlaceInsert = Required<Pick<TPlaceInsertBase, "name_en" | "target_country_code">> & Partial<Omit<TPlaceInsertBase, "name_en" | "target_country_code">>;
|
|
21
|
+
export type TPlaceUpdate = Partial<Omit<TPlace, "place_id" | "location" | "created_at" | "created_by" | "updated_at">>;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"t-place.js","sourceRoot":"","sources":["../../../src/types/types-place/t-place.ts"],"names":[],"mappings":""}
|
|
@@ -3,12 +3,14 @@ export type TTagLabelInfo = {
|
|
|
3
3
|
tag_code: string;
|
|
4
4
|
tag: string;
|
|
5
5
|
event_count: number;
|
|
6
|
+
view_count: number;
|
|
6
7
|
};
|
|
7
8
|
export type TTag = {
|
|
8
9
|
id: number;
|
|
9
10
|
tag_code: string;
|
|
10
11
|
tag: string;
|
|
11
12
|
event_count: number;
|
|
13
|
+
view_count: number;
|
|
12
14
|
created_at: Date;
|
|
13
15
|
updated_at: Date;
|
|
14
16
|
};
|