@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 +3 -3
- package/package.json +1 -1
- package/proto/payment.proto +3 -3
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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
providerMethodId: string;
|
|
33
|
+
cardFirst6: string;
|
|
34
|
+
cardLast4: string;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export interface ProcessPaymentEventResponse {
|
package/package.json
CHANGED
package/proto/payment.proto
CHANGED
|
@@ -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
|
|
32
|
-
string
|
|
33
|
-
string
|
|
31
|
+
string provider_method_id = 6;
|
|
32
|
+
string card_first6 = 7;
|
|
33
|
+
string card_last4 = 8;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
message ProcessPaymentEventResponse {
|