@teacinema/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.
package/gen/ts/payment.ts CHANGED
@@ -28,7 +28,7 @@ export interface ProcessPaymentEventRequest {
28
28
  bookingId: string;
29
29
  userId: string;
30
30
  savePaymentMethod: boolean;
31
- providerPaymentId: string;
31
+ providerMethodId: string;
32
32
  cardFirst6: string;
33
33
  cardLast4: string;
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teacinema/contracts",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -25,7 +25,7 @@ message ProcessPaymentEventRequest {
25
25
  string booking_id = 3;
26
26
  string user_id = 4;
27
27
  bool save_payment_method = 5;
28
- string provider_payment_id = 6;
28
+ string provider_method_id = 6;
29
29
  string card_first6 = 7;
30
30
  string card_last4 = 8;
31
31
  }