@mamindom/contracts 1.0.85 → 1.0.86

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.
@@ -10,6 +10,7 @@ export interface GetShopFiltersResponse {
10
10
  attributes: ShopFilterAttribute[];
11
11
  priceMin: number;
12
12
  priceMax: number;
13
+ subcategoryIds: string[];
13
14
  }
14
15
  export interface ShopFilterOption {
15
16
  value: string;
@@ -23,6 +23,7 @@ message GetShopFiltersResponse {
23
23
  repeated ShopFilterAttribute attributes = 4;
24
24
  double price_min = 5;
25
25
  double price_max = 6;
26
+ repeated string subcategory_ids = 7;
26
27
  }
27
28
 
28
29
  message ShopFilterOption {
@@ -21,6 +21,7 @@ export interface GetShopFiltersResponse {
21
21
  attributes: ShopFilterAttribute[];
22
22
  priceMin: number;
23
23
  priceMax: number;
24
+ subcategoryIds: string[];
24
25
  }
25
26
 
26
27
  export interface ShopFilterOption {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.85",
4
+ "version": "1.0.86",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -23,6 +23,7 @@ message GetShopFiltersResponse {
23
23
  repeated ShopFilterAttribute attributes = 4;
24
24
  double price_min = 5;
25
25
  double price_max = 6;
26
+ repeated string subcategory_ids = 7;
26
27
  }
27
28
 
28
29
  message ShopFilterOption {