dplus_common_v1 0.1.71 → 0.1.72
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.
|
@@ -46,7 +46,10 @@ type BaseResponseDetail<T, K> = {
|
|
|
46
46
|
* 폴더 상세 응답 타입 For Admin
|
|
47
47
|
*/
|
|
48
48
|
export type ResponseFolderDetailForAdmin = BaseResponseDetail<TFolderImage, TFolderMetadataI18nDetail> & {
|
|
49
|
-
folder: TFolderDetail
|
|
49
|
+
folder: TFolderDetail & {
|
|
50
|
+
target_country_native: string | null;
|
|
51
|
+
target_city_native: string | null;
|
|
52
|
+
};
|
|
50
53
|
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
51
54
|
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
52
55
|
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
@@ -59,10 +62,8 @@ export type ResponseFolderDetailForAdmin = BaseResponseDetail<TFolderImage, TFol
|
|
|
59
62
|
*/
|
|
60
63
|
export type ResponseFolderDetailForUserFront = BaseResponseDetail<TFolderImage, TFolderMetadataI18nDetail> & {
|
|
61
64
|
folder: TFolderDetail & {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
city_name: string | null;
|
|
65
|
-
city_name_native: string | null;
|
|
65
|
+
target_country_native: string | null;
|
|
66
|
+
target_city_native: string | null;
|
|
66
67
|
};
|
|
67
68
|
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
68
69
|
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
@@ -76,10 +77,8 @@ export type ResponseFolderDetailForUserFront = BaseResponseDetail<TFolderImage,
|
|
|
76
77
|
*/
|
|
77
78
|
export type ResponseEventDetailForAdmin = BaseResponseDetail<TEventImage, TEventMetadataI18nDetail> & {
|
|
78
79
|
event: TEventDetail & {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
city_name: string | null;
|
|
82
|
-
city_name_native: string | null;
|
|
80
|
+
target_country_native: string | null;
|
|
81
|
+
target_city_native: string | null;
|
|
83
82
|
};
|
|
84
83
|
mapFolderEvent?: DplusGetListDataResponse<TMapFolderEventWithFolderInfo>;
|
|
85
84
|
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
@@ -93,10 +92,8 @@ export type ResponseEventDetailForAdmin = BaseResponseDetail<TEventImage, TEvent
|
|
|
93
92
|
*/
|
|
94
93
|
export type ResponseEventDetailForUserFront = BaseResponseDetail<TEventImage, TEventMetadataI18nDetail> & {
|
|
95
94
|
event: TEventDetail & {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
city_name: string | null;
|
|
99
|
-
city_name_native: string | null;
|
|
95
|
+
target_country_native: string | null;
|
|
96
|
+
target_city_native: string | null;
|
|
100
97
|
};
|
|
101
98
|
mapFolderEvent?: DplusGetListDataResponse<TMapFolderEventWithFolderInfo>;
|
|
102
99
|
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|