feat(stripe): eps, giropay and ideal using stripe (#529)

Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in>
This commit is contained in:
Narayan Bhat
2023-02-26 21:59:37 +05:30
committed by GitHub
parent 301736fc25
commit 028e140144
92 changed files with 1532 additions and 1050 deletions

View File

@ -218,7 +218,7 @@ diesel::table! {
surcharge_amount -> Nullable<Int8>,
tax_amount -> Nullable<Int8>,
payment_method_id -> Nullable<Varchar>,
payment_method -> Nullable<PaymentMethodType>,
payment_method -> Nullable<Varchar>,
connector_transaction_id -> Nullable<Varchar>,
capture_method -> Nullable<CaptureMethod>,
capture_on -> Nullable<Timestamp>,
@ -234,8 +234,9 @@ diesel::table! {
error_code -> Nullable<Varchar>,
payment_token -> Nullable<Varchar>,
connector_metadata -> Nullable<Jsonb>,
payment_issuer -> Nullable<Varchar>,
payment_experience -> Nullable<Varchar>,
payment_method_type -> Nullable<Varchar>,
payment_method_data -> Nullable<Jsonb>,
}
}
@ -290,8 +291,8 @@ diesel::table! {
direct_debit_token -> Nullable<Varchar>,
created_at -> Timestamp,
last_modified -> Timestamp,
payment_method -> PaymentMethodType,
payment_method_type -> Nullable<PaymentMethodSubType>,
payment_method -> Varchar,
payment_method_type -> Nullable<Varchar>,
payment_method_issuer -> Nullable<Varchar>,
payment_method_issuer_code -> Nullable<PaymentMethodIssuerCode>,
metadata -> Nullable<Json>,