dplus_common_v1 0.1.112 → 0.1.113
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 +2 -1
- package/dist/types/t-metadata-tag-set.d.ts +4 -0
- package/dist/types/t-metadata-tag-set.js +2 -0
- package/dist/types/t-metadata-tag-set.js.map +1 -0
- package/dist/types/types-category/t-category-metadata-i18n.d.ts +2 -1
- package/dist/types/types-city/t-city-metadata-i18n.d.ts +2 -1
- package/dist/types/types-event/t-event-metadata-i18n.d.ts +2 -1
- package/dist/types/types-folder/t-folder-metadata-i18n.d.ts +2 -1
- package/dist/types/types-group/t-group-metadata-i18n.d.ts +2 -1
- package/dist/types/types-stag/t-stag-metadata-i18n.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../types/t-metadata-tag-set";
|
|
1
2
|
import { TCategoryDetail, TCategoryInfoForCountryDetail, TCategoryLabelInfo } from "../types/types-category/t-category";
|
|
2
3
|
import { TCategoryI18n } from "../types/types-category/t-category-i18n";
|
|
3
4
|
import { TCategoryMetadataI18nDetail } from "../types/types-category/t-category-metadata-i18n";
|
|
@@ -319,7 +320,7 @@ export type ResponseMetadataForUserFront = {
|
|
|
319
320
|
metadata_i18n_og_title: string | null;
|
|
320
321
|
metadata_i18n_og_description: string | null;
|
|
321
322
|
metadata_i18n_og_image: string | null;
|
|
322
|
-
metadata_i18n_tag_set:
|
|
323
|
+
metadata_i18n_tag_set: TMetadataTagItem[] | null;
|
|
323
324
|
};
|
|
324
325
|
export type ResponseDplusAPI<T> = {
|
|
325
326
|
success: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"t-metadata-tag-set.js","sourceRoot":"","sources":["../../src/types/t-metadata-tag-set.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TCategoryMetadataI18nListForAdmin = {
|
|
2
3
|
category_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -12,7 +13,7 @@ export type TCategoryMetadataI18nDetail = {
|
|
|
12
13
|
og_title: string | null;
|
|
13
14
|
og_description: string | null;
|
|
14
15
|
og_image: string | null;
|
|
15
|
-
tag_set:
|
|
16
|
+
tag_set: TMetadataTagItem[] | null;
|
|
16
17
|
created_at: Date;
|
|
17
18
|
updated_at: Date;
|
|
18
19
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TCityMetadataI18nListForAdmin = {
|
|
2
3
|
city_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -12,7 +13,7 @@ export type TCityMetadataI18nDetail = {
|
|
|
12
13
|
og_title: string | null;
|
|
13
14
|
og_description: string | null;
|
|
14
15
|
og_image: string | null;
|
|
15
|
-
tag_set:
|
|
16
|
+
tag_set: TMetadataTagItem[] | null;
|
|
16
17
|
created_at: string;
|
|
17
18
|
updated_at: string;
|
|
18
19
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TEventMetadataI18nListForAdmin = {
|
|
2
3
|
event_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -11,7 +12,7 @@ export type TEventMetadataI18nDetail = {
|
|
|
11
12
|
description: string | null;
|
|
12
13
|
og_description: string | null;
|
|
13
14
|
og_image: string | null;
|
|
14
|
-
tag_set:
|
|
15
|
+
tag_set: TMetadataTagItem[] | null;
|
|
15
16
|
created_at: string;
|
|
16
17
|
updated_at: string;
|
|
17
18
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TFolderMetadataI18nListForAdmin = {
|
|
2
3
|
folder_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -12,7 +13,7 @@ export type TFolderMetadataI18nDetail = {
|
|
|
12
13
|
og_title: string | null;
|
|
13
14
|
og_description: string | null;
|
|
14
15
|
og_image: string | null;
|
|
15
|
-
tag_set:
|
|
16
|
+
tag_set: TMetadataTagItem[] | null;
|
|
16
17
|
created_at: Date;
|
|
17
18
|
updated_at: Date;
|
|
18
19
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TGroupMetadataI18nListForAdmin = {
|
|
2
3
|
group_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -8,7 +9,7 @@ export type TGroupMetadataI18nDetail = TGroupMetadataI18nListForAdmin & {
|
|
|
8
9
|
description: string | null;
|
|
9
10
|
og_description: string | null;
|
|
10
11
|
og_image: string | null;
|
|
11
|
-
tag_set:
|
|
12
|
+
tag_set: TMetadataTagItem[] | null;
|
|
12
13
|
created_at: string;
|
|
13
14
|
updated_at: string;
|
|
14
15
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TMetadataTagItem } from "../t-metadata-tag-set";
|
|
1
2
|
export type TStagMetadataI18nListForAdmin = {
|
|
2
3
|
stag_code: string;
|
|
3
4
|
lang_code: string;
|
|
@@ -12,7 +13,7 @@ export type TStagMetadataI18nDetail = {
|
|
|
12
13
|
og_title: string | null;
|
|
13
14
|
og_description: string | null;
|
|
14
15
|
og_image: string | null;
|
|
15
|
-
tag_set:
|
|
16
|
+
tag_set: TMetadataTagItem[] | null;
|
|
16
17
|
created_at: Date;
|
|
17
18
|
updated_at: Date;
|
|
18
19
|
};
|