@mamindom/contracts 1.0.173 → 1.0.174

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.
@@ -264,6 +264,7 @@ export interface UpdateStatusRequest {
264
264
  actorId: string;
265
265
  actorName: string;
266
266
  cancelledBy: string;
267
+ skipStockReserve: boolean;
267
268
  }
268
269
  export interface CancelOrderRequest {
269
270
  id: string;
@@ -353,6 +353,9 @@ message UpdateStatusRequest {
353
353
  string actor_name = 5;
354
354
 
355
355
  string cancelled_by = 6;
356
+
357
+
358
+ bool skip_stock_reserve = 7;
356
359
  }
357
360
 
358
361
  message CancelOrderRequest {
package/gen/order.ts CHANGED
@@ -306,6 +306,7 @@ export interface UpdateStatusRequest {
306
306
  actorId: string;
307
307
  actorName: string;
308
308
  cancelledBy: string;
309
+ skipStockReserve: boolean;
309
310
  }
310
311
 
311
312
  export interface CancelOrderRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.173",
4
+ "version": "1.0.174",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
package/proto/order.proto CHANGED
@@ -353,6 +353,9 @@ message UpdateStatusRequest {
353
353
  string actor_name = 5;
354
354
 
355
355
  string cancelled_by = 6;
356
+
357
+
358
+ bool skip_stock_reserve = 7;
356
359
  }
357
360
 
358
361
  message CancelOrderRequest {