dplus_common_v1 0.2.9 → 0.2.11

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.
@@ -10,6 +10,7 @@ export type TEventMetadataI18nDetail = {
10
10
  lang_code: string;
11
11
  title: string | null;
12
12
  description: string | null;
13
+ og_title: string | null;
13
14
  og_description: string | null;
14
15
  og_image: string | null;
15
16
  tag_set: TMetadataTagItem[] | null;
@@ -19,5 +20,5 @@ export type TEventMetadataI18nDetail = {
19
20
  export type TEventMetadataI18nDetailInsert = {
20
21
  event_code: string;
21
22
  lang_code: string;
22
- } & Partial<Omit<TEventMetadataI18nDetail, "event_code" | "lang_code" | "created_at" | "updated_at">>;
23
- export type TEventMetadataI18nDetailUpdate = Partial<Omit<TEventMetadataI18nDetail, "event_code" | "lang_code" | "created_at" | "updated_at">>;
23
+ } & Partial<Omit<TEventMetadataI18nDetail, "event_code" | "lang_code" | "og_title" | "created_at" | "updated_at">>;
24
+ export type TEventMetadataI18nDetailUpdate = Partial<Omit<TEventMetadataI18nDetail, "event_code" | "lang_code" | "og_title" | "created_at" | "updated_at">>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"