dplus_common_v1 0.1.64 → 0.1.65

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
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"