@mamindom/contracts 1.0.78 → 1.0.79

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.
@@ -54,12 +54,14 @@ export interface BulkAssignSizeChartRequest {
54
54
  productIds: string[];
55
55
  categoryIds: string[];
56
56
  brandIds: string[];
57
+ variantIds: string[];
57
58
  }
58
59
  export interface BulkRemoveSizeChartRequest {
59
60
  sizeChartId: string;
60
61
  productIds: string[];
61
62
  categoryIds: string[];
62
63
  brandIds: string[];
64
+ variantIds: string[];
63
65
  }
64
66
  export interface GetSizeChartsRequest {
65
67
  pagination: PaginationRequest | undefined;
@@ -58,6 +58,7 @@ message BulkAssignSizeChartRequest {
58
58
  repeated string product_ids = 2;
59
59
  repeated string category_ids = 3;
60
60
  repeated string brand_ids = 4;
61
+ repeated string variant_ids = 5;
61
62
  }
62
63
 
63
64
  message BulkRemoveSizeChartRequest {
@@ -65,6 +66,7 @@ message BulkRemoveSizeChartRequest {
65
66
  repeated string product_ids = 2;
66
67
  repeated string category_ids = 3;
67
68
  repeated string brand_ids = 4;
69
+ repeated string variant_ids = 5;
68
70
  }
69
71
 
70
72
  message GetSizeChartsRequest {
package/gen/size_chart.ts CHANGED
@@ -67,6 +67,7 @@ export interface BulkAssignSizeChartRequest {
67
67
  productIds: string[];
68
68
  categoryIds: string[];
69
69
  brandIds: string[];
70
+ variantIds: string[];
70
71
  }
71
72
 
72
73
  export interface BulkRemoveSizeChartRequest {
@@ -74,6 +75,7 @@ export interface BulkRemoveSizeChartRequest {
74
75
  productIds: string[];
75
76
  categoryIds: string[];
76
77
  brandIds: string[];
78
+ variantIds: string[];
77
79
  }
78
80
 
79
81
  export interface GetSizeChartsRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.78",
4
+ "version": "1.0.79",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -58,6 +58,7 @@ message BulkAssignSizeChartRequest {
58
58
  repeated string product_ids = 2;
59
59
  repeated string category_ids = 3;
60
60
  repeated string brand_ids = 4;
61
+ repeated string variant_ids = 5;
61
62
  }
62
63
 
63
64
  message BulkRemoveSizeChartRequest {
@@ -65,6 +66,7 @@ message BulkRemoveSizeChartRequest {
65
66
  repeated string product_ids = 2;
66
67
  repeated string category_ids = 3;
67
68
  repeated string brand_ids = 4;
69
+ repeated string variant_ids = 5;
68
70
  }
69
71
 
70
72
  message GetSizeChartsRequest {