@flowio/types 11.24.95 → 11.24.96
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/api-internal.d.ts +1140 -1099
- package/dist/api.d.ts +108 -7
- package/package.json +2 -2
- package/src/api-internal.ts +1468 -1267
- package/src/api.ts +176 -7
package/dist/api.d.ts
CHANGED
|
@@ -129,6 +129,8 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
129
129
|
declare namespace io.flow.stripe.v0.enums {
|
|
130
130
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
131
131
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
132
|
+
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
133
|
+
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
132
134
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
133
135
|
type CaptureMethod = 'automatic' | 'manual';
|
|
134
136
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
@@ -150,9 +152,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
150
152
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
151
153
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
152
154
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
153
|
-
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
155
|
+
type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
|
|
154
156
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
155
157
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
158
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
156
159
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
157
160
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
158
161
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
@@ -596,8 +599,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
596
599
|
readonly id: string;
|
|
597
600
|
readonly object: string;
|
|
598
601
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
602
|
+
readonly bancontact?: any;
|
|
599
603
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
600
604
|
readonly card_present?: any;
|
|
605
|
+
readonly ideal?: any;
|
|
601
606
|
readonly klarna?: any;
|
|
602
607
|
readonly created: number;
|
|
603
608
|
readonly customer?: string;
|
|
@@ -628,18 +633,43 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
628
633
|
readonly number: string;
|
|
629
634
|
readonly cvc?: string;
|
|
630
635
|
}
|
|
636
|
+
interface PaymentMethodDataBancontact {
|
|
637
|
+
readonly type: 'bancontact';
|
|
638
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
639
|
+
readonly metadata?: any;
|
|
640
|
+
}
|
|
631
641
|
interface PaymentMethodDataCard {
|
|
632
642
|
readonly type: 'card';
|
|
633
643
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
634
644
|
readonly metadata?: any;
|
|
635
645
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
636
646
|
}
|
|
647
|
+
interface PaymentMethodDataIdeal {
|
|
648
|
+
readonly type: 'ideal';
|
|
649
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
650
|
+
readonly metadata?: any;
|
|
651
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
652
|
+
}
|
|
637
653
|
interface PaymentMethodDataKlarna {
|
|
638
654
|
readonly type: 'klarna';
|
|
639
655
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
640
656
|
readonly metadata?: any;
|
|
641
657
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
642
658
|
}
|
|
659
|
+
interface PaymentMethodDetailsBancontact {
|
|
660
|
+
readonly type: 'bancontact';
|
|
661
|
+
readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
662
|
+
}
|
|
663
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
664
|
+
readonly bank_code?: string;
|
|
665
|
+
readonly bank_name?: string;
|
|
666
|
+
readonly bic?: string;
|
|
667
|
+
readonly generated_sepa_debit?: string;
|
|
668
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
669
|
+
readonly iban_last4?: string;
|
|
670
|
+
readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
671
|
+
readonly verified_name?: string;
|
|
672
|
+
}
|
|
643
673
|
interface PaymentMethodDetailsCard {
|
|
644
674
|
readonly type: 'card';
|
|
645
675
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -669,6 +699,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
669
699
|
readonly multicapture?: io.flow.stripe.v0.models.Multicapture;
|
|
670
700
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
671
701
|
}
|
|
702
|
+
interface PaymentMethodDetailsIdeal {
|
|
703
|
+
readonly type: 'ideal';
|
|
704
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
705
|
+
}
|
|
706
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
707
|
+
readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
|
|
708
|
+
readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
|
|
709
|
+
readonly generated_sepa_debit?: string;
|
|
710
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
711
|
+
readonly iban_last4?: string;
|
|
712
|
+
readonly verified_name?: string;
|
|
713
|
+
}
|
|
672
714
|
interface PaymentMethodDetailsKlarna {
|
|
673
715
|
readonly type: 'klarna';
|
|
674
716
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -677,24 +719,47 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
677
719
|
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
678
720
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
679
721
|
}
|
|
722
|
+
interface PaymentMethodFormBancontact {
|
|
723
|
+
readonly type: 'bancontact';
|
|
724
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
725
|
+
readonly metadata?: any;
|
|
726
|
+
readonly bancontact: any;
|
|
727
|
+
}
|
|
680
728
|
interface PaymentMethodFormCard {
|
|
681
729
|
readonly type: 'card';
|
|
682
730
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
683
731
|
readonly metadata?: any;
|
|
684
732
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
685
733
|
}
|
|
734
|
+
interface PaymentMethodFormIdeal {
|
|
735
|
+
readonly type: 'ideal';
|
|
736
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
737
|
+
readonly metadata?: any;
|
|
738
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
739
|
+
}
|
|
686
740
|
interface PaymentMethodFormKlarna {
|
|
687
741
|
readonly type: 'klarna';
|
|
688
742
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
689
743
|
readonly metadata?: any;
|
|
690
744
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
691
745
|
}
|
|
746
|
+
interface PaymentMethodIdealForm {
|
|
747
|
+
readonly bank?: string;
|
|
748
|
+
}
|
|
692
749
|
interface PaymentMethodKlarnaForm {
|
|
693
750
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
694
751
|
}
|
|
695
752
|
interface PaymentMethodOptions {
|
|
696
753
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
754
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
697
755
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
756
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
757
|
+
}
|
|
758
|
+
interface PaymentMethodOptionsBancontact {
|
|
759
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
760
|
+
}
|
|
761
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
762
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
698
763
|
}
|
|
699
764
|
interface PaymentMethodOptionsCard {
|
|
700
765
|
readonly network?: string;
|
|
@@ -711,7 +776,15 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
711
776
|
}
|
|
712
777
|
interface PaymentMethodOptionsForm {
|
|
713
778
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
779
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
714
780
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
781
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
782
|
+
}
|
|
783
|
+
interface PaymentMethodOptionsIdeal {
|
|
784
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
785
|
+
}
|
|
786
|
+
interface PaymentMethodOptionsIdealForm {
|
|
787
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
715
788
|
}
|
|
716
789
|
interface PaymentMethodOptionsKlarna {
|
|
717
790
|
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
@@ -989,9 +1062,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
989
1062
|
}
|
|
990
1063
|
declare namespace io.flow.stripe.v0.unions {
|
|
991
1064
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
992
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
993
|
-
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
994
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
1065
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
1066
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
1067
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
995
1068
|
}
|
|
996
1069
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
997
1070
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
@@ -1144,6 +1217,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1144
1217
|
readonly published_at?: string;
|
|
1145
1218
|
readonly created_at: string;
|
|
1146
1219
|
readonly updated_at: string;
|
|
1220
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
1147
1221
|
}
|
|
1148
1222
|
interface ProductDelete {
|
|
1149
1223
|
readonly id: number;
|
|
@@ -2032,7 +2106,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2032
2106
|
type PaymentMethodRuleContentKey = 'description';
|
|
2033
2107
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2034
2108
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
2035
|
-
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';
|
|
2109
|
+
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' | 'order_missing';
|
|
2036
2110
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2037
2111
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2038
2112
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -7923,6 +7997,14 @@ declare namespace io.flow.v0.models {
|
|
|
7923
7997
|
readonly discriminator: 'payment_processor_reference';
|
|
7924
7998
|
readonly processor: string;
|
|
7925
7999
|
}
|
|
8000
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
8001
|
+
readonly discriminator: 'apm';
|
|
8002
|
+
readonly transaction_identifier?: string;
|
|
8003
|
+
readonly capture_identifier?: string;
|
|
8004
|
+
readonly method_type?: string;
|
|
8005
|
+
readonly result_status?: string;
|
|
8006
|
+
readonly reason_code?: string;
|
|
8007
|
+
}
|
|
7926
8008
|
interface PaymentProcessorTransactionDetailsCard {
|
|
7927
8009
|
readonly discriminator: 'card';
|
|
7928
8010
|
readonly transaction_identifier?: string;
|
|
@@ -7999,6 +8081,10 @@ declare namespace io.flow.v0.models {
|
|
|
7999
8081
|
readonly payment_request: io.flow.v0.models.PaymentRequestForm;
|
|
8000
8082
|
readonly billing: io.flow.v0.models.PaymentRequestBilling;
|
|
8001
8083
|
}
|
|
8084
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
8085
|
+
readonly type: 'order_missing';
|
|
8086
|
+
readonly description?: string;
|
|
8087
|
+
}
|
|
8002
8088
|
interface PaymentRequestDeleted {
|
|
8003
8089
|
readonly discriminator: 'payment_request_deleted';
|
|
8004
8090
|
readonly event_id: string;
|
|
@@ -8120,6 +8206,7 @@ declare namespace io.flow.v0.models {
|
|
|
8120
8206
|
interface PaypalAuthorizationDetails {
|
|
8121
8207
|
readonly discriminator: 'paypal_authorization_details';
|
|
8122
8208
|
readonly payment_id: string;
|
|
8209
|
+
readonly internal_payment_id?: string;
|
|
8123
8210
|
readonly payment_method?: string;
|
|
8124
8211
|
readonly payment_state?: string;
|
|
8125
8212
|
readonly payer_id?: string;
|
|
@@ -8987,6 +9074,10 @@ declare namespace io.flow.v0.models {
|
|
|
8987
9074
|
interface RegionSettingForm {
|
|
8988
9075
|
readonly status: io.flow.v0.enums.AvailabilityStatus;
|
|
8989
9076
|
}
|
|
9077
|
+
interface RejectionPutForm {
|
|
9078
|
+
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
9079
|
+
readonly description: string;
|
|
9080
|
+
}
|
|
8990
9081
|
interface RemoteAreaByWeightServiceFee {
|
|
8991
9082
|
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
8992
9083
|
readonly amount: io.flow.v0.models.Money;
|
|
@@ -10648,7 +10739,7 @@ declare namespace io.flow.v0.models {
|
|
|
10648
10739
|
readonly discriminator: 'channel';
|
|
10649
10740
|
readonly method: string;
|
|
10650
10741
|
readonly card?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
10651
|
-
readonly organization_transaction: io.flow.v0.models.
|
|
10742
|
+
readonly organization_transaction: io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
10652
10743
|
}
|
|
10653
10744
|
interface TransactionMetadataChannelCardMetadata {
|
|
10654
10745
|
readonly type: io.flow.v0.enums.CardType;
|
|
@@ -10658,6 +10749,10 @@ declare namespace io.flow.v0.models {
|
|
|
10658
10749
|
readonly iin: string;
|
|
10659
10750
|
readonly country: string;
|
|
10660
10751
|
}
|
|
10752
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
10753
|
+
readonly id: string;
|
|
10754
|
+
readonly metadata: io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
10755
|
+
}
|
|
10661
10756
|
interface TransactionMetadataFailedPayout {
|
|
10662
10757
|
readonly discriminator: 'failed_payout';
|
|
10663
10758
|
readonly failed_payout: io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
@@ -11058,7 +11153,8 @@ declare namespace io.flow.v0.unions {
|
|
|
11058
11153
|
value: io.flow.v0.enums.ExperiencePaymentMethodTag;
|
|
11059
11154
|
};
|
|
11060
11155
|
type PaymentOrderReference = io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference;
|
|
11061
|
-
type PaymentProcessorTransactionDetails = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
11156
|
+
type PaymentProcessorTransactionDetails = io.flow.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
11157
|
+
type PaymentRequestCancellationReason = io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
11062
11158
|
type PaymentSource = io.flow.v0.models.CardPaymentSource;
|
|
11063
11159
|
type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
|
|
11064
11160
|
type PayoutStatus = io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed;
|
|
@@ -12252,6 +12348,7 @@ export declare type PaymentProcessorAccountReference = io.flow.v0.models.Payment
|
|
|
12252
12348
|
export declare type PaymentProcessorIdentifier = io.flow.v0.models.PaymentProcessorIdentifier;
|
|
12253
12349
|
export declare type PaymentProcessorReference = io.flow.v0.models.PaymentProcessorReference;
|
|
12254
12350
|
export declare type PaymentProcessorTransactionDetails = io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
12351
|
+
export declare type PaymentProcessorTransactionDetailsApm = io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
12255
12352
|
export declare type PaymentProcessorTransactionDetailsCard = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
12256
12353
|
export declare type PaymentReference = io.flow.v0.models.PaymentReference;
|
|
12257
12354
|
export declare type PaymentRefund = io.flow.v0.models.PaymentRefund;
|
|
@@ -12263,6 +12360,8 @@ export declare type PaymentRequestBillingCurrencyRate = io.flow.v0.models.Paymen
|
|
|
12263
12360
|
export declare type PaymentRequestBillingFees = io.flow.v0.models.PaymentRequestBillingFees;
|
|
12264
12361
|
export declare type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
|
|
12265
12362
|
export declare type PaymentRequestBundleForm = io.flow.v0.models.PaymentRequestBundleForm;
|
|
12363
|
+
export declare type PaymentRequestCancellationReason = io.flow.v0.unions.PaymentRequestCancellationReason;
|
|
12364
|
+
export declare type PaymentRequestCancellationReasonOrderMissing = io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
12266
12365
|
export declare type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
|
|
12267
12366
|
export declare type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
12268
12367
|
export declare type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
@@ -12448,6 +12547,7 @@ export declare type RegionReference = io.flow.v0.models.RegionReference;
|
|
|
12448
12547
|
export declare type RegionSetting = io.flow.v0.models.RegionSetting;
|
|
12449
12548
|
export declare type RegionSettingForm = io.flow.v0.models.RegionSettingForm;
|
|
12450
12549
|
export declare type RegionType = io.flow.v0.enums.RegionType;
|
|
12550
|
+
export declare type RejectionPutForm = io.flow.v0.models.RejectionPutForm;
|
|
12451
12551
|
export declare type RemoteAreaByWeightServiceFee = io.flow.v0.models.RemoteAreaByWeightServiceFee;
|
|
12452
12552
|
export declare type RemoteAreaRatecardFee = io.flow.v0.models.RemoteAreaRatecardFee;
|
|
12453
12553
|
export declare type RemoteAreaServiceFee = io.flow.v0.models.RemoteAreaServiceFee;
|
|
@@ -12775,6 +12875,7 @@ export declare type TransactionMetadataCarrierCharge = io.flow.v0.models.Transac
|
|
|
12775
12875
|
export declare type TransactionMetadataChannel = io.flow.v0.models.TransactionMetadataChannel;
|
|
12776
12876
|
export declare type TransactionMetadataChannelCardMetadata = io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12777
12877
|
export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
|
|
12878
|
+
export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12778
12879
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
12779
12880
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
12780
12881
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.96",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "25d6ba675365a3fb318abcc4bc935dd549089238"
|
|
29
29
|
}
|