dplus_common_v1 0.1.60 → 0.1.62
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 +99 -7
- package/dist/types/types-category/t-category.d.ts +7 -0
- package/dist/types/types-category/t-category.js.map +1 -1
- package/dist/types/types-city/t-city.d.ts +6 -0
- package/dist/types/types-city/t-city.js.map +1 -1
- package/dist/types/types-event/t-event.d.ts +1 -0
- package/dist/types/types-event/t-event.js.map +1 -1
- package/dist/types/types-folder/t-folder.d.ts +24 -0
- package/dist/types/types-folder/t-folder.js.map +1 -1
- package/dist/types/types-group/t-group.d.ts +7 -0
- package/dist/types/types-group/t-group.js.map +1 -1
- package/dist/types/types-map/t-map-category-event.d.ts +2 -7
- package/dist/types/types-map/t-map-category-folder.d.ts +3 -15
- package/dist/types/types-map/t-map-city-event.d.ts +2 -6
- package/dist/types/types-map/t-map-city-folder.d.ts +4 -14
- package/dist/types/types-map/t-map-folder-event.d.ts +2 -8
- package/dist/types/types-map/t-map-group-event.d.ts +2 -7
- package/dist/types/types-map/t-map-group-folder.d.ts +4 -15
- package/dist/types/types-map/t-map-stag-event.d.ts +2 -6
- package/dist/types/types-map/t-map-stag-folder.d.ts +4 -14
- package/dist/types/types-map/t-map-tag-event.d.ts +2 -6
- package/dist/types/types-map/t-map-tag-folder.d.ts +4 -14
- package/dist/types/types-map/t-map-user-event.d.ts +2 -9
- package/dist/types/types-map/t-map-user-folder.d.ts +4 -17
- package/dist/types/types-stag/t-stag.d.ts +6 -0
- package/dist/types/types-stag/t-stag.js.map +1 -1
- package/dist/types/types-tag/t-tag.d.ts +6 -0
- package/dist/types/types-user/t-user.d.ts +9 -0
- package/dist/types/types-user/t-user.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { TCategoryDetail } from "../types/types-category/t-category";
|
|
1
|
+
import { TCategoryDetail, TCategoryLabelInfo } from "../types/types-category/t-category";
|
|
2
2
|
import { TCategoryI18n } from "../types/types-category/t-category-i18n";
|
|
3
3
|
import { TCategoryMetadataI18nDetail } from "../types/types-category/t-category-metadata-i18n";
|
|
4
|
-
import { TCityDetail } from "../types/types-city/t-city";
|
|
4
|
+
import { TCityDetail, TCityLabelInfo } from "../types/types-city/t-city";
|
|
5
5
|
import { TCityI18n } from "../types/types-city/t-city-i18n";
|
|
6
6
|
import { TCityImage } from "../types/types-city/t-city-image";
|
|
7
7
|
import { TCityMetadataI18nDetail } from "../types/types-city/t-city-metadata-i18n";
|
|
8
8
|
import { TCityYouTubeVideo } from "../types/types-city/t-city-youtube-video";
|
|
9
|
-
import { TEventDetail } from "../types/types-event/t-event";
|
|
9
|
+
import { TEventCard, TEventDetail } from "../types/types-event/t-event";
|
|
10
10
|
import { TEventImage } from "../types/types-event/t-event-image";
|
|
11
11
|
import { TEventMetadataI18nDetail } from "../types/types-event/t-event-metadata-i18n";
|
|
12
|
-
import { TFolderDetail } from "../types/types-folder/t-folder";
|
|
12
|
+
import { TFolderDetail, TFolderSummaryInfo } from "../types/types-folder/t-folder";
|
|
13
13
|
import { TFolderImage } from "../types/types-folder/t-folder-image";
|
|
14
14
|
import { TFolderMetadataI18nDetail } from "../types/types-folder/t-folder-metadata-i18n";
|
|
15
|
-
import { TGroupDetail } from "../types/types-group/t-group";
|
|
15
|
+
import { TGroupDetail, TGroupLabelInfo } from "../types/types-group/t-group";
|
|
16
16
|
import { TGroupImage } from "../types/types-group/t-group-image";
|
|
17
17
|
import { TGroupMetadataI18nDetail } from "../types/types-group/t-group-metadata-i18n";
|
|
18
18
|
import { TMapCategoryEventWithCategoryInfo, TMapCategoryEventWithEventInfo } from "../types/types-map/t-map-category-event";
|
|
@@ -26,10 +26,10 @@ import { TMapStagEventWithEventInfo, TMapStagEventWithStagInfo } from "../types/
|
|
|
26
26
|
import { TMapStagFolderWithFolderInfo, TMapStagFolderWithStagInfo } from "../types/types-map/t-map-stag-folder";
|
|
27
27
|
import { TMapTagEventWithEventInfo, TMapTagEventWithTagInfo } from "../types/types-map/t-map-tag-event";
|
|
28
28
|
import { TMapTagFolderWithFolderInfo, TMapTagFolderWithTagInfo } from "../types/types-map/t-map-tag-folder";
|
|
29
|
-
import { TStagDetail } from "../types/types-stag/t-stag";
|
|
29
|
+
import { TStagDetail, TStagLabelInfo } from "../types/types-stag/t-stag";
|
|
30
30
|
import { TStagI18n } from "../types/types-stag/t-stag-i18n";
|
|
31
31
|
import { TStagMetadataI18nDetail } from "../types/types-stag/t-stag-metadata-i18n";
|
|
32
|
-
import { TTag } from "../types/types-tag/t-tag";
|
|
32
|
+
import { TTag, TTagLabelInfo } from "../types/types-tag/t-tag";
|
|
33
33
|
export type ResponseDBSelect<T> = {
|
|
34
34
|
data: T;
|
|
35
35
|
count?: number;
|
|
@@ -190,6 +190,98 @@ export type ResponseGroupDetailForUserFront = BaseResponseDetail<TGroupImage, TG
|
|
|
190
190
|
mapGroupFolder?: TMapGroupFolderWithFolderInfo[];
|
|
191
191
|
mapGroupEvent?: TMapGroupEventWithEventInfo[];
|
|
192
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* 날짜 상세 응답 타입 For Admin
|
|
195
|
+
*/
|
|
196
|
+
export type ResponseDateDetailForAdmin = {
|
|
197
|
+
date: string;
|
|
198
|
+
events: TEventCard & {
|
|
199
|
+
folders: TFolderSummaryInfo[];
|
|
200
|
+
cities: TCityLabelInfo[];
|
|
201
|
+
categories: TCategoryLabelInfo[];
|
|
202
|
+
stags: TStagLabelInfo[];
|
|
203
|
+
tags: TTagLabelInfo[];
|
|
204
|
+
groups: TGroupLabelInfo[];
|
|
205
|
+
}[];
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* 날짜 상세 응답 타입 For User Front
|
|
209
|
+
*/
|
|
210
|
+
export type ResponseDateDetailForUserFront = {
|
|
211
|
+
date: string;
|
|
212
|
+
events: TEventCard & {
|
|
213
|
+
folders: TFolderSummaryInfo[];
|
|
214
|
+
cities: TCityLabelInfo[];
|
|
215
|
+
categories: TCategoryLabelInfo[];
|
|
216
|
+
stags: TStagLabelInfo[];
|
|
217
|
+
tags: TTagLabelInfo[];
|
|
218
|
+
groups: TGroupLabelInfo[];
|
|
219
|
+
}[];
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* 오늘 날짜 상세 응답 타입 For Admin
|
|
223
|
+
*/
|
|
224
|
+
export type ResponseTodayDetailForAdmin = {
|
|
225
|
+
today: string;
|
|
226
|
+
events: TEventCard & {
|
|
227
|
+
folders: TFolderSummaryInfo[];
|
|
228
|
+
cities: TCityLabelInfo[];
|
|
229
|
+
categories: TCategoryLabelInfo[];
|
|
230
|
+
stags: TStagLabelInfo[];
|
|
231
|
+
tags: TTagLabelInfo[];
|
|
232
|
+
groups: TGroupLabelInfo[];
|
|
233
|
+
}[];
|
|
234
|
+
};
|
|
235
|
+
/**
|
|
236
|
+
* 오늘 날짜 상세 응답 타입 For User Front
|
|
237
|
+
*/
|
|
238
|
+
export type ResponseTodayDetailForUserFront = {
|
|
239
|
+
today: string;
|
|
240
|
+
events: TEventCard & {
|
|
241
|
+
folders: TFolderSummaryInfo[];
|
|
242
|
+
cities: TCityLabelInfo[];
|
|
243
|
+
categories: TCategoryLabelInfo[];
|
|
244
|
+
stags: TStagLabelInfo[];
|
|
245
|
+
tags: TTagLabelInfo[];
|
|
246
|
+
groups: TGroupLabelInfo[];
|
|
247
|
+
}[];
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* 주변 날짜 상세 응답 타입 For Admin
|
|
251
|
+
*/
|
|
252
|
+
export type ResponseNearbyDetailForAdmin = {
|
|
253
|
+
nearby: {
|
|
254
|
+
latitude: number;
|
|
255
|
+
longitude: number;
|
|
256
|
+
distance_km: number;
|
|
257
|
+
};
|
|
258
|
+
events: TEventCard & {
|
|
259
|
+
folders: TFolderSummaryInfo[];
|
|
260
|
+
cities: TCityLabelInfo[];
|
|
261
|
+
categories: TCategoryLabelInfo[];
|
|
262
|
+
stags: TStagLabelInfo[];
|
|
263
|
+
tags: TTagLabelInfo[];
|
|
264
|
+
groups: TGroupLabelInfo[];
|
|
265
|
+
}[];
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* 주변 날짜 상세 응답 타입 For User Front
|
|
269
|
+
*/
|
|
270
|
+
export type ResponseNearbyDetailForUserFront = {
|
|
271
|
+
nearby: {
|
|
272
|
+
latitude: number;
|
|
273
|
+
longitude: number;
|
|
274
|
+
distance_km: number;
|
|
275
|
+
};
|
|
276
|
+
events: TEventCard & {
|
|
277
|
+
folders: TFolderSummaryInfo[];
|
|
278
|
+
cities: TCityLabelInfo[];
|
|
279
|
+
categories: TCategoryLabelInfo[];
|
|
280
|
+
stags: TStagLabelInfo[];
|
|
281
|
+
tags: TTagLabelInfo[];
|
|
282
|
+
groups: TGroupLabelInfo[];
|
|
283
|
+
}[];
|
|
284
|
+
};
|
|
193
285
|
export type ResponseDplusAPI<T> = {
|
|
194
286
|
success: boolean;
|
|
195
287
|
alarm?: string | null;
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
export type TCategoryLabelInfo = {
|
|
2
|
+
category_code: string;
|
|
3
|
+
order_num: number | null;
|
|
4
|
+
target_country_code: string | null;
|
|
5
|
+
upper_category_code: string | null;
|
|
6
|
+
name: string | null;
|
|
7
|
+
};
|
|
1
8
|
export type TCategoryOption = {
|
|
2
9
|
category_code: string;
|
|
3
10
|
order_num: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-category.js","sourceRoot":"","sources":["../../../src/types/types-category/t-category.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-category.js","sourceRoot":"","sources":["../../../src/types/types-category/t-category.ts"],"names":[],"mappings":"AAmBA;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,eAAe,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC;AAenI;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG;IAChD,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,WAAW;IACX,YAAY;IACZ,MAAM;IACN,SAAS;IACT,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AA4CF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,eAAe;IACf,WAAW;IACX,qBAAqB;IACrB,qBAAqB;IACrB,MAAM;IACN,UAAU;IACV,UAAU;IACV,MAAM;IACN,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,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;CACpB,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE/D;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE9D;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-city.js","sourceRoot":"","sources":["../../../src/types/types-city/t-city.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-city.js","sourceRoot":"","sources":["../../../src/types/types-city/t-city.ts"],"names":[],"mappings":"AAeA;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,cAAc,EAAE,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,SAAS,CAAC,CAAC;AAkBtG;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,cAAc;IACd,WAAW;IACX,MAAM;IACN,aAAa;IACb,SAAS;IACT,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;CACd,CAAC;AAoDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,cAAc;IACd,MAAM;IACN,aAAa;IACb,SAAS;IACT,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,gBAAgB;IAChB,eAAe;IACf,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;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;AAE5G;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
|
|
@@ -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":"AAgDA;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,UAAU;IACV,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;AA8EF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,UAAU;IACV,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,kBAAkB;IAClB,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"}
|
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
export type TFolderSummaryInfo = {
|
|
2
|
+
folder_id: string;
|
|
3
|
+
folder_code: string | null;
|
|
4
|
+
title: string | null;
|
|
5
|
+
is_public: boolean | null;
|
|
6
|
+
is_active: boolean | null;
|
|
7
|
+
is_display: boolean | null;
|
|
8
|
+
};
|
|
9
|
+
export type TFolderCard = {
|
|
10
|
+
folder_id: string;
|
|
11
|
+
folder_code: string;
|
|
12
|
+
title: string;
|
|
13
|
+
bg_color: string | null;
|
|
14
|
+
fg_color: string | null;
|
|
15
|
+
target_country_code: string;
|
|
16
|
+
target_city_code: string | null;
|
|
17
|
+
homepage: string | null;
|
|
18
|
+
url: string | null;
|
|
19
|
+
thumbnail_square: string | null;
|
|
20
|
+
thumbnail_horizontal: string | null;
|
|
21
|
+
thumbnail_vertical: string | null;
|
|
22
|
+
profile: string | null;
|
|
23
|
+
description: string | null;
|
|
24
|
+
};
|
|
1
25
|
export type TFolderListForAdmin = {
|
|
2
26
|
folder_id: string;
|
|
3
27
|
folder_code: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-folder.js","sourceRoot":"","sources":["../../../src/types/types-folder/t-folder.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-folder.js","sourceRoot":"","sources":["../../../src/types/types-folder/t-folder.ts"],"names":[],"mappings":"AAmDA;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG;IAC9C,WAAW;IACX,aAAa;IACb,OAAO;IACP,UAAU;IACV,UAAU;IACV,qBAAqB;IACrB,kBAAkB;IAClB,UAAU;IACV,KAAK;IACL,WAAW;IACX,YAAY;IACZ,aAAa;IACb,aAAa;IACb,cAAc;IACd,gBAAgB;IAChB,cAAc;IACd,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,YAAY;IACZ,YAAY;CACb,CAAC;AA8DF;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,WAAW;IACX,aAAa;IACb,OAAO;IACP,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,aAAa;IACb,qBAAqB;IACrB,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,KAAK;IACL,OAAO;IACP,oBAAoB;IACpB,OAAO;IACP,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,iBAAiB;IACjB,gBAAgB;IAChB,cAAc;IACd,YAAY;IACZ,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;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,cAAc,EAAE,kBAAkB,EAAE,gBAAgB,CAAC,CAAC;AAElI;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,kBAAkB;IAClB,WAAW;IACX,sBAAsB;IACtB,sBAAsB;IACtB,wBAAwB;IACxB,sBAAsB;IACtB,wBAAwB;IACxB,WAAW;IACX,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-group.js","sourceRoot":"","sources":["../../../src/types/types-group/t-group.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-group.js","sourceRoot":"","sources":["../../../src/types/types-group/t-group.ts"],"names":[],"mappings":"AAgCA;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,YAAY;IACZ,YAAY;IACZ,MAAM;IACN,aAAa;IACb,oBAAoB;IACpB,UAAU;IACV,UAAU;IACV,UAAU;IACV,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,WAAW;IACX,YAAY;IACZ,qBAAqB;IACrB,YAAY;IACZ,aAAa;IACb,cAAc;IACd,YAAY;IACZ,YAAY;CACb,CAAC;AA8CF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,YAAY;IACZ,YAAY;IACZ,MAAM;IACN,aAAa;IACb,oBAAoB;IACpB,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,UAAU;IACV,eAAe;IACf,cAAc;IACd,WAAW;IACX,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,mBAAmB;IACnB,yBAAyB;IACzB,mBAAmB;IACnB,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,YAAY,EAAE,aAAa,EAAE,cAAc,CAAC,CAAC;AAE5E;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,WAAW,EAAE,YAAY,EAAE,qBAAqB,CAAC,CAAC;AAElF;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TCategoryLabelInfo } from "../types-category/t-category";
|
|
1
2
|
import { TEventCard } from "../types-event/t-event";
|
|
2
3
|
export type TMapCategoryEvent = {
|
|
3
4
|
category_code: string;
|
|
@@ -16,13 +17,7 @@ export type TMapCategoryEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapCategoryEvent, "category_code" | "event_id">>;
|
|
18
19
|
export type TMapCategoryEventWithCategoryInfo = TMapCategoryEvent & {
|
|
19
|
-
category_info:
|
|
20
|
-
category_code: string;
|
|
21
|
-
order_num: number | null;
|
|
22
|
-
target_country_code: string | null;
|
|
23
|
-
upper_category_code: string | null;
|
|
24
|
-
name: string | null;
|
|
25
|
-
} | null;
|
|
20
|
+
category_info: TCategoryLabelInfo | null;
|
|
26
21
|
};
|
|
27
22
|
export type TMapCategoryEventWithEventInfo = TMapCategoryEvent & {
|
|
28
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TCategoryLabelInfo, TFolderSummaryInfo } from "../..";
|
|
1
2
|
export type TMapCategoryFolder = {
|
|
2
3
|
category_code: string;
|
|
3
4
|
folder_id: string;
|
|
@@ -16,21 +17,8 @@ export type TMapCategoryFolderUpdate = {
|
|
|
16
17
|
folder_id: string;
|
|
17
18
|
} & Partial<Omit<TMapCategoryFolder, "category_code" | "folder_id">>;
|
|
18
19
|
export type TMapCategoryFolderWithCategoryInfo = TMapCategoryFolder & {
|
|
19
|
-
category_info:
|
|
20
|
-
category_code: string;
|
|
21
|
-
order_num: number | null;
|
|
22
|
-
target_country_code: string | null;
|
|
23
|
-
upper_category_code: string | null;
|
|
24
|
-
name: string | null;
|
|
25
|
-
} | null;
|
|
20
|
+
category_info: TCategoryLabelInfo | null;
|
|
26
21
|
};
|
|
27
22
|
export type TMapCategoryFolderWithFolderInfo = TMapCategoryFolder & {
|
|
28
|
-
folder_info:
|
|
29
|
-
folder_id: string;
|
|
30
|
-
folder_code: string | null;
|
|
31
|
-
title: string | null;
|
|
32
|
-
is_public: boolean | null;
|
|
33
|
-
is_active: boolean | null;
|
|
34
|
-
is_display: boolean | null;
|
|
35
|
-
} | null;
|
|
23
|
+
folder_info: TFolderSummaryInfo | null;
|
|
36
24
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TCityLabelInfo } from "../types-city/t-city";
|
|
1
2
|
import { TEventCard } from "../types-event/t-event";
|
|
2
3
|
export type TMapCityEvent = {
|
|
3
4
|
city_code: string;
|
|
@@ -16,12 +17,7 @@ export type TMapCityEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapCityEvent, "city_code" | "event_id">>;
|
|
18
19
|
export type TMapCityEventWithCityInfo = TMapCityEvent & {
|
|
19
|
-
city_info:
|
|
20
|
-
city_code: string;
|
|
21
|
-
country_code: string;
|
|
22
|
-
name: string;
|
|
23
|
-
name_native: string;
|
|
24
|
-
} | null;
|
|
20
|
+
city_info: TCityLabelInfo | null;
|
|
25
21
|
};
|
|
26
22
|
export type TMapCityEventWithEventInfo = TMapCityEvent & {
|
|
27
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TCityLabelInfo } from "../types-city/t-city";
|
|
2
|
+
import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
1
3
|
export type TMapCityFolder = {
|
|
2
4
|
city_code: string;
|
|
3
5
|
folder_id: string;
|
|
@@ -16,20 +18,8 @@ export type TMapCityFolderUpdate = {
|
|
|
16
18
|
folder_id: string;
|
|
17
19
|
} & Partial<Omit<TMapCityFolder, "city_code" | "folder_id">>;
|
|
18
20
|
export type TMapCityFolderWithCityInfo = TMapCityFolder & {
|
|
19
|
-
city_info:
|
|
20
|
-
city_code: string;
|
|
21
|
-
country_code: string;
|
|
22
|
-
name: string;
|
|
23
|
-
name_native: string;
|
|
24
|
-
} | null;
|
|
21
|
+
city_info: TCityLabelInfo | null;
|
|
25
22
|
};
|
|
26
23
|
export type TMapCityFolderWithFolderInfo = TMapCityFolder & {
|
|
27
|
-
folder_info:
|
|
28
|
-
folder_id: string;
|
|
29
|
-
folder_code: string | null;
|
|
30
|
-
title: string | null;
|
|
31
|
-
is_public: boolean | null;
|
|
32
|
-
is_active: boolean | null;
|
|
33
|
-
is_display: boolean | null;
|
|
34
|
-
} | null;
|
|
24
|
+
folder_info: TFolderSummaryInfo | null;
|
|
35
25
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TEventCard } from "../types-event/t-event";
|
|
2
|
+
import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
2
3
|
export type TMapFolderEvent = {
|
|
3
4
|
folder_id: string;
|
|
4
5
|
event_id: string;
|
|
@@ -16,14 +17,7 @@ export type TMapFolderEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapFolderEvent, "folder_id" | "event_id">>;
|
|
18
19
|
export type TMapFolderEventWithFolderInfo = TMapFolderEvent & {
|
|
19
|
-
folder_info:
|
|
20
|
-
folder_id: string;
|
|
21
|
-
folder_code: string | null;
|
|
22
|
-
title: string | null;
|
|
23
|
-
is_public: boolean | null;
|
|
24
|
-
is_active: boolean | null;
|
|
25
|
-
is_display: boolean | null;
|
|
26
|
-
} | null;
|
|
20
|
+
folder_info: TFolderSummaryInfo | null;
|
|
27
21
|
};
|
|
28
22
|
export type TMapFolderEventWithEventInfo = TMapFolderEvent & {
|
|
29
23
|
event_info: TEventCard | null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TEventCard } from "../types-event/t-event";
|
|
2
|
+
import { TGroupLabelInfo } from "../types-group/t-group";
|
|
2
3
|
export type TMapGroupEvent = {
|
|
3
4
|
group_code: string;
|
|
4
5
|
event_id: string;
|
|
@@ -16,13 +17,7 @@ export type TMapGroupEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapGroupEvent, "group_code" | "event_id">>;
|
|
18
19
|
export type TMapGroupEventWithGroupInfo = TMapGroupEvent & {
|
|
19
|
-
group_info:
|
|
20
|
-
group_code: string;
|
|
21
|
-
group_type: string;
|
|
22
|
-
name: string;
|
|
23
|
-
name_native: string;
|
|
24
|
-
related_group_code: string;
|
|
25
|
-
} | null;
|
|
20
|
+
group_info: TGroupLabelInfo | null;
|
|
26
21
|
};
|
|
27
22
|
export type TMapGroupEventWithEventInfo = TMapGroupEvent & {
|
|
28
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TFolderSummaryInfo } from "../..";
|
|
2
|
+
import { TGroupLabelInfo } from "../types-group/t-group";
|
|
1
3
|
export type TMapGroupFolder = {
|
|
2
4
|
group_code: string;
|
|
3
5
|
folder_id: string;
|
|
@@ -16,21 +18,8 @@ export type TMapGroupFolderUpdate = {
|
|
|
16
18
|
folder_id: string;
|
|
17
19
|
} & Partial<Omit<TMapGroupFolder, "group_code" | "folder_id">>;
|
|
18
20
|
export type TMapGroupFolderWithGroupInfo = TMapGroupFolder & {
|
|
19
|
-
group_info:
|
|
20
|
-
group_code: string;
|
|
21
|
-
group_type: string;
|
|
22
|
-
name: string;
|
|
23
|
-
name_native: string;
|
|
24
|
-
related_group_code: string;
|
|
25
|
-
} | null;
|
|
21
|
+
group_info: TGroupLabelInfo | null;
|
|
26
22
|
};
|
|
27
23
|
export type TMapGroupFolderWithFolderInfo = TMapGroupFolder & {
|
|
28
|
-
folder_info:
|
|
29
|
-
folder_id: string;
|
|
30
|
-
folder_code: string | null;
|
|
31
|
-
title: string | null;
|
|
32
|
-
is_public: boolean | null;
|
|
33
|
-
is_active: boolean | null;
|
|
34
|
-
is_display: boolean | null;
|
|
35
|
-
} | null;
|
|
24
|
+
folder_info: TFolderSummaryInfo | null;
|
|
36
25
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TEventCard } from "../types-event/t-event";
|
|
2
|
+
import { TStagLabelInfo } from "../types-stag/t-stag";
|
|
2
3
|
export type TMapStagEvent = {
|
|
3
4
|
stag_code: string;
|
|
4
5
|
event_id: string;
|
|
@@ -16,12 +17,7 @@ export type TMapStagEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapStagEvent, "stag_code" | "event_id">>;
|
|
18
19
|
export type TMapStagEventWithStagInfo = TMapStagEvent & {
|
|
19
|
-
stag_info:
|
|
20
|
-
stag_code: string;
|
|
21
|
-
target_country_code: number | null;
|
|
22
|
-
stag: string | null;
|
|
23
|
-
stag_native: string | null;
|
|
24
|
-
} | null;
|
|
20
|
+
stag_info: TStagLabelInfo | null;
|
|
25
21
|
};
|
|
26
22
|
export type TMapStagEventWithEventInfo = TMapStagEvent & {
|
|
27
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
2
|
+
import { TStagLabelInfo } from "../types-stag/t-stag";
|
|
1
3
|
export type TMapStagFolder = {
|
|
2
4
|
stag_code: string;
|
|
3
5
|
folder_id: string;
|
|
@@ -16,20 +18,8 @@ export type TMapStagFolderUpdate = {
|
|
|
16
18
|
folder_id: string;
|
|
17
19
|
} & Partial<Omit<TMapStagFolder, "stag_code" | "folder_id">>;
|
|
18
20
|
export type TMapStagFolderWithStagInfo = TMapStagFolder & {
|
|
19
|
-
stag_info:
|
|
20
|
-
stag_code: string;
|
|
21
|
-
target_country_code: number | null;
|
|
22
|
-
stag: string | null;
|
|
23
|
-
stag_native: string | null;
|
|
24
|
-
} | null;
|
|
21
|
+
stag_info: TStagLabelInfo | null;
|
|
25
22
|
};
|
|
26
23
|
export type TMapStagFolderWithFolderInfo = TMapStagFolder & {
|
|
27
|
-
folder_info:
|
|
28
|
-
folder_id: string;
|
|
29
|
-
folder_code: string | null;
|
|
30
|
-
title: string | null;
|
|
31
|
-
is_public: boolean | null;
|
|
32
|
-
is_active: boolean | null;
|
|
33
|
-
is_display: boolean | null;
|
|
34
|
-
} | null;
|
|
24
|
+
folder_info: TFolderSummaryInfo | null;
|
|
35
25
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TEventCard } from "../types-event/t-event";
|
|
2
|
+
import { TTagLabelInfo } from "../types-tag/t-tag";
|
|
2
3
|
export type TMapTagEvent = {
|
|
3
4
|
tag_id: number;
|
|
4
5
|
event_id: string;
|
|
@@ -16,12 +17,7 @@ export type TMapTagEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapTagEvent, "tag_id" | "event_id">>;
|
|
18
19
|
export type TMapTagEventWithTagInfo = TMapTagEvent & {
|
|
19
|
-
tag_info:
|
|
20
|
-
tag_id: number;
|
|
21
|
-
tag_code: string | null;
|
|
22
|
-
tag: string | null;
|
|
23
|
-
event_count: number | null;
|
|
24
|
-
} | null;
|
|
20
|
+
tag_info: TTagLabelInfo | null;
|
|
25
21
|
};
|
|
26
22
|
export type TMapTagEventWithEventInfo = TMapTagEvent & {
|
|
27
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
2
|
+
import { TTagLabelInfo } from "../types-tag/t-tag";
|
|
1
3
|
export type TMapTagFolder = {
|
|
2
4
|
tag_id: number;
|
|
3
5
|
folder_id: string;
|
|
@@ -16,20 +18,8 @@ export type TMapTagFolderUpdate = {
|
|
|
16
18
|
folder_id: string;
|
|
17
19
|
} & Partial<Omit<TMapTagFolder, "tag_id" | "folder_id">>;
|
|
18
20
|
export type TMapTagFolderWithTagInfo = TMapTagFolder & {
|
|
19
|
-
tag_info:
|
|
20
|
-
tag_id: number;
|
|
21
|
-
tag_code: string | null;
|
|
22
|
-
tag: string | null;
|
|
23
|
-
event_count: number | null;
|
|
24
|
-
} | null;
|
|
21
|
+
tag_info: TTagLabelInfo | null;
|
|
25
22
|
};
|
|
26
23
|
export type TMapTagFolderWithFolderInfo = TMapTagFolder & {
|
|
27
|
-
folder_info:
|
|
28
|
-
folder_id: string;
|
|
29
|
-
folder_code: string | null;
|
|
30
|
-
title: string | null;
|
|
31
|
-
is_public: boolean | null;
|
|
32
|
-
is_active: boolean | null;
|
|
33
|
-
is_display: boolean | null;
|
|
34
|
-
} | null;
|
|
24
|
+
folder_info: TFolderSummaryInfo | null;
|
|
35
25
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TEventCard } from "../types-event/t-event";
|
|
2
|
+
import { TUserSummaryInfo } from "../types-user/t-user";
|
|
2
3
|
export type TMapUserEvent = {
|
|
3
4
|
user_id: string;
|
|
4
5
|
event_id: string;
|
|
@@ -16,15 +17,7 @@ export type TMapUserEventUpdate = {
|
|
|
16
17
|
event_id: string;
|
|
17
18
|
} & Partial<Omit<TMapUserEvent, "user_id" | "event_id">>;
|
|
18
19
|
export type TMapUserEventWithUserInfo = TMapUserEvent & {
|
|
19
|
-
user_info:
|
|
20
|
-
user_id: string;
|
|
21
|
-
user_name: string | null;
|
|
22
|
-
country_code: string | null;
|
|
23
|
-
lang_code: string | null;
|
|
24
|
-
name: string | null;
|
|
25
|
-
avatar_url: string | null;
|
|
26
|
-
timezone: string | null;
|
|
27
|
-
} | null;
|
|
20
|
+
user_info: TUserSummaryInfo | null;
|
|
28
21
|
};
|
|
29
22
|
export type TMapUserEventWithEventInfo = TMapUserEvent & {
|
|
30
23
|
event_info: TEventCard | null;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TFolderSummaryInfo } from "../types-folder/t-folder";
|
|
2
|
+
import { TUserSummaryInfo } from "../types-user/t-user";
|
|
1
3
|
export type TMapUserFolder = {
|
|
2
4
|
user_id: string;
|
|
3
5
|
folder_id: string;
|
|
@@ -16,23 +18,8 @@ export type TMapUserFolderUpdate = {
|
|
|
16
18
|
folder_id: string;
|
|
17
19
|
} & Partial<Omit<TMapUserFolder, "user_id" | "folder_id">>;
|
|
18
20
|
export type TMapUserFolderWithUserInfo = TMapUserFolder & {
|
|
19
|
-
user_info:
|
|
20
|
-
user_id: string;
|
|
21
|
-
user_name: string | null;
|
|
22
|
-
country_code: string | null;
|
|
23
|
-
lang_code: string | null;
|
|
24
|
-
name: string | null;
|
|
25
|
-
avatar_url: string | null;
|
|
26
|
-
timezone: string | null;
|
|
27
|
-
} | null;
|
|
21
|
+
user_info: TUserSummaryInfo | null;
|
|
28
22
|
};
|
|
29
23
|
export type TMapUserFolderWithFolderInfo = TMapUserFolder & {
|
|
30
|
-
folder_info:
|
|
31
|
-
folder_id: string;
|
|
32
|
-
folder_code: string | null;
|
|
33
|
-
title: string | null;
|
|
34
|
-
is_public: boolean | null;
|
|
35
|
-
is_active: boolean | null;
|
|
36
|
-
is_display: boolean | null;
|
|
37
|
-
} | null;
|
|
24
|
+
folder_info: TFolderSummaryInfo | null;
|
|
38
25
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-stag.js","sourceRoot":"","sources":["../../../src/types/types-stag/t-stag.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-stag.js","sourceRoot":"","sources":["../../../src/types/types-stag/t-stag.ts"],"names":[],"mappings":"AA4BA;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,qBAAqB;IACrB,WAAW;IACX,MAAM;IACN,UAAU;IACV,UAAU;IACV,KAAK;IACL,aAAa;IACb,WAAW;IACX,YAAY;IACZ,UAAU;IACV,UAAU;CACX,CAAC;AAqDF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,WAAW;IACX,qBAAqB;IACrB,MAAM;IACN,aAAa;IACb,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,SAAS;IACT,aAAa;IACb,KAAK;IACL,cAAc;IACd,eAAe;IACf,cAAc;IACd,WAAW;IACX,YAAY;IACZ,SAAS;IACT,gBAAgB;IAChB,eAAe;IACf,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;CACpB,CAAC;AAGF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE3D;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;AAE1D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,mBAAmB,CAAC,CAAC"}
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
export type TUserSummaryInfo = {
|
|
2
|
+
user_id: string;
|
|
3
|
+
user_name: string | null;
|
|
4
|
+
country_code: string | null;
|
|
5
|
+
lang_code: string | null;
|
|
6
|
+
name: string | null;
|
|
7
|
+
avatar_url: string | null;
|
|
8
|
+
timezone: string | null;
|
|
9
|
+
};
|
|
1
10
|
export type TUserListForAdmin = {
|
|
2
11
|
user_id: string;
|
|
3
12
|
user_name: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-user.js","sourceRoot":"","sources":["../../../src/types/types-user/t-user.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"t-user.js","sourceRoot":"","sources":["../../../src/types/types-user/t-user.ts"],"names":[],"mappings":"AAyBA,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,SAAS;IACT,WAAW;IACX,cAAc;IACd,WAAW;IACX,MAAM;IACN,YAAY;IACZ,MAAM;IACN,SAAS;IACT,OAAO;IACP,cAAc;IACd,WAAW;CACZ,CAAC"}
|