@platfformx/proto-contracts 1.4.0 → 1.4.1

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.
@@ -13,7 +13,7 @@ export interface CreatePaymentResponse {
13
13
  clientSecret: string;
14
14
  }
15
15
  export interface ConfirmPaymentRequest {
16
- paymentId: string;
16
+ providerId: string;
17
17
  status: string;
18
18
  }
19
19
  export interface ConfirmPaymentResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,7 +27,7 @@ message CreatePaymentResponse {
27
27
  }
28
28
 
29
29
  message ConfirmPaymentRequest {
30
- string payment_id = 1;
30
+ string providerId = 1;
31
31
  string status = 2;
32
32
  }
33
33
  message ConfirmPaymentResponse {