@usteam/contracts 1.4.4 → 1.4.6

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
@@ -29,9 +29,9 @@ export interface ProcessPaymentEventRequest {
29
29
  bookingId: string;
30
30
  userId: string;
31
31
  savePaymentMethod: boolean;
32
- providerPaymentId: string;
33
- cartFirst6: string;
34
- cartLast4: string;
32
+ providerMethodId: string;
33
+ cardFirst6: string;
34
+ cardLast4: string;
35
35
  }
36
36
 
37
37
  export interface ProcessPaymentEventResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usteam/contracts",
3
- "version": "1.4.4",
3
+ "version": "1.4.6",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
@@ -28,9 +28,9 @@ message ProcessPaymentEventRequest {
28
28
  string booking_id = 3;
29
29
  string user_id = 4;
30
30
  bool save_payment_method = 5;
31
- string provider_payment_id = 6;
32
- string cart_first6 = 7;
33
- string cart_last4 = 8;
31
+ string provider_method_id = 6;
32
+ string card_first6 = 7;
33
+ string card_last4 = 8;
34
34
  }
35
35
 
36
36
  message ProcessPaymentEventResponse {