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.
- package/dist/db-types/db-brand-types.d.ts +2 -2
- package/dist/db-types/db-celeb-types.d.ts +2 -2
- package/dist/db-types/db-company-types.d.ts +2 -2
- package/dist/db-types/db-people-types.d.ts +2 -2
- package/dist/db-types/db-product-types.d.ts +2 -2
- package/dist/db-types/db-team-types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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
|
|
39
|
+
export type TBrandDetailInsert = {
|
|
40
40
|
brand_code: string;
|
|
41
41
|
name: string;
|
|
42
42
|
} & Partial<Omit<TBrandDetail, "brand_code">>;
|
|
43
|
-
export type
|
|
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
|
|
39
|
+
export type TCelebDetailInsert = {
|
|
40
40
|
celeb_code: string;
|
|
41
41
|
name: string;
|
|
42
42
|
} & Partial<Omit<TCelebDetail, "celeb_code">>;
|
|
43
|
-
export type
|
|
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
|
|
38
|
+
export type TCompanyDetailInsert = {
|
|
39
39
|
company_code: string;
|
|
40
40
|
name: string;
|
|
41
41
|
} & Partial<Omit<TCompanyDetail, "company_code">>;
|
|
42
|
-
export type
|
|
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
|
|
38
|
+
export type TPeopleDetailInsert = {
|
|
39
39
|
person_code: string;
|
|
40
40
|
name: string;
|
|
41
41
|
} & Partial<Omit<TPeopleDetail, "person_code">>;
|
|
42
|
-
export type
|
|
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
|
|
40
|
+
export type TProductDetailInsert = {
|
|
41
41
|
product_code: string;
|
|
42
42
|
name: string;
|
|
43
43
|
} & Partial<Omit<TProductDetail, "product_code">>;
|
|
44
|
-
export type
|
|
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
|
|
38
|
+
export type TTeamDetailInsert = {
|
|
39
39
|
team_code: string;
|
|
40
40
|
name: string;
|
|
41
41
|
} & Partial<Omit<TTeamDetail, "team_code">>;
|
|
42
|
-
export type
|
|
42
|
+
export type TTeamDetailUpdate = {
|
|
43
43
|
team_code: string;
|
|
44
44
|
} & Partial<Omit<TTeamDetail, "team_code">>;
|
|
45
45
|
export type TTeamMetadataI18n = {
|