@flowio/api-prop-types 10.16.77 → 10.16.78

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-prop-types",
3
- "version": "10.16.77",
3
+ "version": "10.16.78",
4
4
  "description": "PropType validators that work with Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -29,5 +29,5 @@
29
29
  "peerDependencies": {
30
30
  "prop-types": "^15.7.0"
31
31
  },
32
- "gitHead": "15b5319239e2dc57a7ee0b2171f4f54fc4172c16"
32
+ "gitHead": "25d6ba675365a3fb318abcc4bc935dd549089238"
33
33
  }
package/src/api.d.ts CHANGED
@@ -153,6 +153,8 @@ declare namespace io.flow.google.pay.v0.unions {
153
153
  declare namespace io.flow.stripe.v0.enums {
154
154
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
155
155
  type ApplePayType = 'apple_pay' | 'apple_pay_later';
156
+ type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
157
+ type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
156
158
  type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
157
159
  type CaptureMethod = 'automatic' | 'manual';
158
160
  type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
@@ -174,9 +176,10 @@ declare namespace io.flow.stripe.v0.enums {
174
176
  type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
175
177
  type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
176
178
  type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
177
- type PaymentMethodType = 'card' | 'card_present' | 'klarna';
179
+ type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
178
180
  type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
179
181
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
182
+ type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
180
183
  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';
181
184
  type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
182
185
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
@@ -667,8 +670,10 @@ declare namespace io.flow.stripe.v0.models {
667
670
  readonly 'id': string;
668
671
  readonly 'object': string;
669
672
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
673
+ readonly 'bancontact'?: any/*object*/;
670
674
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
671
675
  readonly 'card_present'?: any/*object*/;
676
+ readonly 'ideal'?: any/*object*/;
672
677
  readonly 'klarna'?: any/*object*/;
673
678
  readonly 'created': number;
674
679
  readonly 'customer'?: string;
@@ -703,6 +708,12 @@ declare namespace io.flow.stripe.v0.models {
703
708
  readonly 'cvc'?: string;
704
709
  }
705
710
 
711
+ interface PaymentMethodDataBancontact {
712
+ readonly 'type': 'bancontact';
713
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
714
+ readonly 'metadata'?: any/*object*/;
715
+ }
716
+
706
717
  interface PaymentMethodDataCard {
707
718
  readonly 'type': 'card';
708
719
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -710,6 +721,13 @@ declare namespace io.flow.stripe.v0.models {
710
721
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
711
722
  }
712
723
 
724
+ interface PaymentMethodDataIdeal {
725
+ readonly 'type': 'ideal';
726
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
727
+ readonly 'metadata'?: any/*object*/;
728
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
729
+ }
730
+
713
731
  interface PaymentMethodDataKlarna {
714
732
  readonly 'type': 'klarna';
715
733
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -717,6 +735,22 @@ declare namespace io.flow.stripe.v0.models {
717
735
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
718
736
  }
719
737
 
738
+ interface PaymentMethodDetailsBancontact {
739
+ readonly 'type': 'bancontact';
740
+ readonly 'bancontact': io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
741
+ }
742
+
743
+ interface PaymentMethodDetailsBancontactInformation {
744
+ readonly 'bank_code'?: string;
745
+ readonly 'bank_name'?: string;
746
+ readonly 'bic'?: string;
747
+ readonly 'generated_sepa_debit'?: string;
748
+ readonly 'generated_sepa_debit_mandate'?: string;
749
+ readonly 'iban_last4'?: string;
750
+ readonly 'preferred_language'?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
751
+ readonly 'verified_name'?: string;
752
+ }
753
+
720
754
  interface PaymentMethodDetailsCard {
721
755
  readonly 'type': 'card';
722
756
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
@@ -748,6 +782,20 @@ declare namespace io.flow.stripe.v0.models {
748
782
  readonly 'overcapture'?: io.flow.stripe.v0.models.Overcapture;
749
783
  }
750
784
 
785
+ interface PaymentMethodDetailsIdeal {
786
+ readonly 'type': 'ideal';
787
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
788
+ }
789
+
790
+ interface PaymentMethodDetailsIdealInformation {
791
+ readonly 'bank'?: io.flow.stripe.v0.enums.BankIdeal;
792
+ readonly 'bic'?: io.flow.stripe.v0.enums.BicIdeal;
793
+ readonly 'generated_sepa_debit'?: string;
794
+ readonly 'generated_sepa_debit_mandate'?: string;
795
+ readonly 'iban_last4'?: string;
796
+ readonly 'verified_name'?: string;
797
+ }
798
+
751
799
  interface PaymentMethodDetailsKlarna {
752
800
  readonly 'type': 'klarna';
753
801
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
@@ -758,6 +806,13 @@ declare namespace io.flow.stripe.v0.models {
758
806
  readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
759
807
  }
760
808
 
809
+ interface PaymentMethodFormBancontact {
810
+ readonly 'type': 'bancontact';
811
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
812
+ readonly 'metadata'?: any/*object*/;
813
+ readonly 'bancontact': any/*object*/;
814
+ }
815
+
761
816
  interface PaymentMethodFormCard {
762
817
  readonly 'type': 'card';
763
818
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -765,6 +820,13 @@ declare namespace io.flow.stripe.v0.models {
765
820
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
766
821
  }
767
822
 
823
+ interface PaymentMethodFormIdeal {
824
+ readonly 'type': 'ideal';
825
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
826
+ readonly 'metadata'?: any/*object*/;
827
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
828
+ }
829
+
768
830
  interface PaymentMethodFormKlarna {
769
831
  readonly 'type': 'klarna';
770
832
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -772,13 +834,27 @@ declare namespace io.flow.stripe.v0.models {
772
834
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
773
835
  }
774
836
 
837
+ interface PaymentMethodIdealForm {
838
+ readonly 'bank'?: string;
839
+ }
840
+
775
841
  interface PaymentMethodKlarnaForm {
776
842
  readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
777
843
  }
778
844
 
779
845
  interface PaymentMethodOptions {
780
846
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
847
+ readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
781
848
  readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
849
+ readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
850
+ }
851
+
852
+ interface PaymentMethodOptionsBancontact {
853
+ readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
854
+ }
855
+
856
+ interface PaymentMethodOptionsBancontactForm {
857
+ readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
782
858
  }
783
859
 
784
860
  interface PaymentMethodOptionsCard {
@@ -798,7 +874,17 @@ declare namespace io.flow.stripe.v0.models {
798
874
 
799
875
  interface PaymentMethodOptionsForm {
800
876
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
877
+ readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
801
878
  readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
879
+ readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
880
+ }
881
+
882
+ interface PaymentMethodOptionsIdeal {
883
+ readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
884
+ }
885
+
886
+ interface PaymentMethodOptionsIdealForm {
887
+ readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
802
888
  }
803
889
 
804
890
  interface PaymentMethodOptionsKlarna {
@@ -1110,9 +1196,9 @@ declare namespace io.flow.stripe.v0.models {
1110
1196
 
1111
1197
  declare namespace io.flow.stripe.v0.unions {
1112
1198
  type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
1113
- type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
1114
- type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
1115
- type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
1199
+ 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);
1200
+ 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);
1201
+ 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);
1116
1202
  }
1117
1203
 
1118
1204
  declare namespace io.flow.shopify.external.v0.enums {
@@ -1280,6 +1366,7 @@ declare namespace io.flow.shopify.external.v0.models {
1280
1366
  readonly 'published_at'?: string;
1281
1367
  readonly 'created_at': string;
1282
1368
  readonly 'updated_at': string;
1369
+ readonly 'has_variants_that_requires_components'?: boolean;
1283
1370
  }
1284
1371
 
1285
1372
  interface ProductDelete {
@@ -2270,7 +2357,7 @@ declare namespace io.flow.v0.enums {
2270
2357
  type PaymentMethodRuleContentKey = 'description';
2271
2358
  type PaymentMethodType = 'card' | 'online' | 'offline';
2272
2359
  type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
2273
- 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';
2360
+ 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';
2274
2361
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
2275
2362
  type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
2276
2363
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
@@ -9111,6 +9198,15 @@ declare namespace io.flow.v0.models {
9111
9198
  readonly 'processor': string;
9112
9199
  }
9113
9200
 
9201
+ interface PaymentProcessorTransactionDetailsApm {
9202
+ readonly 'discriminator': 'apm';
9203
+ readonly 'transaction_identifier'?: string;
9204
+ readonly 'capture_identifier'?: string;
9205
+ readonly 'method_type'?: string;
9206
+ readonly 'result_status'?: string;
9207
+ readonly 'reason_code'?: string;
9208
+ }
9209
+
9114
9210
  interface PaymentProcessorTransactionDetailsCard {
9115
9211
  readonly 'discriminator': 'card';
9116
9212
  readonly 'transaction_identifier'?: string;
@@ -9198,6 +9294,11 @@ declare namespace io.flow.v0.models {
9198
9294
  readonly 'billing': io.flow.v0.models.PaymentRequestBilling;
9199
9295
  }
9200
9296
 
9297
+ interface PaymentRequestCancellationReasonOrderMissing {
9298
+ readonly 'type': 'order_missing';
9299
+ readonly 'description'?: string;
9300
+ }
9301
+
9201
9302
  interface PaymentRequestDeleted {
9202
9303
  readonly 'discriminator': 'payment_request_deleted';
9203
9304
  readonly 'event_id': string;
@@ -9338,6 +9439,7 @@ declare namespace io.flow.v0.models {
9338
9439
  interface PaypalAuthorizationDetails {
9339
9440
  readonly 'discriminator': 'paypal_authorization_details';
9340
9441
  readonly 'payment_id': string;
9442
+ readonly 'internal_payment_id'?: string;
9341
9443
  readonly 'payment_method'?: string;
9342
9444
  readonly 'payment_state'?: string;
9343
9445
  readonly 'payer_id'?: string;
@@ -10334,6 +10436,11 @@ declare namespace io.flow.v0.models {
10334
10436
  readonly 'status': io.flow.v0.enums.AvailabilityStatus;
10335
10437
  }
10336
10438
 
10439
+ interface RejectionPutForm {
10440
+ readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
10441
+ readonly 'description': string;
10442
+ }
10443
+
10337
10444
  interface RemoteAreaByWeightServiceFee {
10338
10445
  readonly 'discriminator': 'remote_area_by_weight_service_fee';
10339
10446
  readonly 'amount': io.flow.v0.models.Money;
@@ -12253,7 +12360,7 @@ declare namespace io.flow.v0.models {
12253
12360
  readonly 'discriminator': 'channel';
12254
12361
  readonly 'method': string;
12255
12362
  readonly 'card'?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
12256
- readonly 'organization_transaction': io.flow.v0.models.TransactionReference;
12363
+ readonly 'organization_transaction': io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
12257
12364
  }
12258
12365
 
12259
12366
  interface TransactionMetadataChannelCardMetadata {
@@ -12266,6 +12373,11 @@ declare namespace io.flow.v0.models {
12266
12373
  readonly 'country': string;
12267
12374
  }
12268
12375
 
12376
+ interface TransactionMetadataChannelOrganizationTransaction {
12377
+ readonly 'id': string;
12378
+ readonly 'metadata': io.flow.v0.models.TransactionMetadataPaymentTransaction;
12379
+ }
12380
+
12269
12381
  interface TransactionMetadataFailedPayout {
12270
12382
  readonly 'discriminator': 'failed_payout';
12271
12383
  readonly 'failed_payout': io.flow.v0.models.TransactionMetadataFailedPayoutReference;
@@ -12724,7 +12836,8 @@ declare namespace io.flow.v0.unions {
12724
12836
  });
12725
12837
 
12726
12838
  type PaymentOrderReference = (io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference);
12727
- type PaymentProcessorTransactionDetails = (io.flow.v0.models.PaymentProcessorTransactionDetailsCard);
12839
+ type PaymentProcessorTransactionDetails = (io.flow.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.v0.models.PaymentProcessorTransactionDetailsApm);
12840
+ type PaymentRequestCancellationReason = (io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing);
12728
12841
  type PaymentSource = (io.flow.v0.models.CardPaymentSource);
12729
12842
  type PaymentSourceForm = (io.flow.v0.models.CardPaymentSourceForm);
12730
12843
  type PayoutStatus = (io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed);
@@ -13928,6 +14041,7 @@ export const paymentProcessorAccount: PropTypes.Requireable<io.flow.v0.models.Pa
13928
14041
  export const paymentProcessorAccountReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorAccountReference>;
13929
14042
  export const paymentProcessorIdentifier: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorIdentifier>;
13930
14043
  export const paymentProcessorReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorReference>;
14044
+ export const paymentProcessorTransactionDetailsApm: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorTransactionDetailsApm>;
13931
14045
  export const paymentProcessorTransactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorTransactionDetailsCard>;
13932
14046
  export const paymentReference: PropTypes.Requireable<io.flow.v0.models.PaymentReference>;
13933
14047
  export const paymentRefund: PropTypes.Requireable<io.flow.v0.models.PaymentRefund>;
@@ -13939,6 +14053,7 @@ export const paymentRequestBillingCurrencyRate: PropTypes.Requireable<io.flow.v0
13939
14053
  export const paymentRequestBillingFees: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBillingFees>;
13940
14054
  export const paymentRequestBundle: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBundle>;
13941
14055
  export const paymentRequestBundleForm: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBundleForm>;
14056
+ export const paymentRequestCancellationReasonOrderMissing: PropTypes.Requireable<io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing>;
13942
14057
  export const paymentRequestDeleted: PropTypes.Requireable<io.flow.v0.models.PaymentRequestDeleted>;
13943
14058
  export const paymentRequestForm: PropTypes.Requireable<io.flow.v0.models.PaymentRequestForm>;
13944
14059
  export const paymentRequestReference: PropTypes.Requireable<io.flow.v0.models.PaymentRequestReference>;
@@ -14087,6 +14202,7 @@ export const region: PropTypes.Requireable<io.flow.v0.models.Region>;
14087
14202
  export const regionReference: PropTypes.Requireable<io.flow.v0.models.RegionReference>;
14088
14203
  export const regionSetting: PropTypes.Requireable<io.flow.v0.models.RegionSetting>;
14089
14204
  export const regionSettingForm: PropTypes.Requireable<io.flow.v0.models.RegionSettingForm>;
14205
+ export const rejectionPutForm: PropTypes.Requireable<io.flow.v0.models.RejectionPutForm>;
14090
14206
  export const remoteAreaByWeightServiceFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaByWeightServiceFee>;
14091
14207
  export const remoteAreaRatecardFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaRatecardFee>;
14092
14208
  export const remoteAreaServiceFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaServiceFee>;
@@ -14348,6 +14464,7 @@ export const transactionMetadataCarrierCharge: PropTypes.Requireable<io.flow.v0.
14348
14464
  export const transactionMetadataChannel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannel>;
14349
14465
  export const transactionMetadataChannelCardMetadata: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadata>;
14350
14466
  export const transactionMetadataChannelCardMetadataIssuerSummary: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary>;
14467
+ export const transactionMetadataChannelOrganizationTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction>;
14351
14468
  export const transactionMetadataFailedPayout: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayout>;
14352
14469
  export const transactionMetadataFailedPayoutReference: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayoutReference>;
14353
14470
  export const transactionMetadataManual: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataManual>;
@@ -14482,6 +14599,7 @@ export const paymentMethodSummary: PropTypes.Requireable<io.flow.v0.unions.Payme
14482
14599
  export const paymentMethodTag: PropTypes.Requireable<io.flow.v0.unions.PaymentMethodTag>;
14483
14600
  export const paymentOrderReference: PropTypes.Requireable<io.flow.v0.unions.PaymentOrderReference>;
14484
14601
  export const paymentProcessorTransactionDetails: PropTypes.Requireable<io.flow.v0.unions.PaymentProcessorTransactionDetails>;
14602
+ export const paymentRequestCancellationReason: PropTypes.Requireable<io.flow.v0.unions.PaymentRequestCancellationReason>;
14485
14603
  export const paymentSource: PropTypes.Requireable<io.flow.v0.unions.PaymentSource>;
14486
14604
  export const paymentSourceForm: PropTypes.Requireable<io.flow.v0.unions.PaymentSourceForm>;
14487
14605
  export const payoutStatus: PropTypes.Requireable<io.flow.v0.unions.PayoutStatus>;