dplus_common_v1 0.1.78 → 0.1.79
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.
|
@@ -234,15 +234,10 @@ export type TEventCardForDateDetail = TEventCard & {
|
|
|
234
234
|
/**
|
|
235
235
|
* 날짜 상세 응답 타입 For Admin
|
|
236
236
|
*/
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
* 오늘 날짜 상세 응답 타입 For Admin
|
|
242
|
-
*/
|
|
243
|
-
/**
|
|
244
|
-
* 오늘 날짜 상세 응답 타입 For User Front
|
|
245
|
-
*/
|
|
237
|
+
export type ResponseDateDetailForAdmin = {
|
|
238
|
+
date: string;
|
|
239
|
+
events: TEventCardForDateDetail[];
|
|
240
|
+
};
|
|
246
241
|
/**
|
|
247
242
|
* 주변 날짜 상세 응답 타입 For Admin
|
|
248
243
|
*/
|
|
@@ -8,6 +8,7 @@ export type TCountryOption = {
|
|
|
8
8
|
country_name: string;
|
|
9
9
|
native: string | null;
|
|
10
10
|
};
|
|
11
|
+
export declare const DB_COLUMNS_COUNTRY_OPTION: string[];
|
|
11
12
|
export type TCountryList = {
|
|
12
13
|
country_code: string;
|
|
13
14
|
country_name: string;
|
|
@@ -20,6 +21,7 @@ export type TCountryList = {
|
|
|
20
21
|
created_at: Date;
|
|
21
22
|
updated_at: Date;
|
|
22
23
|
};
|
|
24
|
+
export declare const DB_COLUMNS_COUNTRY_LIST: string[];
|
|
23
25
|
export type TCountryDetail = TCountryList & {
|
|
24
26
|
thumbnail_square: string;
|
|
25
27
|
thumbnail_horizontal: string;
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
* DB 컬럼 목록 For Country Option For Admin
|
|
3
|
+
*/
|
|
4
|
+
export const DB_COLUMNS_COUNTRY_OPTION = ["country_code", "country_name", "native"];
|
|
5
|
+
/*
|
|
6
|
+
* DB 컬럼 목록 For Country List For Admin
|
|
7
|
+
*/
|
|
8
|
+
export const DB_COLUMNS_COUNTRY_LIST = ["country_code", "country_name", "native", "event_count", "user_count", "view_count", "is_active", "is_display", "created_at", "updated_at"];
|
|
2
9
|
//# sourceMappingURL=t-country.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-country.js","sourceRoot":"","sources":["../../../src/types/types-i18n/t-country.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"t-country.js","sourceRoot":"","sources":["../../../src/types/types-i18n/t-country.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,cAAc,EAAE,cAAc,EAAE,QAAQ,CAAC,CAAC;AAkBpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,cAAc,EAAE,cAAc,EAAE,QAAQ,EAAE,aAAa,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,CAAC,CAAC"}
|