@mamindom/contracts 1.0.147 → 1.0.148

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.
@@ -304,6 +304,7 @@ export interface GetProductsRequest {
304
304
  brandIds: string[];
305
305
  productIds: string[];
306
306
  promotionFilter?: PromotionFilter | undefined;
307
+ useSearchEngine?: boolean | undefined;
307
308
  }
308
309
  export interface PromotionFilter {
309
310
  includeProductIds: string[];
@@ -308,6 +308,9 @@ message GetProductsRequest {
308
308
  repeated string brand_ids = 11;
309
309
  repeated string product_ids = 12;
310
310
  optional PromotionFilter promotion_filter = 13;
311
+
312
+
313
+ optional bool use_search_engine = 14;
311
314
  }
312
315
 
313
316
  message PromotionFilter {
package/gen/product.ts CHANGED
@@ -318,6 +318,7 @@ export interface GetProductsRequest {
318
318
  brandIds: string[];
319
319
  productIds: string[];
320
320
  promotionFilter?: PromotionFilter | undefined;
321
+ useSearchEngine?: boolean | undefined;
321
322
  }
322
323
 
323
324
  export interface PromotionFilter {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.147",
4
+ "version": "1.0.148",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -308,6 +308,9 @@ message GetProductsRequest {
308
308
  repeated string brand_ids = 11;
309
309
  repeated string product_ids = 12;
310
310
  optional PromotionFilter promotion_filter = 13;
311
+
312
+
313
+ optional bool use_search_engine = 14;
311
314
  }
312
315
 
313
316
  message PromotionFilter {