@platfformx/proto-contracts 1.4.2 → 1.4.3

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.
@@ -41,6 +41,7 @@ export interface PaymentInfo {
41
41
  }
42
42
  export interface DeletePaymentMethodRequest {
43
43
  paymentMethodId: string;
44
+ userId: string;
44
45
  }
45
46
  export interface DeletePaymentMethodResponse {
46
47
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -60,6 +60,7 @@ message PaymentInfo {
60
60
 
61
61
  message DeletePaymentMethodRequest {
62
62
  string payment_method_id = 1;
63
+ string user_id = 2;
63
64
  }
64
65
  message DeletePaymentMethodResponse {
65
66
  bool success = 1;