@flowio/api-prop-types 10.16.53 → 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/src/api.js CHANGED
@@ -1,6 +1,95 @@
1
1
  import PropTypes from 'prop-types';
2
2
  const T = {};
3
+
4
+ T['io.flow.billing.true.up.v0.models.shipping_method_reference'] = PropTypes.exact({
5
+ id: PropTypes.string.isRequired,
6
+ });
7
+
8
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
9
+ discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
10
+ fee: PropTypes.number.isRequired,
11
+ });
12
+
13
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
14
+ discriminator: PropTypes.oneOf(['percentage']).isRequired,
15
+ percentage: PropTypes.number.isRequired,
16
+ });
17
+
18
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
19
+ discriminator: PropTypes.oneOf(['flat']).isRequired,
20
+ placeholder: PropTypes.string,
21
+ });
22
+
23
+ T['io.flow.billing.true.up.v0.models.weights_dimensional'] = PropTypes.exact({
24
+ weight: PropTypes.number.isRequired,
25
+ length: PropTypes.number.isRequired,
26
+ width: PropTypes.number.isRequired,
27
+ height: PropTypes.number.isRequired,
28
+ });
29
+
30
+ T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
31
+ weight: PropTypes.number.isRequired,
32
+ });
33
+
34
+ T['io.flow.billing.true.up.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
35
+
36
+ T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
37
+ shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
38
+ name: PropTypes.string.isRequired,
39
+ });
40
+
41
+ T['io.flow.billing.true.up.v0.models.metadata_weights'] = PropTypes.exact({
42
+ selected: T['io.flow.billing.true.up.v0.enums.weight_selection'].isRequired,
43
+ dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
44
+ dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
45
+ });
46
+
47
+ T['io.flow.billing.true.up.v0.models.metadata_ratecard'] = PropTypes.exact({
48
+ id: PropTypes.string.isRequired,
49
+ proposition: T['io.flow.billing.true.up.v0.models.metadata_proposition'].isRequired,
50
+ });
51
+
52
+ T['io.flow.billing.true.up.v0.models.label_metadata'] = PropTypes.exact({
53
+ ratecard: T['io.flow.billing.true.up.v0.models.metadata_ratecard'].isRequired,
54
+ weights: T['io.flow.billing.true.up.v0.models.metadata_weights'].isRequired,
55
+ });
56
+
57
+ T['io.flow.billing.true.up.v0.models.label_destination'] = PropTypes.exact({
58
+ country: PropTypes.string.isRequired,
59
+ });
60
+
61
+ T['io.flow.billing.true.up.v0.models.true_up_label_summary'] = PropTypes.exact({
62
+ id: PropTypes.string.isRequired,
63
+ carrier_service_id: PropTypes.string.isRequired,
64
+ carrier_tracking_number: PropTypes.string.isRequired,
65
+ flow_tracking_number: PropTypes.string.isRequired,
66
+ created_at: PropTypes.string.isRequired,
67
+ });
68
+
3
69
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
70
+ T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
71
+
72
+ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
73
+ code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
74
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
75
+ });
76
+
77
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
78
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
79
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
80
+ num_events: PropTypes.number.isRequired,
81
+ });
82
+
83
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
84
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
85
+ organization_id: PropTypes.string.isRequired,
86
+ num_events: PropTypes.number.isRequired,
87
+ });
88
+
89
+ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
90
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
91
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
92
+ ]);
4
93
 
5
94
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
6
95
  'carts/create',
@@ -849,6 +938,115 @@ T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
849
938
  });
850
939
 
851
940
  T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
941
+
942
+ T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
943
+ 'de-AT',
944
+ 'en-AT',
945
+ 'nl-BE',
946
+ 'fr-BE',
947
+ 'en-BE',
948
+ 'de-DE',
949
+ 'en-DE',
950
+ 'da-DK',
951
+ 'en-DK',
952
+ 'es-ES',
953
+ 'en-ES',
954
+ 'fi-FI',
955
+ 'sv-FI',
956
+ 'en-FI',
957
+ 'en-GB',
958
+ 'en-IE',
959
+ 'it-IT',
960
+ 'en-IT',
961
+ 'nl-NL',
962
+ 'en-NL',
963
+ 'nb-NO',
964
+ 'en-NO',
965
+ 'sv-SE',
966
+ 'en-SE',
967
+ 'en-US',
968
+ 'es-US',
969
+ 'fr-FR',
970
+ 'en-FR',
971
+ 'cs-CZ',
972
+ 'en-CZ',
973
+ 'el-GR',
974
+ 'en-GR',
975
+ 'en-AU',
976
+ 'en-NZ',
977
+ 'en-CA',
978
+ 'fr-CA',
979
+ 'pl-PL',
980
+ 'en-PL',
981
+ 'pt-PT',
982
+ 'en-PT',
983
+ 'de-CH',
984
+ 'fr-CH',
985
+ 'it-CH',
986
+ 'en-CH',
987
+ ]);
988
+
989
+ T['io.flow.stripe.v0.enums.payment_method_category_klarna'] = PropTypes.oneOf(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']);
990
+
991
+ T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTypes.exact({
992
+ payment_method_category: T['io.flow.stripe.v0.enums.payment_method_category_klarna'],
993
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
994
+ });
995
+
996
+ T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
997
+ 'card_not_enrolled',
998
+ 'network_not_supported',
999
+ 'abandoned',
1000
+ 'canceled',
1001
+ 'rejected',
1002
+ 'bypassed',
1003
+ 'protocol_error',
1004
+ ]);
1005
+
1006
+ T['io.flow.stripe.v0.enums.three_ds_result'] = PropTypes.oneOf([
1007
+ 'authenticated',
1008
+ 'attempt_acknowledged',
1009
+ 'exempted',
1010
+ 'not_supported',
1011
+ 'failed',
1012
+ 'processing_error',
1013
+ ]);
1014
+
1015
+ T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['challenge', 'frictionless']);
1016
+
1017
+ T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
1018
+ authenticated: PropTypes.bool,
1019
+ authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
1020
+ result: T['io.flow.stripe.v0.enums.three_ds_result'],
1021
+ result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
1022
+ succeeded: PropTypes.bool,
1023
+ version: PropTypes.string,
1024
+ });
1025
+
1026
+ T['io.flow.stripe.v0.models.network_token_used'] = PropTypes.exact({
1027
+ used: PropTypes.bool,
1028
+ });
1029
+
1030
+ T['io.flow.stripe.v0.enums.card_network'] = PropTypes.oneOf([
1031
+ 'amex',
1032
+ 'cartes_bancaires',
1033
+ 'diners',
1034
+ 'discover',
1035
+ 'eftpos_au',
1036
+ 'interac',
1037
+ 'jcb',
1038
+ 'mastercard',
1039
+ 'unionpay',
1040
+ 'visa',
1041
+ 'unknown',
1042
+ ]);
1043
+
1044
+ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
1045
+ count: PropTypes.number,
1046
+ interval: PropTypes.string,
1047
+ type: PropTypes.string,
1048
+ });
1049
+
852
1050
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
853
1051
 
854
1052
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
@@ -941,6 +1139,19 @@ T['io.flow.stripe.v0.models.address'] = PropTypes.exact({
941
1139
  state: PropTypes.string,
942
1140
  });
943
1141
 
1142
+ T['io.flow.stripe.v0.models.visa_checkout_information'] = PropTypes.exact({
1143
+ billing_address: T['io.flow.stripe.v0.models.address'],
1144
+ email: PropTypes.string,
1145
+ name: PropTypes.string,
1146
+ shipping_address: T['io.flow.stripe.v0.models.address'],
1147
+ });
1148
+
1149
+ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
1150
+ type: PropTypes.oneOf(['visa_checkout']).isRequired,
1151
+ visa_checkout: T['io.flow.stripe.v0.models.visa_checkout_information'].isRequired,
1152
+ dynamic_last4: PropTypes.string,
1153
+ });
1154
+
944
1155
  T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
945
1156
  address: T['io.flow.stripe.v0.models.address'].isRequired,
946
1157
  name: PropTypes.string,
@@ -970,6 +1181,19 @@ T['io.flow.stripe.v0.models.order'] = PropTypes.exact({
970
1181
  shipping: T['io.flow.stripe.v0.models.shipping'],
971
1182
  });
972
1183
 
1184
+ T['io.flow.stripe.v0.models.masterpass_information'] = PropTypes.exact({
1185
+ billing_address: T['io.flow.stripe.v0.models.address'],
1186
+ email: PropTypes.string,
1187
+ name: PropTypes.string,
1188
+ shipping_address: T['io.flow.stripe.v0.models.address'],
1189
+ });
1190
+
1191
+ T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
1192
+ type: PropTypes.oneOf(['masterpass']).isRequired,
1193
+ masterpass: T['io.flow.stripe.v0.models.masterpass_information'].isRequired,
1194
+ dynamic_last4: PropTypes.string,
1195
+ });
1196
+
973
1197
  T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
974
1198
  address: T['io.flow.stripe.v0.models.address'].isRequired,
975
1199
  email: PropTypes.string,
@@ -1155,6 +1379,11 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
1155
1379
  transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
1156
1380
  });
1157
1381
 
1382
+ T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
1383
+ type: PropTypes.oneOf(['klarna']).isRequired,
1384
+ klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
1385
+ });
1386
+
1158
1387
  T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
1159
1388
  amount: PropTypes.number,
1160
1389
  currency: PropTypes.string,
@@ -1328,6 +1557,62 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
1328
1557
  type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
1329
1558
  });
1330
1559
 
1560
+ T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
1561
+ address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
1562
+ address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
1563
+ cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
1564
+ });
1565
+
1566
+ T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
1567
+
1568
+ T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
1569
+ type: T['io.flow.stripe.v0.enums.apple_pay_type'].isRequired,
1570
+ });
1571
+
1572
+ T['io.flow.stripe.v0.models.apple_pay'] = PropTypes.exact({
1573
+ type: PropTypes.oneOf(['apple_pay']).isRequired,
1574
+ apple_pay: T['io.flow.stripe.v0.models.apple_pay_information'].isRequired,
1575
+ dynamic_last4: PropTypes.string,
1576
+ });
1577
+
1578
+ T['io.flow.stripe.v0.unions.card_wallet'] = PropTypes.oneOfType([
1579
+ T['io.flow.stripe.v0.models.masterpass'],
1580
+ T['io.flow.stripe.v0.models.apple_pay'],
1581
+ T['io.flow.stripe.v0.models.visa_checkout'],
1582
+ ]);
1583
+
1584
+ T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropTypes.exact({
1585
+ brand: PropTypes.string,
1586
+ checks: T['io.flow.stripe.v0.models.card_checks'],
1587
+ country: PropTypes.string,
1588
+ exp_month: PropTypes.number,
1589
+ exp_year: PropTypes.number,
1590
+ fingerprint: PropTypes.string,
1591
+ funding: T['io.flow.stripe.v0.enums.card_funding_type'],
1592
+ installments: T['io.flow.stripe.v0.models.plan'],
1593
+ last4: PropTypes.string,
1594
+ mandate: PropTypes.string,
1595
+ network: T['io.flow.stripe.v0.enums.card_network'],
1596
+ network_token: T['io.flow.stripe.v0.models.network_token_used'],
1597
+ three_d_secure: T['io.flow.stripe.v0.models.three_d_secure_charge'],
1598
+ capture_before: PropTypes.number,
1599
+ description: PropTypes.string,
1600
+ iin: PropTypes.string,
1601
+ issuer: PropTypes.string,
1602
+ wallet: T['io.flow.stripe.v0.unions.card_wallet'],
1603
+ network_transaction_id: PropTypes.string,
1604
+ });
1605
+
1606
+ T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
1607
+ type: PropTypes.oneOf(['card']).isRequired,
1608
+ card: T['io.flow.stripe.v0.models.payment_method_details_card_information'].isRequired,
1609
+ });
1610
+
1611
+ T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
1612
+ T['io.flow.stripe.v0.models.payment_method_details_card'],
1613
+ T['io.flow.stripe.v0.models.payment_method_details_klarna'],
1614
+ ]);
1615
+
1331
1616
  T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
1332
1617
 
1333
1618
  T['io.flow.stripe.v0.models.owner'] = PropTypes.exact({
@@ -1409,7 +1694,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
1409
1694
  payment_intent: PropTypes.string,
1410
1695
  calculated_statement_descriptor: PropTypes.string,
1411
1696
  statement_descriptor: PropTypes.string,
1412
- payment_method_details: PropTypes.object,
1697
+ payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
1413
1698
  });
1414
1699
 
1415
1700
  T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
@@ -1498,7 +1783,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
1498
1783
  payment_intent: PropTypes.string,
1499
1784
  calculated_statement_descriptor: PropTypes.string,
1500
1785
  statement_descriptor: PropTypes.string,
1501
- payment_method_details: PropTypes.object,
1786
+ payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
1502
1787
  });
1503
1788
 
1504
1789
  T['io.flow.stripe.v0.enums.account_type'] = PropTypes.oneOf(['platform', 'custom', 'standard', 'express']);
@@ -1717,7 +2002,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
1717
2002
  starts_at: PropTypes.string.isRequired,
1718
2003
  ends_at: PropTypes.string,
1719
2004
  prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
1720
- prerequisite_shipping_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
2005
+ prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
1721
2006
  usage_limit: PropTypes.number,
1722
2007
  entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
1723
2008
  entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
@@ -1727,7 +2012,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
1727
2012
  once_per_customer: PropTypes.bool.isRequired,
1728
2013
  target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
1729
2014
  customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
1730
- prerequisite_saved_search_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
2015
+ customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
1731
2016
  prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
1732
2017
  prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
1733
2018
  prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
@@ -2406,6 +2691,15 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
2406
2691
  id: PropTypes.string.isRequired,
2407
2692
  });
2408
2693
 
2694
+ T['io.flow.v0.models.generate_load'] = PropTypes.exact({
2695
+ discriminator: PropTypes.oneOf(['generate_load']).isRequired,
2696
+ event_id: PropTypes.string.isRequired,
2697
+ timestamp: PropTypes.string.isRequired,
2698
+ organization: PropTypes.string.isRequired,
2699
+ test_name: PropTypes.string.isRequired,
2700
+ num_tests: PropTypes.number.isRequired,
2701
+ });
2702
+
2409
2703
  T['io.flow.v0.models.bank_account_form_simple'] = PropTypes.exact({
2410
2704
  discriminator: PropTypes.oneOf(['simple']).isRequired,
2411
2705
  routing_number: PropTypes.string.isRequired,
@@ -2455,7 +2749,7 @@ T['io.flow.v0.models.webhook_response'] = PropTypes.exact({
2455
2749
  status: PropTypes.number.isRequired,
2456
2750
  });
2457
2751
 
2458
- T['io.flow.v0.enums.webhook_status'] = PropTypes.oneOf(['pending', 'success', 'failure']);
2752
+ T['io.flow.v0.enums.webhook_status'] = PropTypes.oneOf(['pending', 'success', 'failure', 'ignored']);
2459
2753
 
2460
2754
  T['io.flow.v0.models.webhook_request'] = PropTypes.exact({
2461
2755
  id: PropTypes.string.isRequired,
@@ -2583,16 +2877,16 @@ T['io.flow.v0.models.threeds_two_challenge_request'] = PropTypes.exact({
2583
2877
 
2584
2878
  T['io.flow.v0.unions.threeds_challenge_action'] = PropTypes.oneOfType([T['io.flow.v0.models.threeds_two_challenge_request']]);
2585
2879
 
2586
- T['io.flow.v0.models.test'] = PropTypes.exact({
2880
+ T['io.flow.ben.test.internal.v0.models.test'] = PropTypes.exact({
2587
2881
  id: PropTypes.string.isRequired,
2882
+ name: PropTypes.string.isRequired,
2588
2883
  });
2589
2884
 
2590
2885
  T['io.flow.v0.models.test_upserted'] = PropTypes.exact({
2591
2886
  discriminator: PropTypes.oneOf(['test_upserted']).isRequired,
2592
2887
  event_id: PropTypes.string.isRequired,
2593
2888
  timestamp: PropTypes.string.isRequired,
2594
- organization: PropTypes.string.isRequired,
2595
- test: T['io.flow.v0.models.test'].isRequired,
2889
+ test: T['io.flow.ben.test.internal.v0.models.test'].isRequired,
2596
2890
  });
2597
2891
 
2598
2892
  T['io.flow.v0.models.repeat_monthly'] = PropTypes.exact({
@@ -2814,13 +3108,6 @@ T['io.flow.v0.models.shopify_order_delivery_metafield_item'] = PropTypes.exact({
2814
3108
  quantity: PropTypes.number.isRequired,
2815
3109
  });
2816
3110
 
2817
- T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
2818
- full_name: PropTypes.string,
2819
- company: PropTypes.string,
2820
- email: PropTypes.string,
2821
- phone: PropTypes.string,
2822
- });
2823
-
2824
3111
  T['io.flow.v0.models.merchant_onboarding_address'] = PropTypes.exact({
2825
3112
  full_name: PropTypes.string,
2826
3113
  streets: PropTypes.arrayOf(PropTypes.string),
@@ -2830,46 +3117,15 @@ T['io.flow.v0.models.merchant_onboarding_address'] = PropTypes.exact({
2830
3117
  country: PropTypes.string,
2831
3118
  });
2832
3119
 
2833
- T['io.flow.v0.models.shop'] = PropTypes.exact({
2834
- name: PropTypes.string.isRequired,
2835
- id: PropTypes.string.isRequired,
2836
- });
2837
-
2838
3120
  T['io.flow.v0.models.ratecard_reference'] = PropTypes.exact({
2839
3121
  id: PropTypes.string.isRequired,
2840
3122
  });
2841
3123
 
2842
- T['io.flow.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
2843
- 'accessories',
2844
- 'animals_and_pet_supplies',
2845
- 'apparel',
2846
- 'apparel_and_accessories',
2847
- 'arts_and_entertainment',
2848
- 'baby_and_toddler',
2849
- 'business_and_industrial',
2850
- 'cameras_and_optics',
2851
- 'electronics',
2852
- 'food_beverages_and_tobacco',
2853
- 'furniture',
2854
- 'gift_cards',
2855
- 'hardware',
2856
- 'health_and_beauty',
2857
- 'home_and_garden',
2858
- 'jewelry',
2859
- 'luggage_and_bags',
2860
- 'mature',
2861
- 'media',
2862
- 'office_supplies',
2863
- 'paper_and_art',
2864
- 'religious_and_ceremonial',
2865
- 'software',
2866
- 'sporting_goods',
2867
- 'sports_and_fitness',
2868
- 'toys_and_games',
2869
- 'toys_hobbies_gifts',
2870
- 'vehicles_and_parts',
2871
- 'other',
2872
- ]);
3124
+ T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
3125
+ company: PropTypes.string,
3126
+ email: PropTypes.string,
3127
+ phone: PropTypes.string,
3128
+ });
2873
3129
 
2874
3130
  T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
2875
3131
  name: PropTypes.string.isRequired,
@@ -3023,6 +3279,50 @@ T['io.flow.v0.models.service_unknown'] = PropTypes.exact({
3023
3279
  name: PropTypes.string.isRequired,
3024
3280
  });
3025
3281
 
3282
+ T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
3283
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
3284
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
3285
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
3286
+ ]);
3287
+
3288
+ T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
3289
+ T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
3290
+ T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
3291
+
3292
+ T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
3293
+ amount: PropTypes.number.isRequired,
3294
+ type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
3295
+ detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
3296
+ });
3297
+
3298
+ T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
3299
+ amount: PropTypes.number.isRequired,
3300
+ weight: PropTypes.number.isRequired,
3301
+ });
3302
+
3303
+ T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
3304
+ currency: PropTypes.string.isRequired,
3305
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
3306
+ length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
3307
+ });
3308
+
3309
+ T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
3310
+ id: PropTypes.string.isRequired,
3311
+ label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
3312
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
3313
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
3314
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
3315
+ total: PropTypes.number.isRequired,
3316
+ destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
3317
+ metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
3318
+ });
3319
+
3320
+ T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
3321
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
3322
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
3323
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
3324
+ });
3325
+
3026
3326
  T['io.flow.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
3027
3327
  T['io.flow.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
3028
3328
  T['io.flow.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
@@ -3359,6 +3659,13 @@ T['io.flow.v0.models.price_book_item_export_options'] = PropTypes.exact({
3359
3659
  });
3360
3660
 
3361
3661
  T['io.flow.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
3662
+ T['io.flow.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
3663
+
3664
+ T['io.flow.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
3665
+ id: PropTypes.string.isRequired,
3666
+ selection_stratey: T['io.flow.v0.enums.preferred_service_selection_strategy'].isRequired,
3667
+ });
3668
+
3362
3669
  T['io.flow.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
3363
3670
  T['io.flow.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
3364
3671
  T['io.flow.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
@@ -3415,6 +3722,7 @@ T['io.flow.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
3415
3722
  'order_unsupported_destination',
3416
3723
  'order_missing_information',
3417
3724
  'order_domestic',
3725
+ 'order_mismatched_currencies',
3418
3726
  ]);
3419
3727
 
3420
3728
  T['io.flow.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
@@ -4248,6 +4556,11 @@ T['io.flow.v0.unions.online_authorization_details'] = PropTypes.oneOfType([
4248
4556
  T['io.flow.v0.models.inline_authorization_details'],
4249
4557
  ]);
4250
4558
 
4559
+ T['io.flow.v0.models.merchant_deactivated'] = PropTypes.exact({
4560
+ discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
4561
+ reason: PropTypes.string.isRequired,
4562
+ });
4563
+
4251
4564
  T['io.flow.v0.models.merchant_activated'] = PropTypes.exact({
4252
4565
  discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
4253
4566
  placeholder: PropTypes.bool,
@@ -4338,6 +4651,7 @@ T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
4338
4651
  T['io.flow.v0.models.setup_blocked'],
4339
4652
  T['io.flow.v0.models.setup_completed'],
4340
4653
  T['io.flow.v0.models.merchant_activated'],
4654
+ T['io.flow.v0.models.merchant_deactivated'],
4341
4655
  ]);
4342
4656
 
4343
4657
  T['io.flow.v0.models.onboarding_state_transition'] = PropTypes.exact({
@@ -4447,18 +4761,6 @@ T['io.flow.v0.models.language'] = PropTypes.exact({
4447
4761
  iso_639_2: PropTypes.string.isRequired,
4448
4762
  });
4449
4763
 
4450
- T['io.flow.v0.models.country'] = PropTypes.exact({
4451
- name: PropTypes.string.isRequired,
4452
- iso_3166_2: PropTypes.string.isRequired,
4453
- iso_3166_3: PropTypes.string.isRequired,
4454
- languages: PropTypes.arrayOf(PropTypes.string).isRequired,
4455
- measurement_system: PropTypes.string.isRequired,
4456
- default_currency: PropTypes.string,
4457
- default_language: PropTypes.string,
4458
- timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
4459
- default_delivered_duty: PropTypes.string,
4460
- });
4461
-
4462
4764
  T['io.flow.v0.models.price_detail_component'] = PropTypes.exact({
4463
4765
  key: T['io.flow.v0.enums.price_detail_component_key'].isRequired,
4464
4766
  amount: PropTypes.number.isRequired,
@@ -4499,6 +4801,7 @@ T['io.flow.v0.models.label_tracking_summary'] = PropTypes.exact({
4499
4801
  label: T['io.flow.v0.models.label_reference'],
4500
4802
  in_transit: T['io.flow.v0.models.label_tracking_summary_update'].isRequired,
4501
4803
  delivered: T['io.flow.v0.models.label_tracking_summary_update'],
4804
+ rejected: T['io.flow.v0.models.label_tracking_summary_update'],
4502
4805
  });
4503
4806
 
4504
4807
  T['io.flow.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
@@ -4548,6 +4851,11 @@ T['io.flow.v0.models.company'] = PropTypes.exact({
4548
4851
 
4549
4852
  T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
4550
4853
 
4854
+ T['io.flow.v0.models.shop'] = PropTypes.exact({
4855
+ name: PropTypes.string.isRequired,
4856
+ id: PropTypes.string.isRequired,
4857
+ });
4858
+
4551
4859
  T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
4552
4860
  id: PropTypes.string.isRequired,
4553
4861
  name: PropTypes.string,
@@ -5436,19 +5744,12 @@ T['io.flow.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
5436
5744
  'pound',
5437
5745
  ]);
5438
5746
 
5439
- T['io.flow.v0.models.oversized_shipment_ratecard_fee'] = PropTypes.exact({
5440
- discriminator: PropTypes.oneOf(['oversized_shipment_ratecard_fee']).isRequired,
5441
- weight_threshold: PropTypes.number.isRequired,
5442
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
5443
- margin: PropTypes.number,
5444
- amount: PropTypes.number,
5445
- });
5446
-
5447
5747
  T['io.flow.v0.models.fee_weight'] = PropTypes.exact({
5448
5748
  weight: PropTypes.number.isRequired,
5449
5749
  unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
5450
5750
  });
5451
5751
 
5752
+ T['io.flow.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
5452
5753
  T['io.flow.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
5453
5754
  T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
5454
5755
  T['io.flow.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
@@ -5663,6 +5964,11 @@ T['io.flow.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization'])
5663
5964
  T['io.flow.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
5664
5965
  id: PropTypes.string,
5665
5966
  ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
5967
+ rate_level_key: PropTypes.string,
5968
+ glbe_shipping_method_id: PropTypes.string,
5969
+ glbe_proposition_name: PropTypes.string,
5970
+ channel_revenue_share_percentage: PropTypes.number,
5971
+ shopify_grc_gid: PropTypes.string,
5666
5972
  });
5667
5973
 
5668
5974
  T['io.flow.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
@@ -5676,18 +5982,27 @@ T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
5676
5982
  origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
5677
5983
  service: PropTypes.string.isRequired,
5678
5984
  number: PropTypes.string,
5985
+ rate_level_key: PropTypes.string,
5679
5986
  ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
5987
+ glbe_shipping_method_id: PropTypes.string,
5988
+ glbe_proposition_name: PropTypes.string,
5989
+ channel_revenue_share_percentage: PropTypes.number,
5990
+ data: PropTypes.objectOf(PropTypes.string),
5680
5991
  });
5681
5992
 
5682
5993
  T['io.flow.v0.models.ratecard'] = PropTypes.exact({
5683
5994
  id: PropTypes.string.isRequired,
5684
5995
  number: PropTypes.string.isRequired,
5996
+ rate_level_key: PropTypes.string,
5685
5997
  direction: T['io.flow.v0.enums.direction'].isRequired,
5686
5998
  effective_at: PropTypes.string.isRequired,
5687
5999
  origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
5688
6000
  service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
5689
6001
  published_at: PropTypes.string,
5690
6002
  ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
6003
+ glbe_shipping_method_id: PropTypes.string,
6004
+ glbe_proposition_name: PropTypes.string,
6005
+ channel_revenue_share_percentage: PropTypes.number,
5691
6006
  });
5692
6007
 
5693
6008
  T['io.flow.v0.models.ratecard_upserted'] = PropTypes.exact({
@@ -5824,13 +6139,6 @@ T['io.flow.v0.models.currency'] = PropTypes.exact({
5824
6139
  default_locale: PropTypes.string,
5825
6140
  });
5826
6141
 
5827
- T['io.flow.v0.models.session_geo'] = PropTypes.exact({
5828
- country: T['io.flow.v0.models.country'].isRequired,
5829
- currency: T['io.flow.v0.models.currency'].isRequired,
5830
- language: T['io.flow.v0.models.language'].isRequired,
5831
- locale: T['io.flow.v0.models.locale'].isRequired,
5832
- });
5833
-
5834
6142
  T['io.flow.v0.models.price_book_item_schedule'] = PropTypes.exact({
5835
6143
  starts_at: PropTypes.string.isRequired,
5836
6144
  ends_at: PropTypes.string,
@@ -6004,6 +6312,29 @@ T['io.flow.v0.models.country_picker'] = PropTypes.exact({
6004
6312
  source: T['io.flow.v0.enums.country_picker_source'].isRequired,
6005
6313
  });
6006
6314
 
6315
+ T['io.flow.v0.models.country'] = PropTypes.exact({
6316
+ name: PropTypes.string.isRequired,
6317
+ iso_3166_2: PropTypes.string.isRequired,
6318
+ iso_3166_3: PropTypes.string.isRequired,
6319
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
6320
+ measurement_system: PropTypes.string.isRequired,
6321
+ default_currency: PropTypes.string,
6322
+ default_language: PropTypes.string,
6323
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
6324
+ default_delivered_duty: PropTypes.string,
6325
+ });
6326
+
6327
+ T['io.flow.v0.models.session_geo'] = PropTypes.exact({
6328
+ country: T['io.flow.v0.models.country'].isRequired,
6329
+ currency: T['io.flow.v0.models.currency'].isRequired,
6330
+ language: T['io.flow.v0.models.language'].isRequired,
6331
+ locale: T['io.flow.v0.models.locale'].isRequired,
6332
+ });
6333
+
6334
+ T['io.flow.v0.models.country_of_origin'] = PropTypes.exact({
6335
+ country: T['io.flow.v0.models.country'].isRequired,
6336
+ });
6337
+
6007
6338
  T['io.flow.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
6008
6339
 
6009
6340
  T['io.flow.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
@@ -6347,6 +6678,35 @@ T['io.flow.v0.models.channel_vies_registration'] = PropTypes.exact({
6347
6678
  company_name: PropTypes.string,
6348
6679
  });
6349
6680
 
6681
+ T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
6682
+ id: PropTypes.string.isRequired,
6683
+ });
6684
+
6685
+ T['io.flow.v0.enums.transaction_payout_pending_reason'] = PropTypes.oneOf([
6686
+ 'waiting_for_full_refund',
6687
+ 'waiting_for_fulfillment',
6688
+ 'waiting_for_in_transit',
6689
+ 'waiting_for_next_payout_date',
6690
+ 'external_fulfillment_missing_tracking_info',
6691
+ 'waiting_for_positive_account_balance',
6692
+ ]);
6693
+
6694
+ T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
6695
+ id: PropTypes.string.isRequired,
6696
+ });
6697
+
6698
+ T['io.flow.v0.models.organization_transaction_payout'] = PropTypes.exact({
6699
+ transaction: T['io.flow.v0.models.transaction_reference'].isRequired,
6700
+ waiting_for: T['io.flow.v0.enums.transaction_payout_pending_reason'],
6701
+ payout: T['io.flow.v0.models.payout_reference'],
6702
+ });
6703
+
6704
+ T['io.flow.v0.models.channel_transaction_payout'] = PropTypes.exact({
6705
+ transaction: T['io.flow.v0.models.transaction_reference'].isRequired,
6706
+ waiting_for: T['io.flow.v0.enums.transaction_payout_pending_reason'],
6707
+ payout: T['io.flow.v0.models.payout_reference'],
6708
+ });
6709
+
6350
6710
  T['io.flow.v0.enums.withholding_deduction_type'] = PropTypes.oneOf(['tax', 'duty', 'freight', 'insurance']);
6351
6711
 
6352
6712
  T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
@@ -6359,6 +6719,11 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
6359
6719
  'transfer',
6360
6720
  ]);
6361
6721
 
6722
+ T['io.flow.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
6723
+ discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
6724
+ request_method: T['io.flow.v0.enums.label_request_method'],
6725
+ });
6726
+
6362
6727
  T['io.flow.v0.models.billing_discount'] = PropTypes.exact({
6363
6728
  amount: PropTypes.number.isRequired,
6364
6729
  description: PropTypes.string,
@@ -6408,6 +6773,8 @@ T['io.flow.v0.models.billing_channel_payment_request_reference'] = PropTypes.exa
6408
6773
  reference: PropTypes.string,
6409
6774
  });
6410
6775
 
6776
+ T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([T['io.flow.v0.models.transaction_metadata_shipping_label']]);
6777
+
6411
6778
  T['io.flow.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
6412
6779
  id: PropTypes.string.isRequired,
6413
6780
  });
@@ -6861,6 +7228,7 @@ T['io.flow.v0.models.payment_method_brand'] = PropTypes.exact({
6861
7228
  });
6862
7229
 
6863
7230
  T['io.flow.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
7231
+ T['io.flow.v0.enums.stored_method_usage_step'] = PropTypes.oneOf(['initial', 'subsequent']);
6864
7232
 
6865
7233
  T['io.flow.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
6866
7234
  T['io.flow.v0.models.payment_processor'],
@@ -7247,6 +7615,14 @@ T['io.flow.v0.models.single_package_shipping_notification_form'] = PropTypes.exa
7247
7615
  shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
7248
7616
  });
7249
7617
 
7618
+ T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
7619
+ dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
7620
+ });
7621
+
7622
+ T['io.flow.v0.models.package_dimensions'] = PropTypes.exact({
7623
+ dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
7624
+ });
7625
+
7250
7626
  T['io.flow.v0.models.dimensions'] = PropTypes.exact({
7251
7627
  product: T['io.flow.v0.models.dimension'],
7252
7628
  packaging: T['io.flow.v0.models.dimension'],
@@ -7397,6 +7773,7 @@ T['io.flow.v0.models.billing_channel_order_summary'] = PropTypes.exact({
7397
7773
 
7398
7774
  T['io.flow.v0.models.payout_transaction'] = PropTypes.exact({
7399
7775
  id: PropTypes.string.isRequired,
7776
+ metadata: T['io.flow.v0.unions.transaction_metadata'],
7400
7777
  order: T['io.flow.v0.models.billing_channel_order_summary'],
7401
7778
  payment_request: T['io.flow.v0.models.billing_channel_payment_request_reference'],
7402
7779
  currency: PropTypes.string.isRequired,
@@ -7415,6 +7792,7 @@ T['io.flow.v0.models.payout_transaction'] = PropTypes.exact({
7415
7792
  T['io.flow.v0.models.transaction'] = PropTypes.exact({
7416
7793
  statement: T['io.flow.v0.models.billing_channel_statement_reference'],
7417
7794
  id: PropTypes.string.isRequired,
7795
+ metadata: T['io.flow.v0.unions.transaction_metadata'],
7418
7796
  order: T['io.flow.v0.models.billing_channel_order_summary'],
7419
7797
  payment_request: T['io.flow.v0.models.billing_channel_payment_request_reference'],
7420
7798
  currency: PropTypes.string.isRequired,
@@ -7449,6 +7827,7 @@ T['io.flow.v0.models.organization_transaction_upserted'] = PropTypes.exact({
7449
7827
  T['io.flow.v0.models.channel_transaction'] = PropTypes.exact({
7450
7828
  statement: T['io.flow.v0.models.billing_channel_statement_reference'],
7451
7829
  id: PropTypes.string.isRequired,
7830
+ metadata: T['io.flow.v0.unions.transaction_metadata'],
7452
7831
  order: T['io.flow.v0.models.billing_channel_order_summary'],
7453
7832
  payment_request: T['io.flow.v0.models.billing_channel_payment_request_reference'],
7454
7833
  currency: PropTypes.string.isRequired,
@@ -7671,6 +8050,7 @@ T['io.flow.v0.models.organization_onboarding_state'] = PropTypes.exact({
7671
8050
  time_blocked: PropTypes.number,
7672
8051
  blocked_since: PropTypes.string,
7673
8052
  completed_at: PropTypes.string,
8053
+ onboarding_started_at: PropTypes.string,
7674
8054
  });
7675
8055
 
7676
8056
  T['io.flow.v0.models.organization_onboarding_state_upserted'] = PropTypes.exact({
@@ -8594,6 +8974,7 @@ T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
8594
8974
  T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
8595
8975
  lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
8596
8976
  cost: T['io.flow.v0.models.money'].isRequired,
8977
+ itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
8597
8978
  });
8598
8979
 
8599
8980
  T['io.flow.v0.models.reversal'] = PropTypes.exact({
@@ -8689,6 +9070,24 @@ T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes.exact({
8689
9070
  ends_at: PropTypes.string,
8690
9071
  });
8691
9072
 
9073
+ T['io.flow.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
9074
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
9075
+ dimensional_threshold: PropTypes.number,
9076
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
9077
+ weight_threshold: PropTypes.number,
9078
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
9079
+ amount: T['io.flow.v0.models.money'].isRequired,
9080
+ });
9081
+
9082
+ T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
9083
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
9084
+ dimensional_threshold: PropTypes.number,
9085
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
9086
+ weight_threshold: PropTypes.number,
9087
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
9088
+ amount: T['io.flow.v0.models.money'].isRequired,
9089
+ });
9090
+
8692
9091
  T['io.flow.v0.models.outbound_carton_fee'] = PropTypes.exact({
8693
9092
  discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
8694
9093
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -8756,6 +9155,7 @@ T['io.flow.v0.unions.service_fee'] = PropTypes.oneOfType([
8756
9155
  T['io.flow.v0.models.peak_surcharge_service_fee'],
8757
9156
  T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'],
8758
9157
  T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'],
9158
+ T['io.flow.v0.models.oversize_piece_surcharge_service_fee'],
8759
9159
  ]);
8760
9160
 
8761
9161
  T['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'] = PropTypes.exact({
@@ -8795,7 +9195,7 @@ T['io.flow.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
8795
9195
  T['io.flow.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
8796
9196
  T['io.flow.v0.models.ddp_ratecard_fee'],
8797
9197
  T['io.flow.v0.models.fuel_surcharge_ratecard_fee'],
8798
- T['io.flow.v0.models.oversized_shipment_ratecard_fee'],
9198
+ T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'],
8799
9199
  T['io.flow.v0.models.return_package_ratecard_fee'],
8800
9200
  T['io.flow.v0.models.crossdock_ratecard_fee'],
8801
9201
  T['io.flow.v0.models.remote_area_ratecard_fee'],
@@ -10202,7 +10602,6 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
10202
10602
  discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
10203
10603
  company: T['io.flow.v0.models.merchant_info'],
10204
10604
  indirect_tax: T['io.flow.v0.models.indirect_tax'],
10205
- parent_company: T['io.flow.v0.models.merchant_info'],
10206
10605
  beneficiary: PropTypes.string,
10207
10606
  ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
10208
10607
  business_url: PropTypes.string,
@@ -10212,23 +10611,22 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
10212
10611
  chargeback_percentage: PropTypes.number,
10213
10612
  bank_account_number: PropTypes.string,
10214
10613
  aba_routing_transit_number: PropTypes.string,
10215
- trade_sectors: PropTypes.arrayOf(T['io.flow.v0.enums.onboarding_trade_sector']),
10216
10614
  other_trade_sector: PropTypes.string,
10217
10615
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
10616
+ center_contact: T['io.flow.v0.models.operations_contact'],
10218
10617
  average_order_weight: PropTypes.number,
10219
10618
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
10220
10619
  monthly_average_volume_amount: PropTypes.number,
10221
10620
  monthly_average_volume_currency: PropTypes.string,
10222
10621
  monthly_average_number_transactions: PropTypes.number,
10223
- dangerous_goods: PropTypes.bool,
10224
10622
  default_country_of_origin: PropTypes.string,
10225
10623
  ratecard_id: PropTypes.string,
10226
10624
  rate_card: PropTypes.string.isRequired,
10227
- logistics_format: T['io.flow.v0.models.logistics_format'],
10228
10625
  shop: T['io.flow.v0.models.shop'],
10229
10626
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
10230
10627
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
10231
10628
  average_order_value: T['io.flow.v0.models.money'],
10629
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
10232
10630
  });
10233
10631
 
10234
10632
  T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_form']]);
@@ -10241,7 +10639,6 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
10241
10639
  status: T['io.flow.v0.enums.onboarding_application_status'].isRequired,
10242
10640
  company: T['io.flow.v0.models.merchant_info'],
10243
10641
  indirect_tax: T['io.flow.v0.models.indirect_tax'],
10244
- parent_company: T['io.flow.v0.models.merchant_info'],
10245
10642
  beneficiary: PropTypes.string,
10246
10643
  ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
10247
10644
  business_url: PropTypes.string,
@@ -10251,24 +10648,24 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
10251
10648
  chargeback_percentage: PropTypes.number,
10252
10649
  bank_account_number: PropTypes.string,
10253
10650
  aba_routing_transit_number: PropTypes.string,
10254
- trade_sectors: PropTypes.arrayOf(T['io.flow.v0.enums.onboarding_trade_sector']),
10255
10651
  other_trade_sector: PropTypes.string,
10256
10652
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
10653
+ center_contact: T['io.flow.v0.models.operations_contact'],
10257
10654
  average_order_weight: PropTypes.number,
10258
10655
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
10259
10656
  monthly_average: T['io.flow.v0.models.monthly_average'],
10260
- dangerous_goods: PropTypes.bool,
10261
10657
  default_country_of_origin: PropTypes.string,
10262
10658
  ratecard: T['io.flow.v0.models.ratecard_reference'],
10263
10659
  rate_card: PropTypes.string.isRequired,
10264
10660
  created_at: PropTypes.string.isRequired,
10265
10661
  activated_at: PropTypes.string,
10266
10662
  status_updated_at: PropTypes.string,
10267
- logistics_format: T['io.flow.v0.models.logistics_format'],
10268
10663
  shop: T['io.flow.v0.models.shop'],
10269
10664
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
10270
10665
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
10271
10666
  average_order_value: T['io.flow.v0.models.money'],
10667
+ glbe_merchant_guid: PropTypes.string,
10668
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
10272
10669
  });
10273
10670
 
10274
10671
  T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application']]);
@@ -10302,6 +10699,8 @@ T['io.flow.v0.unions.know_your_business_form'] = PropTypes.oneOfType([T['io.flow
10302
10699
  T['io.flow.v0.models.know_your_business_usa'] = PropTypes.exact({
10303
10700
  discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
10304
10701
  id: PropTypes.string.isRequired,
10702
+ organization_id: PropTypes.string.isRequired,
10703
+ shop: T['io.flow.v0.models.shop'],
10305
10704
  primary_entity: T['io.flow.v0.unions.entity'].isRequired,
10306
10705
  parent_company: T['io.flow.v0.models.company'],
10307
10706
  ultimate_parent_company: T['io.flow.v0.models.company'],
@@ -11042,6 +11441,7 @@ T['io.flow.v0.models.physical_delivery'] = PropTypes.exact({
11042
11441
  total: T['io.flow.v0.models.localized_total'],
11043
11442
  goods_supply: T['io.flow.v0.enums.goods_supply'],
11044
11443
  merchant_of_record_flow_entity: T['io.flow.v0.enums.flow_entity'],
11444
+ preferred_service: T['io.flow.v0.models.physical_delivery_preferred_service'],
11045
11445
  });
11046
11446
 
11047
11447
  T['io.flow.v0.unions.delivery'] = PropTypes.oneOfType([
@@ -11756,6 +12156,7 @@ T['io.flow.v0.models.online_authorization'] = PropTypes.exact({
11756
12156
  base: T['io.flow.v0.models.money'],
11757
12157
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
11758
12158
  confirmation_details: T['io.flow.v0.unions.confirmation_details'],
12159
+ authorized_at: PropTypes.string,
11759
12160
  });
11760
12161
 
11761
12162
  T['io.flow.v0.models.online_authorization_upserted_v2'] = PropTypes.exact({
@@ -11857,6 +12258,8 @@ T['io.flow.v0.models.card_authorization'] = PropTypes.exact({
11857
12258
  expires_at: PropTypes.string,
11858
12259
  base: T['io.flow.v0.models.money'],
11859
12260
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
12261
+ stored_method_usage_step: T['io.flow.v0.enums.stored_method_usage_step'],
12262
+ authorized_at: PropTypes.string,
11860
12263
  });
11861
12264
 
11862
12265
  T['io.flow.v0.models.card_authorization_upserted_v2'] = PropTypes.exact({
@@ -12049,6 +12452,10 @@ T['io.flow.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
12049
12452
  dimensional_weight: T['io.flow.v0.models.measurement'],
12050
12453
  gravitational_weight: T['io.flow.v0.models.measurement'],
12051
12454
  ratecard_id: PropTypes.string,
12455
+ glbe_shipping_method_id: PropTypes.string,
12456
+ glbe_proposition_name: PropTypes.string,
12457
+ channel_revenue_share_percentage: PropTypes.number,
12458
+ rate_level_key: PropTypes.string,
12052
12459
  line_items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']),
12053
12460
  });
12054
12461
 
@@ -12194,6 +12601,7 @@ T['io.flow.v0.unions.checkout_token_form'] = PropTypes.oneOfType([
12194
12601
 
12195
12602
  T['io.flow.v0.models.shipping_label_package'] = PropTypes.exact({
12196
12603
  dimensions: T['io.flow.v0.models.dimension'].isRequired,
12604
+ volumetric_weight: PropTypes.number,
12197
12605
  items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']).isRequired,
12198
12606
  reference_number: PropTypes.string,
12199
12607
  });
@@ -12275,6 +12683,9 @@ T['io.flow.v0.models.shipping_label'] = PropTypes.exact({
12275
12683
  carrier_tracking_number_url: PropTypes.string.isRequired,
12276
12684
  cost_estimate_source: T['io.flow.v0.enums.cost_estimate_source'],
12277
12685
  cost: T['io.flow.v0.models.price'],
12686
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'],
12687
+ taxes_owed: T['io.flow.v0.models.money'],
12688
+ duties_owed: T['io.flow.v0.models.money'],
12278
12689
  destination: T['io.flow.v0.models.shipping_address'].isRequired,
12279
12690
  flow_tracking_number: PropTypes.string.isRequired,
12280
12691
  flow_tracking_number_url: PropTypes.string.isRequired,
@@ -12286,6 +12697,7 @@ T['io.flow.v0.models.shipping_label'] = PropTypes.exact({
12286
12697
  'return': T['io.flow.v0.models.shipping_label_document'],
12287
12698
  order: T['io.flow.v0.models.label_order_summary'],
12288
12699
  'package': T['io.flow.v0.models.shipping_label_package'],
12700
+ package_dimension_source: T['io.flow.v0.enums.package_dimensions_source'],
12289
12701
  order_identifier: PropTypes.string,
12290
12702
  fulfillment_key: PropTypes.string,
12291
12703
  shipment_recipient: T['io.flow.v0.enums.shipment_recipient'].isRequired,
@@ -12372,6 +12784,7 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
12372
12784
 
12373
12785
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
12374
12786
  T['io.flow.v0.models.test_upserted'],
12787
+ T['io.flow.v0.models.generate_load'],
12375
12788
  T['io.flow.v0.models.transaction_upserted'],
12376
12789
  T['io.flow.v0.models.organization_transaction_upserted'],
12377
12790
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -12600,6 +13013,7 @@ T['io.flow.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
12600
13013
  order_number: PropTypes.string.isRequired,
12601
13014
  service: PropTypes.string,
12602
13015
  shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
13016
+ package_dimensions_source: T['io.flow.v0.enums.package_dimensions_source'],
12603
13017
  });
12604
13018
 
12605
13019
  T['io.flow.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
@@ -12748,6 +13162,7 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
12748
13162
 
12749
13163
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
12750
13164
  'test_upserted',
13165
+ 'generate_load',
12751
13166
  'transaction_upserted',
12752
13167
  'organization_transaction_upserted',
12753
13168
  'organization_transaction_deleted',
@@ -12950,6 +13365,39 @@ T['io.flow.v0.enums.fraud_liability'] = PropTypes.oneOf(['flow', 'organization']
12950
13365
  T['io.flow.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
12951
13366
  T['io.flow.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
12952
13367
  T['io.flow.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
13368
+
13369
+ T['io.flow.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
13370
+ 'accessories',
13371
+ 'animals_and_pet_supplies',
13372
+ 'apparel',
13373
+ 'apparel_and_accessories',
13374
+ 'arts_and_entertainment',
13375
+ 'baby_and_toddler',
13376
+ 'business_and_industrial',
13377
+ 'cameras_and_optics',
13378
+ 'electronics',
13379
+ 'food_beverages_and_tobacco',
13380
+ 'furniture',
13381
+ 'gift_cards',
13382
+ 'hardware',
13383
+ 'health_and_beauty',
13384
+ 'home_and_garden',
13385
+ 'jewelry',
13386
+ 'luggage_and_bags',
13387
+ 'mature',
13388
+ 'media',
13389
+ 'office_supplies',
13390
+ 'paper_and_art',
13391
+ 'religious_and_ceremonial',
13392
+ 'software',
13393
+ 'sporting_goods',
13394
+ 'sports_and_fitness',
13395
+ 'toys_and_games',
13396
+ 'toys_hobbies_gifts',
13397
+ 'vehicles_and_parts',
13398
+ 'other',
13399
+ ]);
13400
+
12953
13401
  T['io.flow.v0.enums.order_quote_address_type'] = PropTypes.oneOf(['shipping']);
12954
13402
  T['io.flow.v0.enums.return_status'] = PropTypes.oneOf(['open', 'refunded']);
12955
13403
  T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
@@ -12959,6 +13407,9 @@ T['io.flow.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
12959
13407
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
12960
13408
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
12961
13409
  T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
13410
+ T['io.flow.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
13411
+ T['io.flow.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
13412
+ T['io.flow.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
12962
13413
  T['io.flow.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
12963
13414
 
12964
13415
  T['io.flow.v0.models.activation_put_form'] = PropTypes.exact({
@@ -13066,6 +13517,10 @@ T['io.flow.v0.models.country_defaults'] = PropTypes.exact({
13066
13517
  language: PropTypes.string.isRequired,
13067
13518
  });
13068
13519
 
13520
+ T['io.flow.v0.models.country_of_origin_form'] = PropTypes.exact({
13521
+ country: PropTypes.string.isRequired,
13522
+ });
13523
+
13069
13524
  T['io.flow.v0.models.credit_payment_form'] = PropTypes.exact({
13070
13525
  order_number: PropTypes.string.isRequired,
13071
13526
  description: PropTypes.string.isRequired,
@@ -13090,6 +13545,10 @@ T['io.flow.v0.models.customer_purge_settings_form'] = PropTypes.exact({
13090
13545
  days_until_purge_used: PropTypes.number.isRequired,
13091
13546
  });
13092
13547
 
13548
+ T['io.flow.v0.models.deactivation_put_form'] = PropTypes.exact({
13549
+ reason: PropTypes.string.isRequired,
13550
+ });
13551
+
13093
13552
  T['io.flow.v0.models.default_bank_account_form'] = PropTypes.exact({
13094
13553
  bank_account_id: PropTypes.string.isRequired,
13095
13554
  });
@@ -13717,6 +14176,7 @@ T['io.flow.stripe.v0.models.customer_request'] = PropTypes.exact({
13717
14176
  description: PropTypes.string,
13718
14177
  });
13719
14178
 
14179
+ T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
13720
14180
  T['io.flow.shopify.external.v0.enums.discount_status'] = PropTypes.oneOf(['enabled', 'disabled', 'depleted']);
13721
14181
 
13722
14182
  T['io.flow.shopify.external.v0.enums.event'] = PropTypes.oneOf([
@@ -13811,6 +14271,10 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_shop_redact'] = PropTypes.
13811
14271
  shop_domain: PropTypes.string.isRequired,
13812
14272
  });
13813
14273
 
14274
+ T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
14275
+ name: PropTypes.string.isRequired,
14276
+ });
14277
+
13814
14278
  T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
13815
14279
  applicationPrimaryAccountNumber: PropTypes.string.isRequired,
13816
14280
  applicationExpirationDate: PropTypes.string.isRequired,
@@ -14084,6 +14548,7 @@ export const channelTokenReference = T['io.flow.v0.models.channel_token_referenc
14084
14548
  export const channelTransaction = T['io.flow.v0.models.channel_transaction'];
14085
14549
  export const channelTransactionDeleted = T['io.flow.v0.models.channel_transaction_deleted'];
14086
14550
  export const channelTransactionDeletedV2 = T['io.flow.v0.models.channel_transaction_deleted_v2'];
14551
+ export const channelTransactionPayout = T['io.flow.v0.models.channel_transaction_payout'];
14087
14552
  export const channelTransactionUpserted = T['io.flow.v0.models.channel_transaction_upserted'];
14088
14553
  export const channelUpserted = T['io.flow.v0.models.channel_upserted'];
14089
14554
  export const channelViesRegistration = T['io.flow.v0.models.channel_vies_registration'];
@@ -14137,6 +14602,8 @@ export const costEstimateSource = T['io.flow.v0.enums.cost_estimate_source'];
14137
14602
  export const country = T['io.flow.v0.models.country'];
14138
14603
  export const countryAvailability = T['io.flow.v0.models.country_availability'];
14139
14604
  export const countryDefaults = T['io.flow.v0.models.country_defaults'];
14605
+ export const countryOfOrigin = T['io.flow.v0.models.country_of_origin'];
14606
+ export const countryOfOriginForm = T['io.flow.v0.models.country_of_origin_form'];
14140
14607
  export const countryPicker = T['io.flow.v0.models.country_picker'];
14141
14608
  export const countryPickerForm = T['io.flow.v0.models.country_picker_form'];
14142
14609
  export const countryPickerSource = T['io.flow.v0.enums.country_picker_source'];
@@ -14198,6 +14665,7 @@ export const datetimeRange = T['io.flow.v0.models.datetime_range'];
14198
14665
  export const datetimeWithTimezone = T['io.flow.v0.models.datetime_with_timezone'];
14199
14666
  export const dayOfWeek = T['io.flow.v0.enums.day_of_week'];
14200
14667
  export const ddpRatecardFee = T['io.flow.v0.models.ddp_ratecard_fee'];
14668
+ export const deactivationPutForm = T['io.flow.v0.models.deactivation_put_form'];
14201
14669
  export const defaultBankAccountForm = T['io.flow.v0.models.default_bank_account_form'];
14202
14670
  export const deliveredDuty = T['io.flow.v0.enums.delivered_duty'];
14203
14671
  export const deliveredDutyDisplayType = T['io.flow.v0.enums.delivered_duty_display_type'];
@@ -14427,6 +14895,7 @@ export const fulfillmentRouting = T['io.flow.v0.enums.fulfillment_routing'];
14427
14895
  export const fullyHarmonizedItemUpserted = T['io.flow.v0.models.fully_harmonized_item_upserted'];
14428
14896
  export const gatewayAuthenticationData = T['io.flow.v0.unions.gateway_authentication_data'];
14429
14897
  export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authentication_data_form'];
14898
+ export const generateLoad = T['io.flow.v0.models.generate_load'];
14430
14899
  export const genericError = T['io.flow.v0.models.generic_error'];
14431
14900
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
14432
14901
  export const genericReservationError = T['io.flow.v0.models.generic_reservation_error'];
@@ -14641,6 +15110,7 @@ export const merchantApplicationForm = T['io.flow.v0.unions.merchant_application
14641
15110
  export const merchantApplicationPutForm = T['io.flow.v0.unions.merchant_application_put_form'];
14642
15111
  export const merchantApplicationUpserted = T['io.flow.v0.models.merchant_application_upserted'];
14643
15112
  export const merchantApplicationsSummary = T['io.flow.v0.unions.merchant_applications_summary'];
15113
+ export const merchantDeactivated = T['io.flow.v0.models.merchant_deactivated'];
14644
15114
  export const merchantGiftCardBalance = T['io.flow.v0.models.merchant_gift_card_balance'];
14645
15115
  export const merchantGiftCardBalanceForm = T['io.flow.v0.models.merchant_gift_card_balance_form'];
14646
15116
  export const merchantGiftCardError = T['io.flow.v0.models.merchant_gift_card_error'];
@@ -14849,6 +15319,7 @@ export const organizationTokenReference = T['io.flow.v0.models.organization_toke
14849
15319
  export const organizationTokenV2 = T['io.flow.v0.models.organization_token_v2'];
14850
15320
  export const organizationTokenV2Reference = T['io.flow.v0.models.organization_token_v2_reference'];
14851
15321
  export const organizationTransactionDeleted = T['io.flow.v0.models.organization_transaction_deleted'];
15322
+ export const organizationTransactionPayout = T['io.flow.v0.models.organization_transaction_payout'];
14852
15323
  export const organizationTransactionUpserted = T['io.flow.v0.models.organization_transaction_upserted'];
14853
15324
  export const organizationType = T['io.flow.v0.enums.organization_type'];
14854
15325
  export const organizationUpserted = T['io.flow.v0.models.organization_upserted'];
@@ -14856,7 +15327,11 @@ export const organizationUpsertedV2 = T['io.flow.v0.models.organization_upserted
14856
15327
  export const organizationVersion = T['io.flow.v0.models.organization_version'];
14857
15328
  export const originalPrices = T['io.flow.v0.models.original_prices'];
14858
15329
  export const outboundCartonFee = T['io.flow.v0.models.outbound_carton_fee'];
14859
- export const oversizedShipmentRatecardFee = T['io.flow.v0.models.oversized_shipment_ratecard_fee'];
15330
+ export const oversizePieceSurchargeRatecardFee = T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'];
15331
+ export const oversizePieceSurchargeServiceFee = T['io.flow.v0.models.oversize_piece_surcharge_service_fee'];
15332
+ export const packageDimensions = T['io.flow.v0.models.package_dimensions'];
15333
+ export const packageDimensionsForm = T['io.flow.v0.models.package_dimensions_form'];
15334
+ export const packageDimensionsSource = T['io.flow.v0.enums.package_dimensions_source'];
14860
15335
  export const packaging = T['io.flow.v0.models.packaging'];
14861
15336
  export const parentTransactionSummary = T['io.flow.v0.models.parent_transaction_summary'];
14862
15337
  export const partnerCenter = T['io.flow.v0.models.partner_center'];
@@ -14993,6 +15468,7 @@ export const paymentUpserted = T['io.flow.v0.models.payment_upserted'];
14993
15468
  export const paymentVersion = T['io.flow.v0.models.payment_version'];
14994
15469
  export const payoutAttachment = T['io.flow.v0.models.payout_attachment'];
14995
15470
  export const payoutAttachmentType = T['io.flow.v0.enums.payout_attachment_type'];
15471
+ export const payoutReference = T['io.flow.v0.models.payout_reference'];
14996
15472
  export const payoutStatus = T['io.flow.v0.unions.payout_status'];
14997
15473
  export const payoutStatusFailed = T['io.flow.v0.models.payout_status_failed'];
14998
15474
  export const payoutStatusFailureCode = T['io.flow.v0.enums.payout_status_failure_code'];
@@ -15013,9 +15489,11 @@ export const pfsInventoryCheckResponse = T['io.flow.v0.models.pfs_inventory_chec
15013
15489
  export const pfsInventoryCheckResponseItem = T['io.flow.v0.models.pfs_inventory_check_response_item'];
15014
15490
  export const pfsInventoryStatus = T['io.flow.v0.models.pfs_inventory_status'];
15015
15491
  export const physicalDelivery = T['io.flow.v0.models.physical_delivery'];
15492
+ export const physicalDeliveryPreferredService = T['io.flow.v0.models.physical_delivery_preferred_service'];
15016
15493
  export const physicalDeliverySpecialSerivce = T['io.flow.v0.enums.physical_delivery_special_serivce'];
15017
15494
  export const postPaymentRedirectUrls = T['io.flow.v0.models.post_payment_redirect_urls'];
15018
15495
  export const postalType = T['io.flow.v0.enums.postal_type'];
15496
+ export const preferredServiceSelectionStrategy = T['io.flow.v0.enums.preferred_service_selection_strategy'];
15019
15497
  export const price = T['io.flow.v0.models.price'];
15020
15498
  export const priceAccuracy = T['io.flow.v0.enums.price_accuracy'];
15021
15499
  export const priceBook = T['io.flow.v0.models.price_book'];
@@ -15264,6 +15742,7 @@ export const shippingConfigurationVersion = T['io.flow.v0.models.shipping_config
15264
15742
  export const shippingLabel = T['io.flow.v0.models.shipping_label'];
15265
15743
  export const shippingLabelDocument = T['io.flow.v0.models.shipping_label_document'];
15266
15744
  export const shippingLabelForm = T['io.flow.v0.unions.shipping_label_form'];
15745
+ export const shippingLabelHopCostItemizedEstimate = T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'];
15267
15746
  export const shippingLabelHopSummary = T['io.flow.v0.models.shipping_label_hop_summary'];
15268
15747
  export const shippingLabelLaneSummary = T['io.flow.v0.models.shipping_label_lane_summary'];
15269
15748
  export const shippingLabelPackage = T['io.flow.v0.models.shipping_label_package'];
@@ -15338,6 +15817,7 @@ export const statement = T['io.flow.v0.models.statement'];
15338
15817
  export const statementAttachmentType = T['io.flow.v0.enums.statement_attachment_type'];
15339
15818
  export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
15340
15819
  export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
15820
+ export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
15341
15821
  export const strategy = T['io.flow.v0.enums.strategy'];
15342
15822
  export const streetAddress = T['io.flow.v0.models.street_address'];
15343
15823
  export const stripeAuthenticationData = T['io.flow.v0.models.stripe_authentication_data'];
@@ -15400,7 +15880,6 @@ export const taxSetting = T['io.flow.v0.unions.tax_setting'];
15400
15880
  export const taxVerificationResult = T['io.flow.v0.enums.tax_verification_result'];
15401
15881
  export const taxabilityType = T['io.flow.v0.enums.taxability_type'];
15402
15882
  export const taxabilityValue = T['io.flow.v0.enums.taxability_value'];
15403
- export const test = T['io.flow.v0.models.test'];
15404
15883
  export const testUpserted = T['io.flow.v0.models.test_upserted'];
15405
15884
  export const thirdPartyLogisticsPartner = T['io.flow.v0.models.third_party_logistics_partner'];
15406
15885
  export const threeDSecure = T['io.flow.v0.models.three_d_secure'];
@@ -15463,15 +15942,22 @@ export const tradeAgreementStatus = T['io.flow.v0.enums.trade_agreement_status']
15463
15942
  export const transaction = T['io.flow.v0.models.transaction'];
15464
15943
  export const transactionDetails = T['io.flow.v0.unions.transaction_details'];
15465
15944
  export const transactionDetailsCard = T['io.flow.v0.models.transaction_details_card'];
15945
+ export const transactionMetadata = T['io.flow.v0.unions.transaction_metadata'];
15946
+ export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
15466
15947
  export const transactionNetworkDetailsCard = T['io.flow.v0.models.transaction_network_details_card'];
15948
+ export const transactionPayoutPendingReason = T['io.flow.v0.enums.transaction_payout_pending_reason'];
15949
+ export const transactionReference = T['io.flow.v0.models.transaction_reference'];
15467
15950
  export const transactionSource = T['io.flow.v0.enums.transaction_source'];
15468
15951
  export const transactionUpserted = T['io.flow.v0.models.transaction_upserted'];
15469
15952
  export const transitEstimate = T['io.flow.v0.models.transit_estimate'];
15470
15953
  export const transitWindow = T['io.flow.v0.models.transit_window'];
15471
15954
  export const ultimateBeneficiaryOwner = T['io.flow.v0.models.ultimate_beneficiary_owner'];
15472
15955
  export const unharmonizedItemExportType = T['io.flow.v0.models.unharmonized_item_export_type'];
15956
+ export const unitOfLength = T['io.flow.v0.enums.unit_of_length'];
15473
15957
  export const unitOfMeasurement = T['io.flow.v0.enums.unit_of_measurement'];
15474
15958
  export const unitOfTime = T['io.flow.v0.enums.unit_of_time'];
15959
+ export const unitOfVolume = T['io.flow.v0.enums.unit_of_volume'];
15960
+ export const unitOfWeight = T['io.flow.v0.enums.unit_of_weight'];
15475
15961
  export const updatePolicy = T['io.flow.v0.enums.update_policy'];
15476
15962
  export const updateType = T['io.flow.v0.enums.update_type'];
15477
15963
  export const upload = T['io.flow.v0.models.upload'];