dplus_common_v1 0.1.64 → 0.1.66
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.
|
@@ -47,24 +47,24 @@ type BaseResponseDetail<T, K> = {
|
|
|
47
47
|
*/
|
|
48
48
|
export type ResponseFolderDetailForAdmin = BaseResponseDetail<TFolderImage, TFolderMetadataI18nDetail> & {
|
|
49
49
|
folder: TFolderDetail;
|
|
50
|
-
mapCityFolder?: TMapCityFolderWithCityInfo
|
|
51
|
-
mapCategoryFolder?: TMapCategoryFolderWithCategoryInfo
|
|
52
|
-
mapStagFolder?: TMapStagFolderWithStagInfo
|
|
53
|
-
mapTagFolder?: TMapTagFolderWithTagInfo
|
|
54
|
-
mapGroupFolder?: TMapGroupFolderWithGroupInfo
|
|
55
|
-
folderEvent?: TMapFolderEventWithEventInfo
|
|
50
|
+
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
51
|
+
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
52
|
+
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
53
|
+
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithTagInfo>;
|
|
54
|
+
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithGroupInfo>;
|
|
55
|
+
folderEvent?: DplusGetListDataResponse<TMapFolderEventWithEventInfo>;
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
58
|
* 폴더 상세 응답 타입 For User Front
|
|
59
59
|
*/
|
|
60
60
|
export type ResponseFolderDetailForUserFront = BaseResponseDetail<TFolderImage, TFolderMetadataI18nDetail> & {
|
|
61
61
|
folder: TFolderDetail;
|
|
62
|
-
mapCityFolder?: TMapCityFolderWithCityInfo
|
|
63
|
-
mapCategoryFolder?: TMapCategoryFolderWithCategoryInfo
|
|
64
|
-
mapStagFolder?: TMapStagFolderWithStagInfo
|
|
65
|
-
mapTagFolder?: TMapTagFolderWithTagInfo
|
|
66
|
-
mapGroupFolder?: TMapGroupFolderWithGroupInfo
|
|
67
|
-
folderEvent?: TMapFolderEventWithEventInfo
|
|
62
|
+
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
63
|
+
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
64
|
+
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
65
|
+
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithTagInfo>;
|
|
66
|
+
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithGroupInfo>;
|
|
67
|
+
folderEvent?: DplusGetListDataResponse<TMapFolderEventWithEventInfo>;
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* 이벤트 상세 응답 타입 For Admin
|
|
@@ -76,12 +76,12 @@ export type ResponseEventDetailForAdmin = BaseResponseDetail<TEventImage, TEvent
|
|
|
76
76
|
city_name: string | null;
|
|
77
77
|
city_name_native: string | null;
|
|
78
78
|
};
|
|
79
|
-
mapFolderEvent?: TMapFolderEventWithFolderInfo
|
|
80
|
-
mapCityEvent?: TMapCityEventWithCityInfo
|
|
81
|
-
mapCategoryEvent?: TMapCategoryEventWithCategoryInfo
|
|
82
|
-
mapStagEvent?: TMapStagEventWithStagInfo
|
|
83
|
-
mapTagEvent?: TMapTagEventWithTagInfo
|
|
84
|
-
mapGroupEvent?: TMapGroupEventWithGroupInfo
|
|
79
|
+
mapFolderEvent?: DplusGetListDataResponse<TMapFolderEventWithFolderInfo>;
|
|
80
|
+
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
81
|
+
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithCategoryInfo>;
|
|
82
|
+
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithStagInfo>;
|
|
83
|
+
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
|
|
84
|
+
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
|
|
85
85
|
};
|
|
86
86
|
/**
|
|
87
87
|
* 이벤트 상세 응답 타입 For User Front
|
|
@@ -93,12 +93,12 @@ export type ResponseEventDetailForUserFront = BaseResponseDetail<TEventImage, TE
|
|
|
93
93
|
city_name: string | null;
|
|
94
94
|
city_name_native: string | null;
|
|
95
95
|
};
|
|
96
|
-
mapFolderEvent?: TMapFolderEventWithFolderInfo
|
|
97
|
-
mapCityEvent?: TMapCityEventWithCityInfo
|
|
98
|
-
mapCategoryEvent?: TMapCategoryEventWithCategoryInfo
|
|
99
|
-
mapStagEvent?: TMapStagEventWithStagInfo
|
|
100
|
-
mapTagEvent?: TMapTagEventWithTagInfo
|
|
101
|
-
mapGroupEvent?: TMapGroupEventWithGroupInfo
|
|
96
|
+
mapFolderEvent?: DplusGetListDataResponse<TMapFolderEventWithFolderInfo>;
|
|
97
|
+
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
98
|
+
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithCategoryInfo>;
|
|
99
|
+
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithStagInfo>;
|
|
100
|
+
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
|
|
101
|
+
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* 도시 상세 응답 타입 For Admin
|
|
@@ -107,8 +107,8 @@ export type ResponseCityDetailForAdmin = BaseResponseDetail<TCityImage, TCityMet
|
|
|
107
107
|
city: TCityDetail;
|
|
108
108
|
i18n?: TCityI18n[];
|
|
109
109
|
videos?: TCityYouTubeVideo[];
|
|
110
|
-
mapCityFolder?: TMapCityFolderWithCityInfo
|
|
111
|
-
mapCityEvent?: TMapCityEventWithCityInfo
|
|
110
|
+
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
111
|
+
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* 도시 상세 응답 타입 For User Front
|
|
@@ -117,8 +117,8 @@ export type ResponseCityDetailForUserFront = BaseResponseDetail<TCityImage, TCit
|
|
|
117
117
|
city: TCityDetail;
|
|
118
118
|
i18n?: TCityI18n[];
|
|
119
119
|
videos?: TCityYouTubeVideo[];
|
|
120
|
-
mapCityFolder?: TMapCityFolderWithFolderInfo
|
|
121
|
-
mapCityEvent?: TMapCityEventWithEventInfo
|
|
120
|
+
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithFolderInfo>;
|
|
121
|
+
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithEventInfo>;
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
124
124
|
* 카테고리 상세 응답 타입 For Admin
|
|
@@ -127,8 +127,8 @@ export type ResponseCategoryDetailForAdmin = BaseResponseDetail<null, TCategoryM
|
|
|
127
127
|
category: TCategoryDetail;
|
|
128
128
|
subCategories?: TCategoryDetail[];
|
|
129
129
|
i18n?: TCategoryI18n[];
|
|
130
|
-
mapCategoryFolder?: TMapCategoryFolderWithCategoryInfo
|
|
131
|
-
mapCategoryEvent?: TMapCategoryEventWithCategoryInfo
|
|
130
|
+
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
131
|
+
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithCategoryInfo>;
|
|
132
132
|
};
|
|
133
133
|
/**
|
|
134
134
|
* 카테고리 상세 응답 타입 For User Front
|
|
@@ -137,8 +137,8 @@ export type ResponseCategoryDetailForUserFront = BaseResponseDetail<null, TCateg
|
|
|
137
137
|
category: TCategoryDetail;
|
|
138
138
|
subCategories?: TCategoryDetail[];
|
|
139
139
|
i18n?: TCategoryI18n[];
|
|
140
|
-
mapCategoryFolder?: TMapCategoryFolderWithFolderInfo
|
|
141
|
-
mapCategoryEvent?: TMapCategoryEventWithEventInfo
|
|
140
|
+
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithFolderInfo>;
|
|
141
|
+
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithEventInfo>;
|
|
142
142
|
};
|
|
143
143
|
/**
|
|
144
144
|
* Stag 상세 응답 타입 For Admin
|
|
@@ -146,8 +146,8 @@ export type ResponseCategoryDetailForUserFront = BaseResponseDetail<null, TCateg
|
|
|
146
146
|
export type ResponseStagDetailForAdmin = BaseResponseDetail<null, TStagMetadataI18nDetail> & {
|
|
147
147
|
stag: TStagDetail;
|
|
148
148
|
i18n?: TStagI18n[];
|
|
149
|
-
mapStagFolder?: TMapStagFolderWithStagInfo
|
|
150
|
-
mapStagEvent?: TMapStagEventWithStagInfo
|
|
149
|
+
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
150
|
+
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithStagInfo>;
|
|
151
151
|
};
|
|
152
152
|
/**
|
|
153
153
|
* Stag 상세 응답 타입 For User Front
|
|
@@ -155,40 +155,40 @@ export type ResponseStagDetailForAdmin = BaseResponseDetail<null, TStagMetadataI
|
|
|
155
155
|
export type ResponseStagDetailForUserFront = BaseResponseDetail<null, TStagMetadataI18nDetail> & {
|
|
156
156
|
stag: TStagDetail;
|
|
157
157
|
i18n?: TStagI18n[];
|
|
158
|
-
mapStagFolder?: TMapStagFolderWithFolderInfo
|
|
159
|
-
mapStagEvent?: TMapStagEventWithEventInfo
|
|
158
|
+
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithFolderInfo>;
|
|
159
|
+
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithEventInfo>;
|
|
160
160
|
};
|
|
161
161
|
/**
|
|
162
162
|
* Tag 상세 응답 타입 For Admin
|
|
163
163
|
*/
|
|
164
164
|
export type ResponseTagDetailForAdmin = BaseResponseDetail<null, null> & {
|
|
165
165
|
tag: TTag;
|
|
166
|
-
mapTagFolder?: TMapTagFolderWithTagInfo
|
|
167
|
-
mapTagEvent?: TMapTagEventWithTagInfo
|
|
166
|
+
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithTagInfo>;
|
|
167
|
+
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
|
|
168
168
|
};
|
|
169
169
|
/**
|
|
170
170
|
* Tag 상세 응답 타입 For User Front
|
|
171
171
|
*/
|
|
172
172
|
export type ResponseTagDetailForUserFront = BaseResponseDetail<null, null> & {
|
|
173
173
|
tag: TTag;
|
|
174
|
-
mapTagFolder?: TMapTagFolderWithFolderInfo
|
|
175
|
-
mapTagEvent?: TMapTagEventWithEventInfo
|
|
174
|
+
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithFolderInfo>;
|
|
175
|
+
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithEventInfo>;
|
|
176
176
|
};
|
|
177
177
|
/**
|
|
178
178
|
* Group 상세 응답 타입 For Admin
|
|
179
179
|
*/
|
|
180
180
|
export type ResponseGroupDetailForAdmin = BaseResponseDetail<TGroupImage, TGroupMetadataI18nDetail> & {
|
|
181
181
|
group: TGroupDetail;
|
|
182
|
-
mapGroupFolder?: TMapGroupFolderWithGroupInfo
|
|
183
|
-
mapGroupEvent?: TMapGroupEventWithGroupInfo
|
|
182
|
+
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithGroupInfo>;
|
|
183
|
+
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
|
|
184
184
|
};
|
|
185
185
|
/**
|
|
186
186
|
* 카테고리 상세 응답 타입 For User Front
|
|
187
187
|
*/
|
|
188
188
|
export type ResponseGroupDetailForUserFront = BaseResponseDetail<TGroupImage, TGroupMetadataI18nDetail> & {
|
|
189
189
|
group: TGroupDetail;
|
|
190
|
-
mapGroupFolder?: TMapGroupFolderWithFolderInfo
|
|
191
|
-
mapGroupEvent?: TMapGroupEventWithEventInfo
|
|
190
|
+
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithFolderInfo>;
|
|
191
|
+
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithEventInfo>;
|
|
192
192
|
};
|
|
193
193
|
/**
|
|
194
194
|
* 날짜 상세 응답 타입 For Admin
|