dplus_common_v1 0.1.72 → 0.1.73
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.
|
@@ -192,61 +192,44 @@ export type ResponseGroupDetailForUserFront = BaseResponseDetail<TGroupImage, TG
|
|
|
192
192
|
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithFolderInfo>;
|
|
193
193
|
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithEventInfo>;
|
|
194
194
|
};
|
|
195
|
+
/**
|
|
196
|
+
* 날짜 상세 응답 타입 이벤트 카드 타입
|
|
197
|
+
*/
|
|
198
|
+
export type TEventCardForDateDetail = TEventCard & {
|
|
199
|
+
folders: TFolderSummaryInfo[];
|
|
200
|
+
cities: TCityLabelInfo[];
|
|
201
|
+
categories: TCategoryLabelInfo[];
|
|
202
|
+
stags: TStagLabelInfo[];
|
|
203
|
+
tags: TTagLabelInfo[];
|
|
204
|
+
groups: TGroupLabelInfo[];
|
|
205
|
+
};
|
|
195
206
|
/**
|
|
196
207
|
* 날짜 상세 응답 타입 For Admin
|
|
197
208
|
*/
|
|
198
209
|
export type ResponseDateDetailForAdmin = {
|
|
199
210
|
date: string;
|
|
200
|
-
events:
|
|
201
|
-
folders: TFolderSummaryInfo[];
|
|
202
|
-
cities: TCityLabelInfo[];
|
|
203
|
-
categories: TCategoryLabelInfo[];
|
|
204
|
-
stags: TStagLabelInfo[];
|
|
205
|
-
tags: TTagLabelInfo[];
|
|
206
|
-
groups: TGroupLabelInfo[];
|
|
207
|
-
}[];
|
|
211
|
+
events: TEventCardForDateDetail[];
|
|
208
212
|
};
|
|
209
213
|
/**
|
|
210
214
|
* 날짜 상세 응답 타입 For User Front
|
|
211
215
|
*/
|
|
212
216
|
export type ResponseDateDetailForUserFront = {
|
|
213
217
|
date: string;
|
|
214
|
-
events:
|
|
215
|
-
folders: TFolderSummaryInfo[];
|
|
216
|
-
cities: TCityLabelInfo[];
|
|
217
|
-
categories: TCategoryLabelInfo[];
|
|
218
|
-
stags: TStagLabelInfo[];
|
|
219
|
-
tags: TTagLabelInfo[];
|
|
220
|
-
groups: TGroupLabelInfo[];
|
|
221
|
-
}[];
|
|
218
|
+
events: TEventCardForDateDetail[];
|
|
222
219
|
};
|
|
223
220
|
/**
|
|
224
221
|
* 오늘 날짜 상세 응답 타입 For Admin
|
|
225
222
|
*/
|
|
226
223
|
export type ResponseTodayDetailForAdmin = {
|
|
227
224
|
today: string;
|
|
228
|
-
events:
|
|
229
|
-
folders: TFolderSummaryInfo[];
|
|
230
|
-
cities: TCityLabelInfo[];
|
|
231
|
-
categories: TCategoryLabelInfo[];
|
|
232
|
-
stags: TStagLabelInfo[];
|
|
233
|
-
tags: TTagLabelInfo[];
|
|
234
|
-
groups: TGroupLabelInfo[];
|
|
235
|
-
}[];
|
|
225
|
+
events: TEventCardForDateDetail[];
|
|
236
226
|
};
|
|
237
227
|
/**
|
|
238
228
|
* 오늘 날짜 상세 응답 타입 For User Front
|
|
239
229
|
*/
|
|
240
230
|
export type ResponseTodayDetailForUserFront = {
|
|
241
231
|
today: string;
|
|
242
|
-
events:
|
|
243
|
-
folders: TFolderSummaryInfo[];
|
|
244
|
-
cities: TCityLabelInfo[];
|
|
245
|
-
categories: TCategoryLabelInfo[];
|
|
246
|
-
stags: TStagLabelInfo[];
|
|
247
|
-
tags: TTagLabelInfo[];
|
|
248
|
-
groups: TGroupLabelInfo[];
|
|
249
|
-
}[];
|
|
232
|
+
events: TEventCardForDateDetail[];
|
|
250
233
|
};
|
|
251
234
|
/**
|
|
252
235
|
* 주변 날짜 상세 응답 타입 For Admin
|
|
@@ -257,14 +240,7 @@ export type ResponseNearbyDetailForAdmin = {
|
|
|
257
240
|
longitude: number;
|
|
258
241
|
distance_km: number;
|
|
259
242
|
};
|
|
260
|
-
events:
|
|
261
|
-
folders: TFolderSummaryInfo[];
|
|
262
|
-
cities: TCityLabelInfo[];
|
|
263
|
-
categories: TCategoryLabelInfo[];
|
|
264
|
-
stags: TStagLabelInfo[];
|
|
265
|
-
tags: TTagLabelInfo[];
|
|
266
|
-
groups: TGroupLabelInfo[];
|
|
267
|
-
}[];
|
|
243
|
+
events: TEventCardForDateDetail[];
|
|
268
244
|
};
|
|
269
245
|
/**
|
|
270
246
|
* 주변 날짜 상세 응답 타입 For User Front
|
|
@@ -275,14 +251,7 @@ export type ResponseNearbyDetailForUserFront = {
|
|
|
275
251
|
longitude: number;
|
|
276
252
|
distance_km: number;
|
|
277
253
|
};
|
|
278
|
-
events:
|
|
279
|
-
folders: TFolderSummaryInfo[];
|
|
280
|
-
cities: TCityLabelInfo[];
|
|
281
|
-
categories: TCategoryLabelInfo[];
|
|
282
|
-
stags: TStagLabelInfo[];
|
|
283
|
-
tags: TTagLabelInfo[];
|
|
284
|
-
groups: TGroupLabelInfo[];
|
|
285
|
-
}[];
|
|
254
|
+
events: TEventCardForDateDetail[];
|
|
286
255
|
};
|
|
287
256
|
export type ResponseDplusAPI<T> = {
|
|
288
257
|
success: boolean;
|
|
@@ -4,6 +4,7 @@ export type TEventCard = {
|
|
|
4
4
|
date: string | null;
|
|
5
5
|
time: string | null;
|
|
6
6
|
utc_minutes: number | null;
|
|
7
|
+
tz: string;
|
|
7
8
|
duration: number | null;
|
|
8
9
|
is_repeat_annually: boolean | null;
|
|
9
10
|
title: string | null;
|
|
@@ -15,6 +16,9 @@ export type TEventCard = {
|
|
|
15
16
|
profile: string | null;
|
|
16
17
|
description: string | null;
|
|
17
18
|
url: string | null;
|
|
19
|
+
address_eng: string | null;
|
|
20
|
+
address_native: string | null;
|
|
21
|
+
google_map_url: string | null;
|
|
18
22
|
};
|
|
19
23
|
export type TEventListForAdmin = {
|
|
20
24
|
event_code: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-event.js","sourceRoot":"","sources":["../../../src/types/types-event/t-event.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-event.js","sourceRoot":"","sources":["../../../src/types/types-event/t-event.ts"],"names":[],"mappings":"AAmDA;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,YAAY;IACZ,MAAM;IACN,MAAM;IACN,IAAI;IACJ,UAAU;IACV,aAAa;IACb,oBAAoB;IACpB,OAAO;IACP,UAAU;IACV,UAAU;IACV,qBAAqB;IACrB,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,aAAa;IACb,cAAc;IACd,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,YAAY;IACZ,YAAY;CACb,CAAC;AA6EF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,YAAY;IACZ,MAAM;IACN,MAAM;IACN,IAAI;IACJ,OAAO;IACP,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,aAAa;IACb,qBAAqB;IACrB,uBAAuB;IACvB,kBAAkB;IAClB,oBAAoB;IACpB,UAAU;IACV,WAAW;IACX,KAAK;IACL,OAAO;IACP,oBAAoB;IACpB,OAAO;IACP,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,iBAAiB;IACjB,aAAa;IACb,gBAAgB;IAChB,gBAAgB;IAChB,YAAY;IACZ,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,eAAe;IACf,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,mBAAmB;IACnB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,uBAAuB;IACvB,gBAAgB;IAChB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,aAAa;IACb,UAAU;IACV,UAAU;IACV,UAAU;IACV,WAAW;IACX,UAAU;IACV,aAAa;IACb,cAAc;IACd,aAAa;IACb,kBAAkB;IAClB,gBAAgB;CACjB,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,oBAAoB;IACpB,kBAAkB;IAClB,WAAW;IACX,aAAa;IACb,YAAY;IACZ,sBAAsB;IACtB,sBAAsB;IACtB,wBAAwB;IACxB,sBAAsB;IACtB,wBAAwB;IACxB,gBAAgB;IAChB,WAAW;IACX,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
|