dplus_common_v1 0.1.54 → 0.1.56

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,5 +1,5 @@
1
1
  export type TMapTagEvent = {
2
- tag_id: string;
2
+ tag_id: number;
3
3
  event_id: string;
4
4
  date?: Date | null;
5
5
  is_selected?: boolean;
@@ -7,10 +7,10 @@ export type TMapTagEvent = {
7
7
  added_at?: Date;
8
8
  };
9
9
  export type TMapTagEventInsert = {
10
- tag_id: string;
10
+ tag_id: number;
11
11
  event_id: string;
12
12
  } & Partial<Omit<TMapTagEvent, "tag_id" | "event_id">>;
13
13
  export type TMapTagEventUpdate = {
14
- tag_id: string;
14
+ tag_id: number;
15
15
  event_id: string;
16
16
  } & Partial<Omit<TMapTagEvent, "tag_id" | "event_id">>;
@@ -1,5 +1,5 @@
1
1
  export type TMapTagFolder = {
2
- tag_id: string;
2
+ tag_id: number;
3
3
  folder_id: string;
4
4
  earliest_event?: Date | null;
5
5
  latest_event?: Date | null;
@@ -8,10 +8,10 @@ export type TMapTagFolder = {
8
8
  added_at?: Date;
9
9
  };
10
10
  export type TMapTagFolderInsert = {
11
- tag_id: string;
11
+ tag_id: number;
12
12
  folder_id: string;
13
13
  } & Partial<Omit<TMapTagFolder, "tag_id" | "folder_id">>;
14
14
  export type TMapTagFolderUpdate = {
15
- tag_id: string;
15
+ tag_id: number;
16
16
  folder_id: string;
17
17
  } & Partial<Omit<TMapTagFolder, "tag_id" | "folder_id">>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.54",
3
+ "version": "0.1.56",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"