@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.
- package/dist/gen/ts/payment.d.ts +2 -2
- package/package.json +1 -1
- package/proto/payment.proto +2 -2
package/dist/gen/ts/payment.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export interface CreatePaymentRequest {
|
|
|
4
4
|
userId: string;
|
|
5
5
|
screeningId: string;
|
|
6
6
|
seats: SeatInput[];
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
paymentMethodId?: string | undefined;
|
|
8
|
+
savePaymentMethod: boolean;
|
|
9
9
|
}
|
|
10
10
|
export interface CreatePaymentResponse {
|
|
11
11
|
url: string;
|
package/package.json
CHANGED
package/proto/payment.proto
CHANGED
|
@@ -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
|
|
15
|
-
bool
|
|
14
|
+
optional string payment_method_id = 4;
|
|
15
|
+
bool save_payment_method = 5;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
message CreatePaymentResponse {
|