@flowio/api-prop-types 10.16.78 → 10.16.80

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/src/api.js CHANGED
@@ -191,6 +191,23 @@ T['io.flow.shopify.external.v0.models.shopify_inventory_level_response_wrapper']
191
191
  inventory_levels: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_inventory_level']).isRequired,
192
192
  });
193
193
 
194
+ T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
195
+ country_code: PropTypes.string.isRequired,
196
+ harmonized_system_code: PropTypes.string.isRequired,
197
+ });
198
+
199
+ T['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'] = PropTypes.exact({
200
+ country_code_of_origin: PropTypes.string,
201
+
202
+ country_harmonized_system_codes: PropTypes.arrayOf(
203
+ T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'],
204
+ ),
205
+
206
+ harmonized_system_code: PropTypes.string,
207
+ updated_at: PropTypes.string.isRequired,
208
+ requires_shipping: PropTypes.bool.isRequired,
209
+ });
210
+
194
211
  T['io.flow.shopify.external.v0.models.shopify_gift_card_adjustment'] = PropTypes.exact({
195
212
  id: PropTypes.number.isRequired,
196
213
  gift_card_id: PropTypes.number.isRequired,
@@ -658,7 +675,6 @@ T['io.flow.shopify.external.v0.models.request_shopify_gift_card'] = PropTypes.ex
658
675
  });
659
676
 
660
677
  T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg', 'oz', 'lb']);
661
- T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
662
678
  T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
663
679
  T['io.flow.shopify.external.v0.enums.fulfillment_service'] = PropTypes.oneOf(['manual', 'gift_card']);
664
680
  T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
@@ -675,9 +691,9 @@ T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
675
691
  product_id: PropTypes.number.isRequired,
676
692
  variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
677
693
  src: PropTypes.string,
678
- position: PropTypes.number.isRequired,
679
- created_at: PropTypes.string.isRequired,
680
- updated_at: PropTypes.string.isRequired,
694
+ position: PropTypes.number,
695
+ created_at: PropTypes.string,
696
+ updated_at: PropTypes.string,
681
697
  alt: PropTypes.string,
682
698
  });
683
699
 
@@ -776,6 +792,12 @@ T['io.flow.shopify.external.v0.models.response_metafield'] = PropTypes.exact({
776
792
  metafield: T['io.flow.shopify.external.v0.models.metafield'].isRequired,
777
793
  });
778
794
 
795
+ T['io.flow.shopify.external.v0.models.graphql_variant_image'] = PropTypes.exact({
796
+ id: PropTypes.string.isRequired,
797
+ });
798
+
799
+ T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
800
+
779
801
  T['io.flow.shopify.external.v0.models.product_variant'] = PropTypes.exact({
780
802
  id: PropTypes.number.isRequired,
781
803
  sku: PropTypes.string,
@@ -798,7 +820,7 @@ T['io.flow.shopify.external.v0.models.product_variant'] = PropTypes.exact({
798
820
  option1: PropTypes.string,
799
821
  option2: PropTypes.string,
800
822
  option3: PropTypes.string,
801
- requires_shipping: PropTypes.bool.isRequired,
823
+ requires_shipping: PropTypes.bool,
802
824
  metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield']),
803
825
  });
804
826
 
@@ -819,7 +841,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
819
841
  options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
820
842
  tags: PropTypes.string,
821
843
  template_suffix: PropTypes.string,
822
- published_scope: T['io.flow.shopify.external.v0.enums.published_scope'].isRequired,
844
+ published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
823
845
  published_at: PropTypes.string,
824
846
  created_at: PropTypes.string.isRequired,
825
847
  updated_at: PropTypes.string.isRequired,
@@ -834,6 +856,72 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
834
856
  product: T['io.flow.shopify.external.v0.models.product'].isRequired,
835
857
  });
836
858
 
859
+ T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
860
+ id: PropTypes.string.isRequired,
861
+ values: PropTypes.arrayOf(PropTypes.string).isRequired,
862
+ name: PropTypes.string.isRequired,
863
+ position: PropTypes.number.isRequired,
864
+ });
865
+
866
+ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact({
867
+ id: PropTypes.string.isRequired,
868
+ url: PropTypes.string.isRequired,
869
+ altText: PropTypes.string,
870
+ });
871
+
872
+ T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
873
+
874
+ T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
875
+ unit: T['io.flow.shopify.external.v0.enums.graphql_weight_unit'].isRequired,
876
+ value: PropTypes.number.isRequired,
877
+ });
878
+
879
+ T['io.flow.shopify.external.v0.models.graphql_measurement'] = PropTypes.exact({
880
+ weight: T['io.flow.shopify.external.v0.models.graphql_weight'].isRequired,
881
+ });
882
+
883
+ T['io.flow.shopify.external.v0.models.graphql_inventory_item'] = PropTypes.exact({
884
+ id: PropTypes.string.isRequired,
885
+ tracked: PropTypes.bool.isRequired,
886
+ requiresShipping: PropTypes.bool,
887
+ measurement: T['io.flow.shopify.external.v0.models.graphql_measurement'].isRequired,
888
+ });
889
+
890
+ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exact({
891
+ id: PropTypes.string.isRequired,
892
+ legacyResourceId: PropTypes.string.isRequired,
893
+ sku: PropTypes.string,
894
+ price: PropTypes.string.isRequired,
895
+ title: PropTypes.string.isRequired,
896
+ taxable: PropTypes.bool.isRequired,
897
+ compareAtPrice: PropTypes.string,
898
+ barcode: PropTypes.string,
899
+ inventoryPolicy: T['io.flow.shopify.external.v0.enums.inventory_policy'].isRequired,
900
+ inventoryQuantity: PropTypes.number,
901
+ image: T['io.flow.shopify.external.v0.models.graphql_variant_image'],
902
+ inventoryItem: T['io.flow.shopify.external.v0.models.graphql_inventory_item'].isRequired,
903
+ });
904
+
905
+ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
906
+ id: PropTypes.string.isRequired,
907
+ legacyResourceId: PropTypes.string.isRequired,
908
+ handle: PropTypes.string.isRequired,
909
+ variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']),
910
+ images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_image']).isRequired,
911
+ title: PropTypes.string.isRequired,
912
+ vendor: PropTypes.string,
913
+ descriptionHtml: PropTypes.string,
914
+ productType: PropTypes.string,
915
+ status: PropTypes.string,
916
+ options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_option']).isRequired,
917
+ tags: PropTypes.arrayOf(PropTypes.string),
918
+ templateSuffix: PropTypes.string,
919
+ publishedAt: PropTypes.string,
920
+ createdAt: PropTypes.string.isRequired,
921
+ updatedAt: PropTypes.string.isRequired,
922
+ hasVariantsThatRequiresComponents: PropTypes.bool,
923
+ });
924
+
837
925
  T['io.flow.stripe.v0.models.stripe_event_request'] = PropTypes.exact({
838
926
  id: PropTypes.string,
839
927
  idempotency_key: PropTypes.string,
@@ -856,6 +944,14 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
856
944
  type: PropTypes.string.isRequired,
857
945
  });
858
946
 
947
+ T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
948
+ 'charge.dispute.closed',
949
+ 'charge.dispute.created',
950
+ 'charge.dispute.funds_reinstated',
951
+ 'charge.dispute.funds_withdrawn',
952
+ 'charge.dispute.updated',
953
+ ]);
954
+
859
955
  T['io.flow.stripe.v0.enums.use_stripe_sdk_type'] = PropTypes.oneOf(['three_d_secure_redirect', 'stripe_3ds2_fingerprint']);
860
956
 
861
957
  T['io.flow.stripe.v0.models.three_d_secure_redirect'] = PropTypes.exact({
@@ -1495,6 +1591,202 @@ T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
1495
1591
  'validation_error',
1496
1592
  ]);
1497
1593
 
1594
+ T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'] = PropTypes.oneOf(['chargeback', 'inquiry']);
1595
+ T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'] = PropTypes.oneOf(['card', 'klarna', 'paypal']);
1596
+
1597
+ T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'] = PropTypes.exact({
1598
+ case_id: PropTypes.string,
1599
+ reason_code: PropTypes.string,
1600
+ });
1601
+
1602
+ T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'] = PropTypes.exact({
1603
+ reason_code: PropTypes.string,
1604
+ });
1605
+
1606
+ T['io.flow.stripe.v0.models.dispute_payment_method_details_card'] = PropTypes.exact({
1607
+ brand: PropTypes.string.isRequired,
1608
+ case_type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'],
1609
+ network_reason_code: PropTypes.string,
1610
+ });
1611
+
1612
+ T['io.flow.stripe.v0.enums.balance_transaction_type'] = PropTypes.oneOf([
1613
+ 'adjustment',
1614
+ 'advance',
1615
+ 'advance_funding',
1616
+ 'anticipation_repayment',
1617
+ 'application_fee',
1618
+ 'application_fee_refund',
1619
+ 'charge',
1620
+ 'climate_order_purchase',
1621
+ 'climate_order_refund',
1622
+ 'connect_collection_transfer',
1623
+ 'contribution',
1624
+ 'issuing_authorization_hold',
1625
+ 'issuing_authorization_release',
1626
+ 'issuing_dispute',
1627
+ 'issuing_transaction',
1628
+ 'obligation_outbound',
1629
+ 'obligation_reversal_inbound',
1630
+ 'payment',
1631
+ 'payment_failure_refund',
1632
+ 'payment_network_reserve_hold',
1633
+ 'payment_network_reserve_release',
1634
+ 'payment_refund',
1635
+ 'payment_reversal',
1636
+ 'payment_unreconciled',
1637
+ 'payout',
1638
+ 'payout_cancel',
1639
+ 'payout_failure',
1640
+ 'refund',
1641
+ 'refund_failure',
1642
+ 'reserve_transaction',
1643
+ 'reserved_funds',
1644
+ 'stripe_fee',
1645
+ 'stripe_fx_fee',
1646
+ 'tax_fee',
1647
+ 'topup',
1648
+ 'topup_reversal',
1649
+ 'transfer',
1650
+ 'transfer_cancel',
1651
+ 'transfer_failure',
1652
+ 'transfer_refund',
1653
+ ]);
1654
+
1655
+ T['io.flow.stripe.v0.models.dispute_balance_transaction_fee_details'] = PropTypes.exact({
1656
+ amount: PropTypes.number.isRequired,
1657
+ application: PropTypes.string,
1658
+ currency: PropTypes.string.isRequired,
1659
+ description: PropTypes.string,
1660
+ type: PropTypes.string.isRequired,
1661
+ });
1662
+
1663
+ T['io.flow.stripe.v0.models.dispute_payment_method_details'] = PropTypes.exact({
1664
+ card: T['io.flow.stripe.v0.models.dispute_payment_method_details_card'],
1665
+ klarna: T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'],
1666
+ paypal: T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'],
1667
+ type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'].isRequired,
1668
+ });
1669
+
1670
+ T['io.flow.stripe.v0.models.dispute_evidence_details'] = PropTypes.exact({
1671
+ due_by: PropTypes.number,
1672
+ has_evidence: PropTypes.bool.isRequired,
1673
+ past_due: PropTypes.bool.isRequired,
1674
+ submission_count: PropTypes.number.isRequired,
1675
+ });
1676
+
1677
+ T['io.flow.stripe.v0.models.dispute_balance_transaction'] = PropTypes.exact({
1678
+ payment_intent: PropTypes.string,
1679
+ id: PropTypes.string.isRequired,
1680
+ object: PropTypes.string.isRequired,
1681
+ amount: PropTypes.number.isRequired,
1682
+ available_on: PropTypes.number.isRequired,
1683
+ created: PropTypes.number.isRequired,
1684
+ currency: PropTypes.string.isRequired,
1685
+ description: PropTypes.string,
1686
+ exchange_rate: PropTypes.number,
1687
+ fee: PropTypes.number,
1688
+ fee_details: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction_fee_details']).isRequired,
1689
+ net: PropTypes.number.isRequired,
1690
+ reporting_category: PropTypes.string.isRequired,
1691
+ source: PropTypes.string,
1692
+ status: PropTypes.string.isRequired,
1693
+ type: T['io.flow.stripe.v0.enums.balance_transaction_type'].isRequired,
1694
+ });
1695
+
1696
+ T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
1697
+ 'warning_needs_response',
1698
+ 'warning_under_review',
1699
+ 'warning_closed',
1700
+ 'needs_response',
1701
+ 'under_review',
1702
+ 'won',
1703
+ 'lost',
1704
+ ]);
1705
+
1706
+ T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
1707
+ 'bank_cannot_process',
1708
+ 'check_returned',
1709
+ 'credit_not_processed',
1710
+ 'customer_initiated',
1711
+ 'debit_not_authorized',
1712
+ 'duplicate',
1713
+ 'fraudulent',
1714
+ 'general',
1715
+ 'incorrect_account_details',
1716
+ 'insufficient_funds',
1717
+ 'product_not_received',
1718
+ 'product_unacceptable',
1719
+ 'subscription_canceled',
1720
+ 'unrecognized',
1721
+ ]);
1722
+
1723
+ T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
1724
+ access_activity_log: PropTypes.string,
1725
+ billing_address: PropTypes.string,
1726
+ cancellation_policy: PropTypes.string,
1727
+ cancellation_policy_disclosure: PropTypes.string,
1728
+ cancellation_rebuttal: PropTypes.string,
1729
+ customer_communication: PropTypes.string,
1730
+ customer_email_address: PropTypes.string,
1731
+ customer_name: PropTypes.string,
1732
+ 'evidence.customer_purchase_ip': PropTypes.string,
1733
+ customer_signature: PropTypes.string,
1734
+ duplicate_charge_documentation: PropTypes.string,
1735
+ duplicate_charge_explanation: PropTypes.string,
1736
+ duplicate_charge_id: PropTypes.string,
1737
+ product_description: PropTypes.string,
1738
+ receipt: PropTypes.string,
1739
+ refund_policy: PropTypes.string,
1740
+ refund_policy_disclosure: PropTypes.string,
1741
+ refund_refusal_explanation: PropTypes.string,
1742
+ service_date: PropTypes.string,
1743
+ service_documentation: PropTypes.string,
1744
+ shipping_address: PropTypes.string,
1745
+ shipping_carrier: PropTypes.string,
1746
+ shipping_date: PropTypes.string,
1747
+ shipping_documentation: PropTypes.string,
1748
+ shipping_tracking_number: PropTypes.string,
1749
+ uncategorized_file: PropTypes.string,
1750
+ uncategorized_text: PropTypes.string,
1751
+ });
1752
+
1753
+ T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
1754
+ id: PropTypes.string.isRequired,
1755
+ amount: PropTypes.number.isRequired,
1756
+ charge: PropTypes.string.isRequired,
1757
+ currency: PropTypes.string.isRequired,
1758
+ evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
1759
+ metadata: PropTypes.objectOf(PropTypes.string).isRequired,
1760
+ payment_intent: PropTypes.string,
1761
+ reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
1762
+ status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
1763
+ object: PropTypes.string.isRequired,
1764
+ balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
1765
+ created: PropTypes.number.isRequired,
1766
+ evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
1767
+ is_charge_refundable: PropTypes.bool.isRequired,
1768
+ livemode: PropTypes.bool.isRequired,
1769
+ payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
1770
+ });
1771
+
1772
+ T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
1773
+ object: T['io.flow.stripe.v0.models.dispute'].isRequired,
1774
+ previous_attributes: PropTypes.object,
1775
+ });
1776
+
1777
+ T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
1778
+ id: PropTypes.string.isRequired,
1779
+ api_version: PropTypes.string,
1780
+ data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
1781
+ request: PropTypes.object,
1782
+ type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
1783
+ object: PropTypes.string.isRequired,
1784
+ account: PropTypes.string,
1785
+ created: PropTypes.number.isRequired,
1786
+ livemode: PropTypes.bool.isRequired,
1787
+ pending_webhooks: PropTypes.number.isRequired,
1788
+ });
1789
+
1498
1790
  T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
1499
1791
 
1500
1792
  T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
@@ -3718,6 +4010,7 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
3718
4010
  'business_street_address_is_po_box',
3719
4011
  'exception_merchant',
3720
4012
  'application_missing',
4013
+ 'missing_logistics_contact_info',
3721
4014
  ]);
3722
4015
 
3723
4016
  T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
@@ -4169,6 +4462,16 @@ T['io.flow.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
4169
4462
  reference: PropTypes.string,
4170
4463
  });
4171
4464
 
4465
+ T['io.flow.v0.models.payment_method_data_init_przelewy24'] = PropTypes.exact({
4466
+ type: PropTypes.oneOf(['init_przelewy24']).isRequired,
4467
+ reference: PropTypes.string,
4468
+ });
4469
+
4470
+ T['io.flow.v0.models.payment_method_data_init_twint'] = PropTypes.exact({
4471
+ type: PropTypes.oneOf(['init_twint']).isRequired,
4472
+ reference: PropTypes.string,
4473
+ });
4474
+
4172
4475
  T['io.flow.v0.models.payment_method_data_init_sofort'] = PropTypes.exact({
4173
4476
  type: PropTypes.oneOf(['init_sofort']).isRequired,
4174
4477
  reference: PropTypes.string,
@@ -4376,6 +4679,8 @@ T['io.flow.v0.enums.payment_type'] = PropTypes.oneOf([
4376
4679
  'sofort',
4377
4680
  'afterpay',
4378
4681
  'bancontact',
4682
+ 'twint',
4683
+ 'przelewy24',
4379
4684
  ]);
4380
4685
 
4381
4686
  T['io.flow.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
@@ -7771,11 +8076,21 @@ T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
7771
8076
  possible_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
7772
8077
  });
7773
8078
 
8079
+ T['io.flow.v0.models.payment_method_summary_twint'] = PropTypes.exact({
8080
+ type: PropTypes.oneOf(['twint']).isRequired,
8081
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8082
+ });
8083
+
7774
8084
  T['io.flow.v0.models.payment_method_summary_sofort'] = PropTypes.exact({
7775
8085
  type: PropTypes.oneOf(['sofort']).isRequired,
7776
8086
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
7777
8087
  });
7778
8088
 
8089
+ T['io.flow.v0.models.payment_method_summary_przelewy24'] = PropTypes.exact({
8090
+ type: PropTypes.oneOf(['przelewy24']).isRequired,
8091
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
8092
+ });
8093
+
7779
8094
  T['io.flow.v0.models.payment_method_summary_paypal'] = PropTypes.exact({
7780
8095
  type: PropTypes.oneOf(['paypal']).isRequired,
7781
8096
  merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
@@ -7893,6 +8208,8 @@ T['io.flow.v0.unions.payment_method_data'] = PropTypes.oneOfType([
7893
8208
  T['io.flow.v0.models.payment_method_data_init_paypal'],
7894
8209
  T['io.flow.v0.models.payment_method_data_init_ideal'],
7895
8210
  T['io.flow.v0.models.payment_method_data_init_sofort'],
8211
+ T['io.flow.v0.models.payment_method_data_init_twint'],
8212
+ T['io.flow.v0.models.payment_method_data_init_przelewy24'],
7896
8213
  T['io.flow.v0.models.payment_method_data_init_bancontact'],
7897
8214
  T['io.flow.v0.models.payment_method_data_validate_applepay'],
7898
8215
  T['io.flow.v0.models.payment_method_data_authorize_card'],
@@ -10149,6 +10466,8 @@ T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
10149
10466
  T['io.flow.v0.models.payment_method_summary_googlepay'],
10150
10467
  T['io.flow.v0.models.payment_method_summary_paypal'],
10151
10468
  T['io.flow.v0.models.payment_method_summary_ideal'],
10469
+ T['io.flow.v0.models.payment_method_summary_twint'],
10470
+ T['io.flow.v0.models.payment_method_summary_przelewy24'],
10152
10471
  T['io.flow.v0.models.payment_method_summary_sofort'],
10153
10472
  T['io.flow.v0.models.payment_method_summary_bancontact'],
10154
10473
  ]);
@@ -14828,6 +15147,11 @@ T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
14828
15147
  'charge.succeeded',
14829
15148
  'charge.updated',
14830
15149
  'charge.refund.updated',
15150
+ 'charge.dispute.closed',
15151
+ 'charge.dispute.created',
15152
+ 'charge.dispute.funds_reinstated',
15153
+ 'charge.dispute.funds_withdrawn',
15154
+ 'charge.dispute.updated',
14831
15155
  'payment_intent.created',
14832
15156
  'payment_intent.amount_capturable_updated',
14833
15157
  'payment_intent.payment_failed',
@@ -16115,7 +16439,9 @@ export const paymentMethodDataInitGooglepay = T['io.flow.v0.models.payment_metho
16115
16439
  export const paymentMethodDataInitIdeal = T['io.flow.v0.models.payment_method_data_init_ideal'];
16116
16440
  export const paymentMethodDataInitKlarna = T['io.flow.v0.models.payment_method_data_init_klarna'];
16117
16441
  export const paymentMethodDataInitPaypal = T['io.flow.v0.models.payment_method_data_init_paypal'];
16442
+ export const paymentMethodDataInitPrzelewy24 = T['io.flow.v0.models.payment_method_data_init_przelewy24'];
16118
16443
  export const paymentMethodDataInitSofort = T['io.flow.v0.models.payment_method_data_init_sofort'];
16444
+ export const paymentMethodDataInitTwint = T['io.flow.v0.models.payment_method_data_init_twint'];
16119
16445
  export const paymentMethodDataOptionLogo = T['io.flow.v0.unions.payment_method_data_option_logo'];
16120
16446
  export const paymentMethodDataOptionLogoSvg = T['io.flow.v0.models.payment_method_data_option_logo_svg'];
16121
16447
  export const paymentMethodDataOptionType = T['io.flow.v0.enums.payment_method_data_option_type'];
@@ -16140,7 +16466,9 @@ export const paymentMethodSummaryGooglepay = T['io.flow.v0.models.payment_method
16140
16466
  export const paymentMethodSummaryIdeal = T['io.flow.v0.models.payment_method_summary_ideal'];
16141
16467
  export const paymentMethodSummaryKlarna = T['io.flow.v0.models.payment_method_summary_klarna'];
16142
16468
  export const paymentMethodSummaryPaypal = T['io.flow.v0.models.payment_method_summary_paypal'];
16469
+ export const paymentMethodSummaryPrzelewy24 = T['io.flow.v0.models.payment_method_summary_przelewy24'];
16143
16470
  export const paymentMethodSummarySofort = T['io.flow.v0.models.payment_method_summary_sofort'];
16471
+ export const paymentMethodSummaryTwint = T['io.flow.v0.models.payment_method_summary_twint'];
16144
16472
  export const paymentMethodTag = T['io.flow.v0.unions.payment_method_tag'];
16145
16473
  export const paymentMethodType = T['io.flow.v0.enums.payment_method_type'];
16146
16474
  export const paymentOrderDetailsLineItem = T['io.flow.v0.models.payment_order_details_line_item'];