@platfformx/proto-contracts 1.3.12 → 1.3.13

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.
@@ -2,6 +2,7 @@ import { Observable } from "rxjs";
2
2
  export declare const protobufPackage = "search.v1";
3
3
  export interface SearchSimilarProductsRequest {
4
4
  productId: string;
5
+ limit?: number | undefined;
5
6
  }
6
7
  export interface SearchSimilarProductsResponse {
7
8
  hits: Product[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,6 +18,7 @@ service SearchService {
18
18
 
19
19
  message SearchSimilarProductsRequest {
20
20
  string product_id = 1;
21
+ optional int32 limit = 2;
21
22
  }
22
23
  message SearchSimilarProductsResponse {
23
24
  repeated Product hits = 1;