dplus_common_v1 0.1.85 → 0.1.86
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,32 @@ 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
|
+
city_code?: string | null;
|
|
276
|
+
category_code?: string | null;
|
|
277
|
+
stag_code?: string | null;
|
|
278
|
+
folder_code?: string | null;
|
|
279
|
+
event_code?: string | null;
|
|
280
|
+
group_code?: string | null;
|
|
281
|
+
lang_code: string;
|
|
282
|
+
metadata_title: string | null;
|
|
283
|
+
metadata_description: string | null;
|
|
284
|
+
metadata_keywords: string | null;
|
|
285
|
+
metadata_og_title: string | null;
|
|
286
|
+
metadata_og_description: string | null;
|
|
287
|
+
metadata_og_image: string | null;
|
|
288
|
+
metadata_i18n_title: string | null;
|
|
289
|
+
metadata_i18n_description: string | null;
|
|
290
|
+
metadata_i18n_og_title: string | null;
|
|
291
|
+
metadata_i18n_og_description: string | null;
|
|
292
|
+
metadata_i18n_og_image: string | null;
|
|
293
|
+
metadata_i18n_tag_set: string[] | null;
|
|
294
|
+
};
|
|
269
295
|
export type ResponseDplusAPI<T> = {
|
|
270
296
|
success: boolean;
|
|
271
297
|
alarm?: string | null;
|