@platfformx/proto-contracts 1.6.3 → 1.6.4

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.
@@ -61,6 +61,7 @@ export interface ValidatePromocodeRequest {
61
61
  code: string;
62
62
  totalOrderSum: string;
63
63
  targetId?: string | undefined;
64
+ targetSum?: string | undefined;
64
65
  }
65
66
  export interface ValidatePromocodeResponse {
66
67
  isValid: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -56,6 +56,7 @@ message ValidatePromocodeRequest {
56
56
  string code = 1;
57
57
  string total_order_sum = 2;
58
58
  optional string target_id = 3;
59
+ optional string target_sum = 4;
59
60
  }
60
61
  message ValidatePromocodeResponse {
61
62
  bool is_valid = 1;