dplus_common_v1 0.1.85 → 0.1.87

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.
@@ -266,6 +266,33 @@ export type ResponseNearbyDetailForUserFront = {
266
266
  };
267
267
  events: TEventCardForDateDetail[];
268
268
  };
269
+ /**
270
+ * 메타데이터 응답 타입 For User Front
271
+ * - DB NULL 가능성을 반영하여 대부분 string | null
272
+ * - tag_set은 배열(string[]), 없을 수 있으니 null 허용
273
+ */
274
+ export type ResponseMetadataForUserFront = {
275
+ country_code?: string | null;
276
+ city_code?: string | null;
277
+ category_code?: string | null;
278
+ stag_code?: string | null;
279
+ folder_code?: string | null;
280
+ event_code?: string | null;
281
+ group_code?: string | null;
282
+ lang_code: string;
283
+ metadata_title: string | null;
284
+ metadata_description: string | null;
285
+ metadata_keywords: string | null;
286
+ metadata_og_title: string | null;
287
+ metadata_og_description: string | null;
288
+ metadata_og_image: string | null;
289
+ metadata_i18n_title: string | null;
290
+ metadata_i18n_description: string | null;
291
+ metadata_i18n_og_title: string | null;
292
+ metadata_i18n_og_description: string | null;
293
+ metadata_i18n_og_image: string | null;
294
+ metadata_i18n_tag_set: string[] | null;
295
+ };
269
296
  export type ResponseDplusAPI<T> = {
270
297
  success: boolean;
271
298
  alarm?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.85",
3
+ "version": "0.1.87",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"