dplus_common_v1 0.2.32 → 0.2.34

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.
@@ -33,12 +33,4 @@ export type TCityImageInsert = {
33
33
  src_unique_id?: string | null;
34
34
  src_url?: string | null;
35
35
  };
36
- export type TCityImageUpdate = {
37
- label?: string | null;
38
- order_num?: number;
39
- url?: string;
40
- src_name?: string | null;
41
- src_platform?: string | null;
42
- src_unique_id?: string | null;
43
- src_url?: string | null;
44
- };
36
+ export type TCityImageUpdate = {} & Partial<Omit<TCityImage, "city_code" | "hash_code" | "created_at" | "updated_at">>;
@@ -19,15 +19,12 @@ export type TFolderImage = {
19
19
  src_platform: string | null;
20
20
  src_unique_id: string | null;
21
21
  src_url: string | null;
22
- created_at: Date;
23
- updated_at: Date;
22
+ created_at: string;
23
+ updated_at: string;
24
24
  };
25
25
  export type TFolderImageInsert = {
26
26
  folder_code: string;
27
27
  hash_code: string;
28
28
  url: string;
29
29
  } & Partial<Omit<TFolderImage, "folder_code" | "hash_code" | "url" | "created_at" | "updated_at">>;
30
- export type TFolderImageUpdate = {
31
- folder_code: string;
32
- hash_code: string;
33
- } & Partial<Omit<TFolderImage, "folder_code" | "hash_code" | "created_at" | "updated_at">>;
30
+ export type TFolderImageUpdate = {} & Partial<Omit<TFolderImage, "folder_code" | "hash_code" | "created_at" | "updated_at">>;
@@ -19,8 +19,8 @@ export type TStagImage = {
19
19
  src_platform: string | null;
20
20
  src_unique_id: string | null;
21
21
  src_url: string | null;
22
- created_at: Date;
23
- updated_at: Date;
22
+ created_at: string;
23
+ updated_at: string;
24
24
  };
25
25
  export type TStagImageInsert = {
26
26
  stag_code: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.2.32",
3
+ "version": "0.2.34",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"