@mamindom/contracts 1.0.71 → 1.0.72

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.
@@ -86,6 +86,7 @@ export interface ProductListItemResponse {
86
86
  categorySortOrder: number;
87
87
  barcode?: string | undefined;
88
88
  videoUrl?: string | undefined;
89
+ viewed: number;
89
90
  }
90
91
  export interface ProductListItemResponse_NameEntry {
91
92
  key: string;
@@ -5,6 +5,7 @@ package catalog.v1;
5
5
  import "common.proto";
6
6
 
7
7
 
8
+
8
9
  service ProductService {
9
10
 
10
11
  rpc GetProducts (GetProductsRequest) returns (GetProductsResponse);
@@ -129,6 +130,7 @@ message ProductListItemResponse {
129
130
  int32 category_sort_order = 13;
130
131
  optional string barcode = 14;
131
132
  optional string video_url = 15;
133
+ int32 viewed = 16;
132
134
  }
133
135
 
134
136
 
package/gen/product.ts CHANGED
@@ -106,6 +106,7 @@ export interface ProductListItemResponse {
106
106
  categorySortOrder: number;
107
107
  barcode?: string | undefined;
108
108
  videoUrl?: string | undefined;
109
+ viewed: number;
109
110
  }
110
111
 
111
112
  export interface ProductListItemResponse_NameEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.71",
4
+ "version": "1.0.72",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -5,6 +5,7 @@ package catalog.v1;
5
5
  import "common.proto";
6
6
 
7
7
 
8
+
8
9
  service ProductService {
9
10
 
10
11
  rpc GetProducts (GetProductsRequest) returns (GetProductsResponse);
@@ -129,6 +130,7 @@ message ProductListItemResponse {
129
130
  int32 category_sort_order = 13;
130
131
  optional string barcode = 14;
131
132
  optional string video_url = 15;
133
+ int32 viewed = 16;
132
134
  }
133
135
 
134
136