@mamindom/contracts 1.0.91 → 1.0.92

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.
@@ -44,6 +44,7 @@ export interface ProductSizeChartResponse {
44
44
  [key: string]: string;
45
45
  };
46
46
  content: string;
47
+ imageUrl: string;
47
48
  }
48
49
  export interface ProductSizeChartResponse_NameEntry {
49
50
  key: string;
@@ -98,6 +98,7 @@ message ProductSizeChartResponse {
98
98
  string id = 1;
99
99
  map<string, string> name = 2;
100
100
  string content = 3;
101
+ string image_url = 4;
101
102
  }
102
103
 
103
104
  message GetProductSizeChartsResponse {
package/gen/product.ts CHANGED
@@ -59,6 +59,7 @@ export interface ProductSizeChartResponse {
59
59
  id: string;
60
60
  name: { [key: string]: string };
61
61
  content: string;
62
+ imageUrl: string;
62
63
  }
63
64
 
64
65
  export interface ProductSizeChartResponse_NameEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.91",
4
+ "version": "1.0.92",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -98,6 +98,7 @@ message ProductSizeChartResponse {
98
98
  string id = 1;
99
99
  map<string, string> name = 2;
100
100
  string content = 3;
101
+ string image_url = 4;
101
102
  }
102
103
 
103
104
  message GetProductSizeChartsResponse {