dplus_common_v1 0.1.15 → 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.
@@ -13,12 +13,12 @@ export type TMetadataI18nDetail = TMetadataI18nListForAdmin & {
13
13
  tag_set: string | null;
14
14
  };
15
15
  export type TMetadataI18nDetailInsert = {
16
- content_code: string;
16
+ content_type: string;
17
17
  code: string;
18
18
  lang_code: string;
19
- } & Partial<Omit<TMetadataI18nDetail, "content_code" | "code" | "lang_code">>;
19
+ } & Partial<Omit<TMetadataI18nDetail, "content_type" | "code" | "lang_code">>;
20
20
  export type TMetadataI18nDetailUpdate = {
21
- content_code: string;
21
+ content_type: string;
22
22
  code: string;
23
23
  lang_code: string;
24
- } & Partial<Omit<TMetadataI18nDetail, "content_code" | "code" | "lang_code">>;
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
- content_code: string;
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
- content_code: string;
30
+ content_type: string;
31
31
  code: string;
32
32
  event_id: string;
33
- } & Partial<Omit<TSelectedEventDetail, "content_code" | "code" | "event_id">>;
33
+ } & Partial<Omit<TSelectedEventDetail, "content_type" | "code" | "event_id">>;
34
34
  export type TSelectedEventDetailUpdate = {
35
- content_code: string;
35
+ content_type: string;
36
36
  code: string;
37
37
  event_id: string;
38
- } & Partial<Omit<TSelectedEventDetail, "content_code" | "code" | "event_id">>;
38
+ } & Partial<Omit<TSelectedEventDetail, "content_type" | "code" | "event_id">>;
@@ -1,5 +1,5 @@
1
1
  export const TSelectedEventListForAdminAttributes = [
2
- "content_code",
2
+ "content_type",
3
3
  "code",
4
4
  "folder_id",
5
5
  "event_id",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"