@flowio/api-prop-types 10.16.54 → 10.16.55
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/lib/api.d.ts +4 -1
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +4 -1
- package/src/api.js +9 -5
package/lib/api.d.ts
CHANGED
|
@@ -921,9 +921,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
921
921
|
}
|
|
922
922
|
|
|
923
923
|
interface ThreeDSecureCharge {
|
|
924
|
+
readonly 'authenticated'?: boolean;
|
|
924
925
|
readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
925
926
|
readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
926
927
|
readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
928
|
+
readonly 'succeeded'?: boolean;
|
|
927
929
|
readonly 'version'?: string;
|
|
928
930
|
}
|
|
929
931
|
|
|
@@ -2226,7 +2228,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2226
2228
|
type PaymentMethodRuleContentKey = 'description';
|
|
2227
2229
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2228
2230
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
2229
|
-
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
|
|
2231
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
|
|
2230
2232
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2231
2233
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2232
2234
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -6605,6 +6607,7 @@ declare namespace io.flow.v0.models {
|
|
|
6605
6607
|
readonly 'discriminator': 'know_your_business_usa';
|
|
6606
6608
|
readonly 'id': string;
|
|
6607
6609
|
readonly 'organization_id': string;
|
|
6610
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
6608
6611
|
readonly 'primary_entity': io.flow.v0.unions.Entity;
|
|
6609
6612
|
readonly 'parent_company'?: io.flow.v0.models.Company;
|
|
6610
6613
|
readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
|