@flowio/api-internal-prop-types 9.24.65 → 9.24.67

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.
@@ -159,6 +159,14 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
159
159
  item_numbers: PropTypes.arrayOf(PropTypes.string),
160
160
  });
161
161
 
162
+ T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
163
+
164
+ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
165
+ id: PropTypes.string.isRequired,
166
+ selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
167
+ });
168
+
169
+ T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
162
170
  T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
163
171
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
164
172
  T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
@@ -369,6 +377,35 @@ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
369
377
  account_number: PropTypes.string.isRequired,
370
378
  });
371
379
 
380
+ T['io.flow.billing.v0.models.payout_reference'] = PropTypes.exact({
381
+ id: PropTypes.string.isRequired,
382
+ });
383
+
384
+ T['io.flow.billing.v0.enums.transaction_payout_pending_reason'] = PropTypes.oneOf([
385
+ 'waiting_for_full_refund',
386
+ 'waiting_for_fulfillment',
387
+ 'waiting_for_in_transit',
388
+ 'waiting_for_next_payout_date',
389
+ 'external_fulfillment_missing_tracking_info',
390
+ 'waiting_for_positive_account_balance',
391
+ ]);
392
+
393
+ T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
394
+ id: PropTypes.string.isRequired,
395
+ });
396
+
397
+ T['io.flow.billing.v0.models.organization_transaction_payout'] = PropTypes.exact({
398
+ transaction: T['io.flow.billing.v0.models.transaction_reference'].isRequired,
399
+ waiting_for: T['io.flow.billing.v0.enums.transaction_payout_pending_reason'],
400
+ payout: T['io.flow.billing.v0.models.payout_reference'],
401
+ });
402
+
403
+ T['io.flow.billing.v0.models.channel_transaction_payout'] = PropTypes.exact({
404
+ transaction: T['io.flow.billing.v0.models.transaction_reference'].isRequired,
405
+ waiting_for: T['io.flow.billing.v0.enums.transaction_payout_pending_reason'],
406
+ payout: T['io.flow.billing.v0.models.payout_reference'],
407
+ });
408
+
372
409
  T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
373
410
  discriminator: PropTypes.oneOf(['no_payout']).isRequired,
374
411
  placeholder: PropTypes.string,
@@ -707,13 +744,6 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_applications_summary'] = PropT
707
744
  T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'],
708
745
  ]);
709
746
 
710
- T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
711
- full_name: PropTypes.string,
712
- company: PropTypes.string,
713
- email: PropTypes.string,
714
- phone: PropTypes.string,
715
- });
716
-
717
747
  T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'] = PropTypes.exact({
718
748
  full_name: PropTypes.string,
719
749
  streets: PropTypes.arrayOf(PropTypes.string),
@@ -741,6 +771,149 @@ T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.ex
741
771
 
742
772
  T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
743
773
  T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'] = PropTypes.oneOf(['shopify_console', 'existing_3pl_integration', 'byo_integration']);
774
+
775
+ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
776
+ preference: T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'].isRequired,
777
+ description: PropTypes.string,
778
+ });
779
+
780
+ T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
781
+ 'base_price',
782
+ 'discount',
783
+ 'currency_margin',
784
+ 'percent_item_margin',
785
+ 'fixed_item_margin',
786
+ 'duties_item_price',
787
+ 'duties_added_margin',
788
+ 'duties_rounding',
789
+ 'duties_deminimis',
790
+ 'vat_item_price',
791
+ 'vat_added_margin',
792
+ 'vat_rounding',
793
+ 'vat_duties_item_price',
794
+ 'vat_duties_added_margin',
795
+ 'vat_duties_rounding',
796
+ 'vat_deminimis',
797
+ 'item_price_percent_sales_margin',
798
+ 'margins_percent_sales_margin',
799
+ 'rounding_percent_sales_margin',
800
+ 'vat_percent_sales_margin',
801
+ 'vat_duty_percent_sales_margin',
802
+ 'duty_percent_sales_margin',
803
+ ]);
804
+
805
+ T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
806
+
807
+ T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
808
+ key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
809
+ amount: PropTypes.number.isRequired,
810
+ label: PropTypes.string.isRequired,
811
+ name: PropTypes.string,
812
+ });
813
+
814
+ T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
815
+
816
+ T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
817
+ key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
818
+ components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
819
+ amount: PropTypes.number.isRequired,
820
+ label: PropTypes.string.isRequired,
821
+ name: PropTypes.string,
822
+ basis: PropTypes.number,
823
+ });
824
+
825
+ T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
826
+ discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
827
+ currency: PropTypes.string.isRequired,
828
+ minimum: PropTypes.number,
829
+ maximum: PropTypes.number,
830
+ });
831
+
832
+ T['io.flow.shopify.merchant.config.v0.models.individual'] = PropTypes.exact({
833
+ discriminator: PropTypes.oneOf(['individual']).isRequired,
834
+ legal_name: PropTypes.string.isRequired,
835
+ tax_registration_number: PropTypes.string,
836
+ date_of_birth: PropTypes.string.isRequired,
837
+ });
838
+
839
+ T['io.flow.shopify.merchant.config.v0.models.company'] = PropTypes.exact({
840
+ discriminator: PropTypes.oneOf(['company']).isRequired,
841
+ legal_name: PropTypes.string.isRequired,
842
+ incorporation_country: PropTypes.string.isRequired,
843
+ incorporation_jurisdiction: PropTypes.string.isRequired,
844
+ tax_registration_number: PropTypes.string.isRequired,
845
+ });
846
+
847
+ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
848
+ T['io.flow.shopify.merchant.config.v0.models.company'],
849
+ T['io.flow.shopify.merchant.config.v0.models.individual'],
850
+ ]);
851
+
852
+ T['io.flow.billing.true.up.v0.models.shipping_method_reference'] = PropTypes.exact({
853
+ id: PropTypes.string.isRequired,
854
+ });
855
+
856
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
857
+ discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
858
+ fee: PropTypes.number.isRequired,
859
+ });
860
+
861
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
862
+ discriminator: PropTypes.oneOf(['percentage']).isRequired,
863
+ percentage: PropTypes.number.isRequired,
864
+ });
865
+
866
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
867
+ discriminator: PropTypes.oneOf(['flat']).isRequired,
868
+ placeholder: PropTypes.string,
869
+ });
870
+
871
+ T['io.flow.billing.true.up.v0.models.weights_dimensional'] = PropTypes.exact({
872
+ weight: PropTypes.number.isRequired,
873
+ length: PropTypes.number.isRequired,
874
+ width: PropTypes.number.isRequired,
875
+ height: PropTypes.number.isRequired,
876
+ });
877
+
878
+ T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
879
+ weight: PropTypes.number.isRequired,
880
+ });
881
+
882
+ T['io.flow.billing.true.up.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
883
+
884
+ T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
885
+ shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
886
+ name: PropTypes.string.isRequired,
887
+ });
888
+
889
+ T['io.flow.billing.true.up.v0.models.metadata_weights'] = PropTypes.exact({
890
+ selected: T['io.flow.billing.true.up.v0.enums.weight_selection'].isRequired,
891
+ dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
892
+ dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
893
+ });
894
+
895
+ T['io.flow.billing.true.up.v0.models.metadata_ratecard'] = PropTypes.exact({
896
+ id: PropTypes.string.isRequired,
897
+ proposition: T['io.flow.billing.true.up.v0.models.metadata_proposition'].isRequired,
898
+ });
899
+
900
+ T['io.flow.billing.true.up.v0.models.label_metadata'] = PropTypes.exact({
901
+ ratecard: T['io.flow.billing.true.up.v0.models.metadata_ratecard'].isRequired,
902
+ weights: T['io.flow.billing.true.up.v0.models.metadata_weights'].isRequired,
903
+ });
904
+
905
+ T['io.flow.billing.true.up.v0.models.label_destination'] = PropTypes.exact({
906
+ country: PropTypes.string.isRequired,
907
+ });
908
+
909
+ T['io.flow.billing.true.up.v0.models.true_up_label_summary'] = PropTypes.exact({
910
+ id: PropTypes.string.isRequired,
911
+ carrier_service_id: PropTypes.string.isRequired,
912
+ carrier_tracking_number: PropTypes.string.isRequired,
913
+ flow_tracking_number: PropTypes.string.isRequired,
914
+ created_at: PropTypes.string.isRequired,
915
+ });
916
+
744
917
  T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
745
918
 
746
919
  T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
@@ -950,6 +1123,7 @@ T['io.flow.experience.v0.models.free_shipping_order_promotion_form'] = PropTypes
950
1123
  });
951
1124
 
952
1125
  T['io.flow.experience.v0.unions.order_promotion_form'] = PropTypes.oneOfType([T['io.flow.experience.v0.models.free_shipping_order_promotion_form']]);
1126
+ T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
953
1127
  T['io.flow.experience.v0.enums.price_facet_boundary'] = PropTypes.oneOf(['min', 'max']);
954
1128
 
955
1129
  T['io.flow.experience.v0.models.experience_price_facet_conversion_request'] = PropTypes.exact({
@@ -974,6 +1148,11 @@ T['io.flow.experience.v0.models.experience_price_book_mapping_put_form'] = PropT
974
1148
  price_books: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_book_mapping_form']).isRequired,
975
1149
  });
976
1150
 
1151
+ T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
1152
+ id: PropTypes.string.isRequired,
1153
+ key: PropTypes.string.isRequired,
1154
+ });
1155
+
977
1156
  T['io.flow.experience.v0.enums.experience_payment_method_tag'] = PropTypes.oneOf(['display']);
978
1157
 
979
1158
  T['io.flow.experience.v0.models.experience_payment_method_rule_form'] = PropTypes.exact({
@@ -1003,6 +1182,12 @@ T['io.flow.experience.v0.models.experience_checkout_configuration_settings'] = P
1003
1182
  configuration: T['io.flow.experience.v0.models.experience_configuration_reference'].isRequired,
1004
1183
  });
1005
1184
 
1185
+ T['io.flow.experience.v0.models.pricing_settings'] = PropTypes.exact({
1186
+ editable: PropTypes.bool.isRequired,
1187
+ default_tax_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1188
+ default_duty_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1189
+ });
1190
+
1006
1191
  T['io.flow.catalog.v0.models.subcatalog_reference'] = PropTypes.exact({
1007
1192
  discriminator: PropTypes.oneOf(['subcatalog_reference']).isRequired,
1008
1193
  id: PropTypes.string.isRequired,
@@ -1186,6 +1371,15 @@ T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exa
1186
1371
 
1187
1372
  T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
1188
1373
  T['io.flow.common.v0.enums.input_specification_type'] = PropTypes.oneOf(['text', 'number']);
1374
+ T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
1375
+
1376
+ T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
1377
+ currency: PropTypes.string.isRequired,
1378
+ name: PropTypes.string.isRequired,
1379
+ includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
1380
+ status: T['io.flow.common.v0.enums.price_book_status'],
1381
+ });
1382
+
1189
1383
  T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
1190
1384
  T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
1191
1385
 
@@ -2834,7 +3028,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
2834
3028
  starts_at: PropTypes.string.isRequired,
2835
3029
  ends_at: PropTypes.string,
2836
3030
  prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
2837
- prerequisite_shipping_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
3031
+ prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
2838
3032
  usage_limit: PropTypes.number,
2839
3033
  entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
2840
3034
  entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
@@ -2844,7 +3038,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
2844
3038
  once_per_customer: PropTypes.bool.isRequired,
2845
3039
  target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
2846
3040
  customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
2847
- prerequisite_saved_search_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
3041
+ customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
2848
3042
  prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
2849
3043
  prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
2850
3044
  prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
@@ -3126,6 +3320,7 @@ T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
3126
3320
  T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
3127
3321
  executeThreeD: PropTypes.bool,
3128
3322
  allow3DS2: PropTypes.bool,
3323
+ manualCapture: PropTypes.bool,
3129
3324
  });
3130
3325
 
3131
3326
  T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
@@ -3312,6 +3507,11 @@ T['io.flow.adyen.v0.models.three_d_secure_data'] = PropTypes.exact({
3312
3507
  xid: PropTypes.string,
3313
3508
  });
3314
3509
 
3510
+ T['io.flow.adyen.v0.models.authorize_request_additional_data'] = PropTypes.exact({
3511
+ manualCapture: PropTypes.bool,
3512
+ 'paywithgoogle.token': PropTypes.string,
3513
+ });
3514
+
3315
3515
  T['io.flow.adyen.v0.models.bank_account'] = PropTypes.exact({
3316
3516
  countryCode: PropTypes.string.isRequired,
3317
3517
  ownerName: PropTypes.string.isRequired,
@@ -3377,6 +3577,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
3377
3577
  redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3378
3578
  redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3379
3579
  storePaymentMethod: PropTypes.bool,
3580
+ captureDelayHours: PropTypes.number,
3380
3581
  });
3381
3582
 
3382
3583
  T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
@@ -3426,7 +3627,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3426
3627
  merchantOrderReference: PropTypes.string,
3427
3628
  shopperInteraction: T['io.flow.adyen.v0.enums.shopper_interaction'].isRequired,
3428
3629
  bankAccount: T['io.flow.adyen.v0.models.bank_account'],
3429
- additionalData: PropTypes.object,
3630
+ additionalData: T['io.flow.adyen.v0.models.authorize_request_additional_data'],
3430
3631
  mpiData: T['io.flow.adyen.v0.models.three_d_secure_data'],
3431
3632
  selectedBrand: PropTypes.string,
3432
3633
  browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
@@ -3434,6 +3635,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3434
3635
  recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
3435
3636
  mcc: PropTypes.string,
3436
3637
  metadata: PropTypes.object,
3638
+ captureDelayHours: PropTypes.number,
3437
3639
  });
3438
3640
 
3439
3641
  T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
@@ -3747,14 +3949,14 @@ T['io.flow.external.paypal.v1.enums.payer_status'] = PropTypes.oneOf(['VERIFIED'
3747
3949
  T['io.flow.external.paypal.v1.enums.payment_method'] = PropTypes.oneOf(['paypal']);
3748
3950
 
3749
3951
  T['io.flow.external.paypal.v1.models.shipping_address'] = PropTypes.exact({
3750
- recipient_name: PropTypes.string.isRequired,
3952
+ recipient_name: PropTypes.string,
3751
3953
  line1: PropTypes.string.isRequired,
3752
3954
  line2: PropTypes.string,
3753
- city: PropTypes.string.isRequired,
3955
+ city: PropTypes.string,
3754
3956
  country_code: PropTypes.string.isRequired,
3755
- postal_code: PropTypes.string.isRequired,
3957
+ postal_code: PropTypes.string,
3756
3958
  phone: PropTypes.string,
3757
- state: PropTypes.string.isRequired,
3959
+ state: PropTypes.string,
3758
3960
  });
3759
3961
 
3760
3962
  T['io.flow.external.paypal.v1.models.payer_info'] = PropTypes.exact({
@@ -4475,6 +4677,25 @@ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
4475
4677
  name: PropTypes.string.isRequired,
4476
4678
  });
4477
4679
 
4680
+ T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
4681
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
4682
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
4683
+ T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
4684
+ ]);
4685
+
4686
+ T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
4687
+
4688
+ T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
4689
+ amount: PropTypes.number.isRequired,
4690
+ type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
4691
+ detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
4692
+ });
4693
+
4694
+ T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
4695
+ amount: PropTypes.number.isRequired,
4696
+ weight: PropTypes.number.isRequired,
4697
+ });
4698
+
4478
4699
  T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
4479
4700
  id: PropTypes.string.isRequired,
4480
4701
  flow_tracking_number: PropTypes.string.isRequired,
@@ -4566,6 +4787,113 @@ T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
4566
4787
  });
4567
4788
 
4568
4789
  T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
4790
+
4791
+ T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
4792
+ 'de-AT',
4793
+ 'en-AT',
4794
+ 'nl-BE',
4795
+ 'fr-BE',
4796
+ 'en-BE',
4797
+ 'de-DE',
4798
+ 'en-DE',
4799
+ 'da-DK',
4800
+ 'en-DK',
4801
+ 'es-ES',
4802
+ 'en-ES',
4803
+ 'fi-FI',
4804
+ 'sv-FI',
4805
+ 'en-FI',
4806
+ 'en-GB',
4807
+ 'en-IE',
4808
+ 'it-IT',
4809
+ 'en-IT',
4810
+ 'nl-NL',
4811
+ 'en-NL',
4812
+ 'nb-NO',
4813
+ 'en-NO',
4814
+ 'sv-SE',
4815
+ 'en-SE',
4816
+ 'en-US',
4817
+ 'es-US',
4818
+ 'fr-FR',
4819
+ 'en-FR',
4820
+ 'cs-CZ',
4821
+ 'en-CZ',
4822
+ 'el-GR',
4823
+ 'en-GR',
4824
+ 'en-AU',
4825
+ 'en-NZ',
4826
+ 'en-CA',
4827
+ 'fr-CA',
4828
+ 'pl-PL',
4829
+ 'en-PL',
4830
+ 'pt-PT',
4831
+ 'en-PT',
4832
+ 'de-CH',
4833
+ 'fr-CH',
4834
+ 'it-CH',
4835
+ 'en-CH',
4836
+ ]);
4837
+
4838
+ T['io.flow.stripe.v0.enums.payment_method_category_klarna'] = PropTypes.oneOf(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']);
4839
+
4840
+ T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTypes.exact({
4841
+ payment_method_category: T['io.flow.stripe.v0.enums.payment_method_category_klarna'],
4842
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
4843
+ });
4844
+
4845
+ T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
4846
+ 'card_not_enrolled',
4847
+ 'network_not_supported',
4848
+ 'abandoned',
4849
+ 'canceled',
4850
+ 'rejected',
4851
+ 'bypassed',
4852
+ 'protocol_error',
4853
+ ]);
4854
+
4855
+ T['io.flow.stripe.v0.enums.three_ds_result'] = PropTypes.oneOf([
4856
+ 'authenticated',
4857
+ 'attempt_acknowledged',
4858
+ 'exempted',
4859
+ 'not_supported',
4860
+ 'failed',
4861
+ 'processing_error',
4862
+ ]);
4863
+
4864
+ T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['challenge', 'frictionless']);
4865
+
4866
+ T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
4867
+ authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
4868
+ result: T['io.flow.stripe.v0.enums.three_ds_result'],
4869
+ result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
4870
+ version: PropTypes.string,
4871
+ });
4872
+
4873
+ T['io.flow.stripe.v0.models.network_token_used'] = PropTypes.exact({
4874
+ used: PropTypes.bool,
4875
+ });
4876
+
4877
+ T['io.flow.stripe.v0.enums.card_network'] = PropTypes.oneOf([
4878
+ 'amex',
4879
+ 'cartes_bancaires',
4880
+ 'diners',
4881
+ 'discover',
4882
+ 'eftpos_au',
4883
+ 'interac',
4884
+ 'jcb',
4885
+ 'mastercard',
4886
+ 'unionpay',
4887
+ 'visa',
4888
+ 'unknown',
4889
+ ]);
4890
+
4891
+ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
4892
+ count: PropTypes.number,
4893
+ interval: PropTypes.string,
4894
+ type: PropTypes.string,
4895
+ });
4896
+
4569
4897
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
4570
4898
 
4571
4899
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
@@ -4658,6 +4986,19 @@ T['io.flow.stripe.v0.models.address'] = PropTypes.exact({
4658
4986
  state: PropTypes.string,
4659
4987
  });
4660
4988
 
4989
+ T['io.flow.stripe.v0.models.visa_checkout_information'] = PropTypes.exact({
4990
+ billing_address: T['io.flow.stripe.v0.models.address'],
4991
+ email: PropTypes.string,
4992
+ name: PropTypes.string,
4993
+ shipping_address: T['io.flow.stripe.v0.models.address'],
4994
+ });
4995
+
4996
+ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
4997
+ type: PropTypes.oneOf(['visa_checkout']).isRequired,
4998
+ visa_checkout: T['io.flow.stripe.v0.models.visa_checkout_information'].isRequired,
4999
+ dynamic_last4: PropTypes.string,
5000
+ });
5001
+
4661
5002
  T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
4662
5003
  address: T['io.flow.stripe.v0.models.address'].isRequired,
4663
5004
  name: PropTypes.string,
@@ -4687,6 +5028,19 @@ T['io.flow.stripe.v0.models.order'] = PropTypes.exact({
4687
5028
  shipping: T['io.flow.stripe.v0.models.shipping'],
4688
5029
  });
4689
5030
 
5031
+ T['io.flow.stripe.v0.models.masterpass_information'] = PropTypes.exact({
5032
+ billing_address: T['io.flow.stripe.v0.models.address'],
5033
+ email: PropTypes.string,
5034
+ name: PropTypes.string,
5035
+ shipping_address: T['io.flow.stripe.v0.models.address'],
5036
+ });
5037
+
5038
+ T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
5039
+ type: PropTypes.oneOf(['masterpass']).isRequired,
5040
+ masterpass: T['io.flow.stripe.v0.models.masterpass_information'].isRequired,
5041
+ dynamic_last4: PropTypes.string,
5042
+ });
5043
+
4690
5044
  T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
4691
5045
  address: T['io.flow.stripe.v0.models.address'].isRequired,
4692
5046
  email: PropTypes.string,
@@ -4872,6 +5226,11 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
4872
5226
  transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
4873
5227
  });
4874
5228
 
5229
+ T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
5230
+ type: PropTypes.oneOf(['klarna']).isRequired,
5231
+ klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
5232
+ });
5233
+
4875
5234
  T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
4876
5235
  amount: PropTypes.number,
4877
5236
  currency: PropTypes.string,
@@ -5045,6 +5404,62 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
5045
5404
  type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
5046
5405
  });
5047
5406
 
5407
+ T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
5408
+ address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
5409
+ address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
5410
+ cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
5411
+ });
5412
+
5413
+ T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
5414
+
5415
+ T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
5416
+ type: T['io.flow.stripe.v0.enums.apple_pay_type'].isRequired,
5417
+ });
5418
+
5419
+ T['io.flow.stripe.v0.models.apple_pay'] = PropTypes.exact({
5420
+ type: PropTypes.oneOf(['apple_pay']).isRequired,
5421
+ apple_pay: T['io.flow.stripe.v0.models.apple_pay_information'].isRequired,
5422
+ dynamic_last4: PropTypes.string,
5423
+ });
5424
+
5425
+ T['io.flow.stripe.v0.unions.card_wallet'] = PropTypes.oneOfType([
5426
+ T['io.flow.stripe.v0.models.masterpass'],
5427
+ T['io.flow.stripe.v0.models.apple_pay'],
5428
+ T['io.flow.stripe.v0.models.visa_checkout'],
5429
+ ]);
5430
+
5431
+ T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropTypes.exact({
5432
+ brand: PropTypes.string,
5433
+ checks: T['io.flow.stripe.v0.models.card_checks'],
5434
+ country: PropTypes.string,
5435
+ exp_month: PropTypes.number,
5436
+ exp_year: PropTypes.number,
5437
+ fingerprint: PropTypes.string,
5438
+ funding: T['io.flow.stripe.v0.enums.card_funding_type'],
5439
+ installments: T['io.flow.stripe.v0.models.plan'],
5440
+ last4: PropTypes.string,
5441
+ mandate: PropTypes.string,
5442
+ network: T['io.flow.stripe.v0.enums.card_network'],
5443
+ network_token: T['io.flow.stripe.v0.models.network_token_used'],
5444
+ three_d_secure: T['io.flow.stripe.v0.models.three_d_secure_charge'],
5445
+ capture_before: PropTypes.number,
5446
+ description: PropTypes.string,
5447
+ iin: PropTypes.string,
5448
+ issuer: PropTypes.string,
5449
+ wallet: T['io.flow.stripe.v0.unions.card_wallet'],
5450
+ network_transaction_id: PropTypes.string,
5451
+ });
5452
+
5453
+ T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
5454
+ type: PropTypes.oneOf(['card']).isRequired,
5455
+ card: T['io.flow.stripe.v0.models.payment_method_details_card_information'].isRequired,
5456
+ });
5457
+
5458
+ T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
5459
+ T['io.flow.stripe.v0.models.payment_method_details_card'],
5460
+ T['io.flow.stripe.v0.models.payment_method_details_klarna'],
5461
+ ]);
5462
+
5048
5463
  T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
5049
5464
 
5050
5465
  T['io.flow.stripe.v0.models.owner'] = PropTypes.exact({
@@ -5126,7 +5541,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
5126
5541
  payment_intent: PropTypes.string,
5127
5542
  calculated_statement_descriptor: PropTypes.string,
5128
5543
  statement_descriptor: PropTypes.string,
5129
- payment_method_details: PropTypes.object,
5544
+ payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
5130
5545
  });
5131
5546
 
5132
5547
  T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
@@ -5215,7 +5630,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
5215
5630
  payment_intent: PropTypes.string,
5216
5631
  calculated_statement_descriptor: PropTypes.string,
5217
5632
  statement_descriptor: PropTypes.string,
5218
- payment_method_details: PropTypes.object,
5633
+ payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
5219
5634
  });
5220
5635
 
5221
5636
  T['io.flow.stripe.v0.models.tos_acceptance'] = PropTypes.exact({
@@ -5272,6 +5687,7 @@ T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
5272
5687
  cookie_created_at: PropTypes.number,
5273
5688
  session_duration: PropTypes.number,
5274
5689
  fingerprint: PropTypes.string,
5690
+ fraud_references: PropTypes.objectOf(PropTypes.string),
5275
5691
  });
5276
5692
 
5277
5693
  T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
@@ -5436,6 +5852,8 @@ T['io.flow.payment.v0.models.card_reference'] = PropTypes.exact({
5436
5852
  token: PropTypes.string.isRequired,
5437
5853
  });
5438
5854
 
5855
+ T['io.flow.payment.v0.enums.stored_method_usage_step'] = PropTypes.oneOf(['initial', 'subsequent']);
5856
+
5439
5857
  T['io.flow.payment.v0.models.issuer_summary'] = PropTypes.exact({
5440
5858
  iin: PropTypes.string.isRequired,
5441
5859
  name: PropTypes.string,
@@ -5860,9 +6278,23 @@ T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
5860
6278
 
5861
6279
  T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
5862
6280
 
5863
- T['io.flow.export.v0.models.export_delivery_email'] = PropTypes.exact({
5864
- discriminator: PropTypes.oneOf(['export_delivery_email']).isRequired,
5865
- email: PropTypes.string.isRequired,
6281
+ T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
6282
+ key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6283
+ label: PropTypes.string.isRequired,
6284
+ });
6285
+
6286
+ T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
6287
+ id: PropTypes.string.isRequired,
6288
+ key: PropTypes.string.isRequired,
6289
+ currency: PropTypes.string.isRequired,
6290
+ name: PropTypes.string.isRequired,
6291
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
6292
+ status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
6293
+ });
6294
+
6295
+ T['io.flow.export.v0.models.export_delivery_email'] = PropTypes.exact({
6296
+ discriminator: PropTypes.oneOf(['export_delivery_email']).isRequired,
6297
+ email: PropTypes.string.isRequired,
5866
6298
  });
5867
6299
 
5868
6300
  T['io.flow.export.v0.models.localized_item_prices_export_type'] = PropTypes.exact({
@@ -6004,93 +6436,6 @@ T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
6004
6436
  default_locale: PropTypes.string,
6005
6437
  });
6006
6438
 
6007
- T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
6008
-
6009
- T['io.flow.experience.v0.models.pricing_settings'] = PropTypes.exact({
6010
- editable: PropTypes.bool.isRequired,
6011
- default_tax_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
6012
- default_duty_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
6013
- });
6014
-
6015
- T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
6016
- 'base_price',
6017
- 'discount',
6018
- 'currency_margin',
6019
- 'percent_item_margin',
6020
- 'fixed_item_margin',
6021
- 'duties_item_price',
6022
- 'duties_added_margin',
6023
- 'duties_rounding',
6024
- 'duties_deminimis',
6025
- 'vat_item_price',
6026
- 'vat_added_margin',
6027
- 'vat_rounding',
6028
- 'vat_duties_item_price',
6029
- 'vat_duties_added_margin',
6030
- 'vat_duties_rounding',
6031
- 'vat_deminimis',
6032
- 'item_price_percent_sales_margin',
6033
- 'margins_percent_sales_margin',
6034
- 'rounding_percent_sales_margin',
6035
- 'vat_percent_sales_margin',
6036
- 'vat_duty_percent_sales_margin',
6037
- 'duty_percent_sales_margin',
6038
- ]);
6039
-
6040
- T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
6041
- id: PropTypes.string.isRequired,
6042
- key: PropTypes.string.isRequired,
6043
- });
6044
-
6045
- T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
6046
- T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
6047
-
6048
- T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
6049
- currency: PropTypes.string.isRequired,
6050
- name: PropTypes.string.isRequired,
6051
- includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6052
- status: T['io.flow.common.v0.enums.price_book_status'],
6053
- });
6054
-
6055
- T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
6056
- key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6057
- label: PropTypes.string.isRequired,
6058
- });
6059
-
6060
- T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
6061
- id: PropTypes.string.isRequired,
6062
- key: PropTypes.string.isRequired,
6063
- currency: PropTypes.string.isRequired,
6064
- name: PropTypes.string.isRequired,
6065
- includes: T['io.flow.common.v0.models.included_levies'].isRequired,
6066
- status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
6067
- });
6068
-
6069
- T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
6070
- key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
6071
- amount: PropTypes.number.isRequired,
6072
- label: PropTypes.string.isRequired,
6073
- name: PropTypes.string,
6074
- });
6075
-
6076
- T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
6077
-
6078
- T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
6079
- key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
6080
- components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
6081
- amount: PropTypes.number.isRequired,
6082
- label: PropTypes.string.isRequired,
6083
- name: PropTypes.string,
6084
- basis: PropTypes.number,
6085
- });
6086
-
6087
- T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
6088
- discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
6089
- currency: PropTypes.string.isRequired,
6090
- minimum: PropTypes.number,
6091
- maximum: PropTypes.number,
6092
- });
6093
-
6094
6439
  T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
6095
6440
  'adjustment',
6096
6441
  'vat_deminimis',
@@ -6152,6 +6497,8 @@ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
6152
6497
  center_key: PropTypes.string.isRequired,
6153
6498
  });
6154
6499
 
6500
+ T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
6501
+
6155
6502
  T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
6156
6503
  id: PropTypes.string.isRequired,
6157
6504
  number: PropTypes.string.isRequired,
@@ -6443,16 +6790,17 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
6443
6790
  id: PropTypes.string.isRequired,
6444
6791
  });
6445
6792
 
6446
- T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
6447
- preference: T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'].isRequired,
6448
- description: PropTypes.string,
6449
- });
6450
-
6451
6793
  T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
6452
6794
  volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
6453
6795
  number_transactions: PropTypes.number,
6454
6796
  });
6455
6797
 
6798
+ T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
6799
+ company: PropTypes.string,
6800
+ email: PropTypes.string,
6801
+ phone: PropTypes.string,
6802
+ });
6803
+
6456
6804
  T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
6457
6805
  warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
6458
6806
  warehouse_url: PropTypes.string,
@@ -6466,38 +6814,6 @@ T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropT
6466
6814
  center_id: PropTypes.string,
6467
6815
  });
6468
6816
 
6469
- T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
6470
- 'accessories',
6471
- 'animals_and_pet_supplies',
6472
- 'apparel',
6473
- 'apparel_and_accessories',
6474
- 'arts_and_entertainment',
6475
- 'baby_and_toddler',
6476
- 'business_and_industrial',
6477
- 'cameras_and_optics',
6478
- 'electronics',
6479
- 'food_beverages_and_tobacco',
6480
- 'furniture',
6481
- 'gift_cards',
6482
- 'hardware',
6483
- 'health_and_beauty',
6484
- 'home_and_garden',
6485
- 'jewelry',
6486
- 'luggage_and_bags',
6487
- 'mature',
6488
- 'media',
6489
- 'office_supplies',
6490
- 'paper_and_art',
6491
- 'religious_and_ceremonial',
6492
- 'software',
6493
- 'sporting_goods',
6494
- 'sports_and_fitness',
6495
- 'toys_and_games',
6496
- 'toys_hobbies_gifts',
6497
- 'vehicles_and_parts',
6498
- 'other',
6499
- ]);
6500
-
6501
6817
  T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
6502
6818
  name: PropTypes.string.isRequired,
6503
6819
  dob: PropTypes.string.isRequired,
@@ -7372,6 +7688,27 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
7372
7688
  T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
7373
7689
  ]);
7374
7690
 
7691
+ T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
7692
+ discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
7693
+ id: PropTypes.string.isRequired,
7694
+ });
7695
+
7696
+ T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
7697
+ discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
7698
+ id: PropTypes.string.isRequired,
7699
+ });
7700
+
7701
+ T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
7702
+ discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
7703
+ id: PropTypes.string.isRequired,
7704
+ });
7705
+
7706
+ T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
7707
+ T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
7708
+ T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
7709
+ T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
7710
+ ]);
7711
+
7375
7712
  T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
7376
7713
  discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
7377
7714
  percent: PropTypes.number.isRequired,
@@ -7399,6 +7736,13 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
7399
7736
  id: PropTypes.string.isRequired,
7400
7737
  });
7401
7738
 
7739
+ T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
7740
+ discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
7741
+ event_id: PropTypes.string.isRequired,
7742
+ timestamp: PropTypes.string.isRequired,
7743
+ id: PropTypes.string.isRequired,
7744
+ });
7745
+
7402
7746
  T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
7403
7747
  discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
7404
7748
  event_id: PropTypes.string.isRequired,
@@ -7461,6 +7805,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
7461
7805
  id: PropTypes.string.isRequired,
7462
7806
  });
7463
7807
 
7808
+ T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'] = PropTypes.exact({
7809
+ discriminator: PropTypes.oneOf(['unassigned_merchant_guid_deleted']).isRequired,
7810
+ event_id: PropTypes.string.isRequired,
7811
+ timestamp: PropTypes.string.isRequired,
7812
+ id: PropTypes.string.isRequired,
7813
+ });
7814
+
7464
7815
  T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropTypes.exact({
7465
7816
  discriminator: PropTypes.oneOf(['partner_organization_settings_deleted']).isRequired,
7466
7817
  event_id: PropTypes.string.isRequired,
@@ -7469,6 +7820,22 @@ T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropType
7469
7820
  id: PropTypes.string.isRequired,
7470
7821
  });
7471
7822
 
7823
+ T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'] = PropTypes.exact({
7824
+ discriminator: PropTypes.oneOf(['merchant_guid_assignment_deleted']).isRequired,
7825
+ event_id: PropTypes.string.isRequired,
7826
+ timestamp: PropTypes.string.isRequired,
7827
+ organization: PropTypes.string.isRequired,
7828
+ id: PropTypes.string.isRequired,
7829
+ });
7830
+
7831
+ T['io.flow.internal.v0.models.organization_deactivation_deleted'] = PropTypes.exact({
7832
+ discriminator: PropTypes.oneOf(['organization_deactivation_deleted']).isRequired,
7833
+ event_id: PropTypes.string.isRequired,
7834
+ timestamp: PropTypes.string.isRequired,
7835
+ organization: PropTypes.string.isRequired,
7836
+ id: PropTypes.string.isRequired,
7837
+ });
7838
+
7472
7839
  T['io.flow.internal.v0.models.organization_status_change_deleted'] = PropTypes.exact({
7473
7840
  discriminator: PropTypes.oneOf(['organization_status_change_deleted']).isRequired,
7474
7841
  event_id: PropTypes.string.isRequired,
@@ -7552,6 +7919,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
7552
7919
  id: PropTypes.string.isRequired,
7553
7920
  });
7554
7921
 
7922
+ T['io.flow.internal.v0.models.label_request_error_deleted'] = PropTypes.exact({
7923
+ discriminator: PropTypes.oneOf(['label_request_error_deleted']).isRequired,
7924
+ event_id: PropTypes.string.isRequired,
7925
+ timestamp: PropTypes.string.isRequired,
7926
+ organization: PropTypes.string.isRequired,
7927
+ id: PropTypes.string.isRequired,
7928
+ });
7929
+
7555
7930
  T['io.flow.internal.v0.models.import_failed'] = PropTypes.exact({
7556
7931
  discriminator: PropTypes.oneOf(['import_failed']).isRequired,
7557
7932
  event_id: PropTypes.string.isRequired,
@@ -7974,6 +8349,14 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
7974
8349
  id: PropTypes.string.isRequired,
7975
8350
  });
7976
8351
 
8352
+ T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
8353
+ discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
8354
+ event_id: PropTypes.string.isRequired,
8355
+ timestamp: PropTypes.string.isRequired,
8356
+ organization: PropTypes.string.isRequired,
8357
+ id: PropTypes.string.isRequired,
8358
+ });
8359
+
7977
8360
  T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
7978
8361
  discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
7979
8362
  event_id: PropTypes.string.isRequired,
@@ -7981,6 +8364,13 @@ T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
7981
8364
  id: PropTypes.string.isRequired,
7982
8365
  });
7983
8366
 
8367
+ T['io.flow.internal.v0.models.transaction_statement_deleted'] = PropTypes.exact({
8368
+ discriminator: PropTypes.oneOf(['transaction_statement_deleted']).isRequired,
8369
+ event_id: PropTypes.string.isRequired,
8370
+ timestamp: PropTypes.string.isRequired,
8371
+ id: PropTypes.string.isRequired,
8372
+ });
8373
+
7984
8374
  T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
7985
8375
  discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
7986
8376
  event_id: PropTypes.string.isRequired,
@@ -8087,6 +8477,14 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
8087
8477
  id: PropTypes.string.isRequired,
8088
8478
  });
8089
8479
 
8480
+ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
8481
+ discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
8482
+ event_id: PropTypes.string.isRequired,
8483
+ timestamp: PropTypes.string.isRequired,
8484
+ organization: PropTypes.string.isRequired,
8485
+ id: PropTypes.string.isRequired,
8486
+ });
8487
+
8090
8488
  T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
8091
8489
  discriminator: PropTypes.oneOf(['weee']).isRequired,
8092
8490
  label: PropTypes.string.isRequired,
@@ -8268,6 +8666,14 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
8268
8666
  T['io.flow.internal.v0.models.paypal_authorization_payload'],
8269
8667
  ]);
8270
8668
 
8669
+ T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'] = PropTypes.oneOf(['pending', 'processing', 'processed', 'failed']);
8670
+
8671
+ T['io.flow.internal.v0.models.wash_carrier_actual_file'] = PropTypes.exact({
8672
+ id: PropTypes.string.isRequired,
8673
+ url: PropTypes.string.isRequired,
8674
+ status: T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'].isRequired,
8675
+ });
8676
+
8271
8677
  T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
8272
8678
  id: PropTypes.string.isRequired,
8273
8679
  });
@@ -8315,6 +8721,19 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
8315
8721
  usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
8316
8722
  });
8317
8723
 
8724
+ T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
8725
+ id: PropTypes.string.isRequired,
8726
+ merchant_guid: PropTypes.string.isRequired,
8727
+ created_at: PropTypes.string.isRequired,
8728
+ });
8729
+
8730
+ T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'] = PropTypes.exact({
8731
+ discriminator: PropTypes.oneOf(['unassigned_merchant_guid_upserted']).isRequired,
8732
+ event_id: PropTypes.string.isRequired,
8733
+ timestamp: PropTypes.string.isRequired,
8734
+ unassigned_merchant_guid: T['io.flow.internal.v0.models.unassigned_merchant_guid'].isRequired,
8735
+ });
8736
+
8318
8737
  T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
8319
8738
 
8320
8739
  T['io.flow.internal.v0.models.tracking_event'] = PropTypes.exact({
@@ -9051,6 +9470,24 @@ T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropT
9051
9470
  shopify_markets_shop_statistics: T['io.flow.internal.v0.models.shopify_shop_statistics'].isRequired,
9052
9471
  });
9053
9472
 
9473
+ T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
9474
+ total_order_count: PropTypes.number.isRequired,
9475
+ });
9476
+
9477
+ T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'] = PropTypes.exact({
9478
+ total_order_count: PropTypes.number.isRequired,
9479
+ });
9480
+
9481
+ T['io.flow.internal.v0.models.shopify_markets_discrepancy'] = PropTypes.exact({
9482
+ organization_id: PropTypes.string.isRequired,
9483
+ count: PropTypes.number.isRequired,
9484
+ });
9485
+
9486
+ T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'] = PropTypes.exact({
9487
+ total_count: PropTypes.number.isRequired,
9488
+ discrepancies: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_markets_discrepancy']).isRequired,
9489
+ });
9490
+
9054
9491
  T['io.flow.experience.v0.models.experience_reference'] = PropTypes.exact({
9055
9492
  discriminator: PropTypes.oneOf(['experience_reference']).isRequired,
9056
9493
  key: PropTypes.string.isRequired,
@@ -9242,28 +9679,6 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
9242
9679
  });
9243
9680
 
9244
9681
  T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
9245
-
9246
- T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
9247
- name: PropTypes.string.isRequired,
9248
- description: PropTypes.string.isRequired,
9249
- action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
9250
- regions: PropTypes.arrayOf(PropTypes.string).isRequired,
9251
- positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9252
- negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9253
- value_threshold_usd: PropTypes.number,
9254
- });
9255
-
9256
- T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
9257
- id: PropTypes.string.isRequired,
9258
- name: PropTypes.string.isRequired,
9259
- description: PropTypes.string.isRequired,
9260
- action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
9261
- regions: PropTypes.arrayOf(PropTypes.string).isRequired,
9262
- positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9263
- negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9264
- value_threshold_usd: PropTypes.number,
9265
- });
9266
-
9267
9682
  T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
9268
9683
 
9269
9684
  T['io.flow.internal.v0.models.restriction_keyword_metadata'] = PropTypes.exact({
@@ -9289,6 +9704,18 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
9289
9704
  decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
9290
9705
  });
9291
9706
 
9707
+ T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
9708
+
9709
+ T['io.flow.internal.v0.models.report'] = PropTypes.exact({
9710
+ key: PropTypes.string.isRequired,
9711
+ status: T['io.flow.internal.v0.enums.report_status'].isRequired,
9712
+ from: PropTypes.string.isRequired,
9713
+ to: PropTypes.string.isRequired,
9714
+ organization_id: PropTypes.string,
9715
+ sales_url: PropTypes.string,
9716
+ refunds_url: PropTypes.string,
9717
+ });
9718
+
9292
9719
  T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
9293
9720
  T['io.flow.internal.v0.enums.rebound_configuration_status'] = PropTypes.oneOf(['active', 'inactive']);
9294
9721
 
@@ -9363,6 +9790,7 @@ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'] = PropT
9363
9790
  T['io.flow.internal.v0.models.rate_level'] = PropTypes.exact({
9364
9791
  id: PropTypes.string.isRequired,
9365
9792
  name: PropTypes.string.isRequired,
9793
+ key: PropTypes.string.isRequired,
9366
9794
  });
9367
9795
 
9368
9796
  T['io.flow.internal.v0.models.ratecard_rate_level_upserted'] = PropTypes.exact({
@@ -9465,20 +9893,6 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
9465
9893
  'preferential_rate',
9466
9894
  ]);
9467
9895
 
9468
- T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
9469
-
9470
- T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
9471
- status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
9472
- count: PropTypes.number.isRequired,
9473
- });
9474
-
9475
- T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
9476
- rule_id: PropTypes.string.isRequired,
9477
- rule_name: PropTypes.string.isRequired,
9478
- status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
9479
- count: PropTypes.number.isRequired,
9480
- });
9481
-
9482
9896
  T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
9483
9897
  positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9484
9898
  negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -9495,12 +9909,6 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
9495
9909
  count: PropTypes.number.isRequired,
9496
9910
  });
9497
9911
 
9498
- T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
9499
- rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
9500
- statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
9501
- count: PropTypes.number.isRequired,
9502
- });
9503
-
9504
9912
  T['io.flow.internal.v0.models.harmonization_column_setting'] = PropTypes.exact({
9505
9913
  column: PropTypes.string.isRequired,
9506
9914
  position: PropTypes.number.isRequired,
@@ -9804,17 +10212,17 @@ T['io.flow.session.v0.models.session_format'] = PropTypes.exact({
9804
10212
  currency: T['io.flow.session.v0.models.session_currency_format'].isRequired,
9805
10213
  });
9806
10214
 
9807
- T['io.flow.experience.v0.models.experience_currency_format_form'] = PropTypes.exact({
10215
+ T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
9808
10216
  symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
9809
10217
  label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
9810
10218
  });
9811
10219
 
9812
- T['io.flow.experience.v0.models.experience_currency_format'] = PropTypes.exact({
10220
+ T['io.flow.experience.v0.models.experience_currency_format_form'] = PropTypes.exact({
9813
10221
  symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
9814
10222
  label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
9815
10223
  });
9816
10224
 
9817
- T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
10225
+ T['io.flow.experience.v0.models.experience_currency_format'] = PropTypes.exact({
9818
10226
  symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
9819
10227
  label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
9820
10228
  });
@@ -9941,6 +10349,20 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
9941
10349
 
9942
10350
  T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
9943
10351
 
10352
+ T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
10353
+ id: PropTypes.string.isRequired,
10354
+ deactivate_at: PropTypes.string.isRequired,
10355
+ created_at: PropTypes.string.isRequired,
10356
+ });
10357
+
10358
+ T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
10359
+ discriminator: PropTypes.oneOf(['organization_deactivation_upserted']).isRequired,
10360
+ event_id: PropTypes.string.isRequired,
10361
+ timestamp: PropTypes.string.isRequired,
10362
+ organization: PropTypes.string.isRequired,
10363
+ organization_deactivation: T['io.flow.internal.v0.models.organization_deactivation'].isRequired,
10364
+ });
10365
+
9944
10366
  T['io.flow.internal.v0.models.organization_business_entity'] = PropTypes.exact({
9945
10367
  id: PropTypes.string.isRequired,
9946
10368
  name: PropTypes.string.isRequired,
@@ -9986,6 +10408,8 @@ T['io.flow.internal.v0.models.organization_bank_account_upserted'] = PropTypes.e
9986
10408
  organization_bank_account: T['io.flow.billing.v0.models.organization_bank_account'].isRequired,
9987
10409
  });
9988
10410
 
10411
+ T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
10412
+
9989
10413
  T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
9990
10414
  id: PropTypes.string.isRequired,
9991
10415
  number: PropTypes.string.isRequired,
@@ -10105,6 +10529,83 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
10105
10529
  });
10106
10530
 
10107
10531
  T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
10532
+ T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
10533
+
10534
+ T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
10535
+ domain: PropTypes.string.isRequired,
10536
+ status: T['io.flow.common.v0.enums.user_status'].isRequired,
10537
+ });
10538
+
10539
+ T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
10540
+ id: PropTypes.string.isRequired,
10541
+ domain: PropTypes.string.isRequired,
10542
+ status: T['io.flow.common.v0.enums.user_status'].isRequired,
10543
+ });
10544
+
10545
+ T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
10546
+ status: T['io.flow.common.v0.enums.user_status'].isRequired,
10547
+ });
10548
+
10549
+ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
10550
+ 'billing',
10551
+ 'b2b_invoicing',
10552
+ 'catalog',
10553
+ 'currency',
10554
+ 'checkout',
10555
+ 'fraud',
10556
+ 'logistics',
10557
+ 'payments',
10558
+ 'shopify_markets',
10559
+ 'integration_partner',
10560
+ 'dtce',
10561
+ 'restrictions',
10562
+ 'organization_status',
10563
+ 'miscellaneous',
10564
+ ]);
10565
+
10566
+ T['io.flow.internal.v0.enums.onboarding_audit_result'] = PropTypes.oneOf(['pass', 'warning', 'fail']);
10567
+ T['io.flow.internal.v0.enums.onboarding_audit_message_level'] = PropTypes.oneOf(['info', 'warning', 'error']);
10568
+
10569
+ T['io.flow.internal.v0.models.onboarding_audit_message'] = PropTypes.exact({
10570
+ message: PropTypes.string.isRequired,
10571
+ level: T['io.flow.internal.v0.enums.onboarding_audit_message_level'].isRequired,
10572
+ });
10573
+
10574
+ T['io.flow.internal.v0.models.onboarding_audit_report_line'] = PropTypes.exact({
10575
+ description: PropTypes.string.isRequired,
10576
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
10577
+ messages: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_message']).isRequired,
10578
+ execution_time_ms: PropTypes.number,
10579
+ });
10580
+
10581
+ T['io.flow.internal.v0.models.onboarding_audit_theme_report'] = PropTypes.exact({
10582
+ name: PropTypes.string.isRequired,
10583
+ key: T['io.flow.internal.v0.enums.onboarding_audit_theme_key'].isRequired,
10584
+ result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
10585
+ lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_report_line']).isRequired,
10586
+ });
10587
+
10588
+ T['io.flow.internal.v0.models.decision'] = PropTypes.exact({
10589
+ id: PropTypes.string.isRequired,
10590
+ status: PropTypes.string.isRequired,
10591
+ old_status: PropTypes.string.isRequired,
10592
+ description: PropTypes.string.isRequired,
10593
+ category: PropTypes.string,
10594
+ shop_url: PropTypes.string,
10595
+ });
10596
+
10597
+ T['io.flow.internal.v0.models.notification'] = PropTypes.exact({
10598
+ order: T['io.flow.internal.v0.models.decision'].isRequired,
10599
+ });
10600
+
10601
+ T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
10602
+ id: PropTypes.string.isRequired,
10603
+ });
10604
+
10605
+ T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
10606
+ discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
10607
+ reason: PropTypes.string.isRequired,
10608
+ });
10108
10609
 
10109
10610
  T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
10110
10611
  discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
@@ -10147,6 +10648,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
10147
10648
  T['io.flow.organization.onboarding.state.v0.models.setup_blocked'],
10148
10649
  T['io.flow.organization.onboarding.state.v0.models.setup_completed'],
10149
10650
  T['io.flow.organization.onboarding.state.v0.models.merchant_activated'],
10651
+ T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'],
10150
10652
  ]);
10151
10653
 
10152
10654
  T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
@@ -10166,82 +10668,36 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
10166
10668
  compliance_full_review_required: PropTypes.bool.isRequired,
10167
10669
  application_received: PropTypes.string.isRequired,
10168
10670
  legal_name: PropTypes.string.isRequired,
10169
- shop_name: PropTypes.string.isRequired,
10671
+ shop_name: PropTypes.string,
10170
10672
  organization_id: PropTypes.string.isRequired,
10171
10673
  onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10172
10674
  setup_completed_at: PropTypes.string,
10173
10675
  activated_at: PropTypes.string,
10174
10676
  gmv: PropTypes.number.isRequired,
10175
10677
  health_score: PropTypes.number.isRequired,
10678
+ audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
10176
10679
  blocked_since: PropTypes.string,
10177
10680
  });
10178
10681
 
10179
- T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
10180
-
10181
- T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
10182
- domain: PropTypes.string.isRequired,
10183
- status: T['io.flow.common.v0.enums.user_status'].isRequired,
10184
- });
10185
-
10186
- T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
10187
- id: PropTypes.string.isRequired,
10188
- domain: PropTypes.string.isRequired,
10189
- status: T['io.flow.common.v0.enums.user_status'].isRequired,
10190
- });
10191
-
10192
- T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
10193
- status: T['io.flow.common.v0.enums.user_status'].isRequired,
10194
- });
10195
-
10196
- T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
10197
- 'billing',
10198
- 'b2b_invoicing',
10199
- 'catalog',
10200
- 'currency',
10201
- 'checkout',
10202
- 'fraud',
10203
- 'logistics',
10204
- 'payments',
10205
- 'shopify_markets',
10206
- 'integration_partner',
10207
- 'dtce',
10208
- 'restrictions',
10209
- 'organization_status',
10210
- 'miscellaneous',
10211
- ]);
10212
-
10213
- T['io.flow.internal.v0.enums.onboarding_audit_result'] = PropTypes.oneOf(['pass', 'warning', 'fail']);
10214
- T['io.flow.internal.v0.enums.onboarding_audit_message_level'] = PropTypes.oneOf(['info', 'warning', 'error']);
10215
-
10216
- T['io.flow.internal.v0.models.onboarding_audit_message'] = PropTypes.exact({
10217
- message: PropTypes.string.isRequired,
10218
- level: T['io.flow.internal.v0.enums.onboarding_audit_message_level'].isRequired,
10219
- });
10220
-
10221
- T['io.flow.internal.v0.models.onboarding_audit_report_line'] = PropTypes.exact({
10222
- description: PropTypes.string.isRequired,
10223
- result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
10224
- messages: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_message']).isRequired,
10225
- });
10226
-
10227
- T['io.flow.internal.v0.models.onboarding_audit_theme_report'] = PropTypes.exact({
10228
- name: PropTypes.string.isRequired,
10229
- key: T['io.flow.internal.v0.enums.onboarding_audit_theme_key'].isRequired,
10230
- result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
10231
- lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_report_line']).isRequired,
10682
+ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
10683
+ organization_id: PropTypes.string.isRequired,
10684
+ shop_name: PropTypes.string,
10685
+ legal_name: PropTypes.string.isRequired,
10686
+ onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10232
10687
  });
10233
10688
 
10234
- T['io.flow.internal.v0.models.decision'] = PropTypes.exact({
10689
+ T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
10235
10690
  id: PropTypes.string.isRequired,
10236
- status: PropTypes.string.isRequired,
10237
- old_status: PropTypes.string.isRequired,
10238
- description: PropTypes.string.isRequired,
10239
- category: PropTypes.string,
10240
- shop_url: PropTypes.string,
10691
+ merchant_guid: PropTypes.string.isRequired,
10692
+ created_at: PropTypes.string.isRequired,
10241
10693
  });
10242
10694
 
10243
- T['io.flow.internal.v0.models.notification'] = PropTypes.exact({
10244
- order: T['io.flow.internal.v0.models.decision'].isRequired,
10695
+ T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'] = PropTypes.exact({
10696
+ discriminator: PropTypes.oneOf(['merchant_guid_assignment_upserted']).isRequired,
10697
+ event_id: PropTypes.string.isRequired,
10698
+ timestamp: PropTypes.string.isRequired,
10699
+ organization: PropTypes.string.isRequired,
10700
+ merchant_guid_assignment: T['io.flow.internal.v0.models.merchant_guid_assignment'].isRequired,
10245
10701
  });
10246
10702
 
10247
10703
  T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
@@ -10252,6 +10708,13 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'] = P
10252
10708
  status: T['io.flow.common.v0.enums.organization_status'].isRequired,
10253
10709
  });
10254
10710
 
10711
+ T['io.flow.internal.v0.models.organizations_audit_check_report'] = PropTypes.exact({
10712
+ organization_id: PropTypes.string.isRequired,
10713
+ organization_status: T['io.flow.common.v0.enums.organization_status'].isRequired,
10714
+ onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10715
+ audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
10716
+ });
10717
+
10255
10718
  T['io.flow.internal.v0.models.organization_status_change'] = PropTypes.exact({
10256
10719
  id: PropTypes.string.isRequired,
10257
10720
  previous_status: T['io.flow.common.v0.enums.organization_status'],
@@ -10369,12 +10832,13 @@ T['io.flow.shopify.markets.v0.models.shopify_order_duty'] = PropTypes.exact({
10369
10832
  T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.exact({
10370
10833
  code: PropTypes.string,
10371
10834
  price: PropTypes.string.isRequired,
10372
- source: PropTypes.string.isRequired,
10835
+ source: PropTypes.string,
10373
10836
  title: PropTypes.string.isRequired,
10374
10837
  tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
10375
10838
  carrier_identifier: PropTypes.string,
10376
10839
  price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10377
10840
  discounted_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10841
+ discount_allocations: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_discount_allocation']),
10378
10842
  });
10379
10843
 
10380
10844
  T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
@@ -10383,7 +10847,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
10383
10847
  grams: PropTypes.number,
10384
10848
  id: PropTypes.number.isRequired,
10385
10849
  price: PropTypes.string,
10386
- price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
10850
+ price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
10387
10851
  product_id: PropTypes.number,
10388
10852
  quantity: PropTypes.number.isRequired,
10389
10853
  requires_shipping: PropTypes.bool.isRequired,
@@ -10392,7 +10856,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
10392
10856
  variant_id: PropTypes.number,
10393
10857
  variant_title: PropTypes.string,
10394
10858
  vendor: PropTypes.string,
10395
- name: PropTypes.string,
10859
+ name: PropTypes.string.isRequired,
10396
10860
  gift_card: PropTypes.bool.isRequired,
10397
10861
  properties: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_property']).isRequired,
10398
10862
  taxable: PropTypes.bool.isRequired,
@@ -10481,13 +10945,14 @@ T['io.flow.shopify.markets.v0.models.shopify_order_address'] = PropTypes.exact({
10481
10945
  zip: PropTypes.string,
10482
10946
  });
10483
10947
 
10484
- T['io.flow.shopify.markets.v0.models.shopify_update_shipping_address'] = PropTypes.exact({
10948
+ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
10485
10949
  id: PropTypes.number.isRequired,
10486
- shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'].isRequired,
10950
+ shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10951
+ note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
10487
10952
  });
10488
10953
 
10489
- T['io.flow.shopify.markets.v0.models.shopify_order_update_shipping_address_form'] = PropTypes.exact({
10490
- order: T['io.flow.shopify.markets.v0.models.shopify_update_shipping_address'].isRequired,
10954
+ T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
10955
+ order: T['io.flow.shopify.markets.v0.models.shopify_update_order'].isRequired,
10491
10956
  });
10492
10957
 
10493
10958
  T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact({
@@ -10610,6 +11075,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
10610
11075
  send_receipt: PropTypes.bool,
10611
11076
  metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
10612
11077
  merchant_of_record_app_id: PropTypes.number,
11078
+ total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
10613
11079
  });
10614
11080
 
10615
11081
  T['io.flow.shopify.markets.v0.models.shopify_orders_wrapper'] = PropTypes.exact({
@@ -10929,40 +11395,40 @@ T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
10929
11395
  ends_at: PropTypes.string,
10930
11396
  });
10931
11397
 
10932
- T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
10933
- sku: PropTypes.string.isRequired,
11398
+ T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
10934
11399
  price_book_key: PropTypes.string.isRequired,
10935
- price_book_item_key: PropTypes.string.isRequired,
10936
- item_name: PropTypes.string.isRequired,
11400
+ item_query: PropTypes.string.isRequired,
10937
11401
  amount: PropTypes.number.isRequired,
11402
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
10938
11403
  item_attributes: PropTypes.objectOf(PropTypes.string),
10939
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
10940
11404
  });
10941
11405
 
10942
- T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
10943
- item_number: PropTypes.string.isRequired,
11406
+ T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
10944
11407
  price_book_key: PropTypes.string.isRequired,
10945
- price_book_item_key: PropTypes.string.isRequired,
10946
- item_name: PropTypes.string.isRequired,
11408
+ item_number: PropTypes.string.isRequired,
10947
11409
  amount: PropTypes.number.isRequired,
11410
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
10948
11411
  item_attributes: PropTypes.objectOf(PropTypes.string),
10949
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
10950
11412
  });
10951
11413
 
10952
- T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
11414
+ T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
11415
+ sku: PropTypes.string.isRequired,
10953
11416
  price_book_key: PropTypes.string.isRequired,
10954
- item_query: PropTypes.string.isRequired,
11417
+ price_book_item_key: PropTypes.string.isRequired,
11418
+ item_name: PropTypes.string.isRequired,
10955
11419
  amount: PropTypes.number.isRequired,
10956
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
10957
11420
  item_attributes: PropTypes.objectOf(PropTypes.string),
11421
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
10958
11422
  });
10959
11423
 
10960
- T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
10961
- price_book_key: PropTypes.string.isRequired,
11424
+ T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
10962
11425
  item_number: PropTypes.string.isRequired,
11426
+ price_book_key: PropTypes.string.isRequired,
11427
+ price_book_item_key: PropTypes.string.isRequired,
11428
+ item_name: PropTypes.string.isRequired,
10963
11429
  amount: PropTypes.number.isRequired,
10964
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
10965
11430
  item_attributes: PropTypes.objectOf(PropTypes.string),
11431
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
10966
11432
  });
10967
11433
 
10968
11434
  T['io.flow.internal.v0.enums.content_status'] = PropTypes.oneOf(['draft', 'live', 'archived']);
@@ -11110,6 +11576,11 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
11110
11576
  code: PropTypes.string.isRequired,
11111
11577
  });
11112
11578
 
11579
+ T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
11580
+ amount: PropTypes.number.isRequired,
11581
+ description: PropTypes.string,
11582
+ });
11583
+
11113
11584
  T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'] = PropTypes.exact({
11114
11585
  id: PropTypes.string.isRequired,
11115
11586
  });
@@ -11143,6 +11614,7 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
11143
11614
  label: T['io.flow.label.v0.models.label_reference'],
11144
11615
  in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
11145
11616
  delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
11617
+ rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
11146
11618
  });
11147
11619
 
11148
11620
  T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
@@ -11182,6 +11654,21 @@ T['io.flow.internal.v0.models.taxonomy_category'] = PropTypes.exact({
11182
11654
  children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.classification_taxonomy']).isRequired,
11183
11655
  });
11184
11656
 
11657
+ T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
11658
+ discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
11659
+ fee: PropTypes.number.isRequired,
11660
+ });
11661
+
11662
+ T['io.flow.internal.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
11663
+ discriminator: PropTypes.oneOf(['percentage']).isRequired,
11664
+ percentage: PropTypes.number.isRequired,
11665
+ });
11666
+
11667
+ T['io.flow.internal.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
11668
+ discriminator: PropTypes.oneOf(['flat']).isRequired,
11669
+ placeholder: PropTypes.string,
11670
+ });
11671
+
11185
11672
  T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
11186
11673
  id: PropTypes.string.isRequired,
11187
11674
  name: PropTypes.string.isRequired,
@@ -11212,6 +11699,79 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
11212
11699
 
11213
11700
  T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
11214
11701
 
11702
+ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
11703
+ 'merchant',
11704
+ 'merchant_integration',
11705
+ 'shopify_integration',
11706
+ 'globale_cx',
11707
+ 'globale_system',
11708
+ ]);
11709
+
11710
+ T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
11711
+ weight: PropTypes.number.isRequired,
11712
+ length: PropTypes.number.isRequired,
11713
+ width: PropTypes.number.isRequired,
11714
+ height: PropTypes.number.isRequired,
11715
+ });
11716
+
11717
+ T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
11718
+ weight: PropTypes.number.isRequired,
11719
+ });
11720
+
11721
+ T['io.flow.internal.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
11722
+
11723
+ T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
11724
+ shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
11725
+ name: PropTypes.string.isRequired,
11726
+ });
11727
+
11728
+ T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
11729
+ selected: T['io.flow.internal.v0.enums.weight_selection'].isRequired,
11730
+ dead: T['io.flow.internal.v0.models.weights_dead'],
11731
+ dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
11732
+ });
11733
+
11734
+ T['io.flow.internal.v0.models.metadata_ratecard'] = PropTypes.exact({
11735
+ id: PropTypes.string.isRequired,
11736
+ proposition: T['io.flow.internal.v0.models.metadata_proposition'].isRequired,
11737
+ });
11738
+
11739
+ T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
11740
+ T['io.flow.internal.v0.models.label_surcharge_detail_flat'],
11741
+ T['io.flow.internal.v0.models.label_surcharge_detail_percentage'],
11742
+ T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
11743
+ ]);
11744
+
11745
+ T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
11746
+
11747
+ T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
11748
+ ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
11749
+ weights: T['io.flow.internal.v0.models.metadata_weights'].isRequired,
11750
+ });
11751
+
11752
+ T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
11753
+ country: PropTypes.string.isRequired,
11754
+ });
11755
+
11756
+ T['io.flow.internal.v0.models.label_surcharge'] = PropTypes.exact({
11757
+ amount: PropTypes.number.isRequired,
11758
+ type: T['io.flow.internal.v0.enums.true_up_surcharge_type'].isRequired,
11759
+ detail: T['io.flow.internal.v0.unions.label_surcharge_detail'].isRequired,
11760
+ });
11761
+
11762
+ T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
11763
+ amount: PropTypes.number.isRequired,
11764
+ weight: PropTypes.number.isRequired,
11765
+ });
11766
+
11767
+ T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
11768
+ id: PropTypes.string.isRequired,
11769
+ carrier_service_id: PropTypes.string.isRequired,
11770
+ carrier_tracking_number: PropTypes.string.isRequired,
11771
+ flow_tracking_number: PropTypes.string.isRequired,
11772
+ created_at: PropTypes.string.isRequired,
11773
+ });
11774
+
11215
11775
  T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
11216
11776
  id: PropTypes.string.isRequired,
11217
11777
  item_identifier: PropTypes.string,
@@ -11732,6 +12292,20 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
11732
12292
  afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
11733
12293
  });
11734
12294
 
12295
+ T['io.flow.internal.v0.models.algolia_index_assignment'] = PropTypes.exact({
12296
+ id: PropTypes.string.isRequired,
12297
+ name: PropTypes.string.isRequired,
12298
+ application_id: PropTypes.string.isRequired,
12299
+ });
12300
+
12301
+ T['io.flow.internal.v0.models.index_assignment_upserted'] = PropTypes.exact({
12302
+ discriminator: PropTypes.oneOf(['index_assignment_upserted']).isRequired,
12303
+ event_id: PropTypes.string.isRequired,
12304
+ timestamp: PropTypes.string.isRequired,
12305
+ organization: PropTypes.string.isRequired,
12306
+ assignment: T['io.flow.internal.v0.models.algolia_index_assignment'].isRequired,
12307
+ });
12308
+
11735
12309
  T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'] = PropTypes.exact({
11736
12310
  id: PropTypes.string.isRequired,
11737
12311
  import_id: PropTypes.string.isRequired,
@@ -11921,6 +12495,8 @@ T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.ex
11921
12495
  quantity: PropTypes.number.isRequired,
11922
12496
  });
11923
12497
 
12498
+ T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
12499
+
11924
12500
  T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
11925
12501
  item_number: PropTypes.string.isRequired,
11926
12502
  line_number: PropTypes.number.isRequired,
@@ -11935,35 +12511,221 @@ T['io.flow.internal.v0.models.fulfillment_shipment_tracking'] = PropTypes.exact(
11935
12511
  items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
11936
12512
  });
11937
12513
 
11938
- T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
11939
- item_number: PropTypes.string,
11940
- line_number: PropTypes.string,
11941
- quantity: PropTypes.number.isRequired,
12514
+ T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
12515
+ item_number: PropTypes.string,
12516
+ line_number: PropTypes.string,
12517
+ quantity: PropTypes.number.isRequired,
12518
+ });
12519
+
12520
+ T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
12521
+ T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
12522
+
12523
+ T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
12524
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
12525
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12526
+ });
12527
+
12528
+ T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
12529
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
12530
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12531
+ lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
12532
+ });
12533
+
12534
+ T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
12535
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
12536
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12537
+ });
12538
+
12539
+ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
12540
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
12541
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12542
+ lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
12543
+ });
12544
+
12545
+ T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
12546
+ labels: PropTypes.number.isRequired,
12547
+ total: PropTypes.number.isRequired,
12548
+ });
12549
+
12550
+ T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
12551
+ duty_guarantee: PropTypes.number.isRequired,
12552
+ mor: PropTypes.number.isRequired,
12553
+ fraud: PropTypes.number.isRequired,
12554
+ fx: PropTypes.number.isRequired,
12555
+ processing: PropTypes.number.isRequired,
12556
+ rate_lock: PropTypes.number.isRequired,
12557
+ transfer: PropTypes.number.isRequired,
12558
+ total: PropTypes.number.isRequired,
12559
+ });
12560
+
12561
+ T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
12562
+ fuel: PropTypes.number.isRequired,
12563
+ remote_area: PropTypes.number.isRequired,
12564
+ oversize: PropTypes.number.isRequired,
12565
+ ccf: PropTypes.number.isRequired,
12566
+ total: PropTypes.number.isRequired,
12567
+ });
12568
+
12569
+ T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
12570
+ fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
12571
+ shipping: PropTypes.number.isRequired,
12572
+ tax: PropTypes.number.isRequired,
12573
+ duty: PropTypes.number.isRequired,
12574
+ total: PropTypes.number.isRequired,
12575
+ });
12576
+
12577
+ T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact({
12578
+ tax: PropTypes.number.isRequired,
12579
+ duty: PropTypes.number.isRequired,
12580
+ });
12581
+
12582
+ T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
12583
+ number: PropTypes.string.isRequired,
12584
+ fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
12585
+ });
12586
+
12587
+ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
12588
+ vat_registration_number: PropTypes.string.isRequired,
12589
+ });
12590
+
12591
+ T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
12592
+ subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
12593
+ fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
12594
+ charges: T['io.flow.internal.v0.models.merchant_charges'].isRequired,
12595
+ discounts: PropTypes.number.isRequired,
12596
+ });
12597
+
12598
+ T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
12599
+ fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
12600
+ });
12601
+
12602
+ T['io.flow.internal.v0.models.fulfillment_shipping'] = PropTypes.exact({
12603
+ price: PropTypes.number.isRequired,
12604
+ discount: PropTypes.number.isRequired,
12605
+ tax: PropTypes.number.isRequired,
12606
+ duty: PropTypes.number.isRequired,
12607
+ subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
12608
+ });
12609
+
12610
+ T['io.flow.internal.v0.models.fulfillment_line'] = PropTypes.exact({
12611
+ item: T['io.flow.internal.v0.models.item_summary'].isRequired,
12612
+ quantity: PropTypes.number.isRequired,
12613
+ unit_price: PropTypes.number.isRequired,
12614
+ price: PropTypes.number.isRequired,
12615
+ discount: PropTypes.number.isRequired,
12616
+ tax: PropTypes.number.isRequired,
12617
+ duty: PropTypes.number.isRequired,
12618
+ subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
12619
+ });
12620
+
12621
+ T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
12622
+ country: PropTypes.string.isRequired,
12623
+ province_code: PropTypes.string,
12624
+ });
12625
+
12626
+ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
12627
+ 'millimeter',
12628
+ 'centimeter',
12629
+ 'inch',
12630
+ 'foot',
12631
+ 'cubic_inch',
12632
+ 'cubic_meter',
12633
+ 'gram',
12634
+ 'kilogram',
12635
+ 'meter',
12636
+ 'ounce',
12637
+ 'pound',
12638
+ ]);
12639
+
12640
+ T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
12641
+ value: PropTypes.string.isRequired,
12642
+ units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
12643
+ });
12644
+
12645
+ T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
12646
+ gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
12647
+ dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
12648
+ });
12649
+
12650
+ T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
12651
+ depth: T['io.flow.common.v0.models.measurement'],
12652
+ diameter: T['io.flow.common.v0.models.measurement'],
12653
+ length: T['io.flow.common.v0.models.measurement'],
12654
+ weight: T['io.flow.common.v0.models.measurement'],
12655
+ width: T['io.flow.common.v0.models.measurement'],
12656
+ });
12657
+
12658
+ T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
12659
+ dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
12660
+ });
12661
+
12662
+ T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
12663
+ dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
12664
+ });
12665
+
12666
+ T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
12667
+ discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
12668
+ fulfillment_key: PropTypes.string.isRequired,
12669
+ carrier_tracking_number: PropTypes.string.isRequired,
12670
+ package_dimensions: T['io.flow.common.v0.models.dimension'],
12671
+ service: PropTypes.string,
12672
+ shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
12673
+ });
12674
+
12675
+ T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
12676
+ depth: T['io.flow.common.v0.models.measurement'].isRequired,
12677
+ length: T['io.flow.common.v0.models.measurement'].isRequired,
12678
+ weight: T['io.flow.common.v0.models.measurement'].isRequired,
12679
+ width: T['io.flow.common.v0.models.measurement'].isRequired,
12680
+ });
12681
+
12682
+ T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
12683
+ q: PropTypes.string.isRequired,
12684
+ dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
12685
+ position: PropTypes.number,
12686
+ });
12687
+
12688
+ T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
12689
+ id: PropTypes.string.isRequired,
12690
+ q: PropTypes.string.isRequired,
12691
+ dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
12692
+ position: PropTypes.number.isRequired,
11942
12693
  });
11943
12694
 
11944
- T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
11945
- T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
12695
+ T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
12696
+ discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
12697
+ event_id: PropTypes.string.isRequired,
12698
+ timestamp: PropTypes.string.isRequired,
12699
+ organization: PropTypes.string.isRequired,
12700
+ estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
12701
+ });
11946
12702
 
11947
- T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
11948
- change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11949
- reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12703
+ T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
12704
+ discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
12705
+ event_id: PropTypes.string.isRequired,
12706
+ timestamp: PropTypes.string.isRequired,
12707
+ organization: PropTypes.string.isRequired,
12708
+ estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
11950
12709
  });
11951
12710
 
11952
- T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
11953
- change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11954
- reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
11955
- lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
12711
+ T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
12712
+ id: PropTypes.string.isRequired,
12713
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
12714
+ q: PropTypes.string.isRequired,
12715
+ dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
11956
12716
  });
11957
12717
 
11958
- T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
11959
- change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11960
- reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
12718
+ T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
12719
+ discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
12720
+ event_id: PropTypes.string.isRequired,
12721
+ timestamp: PropTypes.string.isRequired,
12722
+ organization: PropTypes.string.isRequired,
12723
+ estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
11961
12724
  });
11962
12725
 
11963
- T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
11964
- change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11965
- reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
11966
- lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
12726
+ T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
12727
+ weight: PropTypes.number.isRequired,
12728
+ unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
11967
12729
  });
11968
12730
 
11969
12731
  T['io.flow.internal.v0.enums.ftp_intent'] = PropTypes.oneOf([
@@ -12354,12 +13116,14 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'] = PropT
12354
13116
  carrier_id: PropTypes.string,
12355
13117
  service_id: PropTypes.string,
12356
13118
  carrier_tracking_number: PropTypes.string,
13119
+ fulfilled_via_replacement_order: PropTypes.bool,
12357
13120
  });
12358
13121
 
12359
13122
  T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.exact({
12360
13123
  carrier_id: PropTypes.string,
12361
13124
  service_id: PropTypes.string,
12362
13125
  carrier_tracking_number: PropTypes.string,
13126
+ fulfilled_via_replacement_order: PropTypes.bool,
12363
13127
  });
12364
13128
 
12365
13129
  T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
@@ -12729,27 +13493,102 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
12729
13493
  timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
12730
13494
  });
12731
13495
 
12732
- T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
13496
+ T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
13497
+ name: PropTypes.string.isRequired,
13498
+ url: PropTypes.string.isRequired,
13499
+ created_at: PropTypes.string.isRequired,
13500
+ errors: PropTypes.arrayOf(PropTypes.string),
13501
+ processed_at: PropTypes.string,
13502
+ });
12733
13503
 
12734
- T['io.flow.internal.v0.models.erp_vendors_delta'] = PropTypes.exact({
12735
- entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'].isRequired,
12736
- count: PropTypes.number.isRequired,
13504
+ T['io.flow.internal.v0.models.erp_vendor_status_flow_file'] = PropTypes.exact({
13505
+ url: PropTypes.string.isRequired,
13506
+ created_at: PropTypes.string.isRequired,
13507
+ });
13508
+
13509
+ T['io.flow.internal.v0.models.entity_reference'] = PropTypes.exact({
13510
+ id: PropTypes.string.isRequired,
13511
+ });
13512
+
13513
+ T['io.flow.internal.v0.models.erp_vendor_status_entity'] = PropTypes.exact({
13514
+ entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
13515
+ number_differences: PropTypes.number.isRequired,
13516
+ });
13517
+
13518
+ T['io.flow.internal.v0.models.erp_vendor_status'] = PropTypes.exact({
13519
+ entities: PropTypes.arrayOf(T['io.flow.internal.v0.models.erp_vendor_status_entity']).isRequired,
13520
+ latest_flow_file: T['io.flow.internal.v0.models.erp_vendor_status_flow_file'],
13521
+ latest_priority_file: T['io.flow.internal.v0.models.erp_vendor_status_priority_file'],
13522
+ });
13523
+
13524
+ T['io.flow.internal.v0.models.company_reference'] = PropTypes.exact({
13525
+ id: PropTypes.string.isRequired,
13526
+ });
13527
+
13528
+ T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
13529
+ company: T['io.flow.internal.v0.models.company_reference'].isRequired,
13530
+ entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
13531
+ acc_des: PropTypes.string.isRequired,
13532
+ country_name: PropTypes.string.isRequired,
13533
+ acng_code: PropTypes.string.isRequired,
13534
+ code: PropTypes.string.isRequired,
13535
+ branch: PropTypes.string.isRequired,
13536
+ trial_bal_code: PropTypes.string.isRequired,
13537
+ sec_name: PropTypes.string.isRequired,
13538
+ branch_des: PropTypes.string.isRequired,
13539
+ state_a: PropTypes.string.isRequired,
13540
+ bank_code: PropTypes.string.isRequired,
13541
+ id: PropTypes.string.isRequired,
13542
+ tax_code: PropTypes.string,
13543
+ vat_flag: PropTypes.string,
13544
+ w_tax_percent: PropTypes.string,
13545
+ iban: PropTypes.string,
13546
+ confirmed_date: PropTypes.string,
13547
+ w_tax_date: PropTypes.string,
13548
+ w_tax_num_expl: PropTypes.string,
13549
+ phone: PropTypes.string,
13550
+ address: PropTypes.string,
13551
+ address_a: PropTypes.string,
13552
+ address_2: PropTypes.string,
13553
+ address_3: PropTypes.string,
13554
+ state_name: PropTypes.string,
13555
+ zip: PropTypes.string,
13556
+ pay_account: PropTypes.string,
13557
+ comp_num: PropTypes.string,
13558
+ w_tax_num: PropTypes.string,
13559
+ vat_num: PropTypes.string,
13560
+ orig_acc_name: PropTypes.string,
13561
+ form_1099_code: PropTypes.string,
13562
+ state: PropTypes.string,
13563
+ fax: PropTypes.string,
13564
+ details: PropTypes.string,
13565
+ state_code: PropTypes.string,
13566
+ tax_office_code: PropTypes.string,
13567
+ pay_code: PropTypes.string,
13568
+ eacc_des: PropTypes.string,
13569
+ acng_des: PropTypes.string,
12737
13570
  });
12738
13571
 
12739
13572
  T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
12740
13573
 
12741
13574
  T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
12742
13575
  type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
13576
+ name: PropTypes.string.isRequired,
12743
13577
  url: PropTypes.string.isRequired,
12744
13578
  });
12745
13579
 
12746
13580
  T['io.flow.internal.v0.models.erp_priority_file'] = PropTypes.exact({
13581
+ name: PropTypes.string.isRequired,
12747
13582
  id: PropTypes.string.isRequired,
12748
13583
  type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
12749
13584
  url: PropTypes.string.isRequired,
12750
13585
  created_at: PropTypes.string.isRequired,
12751
13586
  });
12752
13587
 
13588
+ T['io.flow.internal.v0.models.erp_flow_file_form'] = PropTypes.exact({
13589
+ type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
13590
+ });
13591
+
12753
13592
  T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
12754
13593
  id: PropTypes.string.isRequired,
12755
13594
  type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
@@ -13038,11 +13877,12 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
13038
13877
  });
13039
13878
 
13040
13879
  T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
13041
- 'suspicious_behavior',
13042
- 'suspicious_past_activity',
13043
- 'risky_velocity',
13880
+ 'merchant_policy',
13044
13881
  'previous_chargebacks',
13045
13882
  'restricted_party_screening',
13883
+ 'risky_velocity',
13884
+ 'suspicious_behavior',
13885
+ 'suspicious_past_activity',
13046
13886
  ]);
13047
13887
 
13048
13888
  T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
@@ -13072,6 +13912,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
13072
13912
  refund_id: PropTypes.string,
13073
13913
  order_identifier: T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'],
13074
13914
  authorization_id: PropTypes.string,
13915
+ posting_proof_id: PropTypes.string,
13916
+ label_tracking_summary_id: PropTypes.string,
13075
13917
  });
13076
13918
 
13077
13919
  T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
@@ -13121,6 +13963,11 @@ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.e
13121
13963
  id: PropTypes.string.isRequired,
13122
13964
  });
13123
13965
 
13966
+ T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
13967
+ sales_records: PropTypes.arrayOf(PropTypes.object),
13968
+ refund_records: PropTypes.arrayOf(PropTypes.object),
13969
+ });
13970
+
13124
13971
  T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
13125
13972
  id: PropTypes.string.isRequired,
13126
13973
  type: PropTypes.string.isRequired,
@@ -13152,9 +13999,18 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
13152
13999
  'adjustment_transactions_count',
13153
14000
  'adjustment_transactions_total',
13154
14001
  'capture_transactions_count',
14002
+ 'capture_transactions_ignored_fraud_count',
14003
+ 'capture_transactions_ignored_fully_refunded_count',
14004
+ 'capture_transactions_ignored_other_count',
13155
14005
  'capture_transactions_total',
13156
- 'channel_transactions_count',
13157
- 'channel_transactions_total',
14006
+ 'channel_transactions_capture_count',
14007
+ 'channel_transactions_capture_total',
14008
+ 'channel_transactions_adjustment_count',
14009
+ 'channel_transactions_adjustment_total',
14010
+ 'channel_transactions_reversal_count',
14011
+ 'channel_transactions_reversal_total',
14012
+ 'channel_transactions_other_count',
14013
+ 'channel_transactions_other_total',
13158
14014
  'channel_billed_transactions_count',
13159
14015
  'channel_billed_transactions_total',
13160
14016
  'credit_payment_transactions_count',
@@ -13164,14 +14020,19 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
13164
14020
  'fully_subsidized_order_transactions_count',
13165
14021
  'fully_subsidized_order_transactions_total',
13166
14022
  'billable_label_transactions_count',
14023
+ 'billable_label_transactions_count_for_unique_orders',
13167
14024
  'billable_label_transactions_total',
13168
14025
  'revenue_share_label_transactions_count',
14026
+ 'revenue_share_label_transactions_count_for_unique_orders',
13169
14027
  'revenue_share_label_transactions_total',
13170
14028
  'manual_transactions_count',
13171
14029
  'manual_transactions_total',
13172
14030
  'order_transactions_count',
13173
14031
  'order_transactions_total',
13174
14032
  'refund_transactions_count',
14033
+ 'refund_transactions_ignored_fraud_count',
14034
+ 'refund_transactions_ignored_fully_refunded_count',
14035
+ 'refund_transactions_ignored_other_count',
13175
14036
  'refund_transactions_total',
13176
14037
  'reversal_order_cancellations_transactions_count',
13177
14038
  'reversal_order_cancellations_transactions_total',
@@ -13182,23 +14043,34 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
13182
14043
  'transfer_transactions_count',
13183
14044
  'transfer_transactions_total',
13184
14045
  'fulfillments_count',
13185
- 'fulfillments_total',
14046
+ 'fulfilled_via_replacement_order_count',
14047
+ 'percentage_orders_with_fulfillment_proof_2_weeks',
14048
+ 'percentage_orders_with_fulfillment_proof_4_weeks',
14049
+ 'percentage_orders_with_fulfillment_proof_6_weeks',
14050
+ 'percentage_orders_with_fulfillment_proof_all',
13186
14051
  'shipping_notifications_count',
13187
14052
  'queued_capture_unprocessed_count',
13188
14053
  'queued_capture_deletion_unprocessed_count',
13189
14054
  'queued_channel_transaction_unprocessed_count',
13190
14055
  'queued_channel_organization_unprocessed_count',
13191
14056
  'queued_consumer_invoice_unprocessed_count',
14057
+ 'queued_fulfillment_external_unprocessed_count',
14058
+ 'queued_fulfillment_in_transit_unprocessed_count',
14059
+ 'queued_fulfillment_shipping_notification_unprocessed_count',
14060
+ 'queued_label_invoice_request_unprocessed_count',
13192
14061
  'queued_label_tracking_summary_unprocessed_count',
14062
+ 'queued_label_origin_unprocessed_count',
13193
14063
  'queued_order_unprocessed_count',
13194
14064
  'queued_order_identifier_unprocessed_count',
13195
14065
  'queued_refund_unprocessed_count',
13196
14066
  'queued_refund_deletion_unprocessed_count',
14067
+ 'queued_refund_over_capture_unprocessed_count',
14068
+ 'queued_sales_record_unprocessed_count',
13197
14069
  'queued_statement_batch_unprocessed_count',
13198
- 'queued_statement_batch_email_unprocessed_count',
13199
14070
  'queued_statement_email_unprocessed_count',
13200
14071
  'queued_statement_summary_email_unprocessed_count',
13201
- 'shipping_notifications_total',
14072
+ 'queued_record_snooze_count',
14073
+ 'queued_record_snooze_ending_in_48_hours_count',
13202
14074
  'statements_no_payout_count',
13203
14075
  'statements_no_payout_total',
13204
14076
  'statements_pending_payout_count',
@@ -13211,6 +14083,9 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
13211
14083
  'payouts_failed_total',
13212
14084
  'pending_payouts_max_age',
13213
14085
  'average_payout_amount',
14086
+ 'orders_with_payments_count',
14087
+ 'orders_without_payments_count',
14088
+ 'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
13214
14089
  ]);
13215
14090
 
13216
14091
  T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
@@ -13298,6 +14173,34 @@ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
13298
14173
  description: PropTypes.string,
13299
14174
  });
13300
14175
 
14176
+ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
14177
+ discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
14178
+ primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
14179
+ parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
14180
+ ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
14181
+ ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
14182
+ business_url: PropTypes.string.isRequired,
14183
+ business_address: T['io.flow.common.v0.models.address'].isRequired,
14184
+ });
14185
+
14186
+ T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
14187
+ [T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
14188
+ );
14189
+
14190
+ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
14191
+ discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
14192
+ id: PropTypes.string.isRequired,
14193
+ organization_id: PropTypes.string.isRequired,
14194
+ primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
14195
+ parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
14196
+ ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
14197
+ ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
14198
+ business_url: PropTypes.string.isRequired,
14199
+ business_address: T['io.flow.common.v0.models.address'].isRequired,
14200
+ });
14201
+
14202
+ T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
14203
+
13301
14204
  T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
13302
14205
  line_number: PropTypes.string.isRequired,
13303
14206
  item_number: PropTypes.string.isRequired,
@@ -13569,6 +14472,35 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
13569
14472
  'autogenerated',
13570
14473
  ]);
13571
14474
 
14475
+ T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
14476
+ discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
14477
+ request_method: T['io.flow.label.v0.enums.label_request_method'],
14478
+ });
14479
+
14480
+ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([T['io.flow.billing.v0.models.transaction_metadata_shipping_label']]);
14481
+
14482
+ T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
14483
+ id: PropTypes.string.isRequired,
14484
+ order_number: PropTypes.string.isRequired,
14485
+ created_at: PropTypes.string.isRequired,
14486
+ reference_id: PropTypes.string.isRequired,
14487
+ label_request_method: T['io.flow.label.v0.enums.label_request_method'],
14488
+ label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
14489
+ order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
14490
+ suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
14491
+ carrier_id: PropTypes.string,
14492
+ service_id: PropTypes.string,
14493
+ errors: PropTypes.arrayOf(PropTypes.string).isRequired,
14494
+ });
14495
+
14496
+ T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
14497
+ discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
14498
+ event_id: PropTypes.string.isRequired,
14499
+ timestamp: PropTypes.string.isRequired,
14500
+ organization: PropTypes.string.isRequired,
14501
+ label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
14502
+ });
14503
+
13572
14504
  T['io.flow.internal.v0.models.csv_label_cost'] = PropTypes.exact({
13573
14505
  amount: PropTypes.number.isRequired,
13574
14506
  currency: PropTypes.string.isRequired,
@@ -13619,7 +14551,12 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
13619
14551
  origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
13620
14552
  service: PropTypes.string.isRequired,
13621
14553
  number: PropTypes.string,
14554
+ rate_level_key: PropTypes.string,
13622
14555
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
14556
+ glbe_shipping_method_id: PropTypes.string,
14557
+ glbe_proposition_name: PropTypes.string,
14558
+ channel_revenue_share_percentage: PropTypes.number,
14559
+ data: PropTypes.objectOf(PropTypes.string),
13623
14560
  });
13624
14561
 
13625
14562
  T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
@@ -13636,6 +14573,11 @@ T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
13636
14573
  T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
13637
14574
  id: PropTypes.string,
13638
14575
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
14576
+ rate_level_key: PropTypes.string,
14577
+ glbe_shipping_method_id: PropTypes.string,
14578
+ glbe_proposition_name: PropTypes.string,
14579
+ channel_revenue_share_percentage: PropTypes.number,
14580
+ shopify_grc_gid: PropTypes.string,
13639
14581
  });
13640
14582
 
13641
14583
  T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
@@ -13646,12 +14588,16 @@ T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
13646
14588
  T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
13647
14589
  id: PropTypes.string.isRequired,
13648
14590
  number: PropTypes.string.isRequired,
14591
+ rate_level_key: PropTypes.string,
13649
14592
  direction: T['io.flow.label.v0.enums.direction'].isRequired,
13650
14593
  effective_at: PropTypes.string.isRequired,
13651
14594
  origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
13652
14595
  service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
13653
14596
  published_at: PropTypes.string,
13654
14597
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
14598
+ glbe_shipping_method_id: PropTypes.string,
14599
+ glbe_proposition_name: PropTypes.string,
14600
+ channel_revenue_share_percentage: PropTypes.number,
13655
14601
  });
13656
14602
 
13657
14603
  T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
@@ -13664,6 +14610,15 @@ T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
13664
14610
  base_amount: PropTypes.number,
13665
14611
  });
13666
14612
 
14613
+ T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
14614
+
14615
+ T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
14616
+ unit: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
14617
+ length: PropTypes.number.isRequired,
14618
+ width: PropTypes.number.isRequired,
14619
+ depth: PropTypes.number.isRequired,
14620
+ });
14621
+
13667
14622
  T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
13668
14623
  percentage: PropTypes.number.isRequired,
13669
14624
  amount: PropTypes.number.isRequired,
@@ -13673,125 +14628,63 @@ T['io.flow.internal.v0.models.csv_actual_ratecard'] = PropTypes.exact({
13673
14628
  base_amount: PropTypes.number,
13674
14629
  });
13675
14630
 
13676
- T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
13677
- 'millimeter',
13678
- 'centimeter',
13679
- 'inch',
13680
- 'foot',
13681
- 'cubic_inch',
13682
- 'cubic_meter',
13683
- 'gram',
13684
- 'kilogram',
13685
- 'meter',
13686
- 'ounce',
13687
- 'pound',
13688
- ]);
13689
-
13690
- T['io.flow.ratecard.v0.models.oversized_shipment_ratecard_fee'] = PropTypes.exact({
13691
- discriminator: PropTypes.oneOf(['oversized_shipment_ratecard_fee']).isRequired,
13692
- weight_threshold: PropTypes.number.isRequired,
13693
- weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
13694
- margin: PropTypes.number,
13695
- amount: PropTypes.number,
13696
- });
13697
-
13698
- T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
13699
- value: PropTypes.string.isRequired,
13700
- units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
13701
- });
13702
-
13703
- T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
13704
- gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
13705
- dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
13706
- });
13707
-
13708
- T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
13709
- depth: T['io.flow.common.v0.models.measurement'],
13710
- diameter: T['io.flow.common.v0.models.measurement'],
13711
- length: T['io.flow.common.v0.models.measurement'],
13712
- weight: T['io.flow.common.v0.models.measurement'],
13713
- width: T['io.flow.common.v0.models.measurement'],
13714
- });
13715
-
13716
- T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
13717
- discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
13718
- fulfillment_key: PropTypes.string.isRequired,
13719
- carrier_tracking_number: PropTypes.string.isRequired,
13720
- package_dimensions: T['io.flow.common.v0.models.dimension'],
13721
- service: PropTypes.string,
13722
- shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
13723
- });
13724
-
13725
- T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
13726
- depth: T['io.flow.common.v0.models.measurement'].isRequired,
13727
- length: T['io.flow.common.v0.models.measurement'].isRequired,
13728
- weight: T['io.flow.common.v0.models.measurement'].isRequired,
13729
- width: T['io.flow.common.v0.models.measurement'].isRequired,
13730
- });
14631
+ T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
13731
14632
 
13732
- T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
13733
- q: PropTypes.string.isRequired,
13734
- dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
13735
- position: PropTypes.number,
14633
+ T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
14634
+ currency: PropTypes.string.isRequired,
14635
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
14636
+ length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
13736
14637
  });
13737
14638
 
13738
- T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
14639
+ T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
13739
14640
  id: PropTypes.string.isRequired,
13740
- q: PropTypes.string.isRequired,
13741
- dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
13742
- position: PropTypes.number.isRequired,
14641
+ label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
14642
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
14643
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
14644
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
14645
+ total: PropTypes.number.isRequired,
14646
+ destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
14647
+ metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
13743
14648
  });
13744
14649
 
13745
- T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
13746
- discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
13747
- event_id: PropTypes.string.isRequired,
13748
- timestamp: PropTypes.string.isRequired,
13749
- organization: PropTypes.string.isRequired,
13750
- estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
14650
+ T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
14651
+ units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
14652
+ base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
14653
+ surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
13751
14654
  });
13752
14655
 
13753
- T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
13754
- discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
13755
- event_id: PropTypes.string.isRequired,
13756
- timestamp: PropTypes.string.isRequired,
13757
- organization: PropTypes.string.isRequired,
13758
- estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
14656
+ T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
14657
+ currency: PropTypes.string.isRequired,
14658
+ weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
14659
+ length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
13759
14660
  });
13760
14661
 
13761
- T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
14662
+ T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
13762
14663
  id: PropTypes.string.isRequired,
13763
- item: T['io.flow.common.v0.models.item_reference'].isRequired,
13764
- q: PropTypes.string.isRequired,
13765
- dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
14664
+ label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
14665
+ units: T['io.flow.internal.v0.models.label_units'].isRequired,
14666
+ base: T['io.flow.internal.v0.models.label_base'].isRequired,
14667
+ surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
14668
+ total: PropTypes.number.isRequired,
14669
+ destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
14670
+ metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
13766
14671
  });
13767
14672
 
13768
- T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
13769
- discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
14673
+ T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
14674
+ discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
13770
14675
  event_id: PropTypes.string.isRequired,
13771
14676
  timestamp: PropTypes.string.isRequired,
13772
14677
  organization: PropTypes.string.isRequired,
13773
- estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
13774
- });
13775
-
13776
- T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
13777
- weight: PropTypes.number.isRequired,
13778
- unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
14678
+ label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
13779
14679
  });
13780
14680
 
13781
14681
  T['io.flow.internal.v0.models.csv_weight'] = PropTypes.exact({
13782
- unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
14682
+ unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
13783
14683
  provided: PropTypes.number.isRequired,
13784
14684
  dimensional: PropTypes.number.isRequired,
13785
14685
  lookup: PropTypes.number.isRequired,
13786
14686
  });
13787
14687
 
13788
- T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
13789
- unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
13790
- length: PropTypes.number.isRequired,
13791
- width: PropTypes.number.isRequired,
13792
- depth: PropTypes.number.isRequired,
13793
- });
13794
-
13795
14688
  T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
13796
14689
  fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
13797
14690
  remote_area: PropTypes.number.isRequired,
@@ -13806,7 +14699,7 @@ T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
13806
14699
  base_amount: PropTypes.number.isRequired,
13807
14700
  surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
13808
14701
  total: PropTypes.number.isRequired,
13809
- weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
14702
+ weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
13810
14703
  weight: PropTypes.number.isRequired,
13811
14704
  variance: PropTypes.number.isRequired,
13812
14705
  });
@@ -13817,7 +14710,7 @@ T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
13817
14710
  base_amount: PropTypes.number.isRequired,
13818
14711
  surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
13819
14712
  total: PropTypes.number.isRequired,
13820
- weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
14713
+ weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
13821
14714
  weight: PropTypes.number.isRequired,
13822
14715
  ratecard: T['io.flow.internal.v0.models.csv_actual_ratecard'].isRequired,
13823
14716
  });
@@ -13940,6 +14833,29 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
13940
14833
  'pending',
13941
14834
  ]);
13942
14835
 
14836
+ T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
14837
+ value: PropTypes.string.isRequired,
14838
+ unverified: PropTypes.bool.isRequired,
14839
+ });
14840
+
14841
+ T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
14842
+ organization_id: PropTypes.string.isRequired,
14843
+ product_id: PropTypes.string.isRequired,
14844
+ });
14845
+
14846
+ T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
14847
+ classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
14848
+ next_product: T['io.flow.internal.v0.models.classification_product_id'],
14849
+ });
14850
+
14851
+ T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
14852
+ model_id: PropTypes.string.isRequired,
14853
+ suggestion: PropTypes.string.isRequired,
14854
+ value: PropTypes.number.isRequired,
14855
+ });
14856
+
14857
+ T['io.flow.internal.v0.enums.classification_error_code'] = PropTypes.oneOf(['generic_error']);
14858
+
13943
14859
  T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
13944
14860
  'waiting_for_classification',
13945
14861
  'classified',
@@ -13953,7 +14869,7 @@ T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
13953
14869
  });
13954
14870
 
13955
14871
  T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
13956
- id: PropTypes.string,
14872
+ id: PropTypes.string.isRequired,
13957
14873
  organization_id: PropTypes.string.isRequired,
13958
14874
  item_number: PropTypes.string.isRequired,
13959
14875
  item_name: PropTypes.string,
@@ -13987,6 +14903,12 @@ T['io.flow.internal.v0.models.item_harmonization_deleted'] = PropTypes.exact({
13987
14903
  item_harmonization: T['io.flow.internal.v0.models.item_harmonization'].isRequired,
13988
14904
  });
13989
14905
 
14906
+ T['io.flow.internal.v0.models.empty_classification_form'] = PropTypes.exact({
14907
+ discriminator: PropTypes.oneOf(['empty_classification_form']).isRequired,
14908
+ product_id: PropTypes.string.isRequired,
14909
+ harmonization_status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
14910
+ });
14911
+
13990
14912
  T['io.flow.internal.v0.models.classification_statistics'] = PropTypes.exact({
13991
14913
  status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
13992
14914
  number_of_items: PropTypes.number.isRequired,
@@ -14004,34 +14926,6 @@ T['io.flow.internal.v0.models.harmonization_classification_statistics_published'
14004
14926
  data: T['io.flow.internal.v0.models.harmonization_classification_statistics_data'].isRequired,
14005
14927
  });
14006
14928
 
14007
- T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
14008
- value: PropTypes.string.isRequired,
14009
- unverified: PropTypes.bool.isRequired,
14010
- });
14011
-
14012
- T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
14013
- organization_id: PropTypes.string.isRequired,
14014
- product_id: PropTypes.string.isRequired,
14015
- });
14016
-
14017
- T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
14018
- classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
14019
- next_product: T['io.flow.internal.v0.models.classification_product_id'],
14020
- });
14021
-
14022
- T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
14023
- model_id: PropTypes.string.isRequired,
14024
- suggestion: PropTypes.string.isRequired,
14025
- value: PropTypes.number.isRequired,
14026
- });
14027
-
14028
- T['io.flow.internal.v0.models.empty_classification_form'] = PropTypes.exact({
14029
- discriminator: PropTypes.oneOf(['empty_classification_form']).isRequired,
14030
- product_id: PropTypes.string.isRequired,
14031
- harmonization_status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
14032
- });
14033
-
14034
- T['io.flow.internal.v0.enums.classification_error_code'] = PropTypes.oneOf(['generic_error']);
14035
14929
  T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
14036
14930
 
14037
14931
  T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
@@ -16516,6 +17410,10 @@ T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
16516
17410
  locale: T['io.flow.reference.v0.models.locale'].isRequired,
16517
17411
  });
16518
17412
 
17413
+ T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
17414
+ country: T['io.flow.reference.v0.models.country'].isRequired,
17415
+ });
17416
+
16519
17417
  T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
16520
17418
  destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
16521
17419
  });
@@ -17663,6 +18561,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
17663
18561
  'payment_authorization_failed',
17664
18562
  'unsupported_subsidized_order',
17665
18563
  'unsupported_virtual_goods',
18564
+ 'non_matching_currencies',
17666
18565
  ]);
17667
18566
 
17668
18567
  T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -17686,36 +18585,6 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
17686
18585
  status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
17687
18586
  });
17688
18587
 
17689
- T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
17690
- id: PropTypes.string.isRequired,
17691
- organization_id: PropTypes.string.isRequired,
17692
- order_number: PropTypes.string.isRequired,
17693
- channel_id: PropTypes.string.isRequired,
17694
- external_order_reference: PropTypes.string.isRequired,
17695
- payment_request_id: PropTypes.string,
17696
- status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
17697
- reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
17698
- order_created_at: PropTypes.string,
17699
- });
17700
-
17701
- T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
17702
- discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
17703
- event_id: PropTypes.string.isRequired,
17704
- timestamp: PropTypes.string.isRequired,
17705
- organization: PropTypes.string.isRequired,
17706
- channel_id: PropTypes.string.isRequired,
17707
- channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
17708
- });
17709
-
17710
- T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
17711
- discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
17712
- event_id: PropTypes.string.isRequired,
17713
- timestamp: PropTypes.string.isRequired,
17714
- organization: PropTypes.string.isRequired,
17715
- channel_id: PropTypes.string.isRequired,
17716
- channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
17717
- });
17718
-
17719
18588
  T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
17720
18589
 
17721
18590
  T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
@@ -17801,11 +18670,6 @@ T['io.flow.internal.v0.models.partner_organization_authorization'] = PropTypes.e
17801
18670
  partner: T['io.flow.internal.v0.models.partner'].isRequired,
17802
18671
  });
17803
18672
 
17804
- T['io.flow.internal.v0.models.erp_flow_file_batch_form'] = PropTypes.exact({
17805
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
17806
- type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
17807
- });
17808
-
17809
18673
  T['io.flow.internal.v0.models.checkout_organization_summary'] = PropTypes.exact({
17810
18674
  id: PropTypes.string.isRequired,
17811
18675
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
@@ -18162,6 +19026,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
18162
19026
 
18163
19027
  T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
18164
19028
  id: PropTypes.string.isRequired,
19029
+ shopify_shop_id: PropTypes.string,
18165
19030
  channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
18166
19031
  domain: PropTypes.string.isRequired,
18167
19032
  myshopify_domain: PropTypes.string.isRequired,
@@ -18269,6 +19134,77 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
18269
19134
  catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
18270
19135
  });
18271
19136
 
19137
+ T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
19138
+ 'cx_team',
19139
+ 'core_team',
19140
+ 'core_team_investigate',
19141
+ 'mex_team',
19142
+ 'payments_team',
19143
+ 'tlc_team',
19144
+ ]);
19145
+
19146
+ T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
19147
+ message: PropTypes.string.isRequired,
19148
+ reason: PropTypes.string.isRequired,
19149
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
19150
+ });
19151
+
19152
+ T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
19153
+ message: PropTypes.string.isRequired,
19154
+ reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
19155
+ action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
19156
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
19157
+ });
19158
+
19159
+ T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
19160
+ message: PropTypes.string.isRequired,
19161
+ reason: PropTypes.string.isRequired,
19162
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
19163
+ });
19164
+
19165
+ T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
19166
+ message: PropTypes.string.isRequired,
19167
+ reason: PropTypes.string.isRequired,
19168
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
19169
+ });
19170
+
19171
+ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
19172
+ id: PropTypes.string.isRequired,
19173
+ organization_id: PropTypes.string.isRequired,
19174
+ order_number: PropTypes.string.isRequired,
19175
+ channel_id: PropTypes.string.isRequired,
19176
+ external_order_reference: PropTypes.string.isRequired,
19177
+ payment_request_id: PropTypes.string,
19178
+ status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
19179
+ reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
19180
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
19181
+ order_created_at: PropTypes.string,
19182
+ });
19183
+
19184
+ T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
19185
+ discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
19186
+ event_id: PropTypes.string.isRequired,
19187
+ timestamp: PropTypes.string.isRequired,
19188
+ organization: PropTypes.string.isRequired,
19189
+ channel_id: PropTypes.string.isRequired,
19190
+ channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
19191
+ });
19192
+
19193
+ T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
19194
+ discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
19195
+ event_id: PropTypes.string.isRequired,
19196
+ timestamp: PropTypes.string.isRequired,
19197
+ organization: PropTypes.string.isRequired,
19198
+ channel_id: PropTypes.string.isRequired,
19199
+ channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
19200
+ });
19201
+
19202
+ T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
19203
+ message: PropTypes.string.isRequired,
19204
+ reason: PropTypes.string.isRequired,
19205
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
19206
+ });
19207
+
18272
19208
  T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
18273
19209
 
18274
19210
  T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
@@ -18357,6 +19293,14 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
18357
19293
  filename: PropTypes.string,
18358
19294
  });
18359
19295
 
19296
+ T['io.flow.internal.v0.enums.carrier_validation_status'] = PropTypes.oneOf(['success', 'error']);
19297
+
19298
+ T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
19299
+ organization: PropTypes.string.isRequired,
19300
+ status: T['io.flow.internal.v0.enums.carrier_validation_status'].isRequired,
19301
+ error_message: PropTypes.string,
19302
+ });
19303
+
18360
19304
  T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
18361
19305
  discriminator: PropTypes.oneOf(['fedex']).isRequired,
18362
19306
  key: PropTypes.string.isRequired,
@@ -18524,6 +19468,32 @@ T['io.flow.internal.v0.models.calculator_organization_settings_upserted'] = Prop
18524
19468
  calculator_organization_settings: T['io.flow.internal.v0.models.calculator_organization_settings'].isRequired,
18525
19469
  });
18526
19470
 
19471
+ T['io.flow.internal.v0.models.calculator_dtce_product'] = PropTypes.exact({
19472
+ origin: PropTypes.string.isRequired,
19473
+ hsCode: PropTypes.string.isRequired,
19474
+ sku: PropTypes.string.isRequired,
19475
+ value: PropTypes.number.isRequired,
19476
+ weight: PropTypes.number.isRequired,
19477
+ quantity: PropTypes.number.isRequired,
19478
+ reference: PropTypes.string,
19479
+ });
19480
+
19481
+ T['io.flow.internal.v0.models.calculator_dtce_post_body'] = PropTypes.exact({
19482
+ products: PropTypes.arrayOf(T['io.flow.internal.v0.models.calculator_dtce_product']).isRequired,
19483
+ countryCodeFrom: PropTypes.string.isRequired,
19484
+ countryCodeTo: PropTypes.string.isRequired,
19485
+ classification: PropTypes.string.isRequired,
19486
+ shippingCost: PropTypes.number.isRequired,
19487
+ insuranceCost: PropTypes.number.isRequired,
19488
+ totalShipmentWeight: PropTypes.number.isRequired,
19489
+ currencyCode: PropTypes.string.isRequired,
19490
+ outputCurrencyCode: PropTypes.string.isRequired,
19491
+ explanation: PropTypes.bool.isRequired,
19492
+ responseFormat: PropTypes.number.isRequired,
19493
+ requestId: PropTypes.string.isRequired,
19494
+ provinceCode: PropTypes.string,
19495
+ });
19496
+
18527
19497
  T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
18528
19498
  item_type: PropTypes.string.isRequired,
18529
19499
  gender: T['io.flow.internal.v0.models.attribute_label'],
@@ -18600,6 +19570,7 @@ T['io.flow.internal.v0.models.classification_product_harmonization'] = PropTypes
18600
19570
  customs_description: PropTypes.string,
18601
19571
  hs6_code: PropTypes.string,
18602
19572
  hs6_description: PropTypes.string,
19573
+ status: T['io.flow.internal.v0.enums.item_harmonization_status'],
18603
19574
  });
18604
19575
 
18605
19576
  T['io.flow.internal.v0.models.courthouse_product_summary'] = PropTypes.exact({
@@ -19166,6 +20137,21 @@ T['io.flow.internal.v0.models.tracking_deleted'] = PropTypes.exact({
19166
20137
  tracking: T['io.flow.tracking.v0.models.tracking'].isRequired,
19167
20138
  });
19168
20139
 
20140
+ T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact({
20141
+ id: PropTypes.string.isRequired,
20142
+ range: T['io.flow.common.v0.models.datetime_range'].isRequired,
20143
+ shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
20144
+ internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
20145
+ discrepancy_data: T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
20146
+ });
20147
+
20148
+ T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
20149
+ discriminator: PropTypes.oneOf(['shopify_markets_metrics_upserted']).isRequired,
20150
+ event_id: PropTypes.string.isRequired,
20151
+ timestamp: PropTypes.string.isRequired,
20152
+ shopify_markets_metrics: T['io.flow.internal.v0.models.shopify_markets_orders_metrics'].isRequired,
20153
+ });
20154
+
19169
20155
  T['io.flow.internal.v0.models.checkout_delivery_window_estimate'] = PropTypes.exact({
19170
20156
  discriminator: PropTypes.oneOf(['estimate']).isRequired,
19171
20157
  days: T['io.flow.internal.v0.models.checkout_delivery_window_estimate_days'].isRequired,
@@ -19217,10 +20203,33 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
19217
20203
  all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
19218
20204
  });
19219
20205
 
20206
+ T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
20207
+ id: PropTypes.string.isRequired,
20208
+ });
20209
+
20210
+ T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
20211
+ discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
20212
+ event_id: PropTypes.string.isRequired,
20213
+ timestamp: PropTypes.string.isRequired,
20214
+ billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
20215
+ });
20216
+
19220
20217
  T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
19221
20218
  id: PropTypes.string.isRequired,
19222
20219
  });
19223
20220
 
20221
+ T['io.flow.internal.v0.models.transaction_statement'] = PropTypes.exact({
20222
+ id: PropTypes.string.isRequired,
20223
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
20224
+ });
20225
+
20226
+ T['io.flow.internal.v0.models.transaction_statement_upserted'] = PropTypes.exact({
20227
+ discriminator: PropTypes.oneOf(['transaction_statement_upserted']).isRequired,
20228
+ event_id: PropTypes.string.isRequired,
20229
+ timestamp: PropTypes.string.isRequired,
20230
+ transaction_statement: T['io.flow.internal.v0.models.transaction_statement'].isRequired,
20231
+ });
20232
+
19224
20233
  T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
19225
20234
  transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
19226
20235
  statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
@@ -19249,22 +20258,6 @@ T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = Pro
19249
20258
  billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
19250
20259
  });
19251
20260
 
19252
- T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
19253
- month: PropTypes.string.isRequired,
19254
- });
19255
-
19256
- T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
19257
- id: PropTypes.string.isRequired,
19258
- reconciliation: T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'].isRequired,
19259
- });
19260
-
19261
- T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
19262
- discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
19263
- event_id: PropTypes.string.isRequired,
19264
- timestamp: PropTypes.string.isRequired,
19265
- billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
19266
- });
19267
-
19268
20261
  T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
19269
20262
  'invoice',
19270
20263
  'statement',
@@ -19422,6 +20415,55 @@ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
19422
20415
  updated_at: PropTypes.string.isRequired,
19423
20416
  });
19424
20417
 
20418
+ T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
20419
+
20420
+ T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
20421
+ status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
20422
+ count: PropTypes.number.isRequired,
20423
+ });
20424
+
20425
+ T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
20426
+ rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
20427
+ statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
20428
+ count: PropTypes.number.isRequired,
20429
+ });
20430
+
20431
+ T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
20432
+ rule_id: PropTypes.string.isRequired,
20433
+ rule_name: PropTypes.string.isRequired,
20434
+ status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
20435
+ count: PropTypes.number.isRequired,
20436
+ });
20437
+
20438
+ T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
20439
+ hs_code: PropTypes.string,
20440
+ keywords: PropTypes.arrayOf(PropTypes.string),
20441
+ action: T['io.flow.internal.v0.enums.restriction_status'],
20442
+ });
20443
+
20444
+ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
20445
+ name: PropTypes.string.isRequired,
20446
+ description: PropTypes.string.isRequired,
20447
+ action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
20448
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
20449
+ positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
20450
+ negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
20451
+ value_threshold_usd: PropTypes.number,
20452
+ auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
20453
+ });
20454
+
20455
+ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
20456
+ id: PropTypes.string.isRequired,
20457
+ name: PropTypes.string.isRequired,
20458
+ description: PropTypes.string.isRequired,
20459
+ action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
20460
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
20461
+ positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
20462
+ negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
20463
+ value_threshold_usd: PropTypes.number,
20464
+ auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
20465
+ });
20466
+
19425
20467
  T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
19426
20468
 
19427
20469
  T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
@@ -20135,25 +21177,6 @@ T['io.flow.fraud.v0.unions.fraud_order_reference'] = PropTypes.oneOfType([
20135
21177
  T['io.flow.fraud.v0.models.fraud_payment_request_reference'],
20136
21178
  ]);
20137
21179
 
20138
- T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
20139
- id: PropTypes.string.isRequired,
20140
- fraud_review_id: PropTypes.string.isRequired,
20141
- order: T['io.flow.experience.v0.models.order_reference'].isRequired,
20142
- fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
20143
- status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
20144
- created_at: PropTypes.string.isRequired,
20145
- liability: T['io.flow.fraud.v0.enums.fraud_liability'],
20146
- });
20147
-
20148
- T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
20149
- discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
20150
- event_id: PropTypes.string.isRequired,
20151
- timestamp: PropTypes.string.isRequired,
20152
- organization: PropTypes.string.isRequired,
20153
- id: PropTypes.string.isRequired,
20154
- fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
20155
- });
20156
-
20157
21180
  T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
20158
21181
  id: PropTypes.string.isRequired,
20159
21182
  organization_id: PropTypes.string.isRequired,
@@ -20169,6 +21192,7 @@ T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
20169
21192
  provider: T['io.flow.internal.v0.enums.fraud_provider'],
20170
21193
  payment_authorization_id: PropTypes.string,
20171
21194
  decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
21195
+ created_at: PropTypes.string,
20172
21196
  });
20173
21197
 
20174
21198
  T['io.flow.internal.v0.models.fraud_review_version'] = PropTypes.exact({
@@ -20188,18 +21212,11 @@ T['io.flow.internal.v0.models.fraud_review_upserted'] = PropTypes.exact({
20188
21212
  T['io.flow.internal.v0.models.fraud_pending_review'] = PropTypes.exact({
20189
21213
  id: PropTypes.string.isRequired,
20190
21214
  fraud_review_id: PropTypes.string.isRequired,
20191
- order: T['io.flow.experience.v0.models.order_reference'].isRequired,
20192
- fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
20193
- recommended_status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
20194
- apply_at: PropTypes.string,
20195
- liability: T['io.flow.fraud.v0.enums.fraud_liability'],
20196
- });
20197
-
20198
- T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
20199
- discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
20200
- fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
20201
- fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
20202
- fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
21215
+ order: T['io.flow.experience.v0.models.order_reference'].isRequired,
21216
+ fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
21217
+ recommended_status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
21218
+ apply_at: PropTypes.string,
21219
+ liability: T['io.flow.fraud.v0.enums.fraud_liability'],
20203
21220
  });
20204
21221
 
20205
21222
  T['io.flow.internal.v0.models.fraud_pending_review_upserted'] = PropTypes.exact({
@@ -20800,6 +21817,7 @@ T['io.flow.internal.v0.models.stripe_merchant_put_form'] = PropTypes.exact({
20800
21817
  account_type: T['io.flow.stripe.v0.enums.account_type'].isRequired,
20801
21818
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
20802
21819
  country: PropTypes.string.isRequired,
21820
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20803
21821
  });
20804
21822
 
20805
21823
  T['io.flow.internal.v0.models.stripe_merchant_modification_form'] = PropTypes.exact({
@@ -20844,6 +21862,7 @@ T['io.flow.internal.v0.models.paypal_merchant_put_form'] = PropTypes.exact({
20844
21862
  external_id: PropTypes.string.isRequired,
20845
21863
  country: PropTypes.string.isRequired,
20846
21864
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
21865
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20847
21866
  });
20848
21867
 
20849
21868
  T['io.flow.internal.v0.models.paypal_merchant_modification_form'] = PropTypes.exact({
@@ -20861,6 +21880,7 @@ T['io.flow.internal.v0.models.fiserv_merchant_put_form'] = PropTypes.exact({
20861
21880
  funding_currency: PropTypes.string.isRequired,
20862
21881
  country: PropTypes.string.isRequired,
20863
21882
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
21883
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20864
21884
  });
20865
21885
 
20866
21886
  T['io.flow.internal.v0.models.fiserv_merchant_modification_form'] = PropTypes.exact({
@@ -20878,6 +21898,7 @@ T['io.flow.internal.v0.models.adyen_merchant_put_form'] = PropTypes.exact({
20878
21898
  external_id: PropTypes.string.isRequired,
20879
21899
  country: PropTypes.string.isRequired,
20880
21900
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
21901
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20881
21902
  });
20882
21903
 
20883
21904
  T['io.flow.internal.v0.unions.processor_merchant_put_form'] = PropTypes.oneOfType([
@@ -20917,6 +21938,7 @@ T['io.flow.internal.v0.models.stripe_account_put_form'] = PropTypes.exact({
20917
21938
  country: PropTypes.string.isRequired,
20918
21939
  authentication: T['io.flow.internal.v0.models.stripe_authentication_form'].isRequired,
20919
21940
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
21941
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20920
21942
  });
20921
21943
 
20922
21944
  T['io.flow.internal.v0.models.stripe_account_modification_form'] = PropTypes.exact({
@@ -20950,6 +21972,7 @@ T['io.flow.internal.v0.models.paypal_account_put_form'] = PropTypes.exact({
20950
21972
  country: PropTypes.string.isRequired,
20951
21973
  authentication: T['io.flow.internal.v0.models.paypal_authentication_form'].isRequired,
20952
21974
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
21975
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20953
21976
  });
20954
21977
 
20955
21978
  T['io.flow.internal.v0.models.paypal_account_modification_form'] = PropTypes.exact({
@@ -20980,6 +22003,7 @@ T['io.flow.internal.v0.models.fiserv_account_put_form'] = PropTypes.exact({
20980
22003
  authentication: T['io.flow.internal.v0.models.fiserv_authentication_form'].isRequired,
20981
22004
  country: PropTypes.string.isRequired,
20982
22005
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
22006
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
20983
22007
  });
20984
22008
 
20985
22009
  T['io.flow.internal.v0.models.fiserv_account_modification_form'] = PropTypes.exact({
@@ -21011,6 +22035,7 @@ T['io.flow.internal.v0.models.crypto_account_put_form'] = PropTypes.exact({
21011
22035
  authentication: T['io.flow.internal.v0.models.crypto_authentication_form'].isRequired,
21012
22036
  country: PropTypes.string.isRequired,
21013
22037
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
22038
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
21014
22039
  });
21015
22040
 
21016
22041
  T['io.flow.internal.v0.models.crypto_account_modification_form'] = PropTypes.exact({
@@ -21040,6 +22065,7 @@ T['io.flow.internal.v0.models.bitpay_account_put_form'] = PropTypes.exact({
21040
22065
  authentication: T['io.flow.internal.v0.models.bitpay_authentication_form'].isRequired,
21041
22066
  country: PropTypes.string.isRequired,
21042
22067
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
22068
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
21043
22069
  });
21044
22070
 
21045
22071
  T['io.flow.internal.v0.models.bitpay_account_modification_form'] = PropTypes.exact({
@@ -21069,6 +22095,7 @@ T['io.flow.internal.v0.models.afterpay_account_put_form'] = PropTypes.exact({
21069
22095
  country: PropTypes.string.isRequired,
21070
22096
  authentication: T['io.flow.internal.v0.models.afterpay_authentication_form'].isRequired,
21071
22097
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
22098
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
21072
22099
  });
21073
22100
 
21074
22101
  T['io.flow.internal.v0.models.afterpay_account_modification_form'] = PropTypes.exact({
@@ -21213,6 +22240,7 @@ T['io.flow.internal.v0.models.adyen_account_put_form'] = PropTypes.exact({
21213
22240
  authentication: T['io.flow.internal.v0.models.adyen_authentication_form'].isRequired,
21214
22241
  country: PropTypes.string.isRequired,
21215
22242
  status: T['io.flow.internal.v0.enums.processor_entity_status'],
22243
+ organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
21216
22244
  });
21217
22245
 
21218
22246
  T['io.flow.internal.v0.unions.processor_account_put_form'] = PropTypes.oneOfType([
@@ -21317,6 +22345,7 @@ T['io.flow.billing.v0.models.withholding_deduction'] = PropTypes.exact({
21317
22345
 
21318
22346
  T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
21319
22347
  id: PropTypes.string.isRequired,
22348
+ metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
21320
22349
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
21321
22350
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
21322
22351
  currency: PropTypes.string.isRequired,
@@ -21335,6 +22364,7 @@ T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
21335
22364
  T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
21336
22365
  statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
21337
22366
  id: PropTypes.string.isRequired,
22367
+ metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
21338
22368
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
21339
22369
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
21340
22370
  currency: PropTypes.string.isRequired,
@@ -21353,6 +22383,7 @@ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
21353
22383
  T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
21354
22384
  statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
21355
22385
  id: PropTypes.string.isRequired,
22386
+ metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
21356
22387
  order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
21357
22388
  payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
21358
22389
  currency: PropTypes.string.isRequired,
@@ -21372,6 +22403,7 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
21372
22403
  order: T['io.flow.internal.v0.models.debug_order'].isRequired,
21373
22404
  debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
21374
22405
  transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
22406
+ reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
21375
22407
  });
21376
22408
 
21377
22409
  T['io.flow.common.v0.models.money'] = PropTypes.exact({
@@ -21501,7 +22533,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
21501
22533
  discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
21502
22534
  company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
21503
22535
  indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
21504
- parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
21505
22536
  beneficiary: PropTypes.string,
21506
22537
  ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
21507
22538
  business_url: PropTypes.string,
@@ -21511,23 +22542,22 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
21511
22542
  chargeback_percentage: PropTypes.number,
21512
22543
  bank_account_number: PropTypes.string,
21513
22544
  aba_routing_transit_number: PropTypes.string,
21514
- trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
21515
22545
  other_trade_sector: PropTypes.string,
21516
22546
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
22547
+ center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
21517
22548
  average_order_weight: PropTypes.number,
21518
22549
  package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
21519
22550
  monthly_average_volume_amount: PropTypes.number,
21520
22551
  monthly_average_volume_currency: PropTypes.string,
21521
22552
  monthly_average_number_transactions: PropTypes.number,
21522
- dangerous_goods: PropTypes.bool,
21523
22553
  default_country_of_origin: PropTypes.string,
21524
22554
  ratecard_id: PropTypes.string,
21525
22555
  rate_card: PropTypes.string.isRequired,
21526
- logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
21527
22556
  shop: T['io.flow.merchant.onboarding.v0.models.shop'],
21528
22557
  last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
21529
22558
  last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
21530
22559
  average_order_value: T['io.flow.common.v0.models.money'],
22560
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
21531
22561
  });
21532
22562
 
21533
22563
  T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
@@ -21580,6 +22610,24 @@ T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes
21580
22610
  ends_at: PropTypes.string,
21581
22611
  });
21582
22612
 
22613
+ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
22614
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
22615
+ dimensional_threshold: PropTypes.number,
22616
+ dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22617
+ weight_threshold: PropTypes.number,
22618
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22619
+ amount: T['io.flow.common.v0.models.money'].isRequired,
22620
+ });
22621
+
22622
+ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
22623
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
22624
+ dimensional_threshold: PropTypes.number,
22625
+ dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22626
+ weight_threshold: PropTypes.number,
22627
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22628
+ amount: T['io.flow.common.v0.models.money'].isRequired,
22629
+ });
22630
+
21583
22631
  T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
21584
22632
  discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
21585
22633
  amount: T['io.flow.common.v0.models.money'].isRequired,
@@ -21622,6 +22670,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
21622
22670
  T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
21623
22671
  T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
21624
22672
  T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
22673
+ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
21625
22674
  ]);
21626
22675
 
21627
22676
  T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
@@ -21667,7 +22716,7 @@ T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
21667
22716
  T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
21668
22717
  T['io.flow.ratecard.v0.models.ddp_ratecard_fee'],
21669
22718
  T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'],
21670
- T['io.flow.ratecard.v0.models.oversized_shipment_ratecard_fee'],
22719
+ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'],
21671
22720
  T['io.flow.ratecard.v0.models.return_package_ratecard_fee'],
21672
22721
  T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'],
21673
22722
  T['io.flow.ratecard.v0.models.remote_area_ratecard_fee'],
@@ -21903,6 +22952,7 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
21903
22952
  T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
21904
22953
  lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
21905
22954
  cost: T['io.flow.common.v0.models.money'].isRequired,
22955
+ itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
21906
22956
  });
21907
22957
 
21908
22958
  T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
@@ -21935,6 +22985,10 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
21935
22985
  dimensional_weight: T['io.flow.common.v0.models.measurement'],
21936
22986
  gravitational_weight: T['io.flow.common.v0.models.measurement'],
21937
22987
  ratecard_id: PropTypes.string,
22988
+ glbe_shipping_method_id: PropTypes.string,
22989
+ glbe_proposition_name: PropTypes.string,
22990
+ channel_revenue_share_percentage: PropTypes.number,
22991
+ rate_level_key: PropTypes.string,
21938
22992
  line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
21939
22993
  });
21940
22994
 
@@ -22037,6 +23091,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
22037
23091
 
22038
23092
  T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
22039
23093
  dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
23094
+ volumetric_weight: PropTypes.number,
22040
23095
  items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
22041
23096
  reference_number: PropTypes.string,
22042
23097
  });
@@ -22123,6 +23178,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
22123
23178
  order_number: PropTypes.string.isRequired,
22124
23179
  service: PropTypes.string,
22125
23180
  shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
23181
+ package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
22126
23182
  });
22127
23183
 
22128
23184
  T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
@@ -22217,6 +23273,7 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
22217
23273
  base: T['io.flow.common.v0.models.money'],
22218
23274
  processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
22219
23275
  confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
23276
+ authorized_at: PropTypes.string,
22220
23277
  });
22221
23278
 
22222
23279
  T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
@@ -22241,6 +23298,8 @@ T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
22241
23298
  expires_at: PropTypes.string,
22242
23299
  base: T['io.flow.common.v0.models.money'],
22243
23300
  processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
23301
+ stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
23302
+ authorized_at: PropTypes.string,
22244
23303
  });
22245
23304
 
22246
23305
  T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
@@ -22333,7 +23392,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
22333
23392
  status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
22334
23393
  company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
22335
23394
  indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
22336
- parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
22337
23395
  beneficiary: PropTypes.string,
22338
23396
  ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
22339
23397
  business_url: PropTypes.string,
@@ -22343,24 +23401,24 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
22343
23401
  chargeback_percentage: PropTypes.number,
22344
23402
  bank_account_number: PropTypes.string,
22345
23403
  aba_routing_transit_number: PropTypes.string,
22346
- trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
22347
23404
  other_trade_sector: PropTypes.string,
22348
23405
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
23406
+ center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
22349
23407
  average_order_weight: PropTypes.number,
22350
23408
  package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
22351
23409
  monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
22352
- dangerous_goods: PropTypes.bool,
22353
23410
  default_country_of_origin: PropTypes.string,
22354
23411
  ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
22355
23412
  rate_card: PropTypes.string.isRequired,
22356
23413
  created_at: PropTypes.string.isRequired,
22357
23414
  activated_at: PropTypes.string,
22358
23415
  status_updated_at: PropTypes.string,
22359
- logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
22360
23416
  shop: T['io.flow.merchant.onboarding.v0.models.shop'],
22361
23417
  last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
22362
23418
  last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
22363
23419
  average_order_value: T['io.flow.common.v0.models.money'],
23420
+ glbe_merchant_guid: PropTypes.string,
23421
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
22364
23422
  });
22365
23423
 
22366
23424
  T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
@@ -23075,6 +24133,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
23075
24133
  time_blocked: PropTypes.number,
23076
24134
  blocked_since: PropTypes.string,
23077
24135
  completed_at: PropTypes.string,
24136
+ onboarding_started_at: PropTypes.string,
23078
24137
  });
23079
24138
 
23080
24139
  T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
@@ -23239,6 +24298,27 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
23239
24298
  liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
23240
24299
  });
23241
24300
 
24301
+ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
24302
+ id: PropTypes.string.isRequired,
24303
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24304
+ number: PropTypes.string.isRequired,
24305
+ });
24306
+
24307
+ T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
24308
+ id: PropTypes.string.isRequired,
24309
+ fulfilled_at: PropTypes.string.isRequired,
24310
+ currency: PropTypes.string.isRequired,
24311
+ order: T['io.flow.internal.v0.models.order_summary'].isRequired,
24312
+ origin: T['io.flow.internal.v0.models.fulfillment_origin'],
24313
+ lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
24314
+ shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
24315
+ shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
24316
+ merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
24317
+ completes_order: PropTypes.bool.isRequired,
24318
+ sequence_number: PropTypes.number.isRequired,
24319
+ business: T['io.flow.internal.v0.models.fulfillment_business'],
24320
+ });
24321
+
23242
24322
  T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
23243
24323
  code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
23244
24324
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -23460,6 +24540,40 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
23460
24540
  images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
23461
24541
  });
23462
24542
 
24543
+ T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
24544
+ id: PropTypes.string.isRequired,
24545
+ key: PropTypes.string.isRequired,
24546
+ price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
24547
+ price: T['io.flow.common.v0.models.price'].isRequired,
24548
+ item_number: PropTypes.string.isRequired,
24549
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
24550
+ item_attributes: PropTypes.objectOf(PropTypes.string),
24551
+ });
24552
+
24553
+ T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
24554
+ currency: PropTypes.string.isRequired,
24555
+ item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
24556
+ margins: T['io.flow.price.v0.models.price_detail'].isRequired,
24557
+ vat: T['io.flow.price.v0.models.price_detail'].isRequired,
24558
+ duty: T['io.flow.price.v0.models.price_detail'].isRequired,
24559
+ rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
24560
+ price: T['io.flow.common.v0.models.price'].isRequired,
24561
+ total: T['io.flow.common.v0.models.price'].isRequired,
24562
+ adjustment: T['io.flow.price.v0.models.price_detail'],
24563
+ });
24564
+
24565
+ T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
24566
+ base: T['io.flow.price.v0.models.price_details'].isRequired,
24567
+ local: T['io.flow.price.v0.models.price_details'].isRequired,
24568
+ discount: T['io.flow.price.v0.models.price_detail'],
24569
+ local_before_discount: T['io.flow.price.v0.models.price_detail'],
24570
+ });
24571
+
24572
+ T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
24573
+ display: T['io.flow.price.v0.models.local_price_details'].isRequired,
24574
+ 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
24575
+ });
24576
+
23463
24577
  T['io.flow.experience.v0.models.order_summary_levy'] = PropTypes.exact({
23464
24578
  rate: PropTypes.number.isRequired,
23465
24579
  rate_label: PropTypes.string,
@@ -23606,40 +24720,6 @@ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
23606
24720
  includes: T['io.flow.common.v0.models.included_levies'],
23607
24721
  });
23608
24722
 
23609
- T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
23610
- id: PropTypes.string.isRequired,
23611
- key: PropTypes.string.isRequired,
23612
- price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
23613
- price: T['io.flow.common.v0.models.price'].isRequired,
23614
- item_number: PropTypes.string.isRequired,
23615
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
23616
- item_attributes: PropTypes.objectOf(PropTypes.string),
23617
- });
23618
-
23619
- T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
23620
- currency: PropTypes.string.isRequired,
23621
- item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
23622
- margins: T['io.flow.price.v0.models.price_detail'].isRequired,
23623
- vat: T['io.flow.price.v0.models.price_detail'].isRequired,
23624
- duty: T['io.flow.price.v0.models.price_detail'].isRequired,
23625
- rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
23626
- price: T['io.flow.common.v0.models.price'].isRequired,
23627
- total: T['io.flow.common.v0.models.price'].isRequired,
23628
- adjustment: T['io.flow.price.v0.models.price_detail'],
23629
- });
23630
-
23631
- T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
23632
- base: T['io.flow.price.v0.models.price_details'].isRequired,
23633
- local: T['io.flow.price.v0.models.price_details'].isRequired,
23634
- discount: T['io.flow.price.v0.models.price_detail'],
23635
- local_before_discount: T['io.flow.price.v0.models.price_detail'],
23636
- });
23637
-
23638
- T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
23639
- display: T['io.flow.price.v0.models.local_price_details'].isRequired,
23640
- 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
23641
- });
23642
-
23643
24723
  T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
23644
24724
  key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
23645
24725
  currency: PropTypes.string.isRequired,
@@ -23671,6 +24751,9 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
23671
24751
  carrier_tracking_number_url: PropTypes.string.isRequired,
23672
24752
  cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'],
23673
24753
  cost: T['io.flow.common.v0.models.price'],
24754
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
24755
+ taxes_owed: T['io.flow.common.v0.models.money'],
24756
+ duties_owed: T['io.flow.common.v0.models.money'],
23674
24757
  destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
23675
24758
  flow_tracking_number: PropTypes.string.isRequired,
23676
24759
  flow_tracking_number_url: PropTypes.string.isRequired,
@@ -23682,6 +24765,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
23682
24765
  'return': T['io.flow.label.v0.models.shipping_label_document'],
23683
24766
  order: T['io.flow.label.v0.models.label_order_summary'],
23684
24767
  'package': T['io.flow.label.v0.models.shipping_label_package'],
24768
+ package_dimension_source: T['io.flow.label.v0.enums.package_dimensions_source'],
23685
24769
  order_identifier: PropTypes.string,
23686
24770
  fulfillment_key: PropTypes.string,
23687
24771
  shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
@@ -23776,11 +24860,6 @@ T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
23776
24860
  status: T['io.flow.internal.v0.enums.payment_summary_status'],
23777
24861
  });
23778
24862
 
23779
- T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
23780
- T['io.flow.internal.v0.models.payment_summary_v2'],
23781
- T['io.flow.internal.v0.models.fraud_summary'],
23782
- ]);
23783
-
23784
24863
  T['io.flow.internal.v0.models.order_revenue_timeline_data_point'] = PropTypes.exact({
23785
24864
  timestamp: PropTypes.string.isRequired,
23786
24865
  count: PropTypes.number.isRequired,
@@ -23828,6 +24907,7 @@ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
23828
24907
  total: T['io.flow.catalog.v0.models.localized_total'],
23829
24908
  goods_supply: T['io.flow.common.v0.enums.goods_supply'],
23830
24909
  merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
24910
+ preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
23831
24911
  });
23832
24912
 
23833
24913
  T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
@@ -24865,18 +25945,6 @@ T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
24865
25945
  allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
24866
25946
  });
24867
25947
 
24868
- T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
24869
- order: T['io.flow.experience.v0.models.order'].isRequired,
24870
- status: T['io.flow.experience.v0.enums.order_status'].isRequired,
24871
- transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
24872
- trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
24873
- returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
24874
- notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
24875
- submitted_at: PropTypes.string,
24876
- created_at: PropTypes.string.isRequired,
24877
- updated_at: PropTypes.string.isRequired,
24878
- });
24879
-
24880
25948
  T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
24881
25949
  order: T['io.flow.experience.v0.models.order'].isRequired,
24882
25950
  session: T['io.flow.common.v0.models.session_reference'],
@@ -25552,8 +26620,10 @@ T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
25552
26620
  T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
25553
26621
  discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
25554
26622
  label: T['io.flow.internal.v0.models.billing_label_summary'].isRequired,
25555
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
25556
26623
  tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
26624
+ gross_value: T['io.flow.common.v0.models.price'].isRequired,
26625
+ discount: T['io.flow.internal.v0.models.discount'].isRequired,
26626
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
25557
26627
  id: PropTypes.string.isRequired,
25558
26628
  type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
25559
26629
  status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
@@ -25843,11 +26913,170 @@ T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
25843
26913
  account: T['io.flow.internal.v0.models.simple_account_reference'],
25844
26914
  });
25845
26915
 
25846
- T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
25847
- discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
26916
+ T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
26917
+ discriminator: PropTypes.oneOf(['account_contact_upserted']).isRequired,
26918
+ event_id: PropTypes.string.isRequired,
26919
+ timestamp: PropTypes.string.isRequired,
26920
+ account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
26921
+ });
26922
+
26923
+ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
26924
+ discriminator: PropTypes.oneOf(['user_reference']).isRequired,
26925
+ id: PropTypes.string.isRequired,
26926
+ });
26927
+
26928
+ T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
26929
+ discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
26930
+ id: PropTypes.string.isRequired,
26931
+ partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
26932
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
26933
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26934
+ });
26935
+
26936
+ T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
26937
+ discriminator: PropTypes.oneOf(['partner_token']).isRequired,
26938
+ id: PropTypes.string.isRequired,
26939
+ partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
26940
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26941
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
26942
+ partial: PropTypes.string.isRequired,
26943
+ created_at: PropTypes.string.isRequired,
26944
+ description: PropTypes.string,
26945
+ });
26946
+
26947
+ T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
26948
+ discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
26949
+ id: PropTypes.string.isRequired,
26950
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26951
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26952
+ partial: PropTypes.string.isRequired,
26953
+ cleartext: PropTypes.string,
26954
+ created_at: PropTypes.string.isRequired,
26955
+ description: PropTypes.string,
26956
+ });
26957
+
26958
+ T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
26959
+ discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
26960
+ id: PropTypes.string.isRequired,
26961
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26962
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
26963
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26964
+ });
26965
+
26966
+ T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
26967
+ discriminator: PropTypes.oneOf(['organization_token']).isRequired,
26968
+ id: PropTypes.string.isRequired,
26969
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26970
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26971
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
26972
+ partial: PropTypes.string.isRequired,
26973
+ created_at: PropTypes.string.isRequired,
26974
+ description: PropTypes.string,
26975
+ });
26976
+
26977
+ T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
26978
+ discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
26979
+ id: PropTypes.string.isRequired,
26980
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
26981
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26982
+ });
26983
+
26984
+ T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
26985
+ T['io.flow.token.v0.models.channel_token_reference'],
26986
+ T['io.flow.token.v0.models.organization_token_reference'],
26987
+ T['io.flow.token.v0.models.organization_token_v2_reference'],
26988
+ T['io.flow.token.v0.models.partner_token_reference'],
26989
+ ]);
26990
+
26991
+ T['io.flow.export.v0.models.scheduled_export'] = PropTypes.exact({
26992
+ id: PropTypes.string.isRequired,
26993
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
26994
+ organization_q: PropTypes.string.isRequired,
26995
+ hour: PropTypes.number.isRequired,
26996
+ minute: PropTypes.number.isRequired,
26997
+ timezone: PropTypes.string.isRequired,
26998
+ types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
26999
+ last_sent_at: PropTypes.string,
27000
+ });
27001
+
27002
+ T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
27003
+ discriminator: PropTypes.oneOf(['channel_token']).isRequired,
27004
+ id: PropTypes.string.isRequired,
27005
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
27006
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
27007
+ partial: PropTypes.string.isRequired,
27008
+ cleartext: PropTypes.string,
27009
+ created_at: PropTypes.string.isRequired,
27010
+ description: PropTypes.string,
27011
+ });
27012
+
27013
+ T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
27014
+ T['io.flow.token.v0.models.channel_token'],
27015
+ T['io.flow.token.v0.models.organization_token'],
27016
+ T['io.flow.token.v0.models.organization_token_v2'],
27017
+ T['io.flow.token.v0.models.partner_token'],
27018
+ ]);
27019
+
27020
+ T['io.flow.internal.v0.models.user_one_time_token'] = PropTypes.exact({
27021
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
27022
+ token: PropTypes.string.isRequired,
27023
+ });
27024
+
27025
+ T['io.flow.internal.v0.models.partner_membership_summary'] = PropTypes.exact({
27026
+ id: PropTypes.string.isRequired,
27027
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
27028
+ role: T['io.flow.common.v0.enums.role'].isRequired,
27029
+ });
27030
+
27031
+ T['io.flow.internal.v0.models.partner_membership_version'] = PropTypes.exact({
27032
+ id: PropTypes.string.isRequired,
27033
+ timestamp: PropTypes.string.isRequired,
27034
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
27035
+ partner_membership: T['io.flow.internal.v0.models.partner_membership_summary'].isRequired,
27036
+ });
27037
+
27038
+ T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
27039
+ id: PropTypes.string.isRequired,
27040
+ fraud_review_id: PropTypes.string.isRequired,
27041
+ order: T['io.flow.experience.v0.models.order_reference'].isRequired,
27042
+ fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
27043
+ status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
27044
+ created_at: PropTypes.string.isRequired,
27045
+ liability: T['io.flow.fraud.v0.enums.fraud_liability'],
27046
+ updated_by_user: T['io.flow.common.v0.models.user_reference'],
27047
+ });
27048
+
27049
+ T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
27050
+ discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
27051
+ fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
27052
+ fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
27053
+ fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
27054
+ });
27055
+
27056
+ T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
27057
+ T['io.flow.internal.v0.models.payment_summary_v2'],
27058
+ T['io.flow.internal.v0.models.fraud_summary'],
27059
+ ]);
27060
+
27061
+ T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
27062
+ order: T['io.flow.experience.v0.models.order'].isRequired,
27063
+ status: T['io.flow.experience.v0.enums.order_status'].isRequired,
27064
+ transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
27065
+ trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
27066
+ returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
27067
+ notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
27068
+ submitted_at: PropTypes.string,
27069
+ created_at: PropTypes.string.isRequired,
27070
+ updated_at: PropTypes.string.isRequired,
27071
+ });
27072
+
27073
+ T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
27074
+ discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
25848
27075
  event_id: PropTypes.string.isRequired,
25849
27076
  timestamp: PropTypes.string.isRequired,
25850
- account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
27077
+ organization: PropTypes.string.isRequired,
27078
+ id: PropTypes.string.isRequired,
27079
+ fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
25851
27080
  });
25852
27081
 
25853
27082
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
@@ -25859,6 +27088,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25859
27088
  T['io.flow.internal.v0.models.adyen_capture_upserted'],
25860
27089
  T['io.flow.internal.v0.models.adyen_refund_deleted'],
25861
27090
  T['io.flow.internal.v0.models.adyen_refund_upserted'],
27091
+ T['io.flow.internal.v0.models.index_assignment_upserted'],
27092
+ T['io.flow.internal.v0.models.index_assignment_deleted'],
25862
27093
  T['io.flow.internal.v0.models.account_upserted'],
25863
27094
  T['io.flow.internal.v0.models.account_upserted_v2'],
25864
27095
  T['io.flow.internal.v0.models.account_deleted_v2'],
@@ -25900,8 +27131,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25900
27131
  T['io.flow.internal.v0.models.tax_transaction_deleted'],
25901
27132
  T['io.flow.internal.v0.models.duty_transaction_upserted'],
25902
27133
  T['io.flow.internal.v0.models.duty_transaction_deleted'],
27134
+ T['io.flow.internal.v0.models.transaction_statement_upserted'],
27135
+ T['io.flow.internal.v0.models.transaction_statement_deleted'],
25903
27136
  T['io.flow.internal.v0.models.daily_value_upserted'],
25904
27137
  T['io.flow.internal.v0.models.daily_value_deleted'],
27138
+ T['io.flow.internal.v0.models.label_invoice_request_upserted'],
27139
+ T['io.flow.internal.v0.models.label_invoice_request_deleted'],
25905
27140
  T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
25906
27141
  T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
25907
27142
  T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
@@ -26038,6 +27273,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26038
27273
  T['io.flow.internal.v0.models.issuer_upserted'],
26039
27274
  T['io.flow.internal.v0.models.issuer_deleted'],
26040
27275
  T['io.flow.internal.v0.models.item_form_import_request'],
27276
+ T['io.flow.internal.v0.models.label_request_error_upserted'],
27277
+ T['io.flow.internal.v0.models.label_request_error_deleted'],
26041
27278
  T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
26042
27279
  T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
26043
27280
  T['io.flow.internal.v0.models.localized_item_upserted_v2'],
@@ -26063,8 +27300,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26063
27300
  T['io.flow.internal.v0.models.organization_business_entity_upserted'],
26064
27301
  T['io.flow.internal.v0.models.organization_status_change_upserted'],
26065
27302
  T['io.flow.internal.v0.models.organization_status_change_deleted'],
27303
+ T['io.flow.internal.v0.models.organization_deactivation_upserted'],
27304
+ T['io.flow.internal.v0.models.organization_deactivation_deleted'],
27305
+ T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'],
27306
+ T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'],
26066
27307
  T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
26067
27308
  T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
27309
+ T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'],
27310
+ T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
26068
27311
  T['io.flow.internal.v0.models.internal_authorization_upserted'],
26069
27312
  T['io.flow.internal.v0.models.internal_authorization_deleted'],
26070
27313
  T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
@@ -26128,6 +27371,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26128
27371
  T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
26129
27372
  T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
26130
27373
  T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
27374
+ T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
27375
+ T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
26131
27376
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
26132
27377
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
26133
27378
  T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
@@ -26156,121 +27401,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26156
27401
  T['io.flow.internal.v0.models.user_deleted_v2'],
26157
27402
  ]);
26158
27403
 
26159
- T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
26160
- discriminator: PropTypes.oneOf(['user_reference']).isRequired,
26161
- id: PropTypes.string.isRequired,
26162
- });
26163
-
26164
- T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
26165
- discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
26166
- id: PropTypes.string.isRequired,
26167
- partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
26168
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
26169
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26170
- });
26171
-
26172
- T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
26173
- discriminator: PropTypes.oneOf(['partner_token']).isRequired,
26174
- id: PropTypes.string.isRequired,
26175
- partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
26176
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26177
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
26178
- partial: PropTypes.string.isRequired,
26179
- created_at: PropTypes.string.isRequired,
26180
- description: PropTypes.string,
26181
- });
26182
-
26183
- T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
26184
- discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
26185
- id: PropTypes.string.isRequired,
26186
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26187
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26188
- partial: PropTypes.string.isRequired,
26189
- cleartext: PropTypes.string,
26190
- created_at: PropTypes.string.isRequired,
26191
- description: PropTypes.string,
26192
- });
26193
-
26194
- T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
26195
- discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
26196
- id: PropTypes.string.isRequired,
26197
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26198
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
26199
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26200
- });
26201
-
26202
- T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
26203
- discriminator: PropTypes.oneOf(['organization_token']).isRequired,
26204
- id: PropTypes.string.isRequired,
26205
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
26206
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26207
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
26208
- partial: PropTypes.string.isRequired,
26209
- created_at: PropTypes.string.isRequired,
26210
- description: PropTypes.string,
26211
- });
26212
-
26213
- T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
26214
- discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
26215
- id: PropTypes.string.isRequired,
26216
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
26217
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26218
- });
26219
-
26220
- T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
26221
- T['io.flow.token.v0.models.channel_token_reference'],
26222
- T['io.flow.token.v0.models.organization_token_reference'],
26223
- T['io.flow.token.v0.models.organization_token_v2_reference'],
26224
- T['io.flow.token.v0.models.partner_token_reference'],
26225
- ]);
26226
-
26227
- T['io.flow.export.v0.models.scheduled_export'] = PropTypes.exact({
26228
- id: PropTypes.string.isRequired,
26229
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26230
- organization_q: PropTypes.string.isRequired,
26231
- hour: PropTypes.number.isRequired,
26232
- minute: PropTypes.number.isRequired,
26233
- timezone: PropTypes.string.isRequired,
26234
- types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
26235
- last_sent_at: PropTypes.string,
26236
- });
26237
-
26238
- T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
26239
- discriminator: PropTypes.oneOf(['channel_token']).isRequired,
26240
- id: PropTypes.string.isRequired,
26241
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
26242
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26243
- partial: PropTypes.string.isRequired,
26244
- cleartext: PropTypes.string,
26245
- created_at: PropTypes.string.isRequired,
26246
- description: PropTypes.string,
26247
- });
26248
-
26249
- T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
26250
- T['io.flow.token.v0.models.channel_token'],
26251
- T['io.flow.token.v0.models.organization_token'],
26252
- T['io.flow.token.v0.models.organization_token_v2'],
26253
- T['io.flow.token.v0.models.partner_token'],
26254
- ]);
26255
-
26256
- T['io.flow.internal.v0.models.user_one_time_token'] = PropTypes.exact({
26257
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26258
- token: PropTypes.string.isRequired,
26259
- });
26260
-
26261
- T['io.flow.internal.v0.models.partner_membership_summary'] = PropTypes.exact({
26262
- id: PropTypes.string.isRequired,
26263
- user: T['io.flow.common.v0.models.user_reference'].isRequired,
26264
- role: T['io.flow.common.v0.enums.role'].isRequired,
26265
- });
26266
-
26267
- T['io.flow.internal.v0.models.partner_membership_version'] = PropTypes.exact({
26268
- id: PropTypes.string.isRequired,
26269
- timestamp: PropTypes.string.isRequired,
26270
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
26271
- partner_membership: T['io.flow.internal.v0.models.partner_membership_summary'].isRequired,
26272
- });
26273
-
26274
27404
  T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
26275
27405
  T['io.flow.common.v0.models.user'],
26276
27406
  T['io.flow.common.v0.models.user_reference'],
@@ -26363,7 +27493,7 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
26363
27493
  'remote_area_surcharge',
26364
27494
  ]);
26365
27495
 
26366
- T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['archive', 'summary']);
27496
+ T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['summary']);
26367
27497
 
26368
27498
  T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
26369
27499
  'flow_rate_and_rule',
@@ -26375,13 +27505,13 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
26375
27505
 
26376
27506
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
26377
27507
  T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
26378
- T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject']);
26379
27508
  T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
26380
27509
  T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
26381
27510
  T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
26382
27511
  T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
26383
27512
  T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
26384
27513
  T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
27514
+ T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
26385
27515
  T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
26386
27516
  T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
26387
27517
 
@@ -26394,6 +27524,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26394
27524
  'adyen_capture_upserted',
26395
27525
  'adyen_refund_deleted',
26396
27526
  'adyen_refund_upserted',
27527
+ 'index_assignment_upserted',
27528
+ 'index_assignment_deleted',
26397
27529
  'account_upserted',
26398
27530
  'account_upserted_v2',
26399
27531
  'account_deleted_v2',
@@ -26435,8 +27567,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26435
27567
  'tax_transaction_deleted',
26436
27568
  'duty_transaction_upserted',
26437
27569
  'duty_transaction_deleted',
27570
+ 'transaction_statement_upserted',
27571
+ 'transaction_statement_deleted',
26438
27572
  'daily_value_upserted',
26439
27573
  'daily_value_deleted',
27574
+ 'label_invoice_request_upserted',
27575
+ 'label_invoice_request_deleted',
26440
27576
  'calculator_organization_settings_upserted',
26441
27577
  'calculator_organization_settings_deleted',
26442
27578
  'carrier_account_upserted_v2',
@@ -26573,6 +27709,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26573
27709
  'issuer_upserted',
26574
27710
  'issuer_deleted',
26575
27711
  'item_form_import_request',
27712
+ 'label_request_error_upserted',
27713
+ 'label_request_error_deleted',
26576
27714
  'label_tracking_summary_upserted',
26577
27715
  'label_tracking_summary_deleted',
26578
27716
  'localized_item_upserted_v2',
@@ -26598,8 +27736,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26598
27736
  'organization_business_entity_upserted',
26599
27737
  'organization_status_change_upserted',
26600
27738
  'organization_status_change_deleted',
27739
+ 'organization_deactivation_upserted',
27740
+ 'organization_deactivation_deleted',
27741
+ 'merchant_guid_assignment_upserted',
27742
+ 'merchant_guid_assignment_deleted',
26601
27743
  'partner_organization_settings_upserted',
26602
27744
  'partner_organization_settings_deleted',
27745
+ 'unassigned_merchant_guid_upserted',
27746
+ 'unassigned_merchant_guid_deleted',
26603
27747
  'internal_authorization_upserted',
26604
27748
  'internal_authorization_deleted',
26605
27749
  'afterpay_authorization_upserted',
@@ -26663,6 +27807,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26663
27807
  'shopify_markets_webhook_registration_deleted',
26664
27808
  'shopify_markets_shop_statistics_upserted',
26665
27809
  'shopify_markets_shop_statistics_deleted',
27810
+ 'shopify_markets_metrics_upserted',
27811
+ 'shopify_markets_metrics_deleted',
26666
27812
  'shopify_monitoring_order_monitor_event_upserted',
26667
27813
  'shopify_monitoring_order_monitor_event_deleted',
26668
27814
  'shopify_order_fulfillments_snapshot_upserted',
@@ -26707,6 +27853,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
26707
27853
  'unit_test',
26708
27854
  'api',
26709
27855
  'api_activation',
27856
+ 'api_sandbox_setup',
26710
27857
  'api_internal',
26711
27858
  'api_internal_block',
26712
27859
  'api_internal_unblock',
@@ -26749,18 +27896,31 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
26749
27896
  'channel_transaction',
26750
27897
  'channel_organization',
26751
27898
  'consumer_invoice',
27899
+ 'fulfillment_in_transit',
27900
+ 'fulfillment_shipping_notification',
27901
+ 'fulfillment_external',
26752
27902
  'label_tracking_summary',
27903
+ 'label_invoice_request',
27904
+ 'label_origin',
26753
27905
  'order',
26754
27906
  'order_identifier',
26755
27907
  'refund',
26756
27908
  'refund_deletion',
27909
+ 'refund_over_capture',
27910
+ 'sales_record',
26757
27911
  'statement_batch',
26758
- 'statement_batch_email',
26759
27912
  'statement_email',
26760
27913
  'statement_summary_email',
26761
27914
  'wash',
26762
27915
  ]);
26763
27916
 
27917
+ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
27918
+ 'shopify_small_usa',
27919
+ 'shopify_medium_usa',
27920
+ 'shopify_enterprise_usa',
27921
+ 'shopify_small_sdc_usa',
27922
+ ]);
27923
+
26764
27924
  T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
26765
27925
  T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
26766
27926
  T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
@@ -26794,6 +27954,15 @@ T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf
26794
27954
 
26795
27955
  T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
26796
27956
 
27957
+ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.oneOf([
27958
+ 'order_update',
27959
+ 'card_payment',
27960
+ 'online_payment',
27961
+ 'flow_shop',
27962
+ 'catalog_publication_sync',
27963
+ 'product_restriction_result',
27964
+ ]);
27965
+
26797
27966
  T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
26798
27967
  'apparel_and_accessories',
26799
27968
  'beauty_and_cosmetics',
@@ -26823,9 +27992,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
26823
27992
  'fraud_review',
26824
27993
  'carrier_account',
26825
27994
  'payment',
26826
- 'label_generation_settings',
26827
- 'ratecard',
26828
- 'logistics_center',
27995
+ 'rate_levels',
26829
27996
  'center_defaults',
26830
27997
  ]);
26831
27998
 
@@ -27063,11 +28230,6 @@ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
27063
28230
  transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
27064
28231
  });
27065
28232
 
27066
- T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
27067
- amount: PropTypes.number.isRequired,
27068
- description: PropTypes.string,
27069
- });
27070
-
27071
28233
  T['io.flow.internal.v0.models.discount_code'] = PropTypes.exact({
27072
28234
  code: PropTypes.string.isRequired,
27073
28235
  });
@@ -27090,6 +28252,89 @@ T['io.flow.internal.v0.models.email_modification_form'] = PropTypes.exact({
27090
28252
  email: PropTypes.string,
27091
28253
  });
27092
28254
 
28255
+ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
28256
+ id: PropTypes.string.isRequired,
28257
+ acc_des: PropTypes.string,
28258
+ tax_code: PropTypes.string,
28259
+ vat_flag: PropTypes.string,
28260
+ country_name: PropTypes.string,
28261
+ w_tax_percent: PropTypes.string,
28262
+ iban: PropTypes.string,
28263
+ confirmed_date: PropTypes.string,
28264
+ w_tax_date: PropTypes.string,
28265
+ w_tax_num_expl: PropTypes.string,
28266
+ acng_code: PropTypes.string,
28267
+ phone: PropTypes.string,
28268
+ address: PropTypes.string,
28269
+ address_a: PropTypes.string,
28270
+ address_2: PropTypes.string,
28271
+ address_3: PropTypes.string,
28272
+ state_name: PropTypes.string,
28273
+ code: PropTypes.string,
28274
+ zip: PropTypes.string,
28275
+ pay_account: PropTypes.string,
28276
+ comp_num: PropTypes.string,
28277
+ w_tax_num: PropTypes.string,
28278
+ vat_num: PropTypes.string,
28279
+ orig_acc_name: PropTypes.string,
28280
+ branch: PropTypes.string,
28281
+ form_1099_code: PropTypes.string,
28282
+ trial_bal_code: PropTypes.string,
28283
+ sec_name: PropTypes.string,
28284
+ state: PropTypes.string,
28285
+ state_a: PropTypes.string,
28286
+ fax: PropTypes.string,
28287
+ details: PropTypes.string,
28288
+ bank_code: PropTypes.string,
28289
+ state_code: PropTypes.string,
28290
+ tax_office_code: PropTypes.string,
28291
+ pay_code: PropTypes.string,
28292
+ eacc_des: PropTypes.string,
28293
+ acng_des: PropTypes.string,
28294
+ branch_des: PropTypes.string,
28295
+ });
28296
+
28297
+ T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
28298
+ acc_des: PropTypes.string,
28299
+ tax_code: PropTypes.string,
28300
+ vat_flag: PropTypes.string,
28301
+ country_name: PropTypes.string,
28302
+ w_tax_percent: PropTypes.string,
28303
+ iban: PropTypes.string,
28304
+ confirmed_date: PropTypes.string,
28305
+ w_tax_date: PropTypes.string,
28306
+ w_tax_num_expl: PropTypes.string,
28307
+ acng_code: PropTypes.string,
28308
+ phone: PropTypes.string,
28309
+ address: PropTypes.string,
28310
+ address_a: PropTypes.string,
28311
+ address_2: PropTypes.string,
28312
+ address_3: PropTypes.string,
28313
+ state_name: PropTypes.string,
28314
+ code: PropTypes.string,
28315
+ zip: PropTypes.string,
28316
+ pay_account: PropTypes.string,
28317
+ comp_num: PropTypes.string,
28318
+ w_tax_num: PropTypes.string,
28319
+ vat_num: PropTypes.string,
28320
+ orig_acc_name: PropTypes.string,
28321
+ branch: PropTypes.string,
28322
+ form_1099_code: PropTypes.string,
28323
+ trial_bal_code: PropTypes.string,
28324
+ sec_name: PropTypes.string,
28325
+ state: PropTypes.string,
28326
+ state_a: PropTypes.string,
28327
+ fax: PropTypes.string,
28328
+ details: PropTypes.string,
28329
+ bank_code: PropTypes.string,
28330
+ state_code: PropTypes.string,
28331
+ tax_office_code: PropTypes.string,
28332
+ pay_code: PropTypes.string,
28333
+ eacc_des: PropTypes.string,
28334
+ acng_des: PropTypes.string,
28335
+ branch_des: PropTypes.string,
28336
+ });
28337
+
27093
28338
  T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
27094
28339
  placeholder: PropTypes.string,
27095
28340
  });
@@ -27169,6 +28414,10 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
27169
28414
  default_contents: PropTypes.string.isRequired,
27170
28415
  });
27171
28416
 
28417
+ T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
28418
+ id: PropTypes.string.isRequired,
28419
+ });
28420
+
27172
28421
  T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
27173
28422
  number: PropTypes.string.isRequired,
27174
28423
  pin: PropTypes.string,
@@ -27184,6 +28433,18 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
27184
28433
  created_by_email: PropTypes.string.isRequired,
27185
28434
  });
27186
28435
 
28436
+ T['io.flow.internal.v0.models.harmonization_threshold'] = PropTypes.exact({
28437
+ id: PropTypes.string.isRequired,
28438
+ chapter: PropTypes.number.isRequired,
28439
+ value: PropTypes.number.isRequired,
28440
+ updated_at: PropTypes.string.isRequired,
28441
+ });
28442
+
28443
+ T['io.flow.internal.v0.models.harmonization_threshold_form'] = PropTypes.exact({
28444
+ chapter: PropTypes.number.isRequired,
28445
+ value: PropTypes.number.isRequired,
28446
+ });
28447
+
27187
28448
  T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
27188
28449
  code: PropTypes.string.isRequired,
27189
28450
  description: PropTypes.string.isRequired,
@@ -27266,11 +28527,6 @@ T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
27266
28527
  destination: PropTypes.string.isRequired,
27267
28528
  });
27268
28529
 
27269
- T['io.flow.internal.v0.models.logistics_center_check'] = PropTypes.exact({
27270
- issues: PropTypes.arrayOf(PropTypes.string),
27271
- is_valid: PropTypes.bool.isRequired,
27272
- });
27273
-
27274
28530
  T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
27275
28531
  token: PropTypes.string.isRequired,
27276
28532
  });
@@ -27346,6 +28602,10 @@ T['io.flow.internal.v0.models.order_service_change_csv_form'] = PropTypes.exact(
27346
28602
  to_service_id: PropTypes.string.isRequired,
27347
28603
  });
27348
28604
 
28605
+ T['io.flow.internal.v0.models.organization_deactivation_form'] = PropTypes.exact({
28606
+ deactivate_at: PropTypes.string.isRequired,
28607
+ });
28608
+
27349
28609
  T['io.flow.internal.v0.models.organization_invitation_accept_form'] = PropTypes.exact({
27350
28610
  email: PropTypes.string.isRequired,
27351
28611
  });
@@ -27396,6 +28656,12 @@ T['io.flow.internal.v0.models.payment_organization_settings_put_form'] = PropTyp
27396
28656
  payment_statement_suffix: PropTypes.string,
27397
28657
  });
27398
28658
 
28659
+ T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
28660
+ scheduled: PropTypes.number.isRequired,
28661
+ sent: PropTypes.number.isRequired,
28662
+ failed: PropTypes.number.isRequired,
28663
+ });
28664
+
27399
28665
  T['io.flow.internal.v0.models.phrase_classified'] = PropTypes.exact({
27400
28666
  event_id: PropTypes.string.isRequired,
27401
28667
  timestamp: PropTypes.string.isRequired,
@@ -27425,6 +28691,20 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
27425
28691
  keys: PropTypes.arrayOf(PropTypes.string).isRequired,
27426
28692
  });
27427
28693
 
28694
+ T['io.flow.internal.v0.models.queued_record'] = PropTypes.exact({
28695
+ type: PropTypes.string.isRequired,
28696
+ type_id: PropTypes.string.isRequired,
28697
+ source_type: PropTypes.string,
28698
+ source_id: PropTypes.string,
28699
+ environment: PropTypes.string,
28700
+ created_at: PropTypes.string.isRequired,
28701
+ num_attempts: PropTypes.number.isRequired,
28702
+ next_attempt_at: PropTypes.string.isRequired,
28703
+ errors: PropTypes.arrayOf(PropTypes.string),
28704
+ stacktrace: PropTypes.string,
28705
+ snooze_id: PropTypes.string,
28706
+ });
28707
+
27428
28708
  T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
27429
28709
  base: PropTypes.string.isRequired,
27430
28710
  target: PropTypes.string.isRequired,
@@ -27440,6 +28720,7 @@ T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
27440
28720
 
27441
28721
  T['io.flow.internal.v0.models.rate_level_form'] = PropTypes.exact({
27442
28722
  name: PropTypes.string.isRequired,
28723
+ key: PropTypes.string.isRequired,
27443
28724
  });
27444
28725
 
27445
28726
  T['io.flow.internal.v0.models.rate_level_organization_form'] = PropTypes.exact({
@@ -27455,6 +28736,7 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
27455
28736
  id: PropTypes.string.isRequired,
27456
28737
  name: PropTypes.string.isRequired,
27457
28738
  effective_at: PropTypes.string.isRequired,
28739
+ key: PropTypes.string.isRequired,
27458
28740
  });
27459
28741
 
27460
28742
  T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
@@ -27463,6 +28745,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
27463
28745
  margin: PropTypes.number.isRequired,
27464
28746
  });
27465
28747
 
28748
+ T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
28749
+ key: PropTypes.string,
28750
+ from: PropTypes.string.isRequired,
28751
+ to: PropTypes.string.isRequired,
28752
+ organization_id: PropTypes.string,
28753
+ });
28754
+
27466
28755
  T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
27467
28756
  task_id: PropTypes.string.isRequired,
27468
28757
  });
@@ -27479,6 +28768,24 @@ T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
27479
28768
  category: PropTypes.string.isRequired,
27480
28769
  });
27481
28770
 
28771
+ T['io.flow.internal.v0.models.retracking'] = PropTypes.exact({
28772
+ carrier: PropTypes.string.isRequired,
28773
+ tracking_number: PropTypes.string,
28774
+ });
28775
+
28776
+ T['io.flow.internal.v0.models.retracking_form'] = PropTypes.exact({
28777
+ carrier: PropTypes.string.isRequired,
28778
+ carrier_tracking_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
28779
+ });
28780
+
28781
+ T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
28782
+ requested_by: PropTypes.string.isRequired,
28783
+ });
28784
+
28785
+ T['io.flow.internal.v0.models.sandbox_setup_form'] = PropTypes.exact({
28786
+ requested_by: PropTypes.string.isRequired,
28787
+ });
28788
+
27482
28789
  T['io.flow.internal.v0.models.screen'] = PropTypes.exact({
27483
28790
  id: PropTypes.string.isRequired,
27484
28791
  q: PropTypes.string.isRequired,
@@ -27620,6 +28927,11 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
27620
28927
  code: PropTypes.string.isRequired,
27621
28928
  });
27622
28929
 
28930
+ T['io.flow.internal.v0.models.shopify_store_password'] = PropTypes.exact({
28931
+ temporary_password: PropTypes.string.isRequired,
28932
+ expiry: PropTypes.string.isRequired,
28933
+ });
28934
+
27623
28935
  T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
27624
28936
  placeholder: PropTypes.string.isRequired,
27625
28937
  });
@@ -27669,6 +28981,10 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
27669
28981
  keys: PropTypes.arrayOf(PropTypes.string).isRequired,
27670
28982
  });
27671
28983
 
28984
+ T['io.flow.internal.v0.models.wash_carrier_actual_file_form'] = PropTypes.exact({
28985
+ url: PropTypes.string.isRequired,
28986
+ });
28987
+
27672
28988
  T['io.flow.internal.v0.models.wash_export_request'] = PropTypes.exact({
27673
28989
  url: PropTypes.string.isRequired,
27674
28990
  });
@@ -27709,7 +29025,7 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
27709
29025
  name: PropTypes.string,
27710
29026
  });
27711
29027
 
27712
- T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
29028
+ T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
27713
29029
 
27714
29030
  T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
27715
29031
  placeholder: PropTypes.string,
@@ -28435,8 +29751,45 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
28435
29751
  order_id: PropTypes.string,
28436
29752
  });
28437
29753
 
29754
+ T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
29755
+ country: PropTypes.string.isRequired,
29756
+ });
29757
+
29758
+ T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
29759
+
29760
+ T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
29761
+ 'accessories',
29762
+ 'animals_and_pet_supplies',
29763
+ 'apparel',
29764
+ 'apparel_and_accessories',
29765
+ 'arts_and_entertainment',
29766
+ 'baby_and_toddler',
29767
+ 'business_and_industrial',
29768
+ 'cameras_and_optics',
29769
+ 'electronics',
29770
+ 'food_beverages_and_tobacco',
29771
+ 'furniture',
29772
+ 'gift_cards',
29773
+ 'hardware',
29774
+ 'health_and_beauty',
29775
+ 'home_and_garden',
29776
+ 'jewelry',
29777
+ 'luggage_and_bags',
29778
+ 'mature',
29779
+ 'media',
29780
+ 'office_supplies',
29781
+ 'paper_and_art',
29782
+ 'religious_and_ceremonial',
29783
+ 'software',
29784
+ 'sporting_goods',
29785
+ 'sports_and_fitness',
29786
+ 'toys_and_games',
29787
+ 'toys_hobbies_gifts',
29788
+ 'vehicles_and_parts',
29789
+ 'other',
29790
+ ]);
29791
+
28438
29792
  T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
28439
- T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
28440
29793
  T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
28441
29794
  T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
28442
29795
 
@@ -28599,6 +29952,10 @@ T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropT
28599
29952
  placeholder: PropTypes.bool,
28600
29953
  });
28601
29954
 
29955
+ T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = PropTypes.exact({
29956
+ reason: PropTypes.string.isRequired,
29957
+ });
29958
+
28602
29959
  T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
28603
29960
  base: PropTypes.string.isRequired,
28604
29961
  target: PropTypes.string.isRequired,
@@ -28726,6 +30083,7 @@ export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_s
28726
30083
  export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
28727
30084
  export const alertImportSummary = T['io.flow.internal.v0.models.alert_import_summary'];
28728
30085
  export const alertRequeueSummary = T['io.flow.internal.v0.models.alert_requeue_summary'];
30086
+ export const algoliaIndexAssignment = T['io.flow.internal.v0.models.algolia_index_assignment'];
28729
30087
  export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
28730
30088
  export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
28731
30089
  export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
@@ -28748,6 +30106,7 @@ export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized
28748
30106
  export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
28749
30107
  export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
28750
30108
  export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
30109
+ export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
28751
30110
  export const backfill = T['io.flow.internal.v0.models.backfill'];
28752
30111
  export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
28753
30112
  export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
@@ -28779,7 +30138,6 @@ export const billingStatementAttachmentKey = T['io.flow.internal.v0.enums.billin
28779
30138
  export const billingStatementBatch = T['io.flow.internal.v0.models.billing_statement_batch'];
28780
30139
  export const billingStatementBatchDeleted = T['io.flow.internal.v0.models.billing_statement_batch_deleted'];
28781
30140
  export const billingStatementBatchFileKey = T['io.flow.internal.v0.enums.billing_statement_batch_file_key'];
28782
- export const billingStatementBatchReconciliation = T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'];
28783
30141
  export const billingStatementBatchReference = T['io.flow.internal.v0.models.billing_statement_batch_reference'];
28784
30142
  export const billingStatementBatchStatement = T['io.flow.internal.v0.models.billing_statement_batch_statement'];
28785
30143
  export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'];
@@ -28846,6 +30204,8 @@ export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser
28846
30204
  export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
28847
30205
  export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
28848
30206
  export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
30207
+ export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_dtce_post_body'];
30208
+ export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
28849
30209
  export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
28850
30210
  export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calculator_organization_settings'];
28851
30211
  export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
@@ -28855,9 +30215,11 @@ export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
28855
30215
  export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
28856
30216
  export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
28857
30217
  export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_account_upserted_v2'];
30218
+ export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
28858
30219
  export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
28859
30220
  export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
28860
30221
  export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
30222
+ export const carrierValidationStatus = T['io.flow.internal.v0.enums.carrier_validation_status'];
28861
30223
  export const catalogImportRequest = T['io.flow.internal.v0.models.catalog_import_request'];
28862
30224
  export const catalogImportType = T['io.flow.internal.v0.enums.catalog_import_type'];
28863
30225
  export const catalogItemBatchIndexTask = T['io.flow.internal.v0.models.catalog_item_batch_index_task'];
@@ -28866,6 +30228,7 @@ export const catalogItemIndexTask = T['io.flow.internal.v0.models.catalog_item_i
28866
30228
  export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.catalog_item_region_availabilities'];
28867
30229
  export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
28868
30230
  export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
30231
+ export const catalogPublicationSyncValidationError = T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'];
28869
30232
  export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
28870
30233
  export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
28871
30234
  export const catalogSettingsPutForm = T['io.flow.internal.v0.models.catalog_settings_put_form'];
@@ -28901,6 +30264,7 @@ export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_orde
28901
30264
  export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
28902
30265
  export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
28903
30266
  export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
30267
+ export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
28904
30268
  export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
28905
30269
  export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
28906
30270
  export const channelOrderAcceptanceStatus = T['io.flow.internal.v0.enums.channel_order_acceptance_status'];
@@ -29482,6 +30846,7 @@ export const classificationWrapper = T['io.flow.internal.v0.models.classificatio
29482
30846
  export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
29483
30847
  export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
29484
30848
  export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
30849
+ export const companyReference = T['io.flow.internal.v0.models.company_reference'];
29485
30850
  export const compliance = T['io.flow.internal.v0.models.compliance'];
29486
30851
  export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
29487
30852
  export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
@@ -29612,6 +30977,7 @@ export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor']
29612
30977
  export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
29613
30978
  export const disputeStatusForm = T['io.flow.internal.v0.models.dispute_status_form'];
29614
30979
  export const disputeTransaction = T['io.flow.internal.v0.models.dispute_transaction'];
30980
+ export const disputeTransactionType = T['io.flow.internal.v0.enums.dispute_transaction_type'];
29615
30981
  export const disputeType = T['io.flow.internal.v0.enums.dispute_type'];
29616
30982
  export const disputeUpserted = T['io.flow.internal.v0.models.dispute_upserted'];
29617
30983
  export const dutiedItemsExport = T['io.flow.internal.v0.models.dutied_items_export'];
@@ -29649,13 +31015,20 @@ export const emailModificationForm = T['io.flow.internal.v0.models.email_modific
29649
31015
  export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
29650
31016
  export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
29651
31017
  export const encryption = T['io.flow.internal.v0.models.encryption'];
31018
+ export const entityReference = T['io.flow.internal.v0.models.entity_reference'];
29652
31019
  export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
29653
31020
  export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
29654
- export const erpFlowFileBatchForm = T['io.flow.internal.v0.models.erp_flow_file_batch_form'];
31021
+ export const erpFlowFileForm = T['io.flow.internal.v0.models.erp_flow_file_form'];
31022
+ export const erpFlowVendor = T['io.flow.internal.v0.models.erp_flow_vendor'];
29655
31023
  export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
29656
31024
  export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
31025
+ export const erpPriorityVendor = T['io.flow.internal.v0.models.erp_priority_vendor'];
31026
+ export const erpPriorityVendorForm = T['io.flow.internal.v0.models.erp_priority_vendor_form'];
29657
31027
  export const erpVendor = T['io.flow.internal.v0.models.erp_vendor'];
29658
- export const erpVendorsDelta = T['io.flow.internal.v0.models.erp_vendors_delta'];
31028
+ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status'];
31029
+ export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
31030
+ export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
31031
+ export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
29659
31032
  export const event = T['io.flow.internal.v0.unions.event'];
29660
31033
  export const eventType = T['io.flow.internal.v0.enums.event_type'];
29661
31034
  export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
@@ -29768,6 +31141,7 @@ export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_pro
29768
31141
  export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_project_put_form'];
29769
31142
  export const flowLabelSetting = T['io.flow.internal.v0.models.flow_label_setting'];
29770
31143
  export const flowLabelSettingForm = T['io.flow.internal.v0.models.flow_label_setting_form'];
31144
+ export const flowShopValidationError = T['io.flow.internal.v0.models.flow_shop_validation_error'];
29771
31145
  export const format = T['io.flow.internal.v0.enums.format'];
29772
31146
  export const fraudPendingReview = T['io.flow.internal.v0.models.fraud_pending_review'];
29773
31147
  export const fraudPendingReviewDeleted = T['io.flow.internal.v0.models.fraud_pending_review_deleted'];
@@ -29803,11 +31177,22 @@ export const ftpSettingsPaths = T['io.flow.internal.v0.models.ftp_settings_paths
29803
31177
  export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
29804
31178
  export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
29805
31179
  export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
31180
+ export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
29806
31181
  export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
31182
+ export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
29807
31183
  export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
29808
31184
  export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
31185
+ export const fulfillmentLine = T['io.flow.internal.v0.models.fulfillment_line'];
31186
+ export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
31187
+ export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
31188
+ export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
31189
+ export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'];
31190
+ export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
31191
+ export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
29809
31192
  export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
31193
+ export const fulfillmentShipping = T['io.flow.internal.v0.models.fulfillment_shipping'];
29810
31194
  export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
31195
+ export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
29811
31196
  export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
29812
31197
  export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
29813
31198
  export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
@@ -29819,6 +31204,7 @@ export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_reven
29819
31204
  export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
29820
31205
  export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
29821
31206
  export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
31207
+ export const genericValidationError = T['io.flow.internal.v0.models.generic_validation_error'];
29822
31208
  export const giftCard = T['io.flow.internal.v0.models.gift_card'];
29823
31209
  export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
29824
31210
  export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
@@ -29841,6 +31227,8 @@ export const harmonizationItemClassificationUpserted = T['io.flow.internal.v0.mo
29841
31227
  export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
29842
31228
  export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
29843
31229
  export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
31230
+ export const harmonizationThreshold = T['io.flow.internal.v0.models.harmonization_threshold'];
31231
+ export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmonization_threshold_form'];
29844
31232
  export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
29845
31233
  export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
29846
31234
  export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
@@ -29905,6 +31293,8 @@ export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hyb
29905
31293
  export const hybrisCatalogItemsImportRequestData = T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'];
29906
31294
  export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
29907
31295
  export const importFailed = T['io.flow.internal.v0.models.import_failed'];
31296
+ export const indexAssignmentDeleted = T['io.flow.internal.v0.models.index_assignment_deleted'];
31297
+ export const indexAssignmentUpserted = T['io.flow.internal.v0.models.index_assignment_upserted'];
29908
31298
  export const indexTaskType = T['io.flow.internal.v0.unions.index_task_type'];
29909
31299
  export const initialInputDataSource = T['io.flow.internal.v0.enums.initial_input_data_source'];
29910
31300
  export const inlineAuthorizationParameters = T['io.flow.internal.v0.unions.inline_authorization_parameters'];
@@ -29975,6 +31365,7 @@ export const itemSalesMarginPostForm = T['io.flow.internal.v0.models.item_sales_
29975
31365
  export const itemSalesMarginPutForm = T['io.flow.internal.v0.models.item_sales_margin_put_form'];
29976
31366
  export const itemSalesMarginUpserted = T['io.flow.internal.v0.models.item_sales_margin_upserted'];
29977
31367
  export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_margin_version'];
31368
+ export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
29978
31369
  export const itemType = T['io.flow.internal.v0.enums.item_type'];
29979
31370
  export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
29980
31371
  export const itemsShipped = T['io.flow.internal.v0.models.items_shipped'];
@@ -29988,6 +31379,7 @@ export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_
29988
31379
  export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
29989
31380
  export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
29990
31381
  export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
31382
+ export const labelBase = T['io.flow.internal.v0.models.label_base'];
29991
31383
  export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
29992
31384
  export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
29993
31385
  export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
@@ -29995,6 +31387,7 @@ export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job
29995
31387
  export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
29996
31388
  export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
29997
31389
  export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
31390
+ export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
29998
31391
  export const labelGenerationAddressFailureStatus = T['io.flow.internal.v0.enums.label_generation_address_failure_status'];
29999
31392
  export const labelGenerationAddressFailureStatusUpdateForm = T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'];
30000
31393
  export const labelGenerationAddressFailures = T['io.flow.internal.v0.models.label_generation_address_failures'];
@@ -30003,7 +31396,20 @@ export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.labe
30003
31396
  export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
30004
31397
  export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
30005
31398
  export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
31399
+ export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
31400
+ export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
31401
+ export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
31402
+ export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
31403
+ export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
31404
+ export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
31405
+ export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
31406
+ export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
30006
31407
  export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
31408
+ export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
31409
+ export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];
31410
+ export const labelSurchargeDetailFlat = T['io.flow.internal.v0.models.label_surcharge_detail_flat'];
31411
+ export const labelSurchargeDetailPerWeightUnit = T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'];
31412
+ export const labelSurchargeDetailPercentage = T['io.flow.internal.v0.models.label_surcharge_detail_percentage'];
30007
31413
  export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
30008
31414
  export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
30009
31415
  export const labelTrackingSummaryUpserted = T['io.flow.internal.v0.models.label_tracking_summary_upserted'];
@@ -30011,6 +31417,7 @@ export const labelTransaction = T['io.flow.internal.v0.models.label_transaction'
30011
31417
  export const labelTransactionDeleted = T['io.flow.internal.v0.models.label_transaction_deleted'];
30012
31418
  export const labelTransactionType = T['io.flow.internal.v0.enums.label_transaction_type'];
30013
31419
  export const labelTransactionUpserted = T['io.flow.internal.v0.models.label_transaction_upserted'];
31420
+ export const labelUnits = T['io.flow.internal.v0.models.label_units'];
30014
31421
  export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
30015
31422
  export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
30016
31423
  export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
@@ -30050,7 +31457,6 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
30050
31457
  export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
30051
31458
  export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
30052
31459
  export const location = T['io.flow.internal.v0.models.location'];
30053
- export const logisticsCenterCheck = T['io.flow.internal.v0.models.logistics_center_check'];
30054
31460
  export const logo = T['io.flow.internal.v0.models.logo'];
30055
31461
  export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
30056
31462
  export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
@@ -30127,8 +31533,19 @@ export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.mo
30127
31533
  export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
30128
31534
  export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
30129
31535
  export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
31536
+ export const merchantCharges = T['io.flow.internal.v0.models.merchant_charges'];
31537
+ export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
31538
+ export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
31539
+ export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
31540
+ export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
30130
31541
  export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
30131
31542
  export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
31543
+ export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
31544
+ export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
31545
+ export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
31546
+ export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
31547
+ export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
31548
+ export const metadataWeights = T['io.flow.internal.v0.models.metadata_weights'];
30132
31549
  export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
30133
31550
  export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
30134
31551
  export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
@@ -30194,10 +31611,12 @@ export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order
30194
31611
  export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
30195
31612
  export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
30196
31613
  export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
31614
+ export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
30197
31615
  export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'];
30198
31616
  export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
30199
31617
  export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
30200
31618
  export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
31619
+ export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
30201
31620
  export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
30202
31621
  export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
30203
31622
  export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
@@ -30216,6 +31635,10 @@ export const organizationCurrencySettingDeleted = T['io.flow.internal.v0.models.
30216
31635
  export const organizationCurrencySettingForm = T['io.flow.internal.v0.models.organization_currency_setting_form'];
30217
31636
  export const organizationCurrencySettingUpserted = T['io.flow.internal.v0.models.organization_currency_setting_upserted'];
30218
31637
  export const organizationCurrencySettingVersion = T['io.flow.internal.v0.models.organization_currency_setting_version'];
31638
+ export const organizationDeactivation = T['io.flow.internal.v0.models.organization_deactivation'];
31639
+ export const organizationDeactivationDeleted = T['io.flow.internal.v0.models.organization_deactivation_deleted'];
31640
+ export const organizationDeactivationForm = T['io.flow.internal.v0.models.organization_deactivation_form'];
31641
+ export const organizationDeactivationUpserted = T['io.flow.internal.v0.models.organization_deactivation_upserted'];
30219
31642
  export const organizationDebugTransaction = T['io.flow.internal.v0.models.organization_debug_transaction'];
30220
31643
  export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
30221
31644
  export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
@@ -30248,6 +31671,7 @@ export const organizationSettingsForm = T['io.flow.internal.v0.models.organizati
30248
31671
  export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
30249
31672
  export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
30250
31673
  export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
31674
+ export const organizationsAuditCheckReport = T['io.flow.internal.v0.models.organizations_audit_check_report'];
30251
31675
  export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
30252
31676
  export const owner = T['io.flow.internal.v0.enums.owner'];
30253
31677
  export const partner = T['io.flow.internal.v0.models.partner'];
@@ -30282,6 +31706,7 @@ export const paymentSummaryStatus = T['io.flow.internal.v0.enums.payment_summary
30282
31706
  export const paymentSummaryType = T['io.flow.internal.v0.enums.payment_summary_type'];
30283
31707
  export const paymentSummaryV2 = T['io.flow.internal.v0.models.payment_summary_v2'];
30284
31708
  export const paymentTerm = T['io.flow.internal.v0.enums.payment_term'];
31709
+ export const payoutStatusCounts = T['io.flow.internal.v0.models.payout_status_counts'];
30285
31710
  export const paypalAccount = T['io.flow.internal.v0.models.paypal_account'];
30286
31711
  export const paypalAccountModificationForm = T['io.flow.internal.v0.models.paypal_account_modification_form'];
30287
31712
  export const paypalAccountPutForm = T['io.flow.internal.v0.models.paypal_account_put_form'];
@@ -30352,6 +31777,7 @@ export const productHarmonization = T['io.flow.internal.v0.models.product_harmon
30352
31777
  export const productHarmonizationForm = T['io.flow.internal.v0.models.product_harmonization_form'];
30353
31778
  export const productLabels = T['io.flow.internal.v0.models.product_labels'];
30354
31779
  export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
31780
+ export const productRestrictionResultValidationError = T['io.flow.internal.v0.models.product_restriction_result_validation_error'];
30355
31781
  export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
30356
31782
  export const productStatus = T['io.flow.internal.v0.enums.product_status'];
30357
31783
  export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
@@ -30363,6 +31789,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
30363
31789
  export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
30364
31790
  export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
30365
31791
  export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
31792
+ export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
30366
31793
  export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
30367
31794
  export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
30368
31795
  export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
@@ -30380,6 +31807,7 @@ export const rateFreshnessSummaryDeleted = T['io.flow.internal.v0.models.rate_fr
30380
31807
  export const rateFreshnessSummaryUpserted = T['io.flow.internal.v0.models.rate_freshness_summary_upserted'];
30381
31808
  export const rateLevel = T['io.flow.internal.v0.models.rate_level'];
30382
31809
  export const rateLevelForm = T['io.flow.internal.v0.models.rate_level_form'];
31810
+ export const rateLevelKey = T['io.flow.internal.v0.enums.rate_level_key'];
30383
31811
  export const rateLevelOrganization = T['io.flow.internal.v0.models.rate_level_organization'];
30384
31812
  export const rateLevelOrganizationForm = T['io.flow.internal.v0.models.rate_level_organization_form'];
30385
31813
  export const rateLevelRatecard = T['io.flow.internal.v0.models.rate_level_ratecard'];
@@ -30429,9 +31857,13 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
30429
31857
  export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
30430
31858
  export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
30431
31859
  export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
31860
+ export const report = T['io.flow.internal.v0.models.report'];
31861
+ export const reportForm = T['io.flow.internal.v0.models.report_form'];
30432
31862
  export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
30433
31863
  export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
31864
+ export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
30434
31865
  export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
31866
+ export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
30435
31867
  export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
30436
31868
  export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
30437
31869
  export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
@@ -30464,6 +31896,8 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
30464
31896
  export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
30465
31897
  export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
30466
31898
  export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
31899
+ export const retracking = T['io.flow.internal.v0.models.retracking'];
31900
+ export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
30467
31901
  export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
30468
31902
  export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
30469
31903
  export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
@@ -30475,6 +31909,8 @@ export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
30475
31909
  export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
30476
31910
  export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
30477
31911
  export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
31912
+ export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
31913
+ export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
30478
31914
  export const scope = T['io.flow.internal.v0.enums.scope'];
30479
31915
  export const screen = T['io.flow.internal.v0.models.screen'];
30480
31916
  export const screenForm = T['io.flow.internal.v0.models.screen_form'];
@@ -30500,6 +31936,7 @@ export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
30500
31936
  export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
30501
31937
  export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
30502
31938
  export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
31939
+ export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
30503
31940
  export const shop = T['io.flow.internal.v0.models.shop'];
30504
31941
  export const shopForm = T['io.flow.internal.v0.models.shop_form'];
30505
31942
  export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
@@ -30521,11 +31958,18 @@ export const shopifyGiftCardReversalForm = T['io.flow.internal.v0.models.shopify
30521
31958
  export const shopifyGrantStatus = T['io.flow.internal.v0.enums.shopify_grant_status'];
30522
31959
  export const shopifyGrantsCheck = T['io.flow.internal.v0.models.shopify_grants_check'];
30523
31960
  export const shopifyMarketsDangerousGoods = T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'];
31961
+ export const shopifyMarketsDiscrepancy = T['io.flow.internal.v0.models.shopify_markets_discrepancy'];
31962
+ export const shopifyMarketsDiscrepancyData = T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'];
30524
31963
  export const shopifyMarketsHtsNumberAvailable = T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'];
30525
31964
  export const shopifyMarketsIncorporationCountry = T['io.flow.internal.v0.models.shopify_markets_incorporation_country'];
31965
+ export const shopifyMarketsInternalOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'];
31966
+ export const shopifyMarketsMetricsDeleted = T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'];
31967
+ export const shopifyMarketsMetricsUpserted = T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'];
30526
31968
  export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets_order'];
30527
31969
  export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
30528
31970
  export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
31971
+ export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
31972
+ export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
30529
31973
  export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
30530
31974
  export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
30531
31975
  export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
@@ -30533,6 +31977,7 @@ export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models
30533
31977
  export const shopifyMarketsShopStatisticsUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'];
30534
31978
  export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
30535
31979
  export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
31980
+ export const shopifyMarketsShopifyOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'];
30536
31981
  export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
30537
31982
  export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
30538
31983
  export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
@@ -30594,9 +32039,12 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
30594
32039
  export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
30595
32040
  export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
30596
32041
  export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
32042
+ export const shopifyStorePassword = T['io.flow.internal.v0.models.shopify_store_password'];
30597
32043
  export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
30598
32044
  export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
30599
32045
  export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
32046
+ export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
32047
+ export const shopperSummary = T['io.flow.internal.v0.models.shopper_summary'];
30600
32048
  export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
30601
32049
  export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
30602
32050
  export const simpleRoundingStrategy = T['io.flow.internal.v0.enums.simple_rounding_strategy'];
@@ -30729,6 +32177,9 @@ export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_a
30729
32177
  export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
30730
32178
  export const transactionPostingMethod = T['io.flow.internal.v0.enums.transaction_posting_method'];
30731
32179
  export const transactionReference = T['io.flow.internal.v0.models.transaction_reference'];
32180
+ export const transactionStatement = T['io.flow.internal.v0.models.transaction_statement'];
32181
+ export const transactionStatementDeleted = T['io.flow.internal.v0.models.transaction_statement_deleted'];
32182
+ export const transactionStatementUpserted = T['io.flow.internal.v0.models.transaction_statement_upserted'];
30732
32183
  export const transactionSummary = T['io.flow.internal.v0.unions.transaction_summary'];
30733
32184
  export const transferMethod = T['io.flow.internal.v0.enums.transfer_method'];
30734
32185
  export const transferTransaction = T['io.flow.internal.v0.models.transfer_transaction'];
@@ -30737,6 +32188,11 @@ export const transferTransactionDeletedV2 = T['io.flow.internal.v0.models.transf
30737
32188
  export const transferTransactionUpserted = T['io.flow.internal.v0.models.transfer_transaction_upserted'];
30738
32189
  export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'];
30739
32190
  export const tribe = T['io.flow.internal.v0.models.tribe'];
32191
+ export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
32192
+ export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
32193
+ export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
32194
+ export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
32195
+ export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
30740
32196
  export const unclassifiedProductStatistic = T['io.flow.internal.v0.models.unclassified_product_statistic'];
30741
32197
  export const unclassifiedProductStatus = T['io.flow.internal.v0.enums.unclassified_product_status'];
30742
32198
  export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.unclassified_products_purge_request'];
@@ -30771,8 +32227,14 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
30771
32227
  export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
30772
32228
  export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
30773
32229
  export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
32230
+ export const washCarrierActualFile = T['io.flow.internal.v0.models.wash_carrier_actual_file'];
32231
+ export const washCarrierActualFileForm = T['io.flow.internal.v0.models.wash_carrier_actual_file_form'];
32232
+ export const washCarrierActualFileStatus = T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'];
30774
32233
  export const washExportRequest = T['io.flow.internal.v0.models.wash_export_request'];
30775
32234
  export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
30776
32235
  export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
30777
32236
  export const webhook = T['io.flow.internal.v0.models.webhook'];
32237
+ export const weightSelection = T['io.flow.internal.v0.enums.weight_selection'];
32238
+ export const weightsDead = T['io.flow.internal.v0.models.weights_dead'];
32239
+ export const weightsDimensional = T['io.flow.internal.v0.models.weights_dimensional'];
30778
32240
  export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];