@microservsforsell/contracts 1.4.1 → 1.4.5

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.
@@ -4,8 +4,8 @@ export interface CreatePaymentRequest {
4
4
  userId: string;
5
5
  screeningId: string;
6
6
  seats: SeatInput[];
7
- paymentMethod?: string | undefined;
8
- savePaymentId: boolean;
7
+ paymentMethodId?: string | undefined;
8
+ savePaymentMethod: boolean;
9
9
  }
10
10
  export interface CreatePaymentResponse {
11
11
  url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microservsforsell/contracts",
3
- "version": "1.4.1",
3
+ "version": "1.4.5",
4
4
  "description": "Protobuf definitions and generated Typecript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,8 +11,8 @@ message CreatePaymentRequest {
11
11
  string user_id = 1;
12
12
  string screening_id = 2;
13
13
  repeated SeatInput seats = 3;
14
- optional string payment_method = 4;
15
- bool save_payment_id = 5;
14
+ optional string payment_method_id = 4;
15
+ bool save_payment_method = 5;
16
16
  }
17
17
 
18
18
  message CreatePaymentResponse {