@platfformx/proto-contracts 1.5.1 → 1.5.2

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.
@@ -7,6 +7,7 @@ export interface CreateRefundRequest {
7
7
  }
8
8
  export interface CreateRefundResponse {
9
9
  ok: boolean;
10
+ providerId: string;
10
11
  }
11
12
  export interface ConfirmRefundRequest {
12
13
  providerId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,9 +15,10 @@ message CreateRefundRequest {
15
15
 
16
16
  message CreateRefundResponse {
17
17
  bool ok = 1;
18
+ string provider_id = 2;
18
19
  }
19
20
  message ConfirmRefundRequest {
20
- string providerId = 1;
21
+ string provider_id = 1;
21
22
  string status = 2;
22
23
  }
23
24