@signskart/shared 1.3.4 → 1.3.6

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.
@@ -6,6 +6,7 @@ export interface ICustomerPhotos {
6
6
  customer: {
7
7
  name?: string;
8
8
  email?: string;
9
+ comment?: string;
9
10
  };
10
11
  photos: string[];
11
12
  status: CustomerPhotoStatus;
@@ -25,7 +25,7 @@ export interface IProduct {
25
25
  slug: string;
26
26
  categories: ICategory[];
27
27
  category: ICategory;
28
- productType?: IProductType;
28
+ productType: IProductType;
29
29
  image: string[];
30
30
  stock: number;
31
31
  sales: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signskart/shared",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -8,6 +8,7 @@ export interface ICustomerPhotos {
8
8
  customer: {
9
9
  name?: string;
10
10
  email?: string;
11
+ comment?: string
11
12
  };
12
13
  photos: string[];
13
14
  status: CustomerPhotoStatus; // use the reusable type
@@ -29,7 +29,7 @@ export interface IProduct {
29
29
  slug: string;
30
30
  categories: ICategory[];
31
31
  category: ICategory;
32
- productType?: IProductType;
32
+ productType: IProductType;
33
33
  image: string[];
34
34
  stock: number;
35
35
  sales: number;