Add meta_data type to Product (#41961)
This commit is contained in:
parent
798e79f7b1
commit
120a3dba87
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
Add meta_data type to Product
|
|
@ -98,6 +98,11 @@ export type Product< Status = ProductStatus, Type = ProductType > = Omit<
|
|||
generated_slug: string;
|
||||
id: number;
|
||||
low_stock_amount: number;
|
||||
meta_data: {
|
||||
id?: number;
|
||||
key: string;
|
||||
value?: string;
|
||||
}[];
|
||||
manage_stock: boolean;
|
||||
menu_order: number;
|
||||
name: string;
|
||||
|
|
Loading…
Reference in New Issue