dplus_common_v1 0.1.14 → 0.1.16
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const TMetadataI18nListForAdminAttributes: string[];
|
|
2
2
|
export type TMetadataI18nListForAdmin = {
|
|
3
|
-
|
|
3
|
+
content_type: string;
|
|
4
4
|
code: string;
|
|
5
5
|
lang_code: string;
|
|
6
6
|
title: string;
|
|
@@ -13,12 +13,12 @@ export type TMetadataI18nDetail = TMetadataI18nListForAdmin & {
|
|
|
13
13
|
tag_set: string | null;
|
|
14
14
|
};
|
|
15
15
|
export type TMetadataI18nDetailInsert = {
|
|
16
|
-
|
|
16
|
+
content_type: string;
|
|
17
17
|
code: string;
|
|
18
18
|
lang_code: string;
|
|
19
|
-
} & Partial<Omit<TMetadataI18nDetail, "
|
|
19
|
+
} & Partial<Omit<TMetadataI18nDetail, "content_type" | "code" | "lang_code">>;
|
|
20
20
|
export type TMetadataI18nDetailUpdate = {
|
|
21
|
-
|
|
21
|
+
content_type: string;
|
|
22
22
|
code: string;
|
|
23
23
|
lang_code: string;
|
|
24
|
-
} & Partial<Omit<TMetadataI18nDetail, "
|
|
24
|
+
} & Partial<Omit<TMetadataI18nDetail, "content_type" | "code" | "lang_code">>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const TSelectedEventListForAdminAttributes: string[];
|
|
2
2
|
export type TSelectedEventListForAdmin = {
|
|
3
|
-
|
|
3
|
+
content_type: string;
|
|
4
4
|
code: string;
|
|
5
5
|
folder_id: string | null;
|
|
6
6
|
event_id: string;
|
|
@@ -27,12 +27,12 @@ export type TSelectedEventDetail = TSelectedEventListForAdmin & {
|
|
|
27
27
|
description: string | null;
|
|
28
28
|
};
|
|
29
29
|
export type TSelectedEventDetailInsert = {
|
|
30
|
-
|
|
30
|
+
content_type: string;
|
|
31
31
|
code: string;
|
|
32
32
|
event_id: string;
|
|
33
|
-
} & Partial<Omit<TSelectedEventDetail, "
|
|
33
|
+
} & Partial<Omit<TSelectedEventDetail, "content_type" | "code" | "event_id">>;
|
|
34
34
|
export type TSelectedEventDetailUpdate = {
|
|
35
|
-
|
|
35
|
+
content_type: string;
|
|
36
36
|
code: string;
|
|
37
37
|
event_id: string;
|
|
38
|
-
} & Partial<Omit<TSelectedEventDetail, "
|
|
38
|
+
} & Partial<Omit<TSelectedEventDetail, "content_type" | "code" | "event_id">>;
|