@platfformx/proto-contracts 1.4.1 → 1.4.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.
@@ -23,7 +23,7 @@ export interface CreatePaymentMethodRequest {
23
23
  userId: string;
24
24
  }
25
25
  export interface CreatePaymentMethodResponse {
26
- stripeId: string;
26
+ setupIntent: string;
27
27
  clientSecret: string;
28
28
  }
29
29
  export interface GetUserPaymentMethodsRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,7 +38,7 @@ message CreatePaymentMethodRequest {
38
38
  string user_id = 1;
39
39
  }
40
40
  message CreatePaymentMethodResponse {
41
- string stripe_id = 1;
41
+ string setupIntent = 1;
42
42
  string client_secret = 2;
43
43
  }
44
44