dplus_common_v1 0.2.43 → 0.2.45
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-category.d.ts +2 -4
- package/dist/dplus-types/dplus-response-city.d.ts +2 -4
- package/dist/dplus-types/dplus-response-country.d.ts +0 -15
- package/dist/dplus-types/dplus-response-event.d.ts +0 -6
- package/dist/dplus-types/dplus-response-folder.d.ts +0 -6
- package/dist/dplus-types/dplus-response-group.d.ts +2 -4
- package/dist/dplus-types/dplus-response-stag.d.ts +2 -4
- package/dist/dplus-types/dplus-response-tag.d.ts +2 -4
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TCategoryDetail, TCategoryDetailInsert, TCategoryDetailUpdate } from "../types/types-category/t-category.js";
|
|
2
2
|
import { TCategoryI18n } from "../types/types-category/t-category-i18n.js";
|
|
3
3
|
import { TCategoryMetadataI18nDetail } from "../types/types-category/t-category-metadata-i18n.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { TMapCategoryEventWithEventInfo } from "../types/types-map/t-map-category-event.js";
|
|
5
|
+
import { TMapCategoryFolderWithFolderInfo } from "../types/types-map/t-map-category-folder.js";
|
|
6
6
|
import { BaseResponseDetail, DplusGetListDataResponse } from "./dplus-response-types.js";
|
|
7
7
|
/**
|
|
8
8
|
* 카테고리 상세 응답 타입 For Admin
|
|
@@ -14,8 +14,6 @@ export type ResponseCategoryDetailForAdmin = {
|
|
|
14
14
|
subCategories?: TCategoryDetail[];
|
|
15
15
|
i18n?: DplusGetListDataResponse<TCategoryI18n>;
|
|
16
16
|
};
|
|
17
|
-
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
18
|
-
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithCategoryInfo>;
|
|
19
17
|
};
|
|
20
18
|
export type TCategoryAdminCreateForm = {
|
|
21
19
|
categoryInfo: TCategoryDetailInsert;
|
|
@@ -3,8 +3,8 @@ import { TCityI18n } from "../types/types-city/t-city-i18n.js";
|
|
|
3
3
|
import { TCityImage, TCityImageAdminInput } from "../types/types-city/t-city-image.js";
|
|
4
4
|
import { TCityMetadataI18nDetail } from "../types/types-city/t-city-metadata-i18n.js";
|
|
5
5
|
import { TCityYouTubeVideo } from "../types/types-city/t-city-youtube-video.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { TMapCityEventWithEventInfo } from "../types/types-map/t-map-city-event.js";
|
|
7
|
+
import { TMapCityFolderWithFolderInfo } from "../types/types-map/t-map-city-folder.js";
|
|
8
8
|
import { BaseResponseDetail, DplusGetListDataResponse } from "./dplus-response-types.js";
|
|
9
9
|
/**
|
|
10
10
|
* 도시 상세 응답 타입 For Admin
|
|
@@ -17,8 +17,6 @@ export type ResponseCityDetailForAdmin = {
|
|
|
17
17
|
i18n?: DplusGetListDataResponse<TCityI18n>;
|
|
18
18
|
videos?: TCityYouTubeVideo[];
|
|
19
19
|
};
|
|
20
|
-
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
21
|
-
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
22
20
|
};
|
|
23
21
|
export type TCityAdminCreateForm = {
|
|
24
22
|
cityInfo: TCityDetailInsert;
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import { TCategoryInfoForCountryDetail } from "../types/types-category/t-category.js";
|
|
2
|
-
import { TCityInfoForCountryDetail } from "../types/types-city/t-city.js";
|
|
3
1
|
import { TCountryDetail } from "../types/types-i18n/t-country.js";
|
|
4
2
|
import { TCountryMetadataI18nDetail } from "../types/types-i18n/t-country-metadata-i18n.js";
|
|
5
|
-
import { TMapCountryEventWithCountryInfo, TMapCountryEventWithEventInfo } from "../types/types-map/t-map-country-event.js";
|
|
6
|
-
import { TMapCountryFolderWithCountryInfo, TMapCountryFolderWithFolderInfo } from "../types/types-map/t-map-country-folder.js";
|
|
7
|
-
import { TStagInfoForCountryDetail } from "../types/types-stag/t-stag.js";
|
|
8
3
|
import { DplusGetListDataResponse } from "./dplus-response-types.js";
|
|
9
4
|
/**
|
|
10
5
|
* 국가 상세 응답 타입 For Admin
|
|
@@ -14,11 +9,6 @@ export type ResponseCountryDetailForAdmin = {
|
|
|
14
9
|
countryInfo: TCountryDetail;
|
|
15
10
|
metadataI18n: DplusGetListDataResponse<TCountryMetadataI18nDetail>;
|
|
16
11
|
};
|
|
17
|
-
cities: DplusGetListDataResponse<TCityInfoForCountryDetail>;
|
|
18
|
-
categories: DplusGetListDataResponse<TCategoryInfoForCountryDetail>;
|
|
19
|
-
stags?: DplusGetListDataResponse<TStagInfoForCountryDetail>;
|
|
20
|
-
mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithCountryInfo>;
|
|
21
|
-
mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithCountryInfo>;
|
|
22
12
|
};
|
|
23
13
|
/**
|
|
24
14
|
* 국가 상세 응답 타입 For User Front
|
|
@@ -28,9 +18,4 @@ export type ResponseCountryDetailForUserFront = {
|
|
|
28
18
|
countryInfo: TCountryDetail;
|
|
29
19
|
metadataI18n: DplusGetListDataResponse<TCountryMetadataI18nDetail>;
|
|
30
20
|
};
|
|
31
|
-
cities: DplusGetListDataResponse<TCityInfoForCountryDetail>;
|
|
32
|
-
categories: DplusGetListDataResponse<TCategoryInfoForCountryDetail>;
|
|
33
|
-
stags?: DplusGetListDataResponse<TStagInfoForCountryDetail>;
|
|
34
|
-
mapCountryFolder?: DplusGetListDataResponse<TMapCountryFolderWithFolderInfo>;
|
|
35
|
-
mapCountryEvent?: DplusGetListDataResponse<TMapCountryEventWithEventInfo>;
|
|
36
21
|
};
|
|
@@ -22,12 +22,6 @@ export type ResponseEventDetailForAdmin = BaseResponseDetail<TEventImage, null>
|
|
|
22
22
|
metadata: TEventMetadataDetail | null;
|
|
23
23
|
images: DplusGetListDataResponse<TEventImage>;
|
|
24
24
|
};
|
|
25
|
-
mapFolderEvent?: DplusGetListDataResponse<TMapFolderEventWithFolderInfo>;
|
|
26
|
-
mapCityEvent?: DplusGetListDataResponse<TMapCityEventWithCityInfo>;
|
|
27
|
-
mapCategoryEvent?: DplusGetListDataResponse<TMapCategoryEventWithCategoryInfo>;
|
|
28
|
-
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithStagInfo>;
|
|
29
|
-
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
|
|
30
|
-
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
|
|
31
25
|
};
|
|
32
26
|
export type TEventAdminCreateForm = {
|
|
33
27
|
eventInfo: TEventDetailInsert;
|
|
@@ -22,12 +22,6 @@ export type ResponseFolderDetailForAdmin = BaseResponseDetail<TFolderImage, null
|
|
|
22
22
|
metadata: TFolderMetadataDetail;
|
|
23
23
|
images: DplusGetListDataResponse<TFolderImage>;
|
|
24
24
|
};
|
|
25
|
-
mapCityFolder?: DplusGetListDataResponse<TMapCityFolderWithCityInfo>;
|
|
26
|
-
mapCategoryFolder?: DplusGetListDataResponse<TMapCategoryFolderWithCategoryInfo>;
|
|
27
|
-
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
28
|
-
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithTagInfo>;
|
|
29
|
-
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithGroupInfo>;
|
|
30
|
-
folderEvent?: DplusGetListDataResponse<TMapFolderEventWithEventInfo>;
|
|
31
25
|
};
|
|
32
26
|
export type TFolderAdminCreateForm = {
|
|
33
27
|
folderInfo: TFolderDetailInsert;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TGroupDetail, TGroupDetailInsert, TGroupDetailUpdate } from "../types/types-group/t-group.js";
|
|
2
2
|
import { TGroupImage, TGroupImageAdminInput } from "../types/types-group/t-group-image.js";
|
|
3
3
|
import { TGroupMetadataDetail, TGroupMetadataDetailInsert, TGroupMetadataDetailUpdate } from "../types/types-group/t-group-metadata.js";
|
|
4
|
-
import { TMapGroupEventWithEventInfo
|
|
5
|
-
import { TMapGroupFolderWithFolderInfo
|
|
4
|
+
import { TMapGroupEventWithEventInfo } from "../types/types-map/t-map-group-event.js";
|
|
5
|
+
import { TMapGroupFolderWithFolderInfo } from "../types/types-map/t-map-group-folder.js";
|
|
6
6
|
import { BaseResponseDetail, DplusGetListDataResponse } from "./dplus-response-types.js";
|
|
7
7
|
/**
|
|
8
8
|
* Group 상세 응답 타입 For Admin
|
|
@@ -13,8 +13,6 @@ export type ResponseGroupDetailForAdmin = {
|
|
|
13
13
|
images?: DplusGetListDataResponse<TGroupImage>;
|
|
14
14
|
metadata: TGroupMetadataDetail;
|
|
15
15
|
};
|
|
16
|
-
mapGroupFolder?: DplusGetListDataResponse<TMapGroupFolderWithGroupInfo>;
|
|
17
|
-
mapGroupEvent?: DplusGetListDataResponse<TMapGroupEventWithGroupInfo>;
|
|
18
16
|
};
|
|
19
17
|
export type TGroupAdminCreateForm = {
|
|
20
18
|
groupInfo: TGroupDetailInsert;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TMapStagEventWithEventInfo
|
|
2
|
-
import { TMapStagFolderWithFolderInfo
|
|
1
|
+
import { TMapStagEventWithEventInfo } from "../types/types-map/t-map-stag-event.js";
|
|
2
|
+
import { TMapStagFolderWithFolderInfo } from "../types/types-map/t-map-stag-folder.js";
|
|
3
3
|
import { TStagDetail, TStagDetailInsert, TStagDetailUpdate } from "../types/types-stag/t-stag.js";
|
|
4
4
|
import { TStagI18n, TStagI18nInsert, TStagI18nUpdate } from "../types/types-stag/t-stag-i18n.js";
|
|
5
5
|
import { TStagImage, TStagImageAdminInput } from "../types/types-stag/t-stag-image.js";
|
|
@@ -15,8 +15,6 @@ export type ResponseStagDetailForAdmin = {
|
|
|
15
15
|
i18n?: DplusGetListDataResponse<TStagI18n>;
|
|
16
16
|
metadata: TStagMetadataDetail;
|
|
17
17
|
};
|
|
18
|
-
mapStagFolder?: DplusGetListDataResponse<TMapStagFolderWithStagInfo>;
|
|
19
|
-
mapStagEvent?: DplusGetListDataResponse<TMapStagEventWithStagInfo>;
|
|
20
18
|
};
|
|
21
19
|
export type TStagAdminCreateForm = {
|
|
22
20
|
stagInfo: TStagDetailInsert;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TMapTagEventWithEventInfo
|
|
2
|
-
import { TMapTagFolderWithFolderInfo
|
|
1
|
+
import { TMapTagEventWithEventInfo } from "../types/types-map/t-map-tag-event.js";
|
|
2
|
+
import { TMapTagFolderWithFolderInfo } from "../types/types-map/t-map-tag-folder.js";
|
|
3
3
|
import { TTag } from "../types/types-tag/t-tag.js";
|
|
4
4
|
import { BaseResponseDetail, DplusGetListDataResponse } from "./dplus-response-types.js";
|
|
5
5
|
/**
|
|
@@ -7,8 +7,6 @@ import { BaseResponseDetail, DplusGetListDataResponse } from "./dplus-response-t
|
|
|
7
7
|
*/
|
|
8
8
|
export type ResponseTagDetailForAdmin = {
|
|
9
9
|
tag: TTag;
|
|
10
|
-
mapTagFolder?: DplusGetListDataResponse<TMapTagFolderWithTagInfo>;
|
|
11
|
-
mapTagEvent?: DplusGetListDataResponse<TMapTagEventWithTagInfo>;
|
|
12
10
|
};
|
|
13
11
|
/**
|
|
14
12
|
* Tag 상세 응답 타입 For User Front
|