dplus_common_v1 0.1.2 → 0.1.4

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.
@@ -36,11 +36,11 @@ export type TBrandDetail = TBrandListForAdmin & {
36
36
  metadata_og_description: string | null;
37
37
  metadata_og_image: string | null;
38
38
  };
39
- export type TBrandInsert = {
39
+ export type TBrandDetailInsert = {
40
40
  brand_code: string;
41
41
  name: string;
42
42
  } & Partial<Omit<TBrandDetail, "brand_code">>;
43
- export type TBrandUpdate = {
43
+ export type TBrandDetailUpdate = {
44
44
  brand_code: string;
45
45
  } & Partial<Omit<TBrandDetail, "brand_code">>;
46
46
  export type TBrandMetadataI18n = {
@@ -36,11 +36,11 @@ export type TCelebDetail = TCelebListForAdmin & {
36
36
  metadata_og_description: string | null;
37
37
  metadata_og_image: string | null;
38
38
  };
39
- export type TCelebInsert = {
39
+ export type TCelebDetailInsert = {
40
40
  celeb_code: string;
41
41
  name: string;
42
42
  } & Partial<Omit<TCelebDetail, "celeb_code">>;
43
- export type TCelebUpdate = {
43
+ export type TCelebDetailUpdate = {
44
44
  celeb_code: string;
45
45
  } & Partial<Omit<TCelebDetail, "celeb_code">>;
46
46
  export type TCelebMetadataI18n = {
@@ -35,11 +35,11 @@ export type TCompanyDetail = TCompanyListForAdmin & {
35
35
  metadata_og_description: string | null;
36
36
  metadata_og_image: string | null;
37
37
  };
38
- export type TCompanyInsert = {
38
+ export type TCompanyDetailInsert = {
39
39
  company_code: string;
40
40
  name: string;
41
41
  } & Partial<Omit<TCompanyDetail, "company_code">>;
42
- export type TCompanyUpdate = {
42
+ export type TCompanyDetailUpdate = {
43
43
  company_code: string;
44
44
  } & Partial<Omit<TCompanyDetail, "company_code">>;
45
45
  export type TCompanyMetadataI18n = {
@@ -35,11 +35,11 @@ export type TPeopleDetail = TPeopleListForAdmin & {
35
35
  metadata_og_description: string | null;
36
36
  metadata_og_image: string | null;
37
37
  };
38
- export type TPeopleInsert = {
38
+ export type TPeopleDetailInsert = {
39
39
  person_code: string;
40
40
  name: string;
41
41
  } & Partial<Omit<TPeopleDetail, "person_code">>;
42
- export type TPeopleUpdate = {
42
+ export type TPeopleDetailUpdate = {
43
43
  person_code: string;
44
44
  } & Partial<Omit<TPeopleDetail, "person_code">>;
45
45
  export type TPeopleMetadataI18n = {
@@ -37,11 +37,11 @@ export type TProductDetail = TProductListForAdmin & {
37
37
  metadata_og_description: string | null;
38
38
  metadata_og_image: string | null;
39
39
  };
40
- export type TProductInsert = {
40
+ export type TProductDetailInsert = {
41
41
  product_code: string;
42
42
  name: string;
43
43
  } & Partial<Omit<TProductDetail, "product_code">>;
44
- export type TProductUpdate = {
44
+ export type TProductDetailUpdate = {
45
45
  product_code: string;
46
46
  } & Partial<Omit<TProductDetail, "product_code">>;
47
47
  export type TProductMetadataI18n = {
@@ -35,11 +35,11 @@ export type TTeamDetail = TTeamListForAdmin & {
35
35
  metadata_og_description: string | null;
36
36
  metadata_og_image: string | null;
37
37
  };
38
- export type TTeamInsert = {
38
+ export type TTeamDetailInsert = {
39
39
  team_code: string;
40
40
  name: string;
41
41
  } & Partial<Omit<TTeamDetail, "team_code">>;
42
- export type TTeamUpdate = {
42
+ export type TTeamDetailUpdate = {
43
43
  team_code: string;
44
44
  } & Partial<Omit<TTeamDetail, "team_code">>;
45
45
  export type TTeamMetadataI18n = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dplus_common_v1",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Common modules for dplus API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "dplus"