@flowio/api-internal-prop-types 9.24.66 → 9.24.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +1474 -257
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1474 -257
- package/src/api-internal.js +2227 -812
package/src/api-internal.js
CHANGED
|
@@ -159,6 +159,13 @@ 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
|
+
|
|
162
169
|
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
|
|
163
170
|
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
164
171
|
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
@@ -370,6 +377,35 @@ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
|
370
377
|
account_number: PropTypes.string.isRequired,
|
|
371
378
|
});
|
|
372
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
|
+
|
|
373
409
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
374
410
|
discriminator: PropTypes.oneOf(['no_payout']).isRequired,
|
|
375
411
|
placeholder: PropTypes.string,
|
|
@@ -708,13 +744,6 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_applications_summary'] = PropT
|
|
|
708
744
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'],
|
|
709
745
|
]);
|
|
710
746
|
|
|
711
|
-
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
712
|
-
full_name: PropTypes.string,
|
|
713
|
-
company: PropTypes.string,
|
|
714
|
-
email: PropTypes.string,
|
|
715
|
-
phone: PropTypes.string,
|
|
716
|
-
});
|
|
717
|
-
|
|
718
747
|
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'] = PropTypes.exact({
|
|
719
748
|
full_name: PropTypes.string,
|
|
720
749
|
streets: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -742,6 +771,149 @@ T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.ex
|
|
|
742
771
|
|
|
743
772
|
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
744
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
|
+
|
|
745
917
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
746
918
|
|
|
747
919
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -951,6 +1123,7 @@ T['io.flow.experience.v0.models.free_shipping_order_promotion_form'] = PropTypes
|
|
|
951
1123
|
});
|
|
952
1124
|
|
|
953
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']);
|
|
954
1127
|
T['io.flow.experience.v0.enums.price_facet_boundary'] = PropTypes.oneOf(['min', 'max']);
|
|
955
1128
|
|
|
956
1129
|
T['io.flow.experience.v0.models.experience_price_facet_conversion_request'] = PropTypes.exact({
|
|
@@ -975,6 +1148,11 @@ T['io.flow.experience.v0.models.experience_price_book_mapping_put_form'] = PropT
|
|
|
975
1148
|
price_books: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_book_mapping_form']).isRequired,
|
|
976
1149
|
});
|
|
977
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
|
+
|
|
978
1156
|
T['io.flow.experience.v0.enums.experience_payment_method_tag'] = PropTypes.oneOf(['display']);
|
|
979
1157
|
|
|
980
1158
|
T['io.flow.experience.v0.models.experience_payment_method_rule_form'] = PropTypes.exact({
|
|
@@ -1004,6 +1182,12 @@ T['io.flow.experience.v0.models.experience_checkout_configuration_settings'] = P
|
|
|
1004
1182
|
configuration: T['io.flow.experience.v0.models.experience_configuration_reference'].isRequired,
|
|
1005
1183
|
});
|
|
1006
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
|
+
|
|
1007
1191
|
T['io.flow.catalog.v0.models.subcatalog_reference'] = PropTypes.exact({
|
|
1008
1192
|
discriminator: PropTypes.oneOf(['subcatalog_reference']).isRequired,
|
|
1009
1193
|
id: PropTypes.string.isRequired,
|
|
@@ -1187,6 +1371,15 @@ T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exa
|
|
|
1187
1371
|
|
|
1188
1372
|
T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
|
|
1189
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
|
+
|
|
1190
1383
|
T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
|
|
1191
1384
|
T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
|
|
1192
1385
|
|
|
@@ -1225,6 +1418,7 @@ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTy
|
|
|
1225
1418
|
'order_unsupported_destination',
|
|
1226
1419
|
'order_missing_information',
|
|
1227
1420
|
'order_domestic',
|
|
1421
|
+
'order_mismatched_currencies',
|
|
1228
1422
|
]);
|
|
1229
1423
|
|
|
1230
1424
|
T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -2835,7 +3029,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
|
2835
3029
|
starts_at: PropTypes.string.isRequired,
|
|
2836
3030
|
ends_at: PropTypes.string,
|
|
2837
3031
|
prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2838
|
-
|
|
3032
|
+
prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
|
|
2839
3033
|
usage_limit: PropTypes.number,
|
|
2840
3034
|
entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2841
3035
|
entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
@@ -2845,7 +3039,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
|
2845
3039
|
once_per_customer: PropTypes.bool.isRequired,
|
|
2846
3040
|
target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
|
|
2847
3041
|
customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
|
|
2848
|
-
|
|
3042
|
+
customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2849
3043
|
prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2850
3044
|
prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2851
3045
|
prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
|
|
@@ -3127,6 +3321,7 @@ T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
|
|
|
3127
3321
|
T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
|
|
3128
3322
|
executeThreeD: PropTypes.bool,
|
|
3129
3323
|
allow3DS2: PropTypes.bool,
|
|
3324
|
+
manualCapture: PropTypes.bool,
|
|
3130
3325
|
});
|
|
3131
3326
|
|
|
3132
3327
|
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
|
|
@@ -3313,6 +3508,11 @@ T['io.flow.adyen.v0.models.three_d_secure_data'] = PropTypes.exact({
|
|
|
3313
3508
|
xid: PropTypes.string,
|
|
3314
3509
|
});
|
|
3315
3510
|
|
|
3511
|
+
T['io.flow.adyen.v0.models.authorize_request_additional_data'] = PropTypes.exact({
|
|
3512
|
+
manualCapture: PropTypes.bool,
|
|
3513
|
+
'paywithgoogle.token': PropTypes.string,
|
|
3514
|
+
});
|
|
3515
|
+
|
|
3316
3516
|
T['io.flow.adyen.v0.models.bank_account'] = PropTypes.exact({
|
|
3317
3517
|
countryCode: PropTypes.string.isRequired,
|
|
3318
3518
|
ownerName: PropTypes.string.isRequired,
|
|
@@ -3378,6 +3578,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
|
|
|
3378
3578
|
redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3379
3579
|
redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3380
3580
|
storePaymentMethod: PropTypes.bool,
|
|
3581
|
+
captureDelayHours: PropTypes.number,
|
|
3381
3582
|
});
|
|
3382
3583
|
|
|
3383
3584
|
T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
|
|
@@ -3427,7 +3628,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3427
3628
|
merchantOrderReference: PropTypes.string,
|
|
3428
3629
|
shopperInteraction: T['io.flow.adyen.v0.enums.shopper_interaction'].isRequired,
|
|
3429
3630
|
bankAccount: T['io.flow.adyen.v0.models.bank_account'],
|
|
3430
|
-
additionalData:
|
|
3631
|
+
additionalData: T['io.flow.adyen.v0.models.authorize_request_additional_data'],
|
|
3431
3632
|
mpiData: T['io.flow.adyen.v0.models.three_d_secure_data'],
|
|
3432
3633
|
selectedBrand: PropTypes.string,
|
|
3433
3634
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
@@ -3435,6 +3636,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3435
3636
|
recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
|
|
3436
3637
|
mcc: PropTypes.string,
|
|
3437
3638
|
metadata: PropTypes.object,
|
|
3639
|
+
captureDelayHours: PropTypes.number,
|
|
3438
3640
|
});
|
|
3439
3641
|
|
|
3440
3642
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
@@ -3748,14 +3950,14 @@ T['io.flow.external.paypal.v1.enums.payer_status'] = PropTypes.oneOf(['VERIFIED'
|
|
|
3748
3950
|
T['io.flow.external.paypal.v1.enums.payment_method'] = PropTypes.oneOf(['paypal']);
|
|
3749
3951
|
|
|
3750
3952
|
T['io.flow.external.paypal.v1.models.shipping_address'] = PropTypes.exact({
|
|
3751
|
-
recipient_name: PropTypes.string
|
|
3953
|
+
recipient_name: PropTypes.string,
|
|
3752
3954
|
line1: PropTypes.string.isRequired,
|
|
3753
3955
|
line2: PropTypes.string,
|
|
3754
|
-
city: PropTypes.string
|
|
3956
|
+
city: PropTypes.string,
|
|
3755
3957
|
country_code: PropTypes.string.isRequired,
|
|
3756
|
-
postal_code: PropTypes.string
|
|
3958
|
+
postal_code: PropTypes.string,
|
|
3757
3959
|
phone: PropTypes.string,
|
|
3758
|
-
state: PropTypes.string
|
|
3960
|
+
state: PropTypes.string,
|
|
3759
3961
|
});
|
|
3760
3962
|
|
|
3761
3963
|
T['io.flow.external.paypal.v1.models.payer_info'] = PropTypes.exact({
|
|
@@ -4476,6 +4678,25 @@ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
|
4476
4678
|
name: PropTypes.string.isRequired,
|
|
4477
4679
|
});
|
|
4478
4680
|
|
|
4681
|
+
T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
4682
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
|
|
4683
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
|
|
4684
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4685
|
+
]);
|
|
4686
|
+
|
|
4687
|
+
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
|
|
4688
|
+
|
|
4689
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4690
|
+
amount: PropTypes.number.isRequired,
|
|
4691
|
+
type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
|
|
4692
|
+
detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
|
|
4693
|
+
});
|
|
4694
|
+
|
|
4695
|
+
T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
|
|
4696
|
+
amount: PropTypes.number.isRequired,
|
|
4697
|
+
weight: PropTypes.number.isRequired,
|
|
4698
|
+
});
|
|
4699
|
+
|
|
4479
4700
|
T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
4480
4701
|
id: PropTypes.string.isRequired,
|
|
4481
4702
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
@@ -4567,6 +4788,115 @@ T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
|
|
|
4567
4788
|
});
|
|
4568
4789
|
|
|
4569
4790
|
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
|
|
4791
|
+
|
|
4792
|
+
T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
|
|
4793
|
+
'de-AT',
|
|
4794
|
+
'en-AT',
|
|
4795
|
+
'nl-BE',
|
|
4796
|
+
'fr-BE',
|
|
4797
|
+
'en-BE',
|
|
4798
|
+
'de-DE',
|
|
4799
|
+
'en-DE',
|
|
4800
|
+
'da-DK',
|
|
4801
|
+
'en-DK',
|
|
4802
|
+
'es-ES',
|
|
4803
|
+
'en-ES',
|
|
4804
|
+
'fi-FI',
|
|
4805
|
+
'sv-FI',
|
|
4806
|
+
'en-FI',
|
|
4807
|
+
'en-GB',
|
|
4808
|
+
'en-IE',
|
|
4809
|
+
'it-IT',
|
|
4810
|
+
'en-IT',
|
|
4811
|
+
'nl-NL',
|
|
4812
|
+
'en-NL',
|
|
4813
|
+
'nb-NO',
|
|
4814
|
+
'en-NO',
|
|
4815
|
+
'sv-SE',
|
|
4816
|
+
'en-SE',
|
|
4817
|
+
'en-US',
|
|
4818
|
+
'es-US',
|
|
4819
|
+
'fr-FR',
|
|
4820
|
+
'en-FR',
|
|
4821
|
+
'cs-CZ',
|
|
4822
|
+
'en-CZ',
|
|
4823
|
+
'el-GR',
|
|
4824
|
+
'en-GR',
|
|
4825
|
+
'en-AU',
|
|
4826
|
+
'en-NZ',
|
|
4827
|
+
'en-CA',
|
|
4828
|
+
'fr-CA',
|
|
4829
|
+
'pl-PL',
|
|
4830
|
+
'en-PL',
|
|
4831
|
+
'pt-PT',
|
|
4832
|
+
'en-PT',
|
|
4833
|
+
'de-CH',
|
|
4834
|
+
'fr-CH',
|
|
4835
|
+
'it-CH',
|
|
4836
|
+
'en-CH',
|
|
4837
|
+
]);
|
|
4838
|
+
|
|
4839
|
+
T['io.flow.stripe.v0.enums.payment_method_category_klarna'] = PropTypes.oneOf(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']);
|
|
4840
|
+
|
|
4841
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTypes.exact({
|
|
4842
|
+
payment_method_category: T['io.flow.stripe.v0.enums.payment_method_category_klarna'],
|
|
4843
|
+
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
4844
|
+
});
|
|
4845
|
+
|
|
4846
|
+
T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
|
|
4847
|
+
'card_not_enrolled',
|
|
4848
|
+
'network_not_supported',
|
|
4849
|
+
'abandoned',
|
|
4850
|
+
'canceled',
|
|
4851
|
+
'rejected',
|
|
4852
|
+
'bypassed',
|
|
4853
|
+
'protocol_error',
|
|
4854
|
+
]);
|
|
4855
|
+
|
|
4856
|
+
T['io.flow.stripe.v0.enums.three_ds_result'] = PropTypes.oneOf([
|
|
4857
|
+
'authenticated',
|
|
4858
|
+
'attempt_acknowledged',
|
|
4859
|
+
'exempted',
|
|
4860
|
+
'not_supported',
|
|
4861
|
+
'failed',
|
|
4862
|
+
'processing_error',
|
|
4863
|
+
]);
|
|
4864
|
+
|
|
4865
|
+
T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['challenge', 'frictionless']);
|
|
4866
|
+
|
|
4867
|
+
T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
|
|
4868
|
+
authenticated: PropTypes.bool,
|
|
4869
|
+
authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
|
|
4870
|
+
result: T['io.flow.stripe.v0.enums.three_ds_result'],
|
|
4871
|
+
result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
|
|
4872
|
+
succeeded: PropTypes.bool,
|
|
4873
|
+
version: PropTypes.string,
|
|
4874
|
+
});
|
|
4875
|
+
|
|
4876
|
+
T['io.flow.stripe.v0.models.network_token_used'] = PropTypes.exact({
|
|
4877
|
+
used: PropTypes.bool,
|
|
4878
|
+
});
|
|
4879
|
+
|
|
4880
|
+
T['io.flow.stripe.v0.enums.card_network'] = PropTypes.oneOf([
|
|
4881
|
+
'amex',
|
|
4882
|
+
'cartes_bancaires',
|
|
4883
|
+
'diners',
|
|
4884
|
+
'discover',
|
|
4885
|
+
'eftpos_au',
|
|
4886
|
+
'interac',
|
|
4887
|
+
'jcb',
|
|
4888
|
+
'mastercard',
|
|
4889
|
+
'unionpay',
|
|
4890
|
+
'visa',
|
|
4891
|
+
'unknown',
|
|
4892
|
+
]);
|
|
4893
|
+
|
|
4894
|
+
T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
4895
|
+
count: PropTypes.number,
|
|
4896
|
+
interval: PropTypes.string,
|
|
4897
|
+
type: PropTypes.string,
|
|
4898
|
+
});
|
|
4899
|
+
|
|
4570
4900
|
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4571
4901
|
|
|
4572
4902
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
@@ -4659,6 +4989,19 @@ T['io.flow.stripe.v0.models.address'] = PropTypes.exact({
|
|
|
4659
4989
|
state: PropTypes.string,
|
|
4660
4990
|
});
|
|
4661
4991
|
|
|
4992
|
+
T['io.flow.stripe.v0.models.visa_checkout_information'] = PropTypes.exact({
|
|
4993
|
+
billing_address: T['io.flow.stripe.v0.models.address'],
|
|
4994
|
+
email: PropTypes.string,
|
|
4995
|
+
name: PropTypes.string,
|
|
4996
|
+
shipping_address: T['io.flow.stripe.v0.models.address'],
|
|
4997
|
+
});
|
|
4998
|
+
|
|
4999
|
+
T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
|
|
5000
|
+
type: PropTypes.oneOf(['visa_checkout']).isRequired,
|
|
5001
|
+
visa_checkout: T['io.flow.stripe.v0.models.visa_checkout_information'].isRequired,
|
|
5002
|
+
dynamic_last4: PropTypes.string,
|
|
5003
|
+
});
|
|
5004
|
+
|
|
4662
5005
|
T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
|
|
4663
5006
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
4664
5007
|
name: PropTypes.string,
|
|
@@ -4688,6 +5031,19 @@ T['io.flow.stripe.v0.models.order'] = PropTypes.exact({
|
|
|
4688
5031
|
shipping: T['io.flow.stripe.v0.models.shipping'],
|
|
4689
5032
|
});
|
|
4690
5033
|
|
|
5034
|
+
T['io.flow.stripe.v0.models.masterpass_information'] = PropTypes.exact({
|
|
5035
|
+
billing_address: T['io.flow.stripe.v0.models.address'],
|
|
5036
|
+
email: PropTypes.string,
|
|
5037
|
+
name: PropTypes.string,
|
|
5038
|
+
shipping_address: T['io.flow.stripe.v0.models.address'],
|
|
5039
|
+
});
|
|
5040
|
+
|
|
5041
|
+
T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
|
|
5042
|
+
type: PropTypes.oneOf(['masterpass']).isRequired,
|
|
5043
|
+
masterpass: T['io.flow.stripe.v0.models.masterpass_information'].isRequired,
|
|
5044
|
+
dynamic_last4: PropTypes.string,
|
|
5045
|
+
});
|
|
5046
|
+
|
|
4691
5047
|
T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
|
|
4692
5048
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
4693
5049
|
email: PropTypes.string,
|
|
@@ -4873,6 +5229,11 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
|
|
|
4873
5229
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
4874
5230
|
});
|
|
4875
5231
|
|
|
5232
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
|
|
5233
|
+
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
5234
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
|
|
5235
|
+
});
|
|
5236
|
+
|
|
4876
5237
|
T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
|
|
4877
5238
|
amount: PropTypes.number,
|
|
4878
5239
|
currency: PropTypes.string,
|
|
@@ -5046,6 +5407,62 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
|
|
|
5046
5407
|
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
5047
5408
|
});
|
|
5048
5409
|
|
|
5410
|
+
T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
|
|
5411
|
+
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5412
|
+
address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5413
|
+
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5414
|
+
});
|
|
5415
|
+
|
|
5416
|
+
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
5417
|
+
|
|
5418
|
+
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
5419
|
+
type: T['io.flow.stripe.v0.enums.apple_pay_type'].isRequired,
|
|
5420
|
+
});
|
|
5421
|
+
|
|
5422
|
+
T['io.flow.stripe.v0.models.apple_pay'] = PropTypes.exact({
|
|
5423
|
+
type: PropTypes.oneOf(['apple_pay']).isRequired,
|
|
5424
|
+
apple_pay: T['io.flow.stripe.v0.models.apple_pay_information'].isRequired,
|
|
5425
|
+
dynamic_last4: PropTypes.string,
|
|
5426
|
+
});
|
|
5427
|
+
|
|
5428
|
+
T['io.flow.stripe.v0.unions.card_wallet'] = PropTypes.oneOfType([
|
|
5429
|
+
T['io.flow.stripe.v0.models.masterpass'],
|
|
5430
|
+
T['io.flow.stripe.v0.models.apple_pay'],
|
|
5431
|
+
T['io.flow.stripe.v0.models.visa_checkout'],
|
|
5432
|
+
]);
|
|
5433
|
+
|
|
5434
|
+
T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropTypes.exact({
|
|
5435
|
+
brand: PropTypes.string,
|
|
5436
|
+
checks: T['io.flow.stripe.v0.models.card_checks'],
|
|
5437
|
+
country: PropTypes.string,
|
|
5438
|
+
exp_month: PropTypes.number,
|
|
5439
|
+
exp_year: PropTypes.number,
|
|
5440
|
+
fingerprint: PropTypes.string,
|
|
5441
|
+
funding: T['io.flow.stripe.v0.enums.card_funding_type'],
|
|
5442
|
+
installments: T['io.flow.stripe.v0.models.plan'],
|
|
5443
|
+
last4: PropTypes.string,
|
|
5444
|
+
mandate: PropTypes.string,
|
|
5445
|
+
network: T['io.flow.stripe.v0.enums.card_network'],
|
|
5446
|
+
network_token: T['io.flow.stripe.v0.models.network_token_used'],
|
|
5447
|
+
three_d_secure: T['io.flow.stripe.v0.models.three_d_secure_charge'],
|
|
5448
|
+
capture_before: PropTypes.number,
|
|
5449
|
+
description: PropTypes.string,
|
|
5450
|
+
iin: PropTypes.string,
|
|
5451
|
+
issuer: PropTypes.string,
|
|
5452
|
+
wallet: T['io.flow.stripe.v0.unions.card_wallet'],
|
|
5453
|
+
network_transaction_id: PropTypes.string,
|
|
5454
|
+
});
|
|
5455
|
+
|
|
5456
|
+
T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
|
|
5457
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
5458
|
+
card: T['io.flow.stripe.v0.models.payment_method_details_card_information'].isRequired,
|
|
5459
|
+
});
|
|
5460
|
+
|
|
5461
|
+
T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
|
|
5462
|
+
T['io.flow.stripe.v0.models.payment_method_details_card'],
|
|
5463
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna'],
|
|
5464
|
+
]);
|
|
5465
|
+
|
|
5049
5466
|
T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
|
|
5050
5467
|
|
|
5051
5468
|
T['io.flow.stripe.v0.models.owner'] = PropTypes.exact({
|
|
@@ -5127,7 +5544,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
5127
5544
|
payment_intent: PropTypes.string,
|
|
5128
5545
|
calculated_statement_descriptor: PropTypes.string,
|
|
5129
5546
|
statement_descriptor: PropTypes.string,
|
|
5130
|
-
payment_method_details:
|
|
5547
|
+
payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
|
|
5131
5548
|
});
|
|
5132
5549
|
|
|
5133
5550
|
T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
|
|
@@ -5216,7 +5633,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
5216
5633
|
payment_intent: PropTypes.string,
|
|
5217
5634
|
calculated_statement_descriptor: PropTypes.string,
|
|
5218
5635
|
statement_descriptor: PropTypes.string,
|
|
5219
|
-
payment_method_details:
|
|
5636
|
+
payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
|
|
5220
5637
|
});
|
|
5221
5638
|
|
|
5222
5639
|
T['io.flow.stripe.v0.models.tos_acceptance'] = PropTypes.exact({
|
|
@@ -5438,6 +5855,8 @@ T['io.flow.payment.v0.models.card_reference'] = PropTypes.exact({
|
|
|
5438
5855
|
token: PropTypes.string.isRequired,
|
|
5439
5856
|
});
|
|
5440
5857
|
|
|
5858
|
+
T['io.flow.payment.v0.enums.stored_method_usage_step'] = PropTypes.oneOf(['initial', 'subsequent']);
|
|
5859
|
+
|
|
5441
5860
|
T['io.flow.payment.v0.models.issuer_summary'] = PropTypes.exact({
|
|
5442
5861
|
iin: PropTypes.string.isRequired,
|
|
5443
5862
|
name: PropTypes.string,
|
|
@@ -5862,12 +6281,26 @@ T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
|
|
|
5862
6281
|
|
|
5863
6282
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
5864
6283
|
|
|
5865
|
-
T['io.flow.
|
|
5866
|
-
|
|
5867
|
-
|
|
6284
|
+
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
6285
|
+
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
6286
|
+
label: PropTypes.string.isRequired,
|
|
5868
6287
|
});
|
|
5869
6288
|
|
|
5870
|
-
T['io.flow.
|
|
6289
|
+
T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
|
|
6290
|
+
id: PropTypes.string.isRequired,
|
|
6291
|
+
key: PropTypes.string.isRequired,
|
|
6292
|
+
currency: PropTypes.string.isRequired,
|
|
6293
|
+
name: PropTypes.string.isRequired,
|
|
6294
|
+
includes: T['io.flow.common.v0.models.included_levies'].isRequired,
|
|
6295
|
+
status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
|
|
6296
|
+
});
|
|
6297
|
+
|
|
6298
|
+
T['io.flow.export.v0.models.export_delivery_email'] = PropTypes.exact({
|
|
6299
|
+
discriminator: PropTypes.oneOf(['export_delivery_email']).isRequired,
|
|
6300
|
+
email: PropTypes.string.isRequired,
|
|
6301
|
+
});
|
|
6302
|
+
|
|
6303
|
+
T['io.flow.export.v0.models.localized_item_prices_export_type'] = PropTypes.exact({
|
|
5871
6304
|
discriminator: PropTypes.oneOf(['localized_item_prices_export_type']).isRequired,
|
|
5872
6305
|
since: PropTypes.string,
|
|
5873
6306
|
});
|
|
@@ -6006,93 +6439,6 @@ T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
|
6006
6439
|
default_locale: PropTypes.string,
|
|
6007
6440
|
});
|
|
6008
6441
|
|
|
6009
|
-
T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
|
|
6010
|
-
|
|
6011
|
-
T['io.flow.experience.v0.models.pricing_settings'] = PropTypes.exact({
|
|
6012
|
-
editable: PropTypes.bool.isRequired,
|
|
6013
|
-
default_tax_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
6014
|
-
default_duty_display: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
6015
|
-
});
|
|
6016
|
-
|
|
6017
|
-
T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
|
|
6018
|
-
'base_price',
|
|
6019
|
-
'discount',
|
|
6020
|
-
'currency_margin',
|
|
6021
|
-
'percent_item_margin',
|
|
6022
|
-
'fixed_item_margin',
|
|
6023
|
-
'duties_item_price',
|
|
6024
|
-
'duties_added_margin',
|
|
6025
|
-
'duties_rounding',
|
|
6026
|
-
'duties_deminimis',
|
|
6027
|
-
'vat_item_price',
|
|
6028
|
-
'vat_added_margin',
|
|
6029
|
-
'vat_rounding',
|
|
6030
|
-
'vat_duties_item_price',
|
|
6031
|
-
'vat_duties_added_margin',
|
|
6032
|
-
'vat_duties_rounding',
|
|
6033
|
-
'vat_deminimis',
|
|
6034
|
-
'item_price_percent_sales_margin',
|
|
6035
|
-
'margins_percent_sales_margin',
|
|
6036
|
-
'rounding_percent_sales_margin',
|
|
6037
|
-
'vat_percent_sales_margin',
|
|
6038
|
-
'vat_duty_percent_sales_margin',
|
|
6039
|
-
'duty_percent_sales_margin',
|
|
6040
|
-
]);
|
|
6041
|
-
|
|
6042
|
-
T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
|
|
6043
|
-
id: PropTypes.string.isRequired,
|
|
6044
|
-
key: PropTypes.string.isRequired,
|
|
6045
|
-
});
|
|
6046
|
-
|
|
6047
|
-
T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
|
|
6048
|
-
T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
|
|
6049
|
-
|
|
6050
|
-
T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
|
|
6051
|
-
currency: PropTypes.string.isRequired,
|
|
6052
|
-
name: PropTypes.string.isRequired,
|
|
6053
|
-
includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
6054
|
-
status: T['io.flow.common.v0.enums.price_book_status'],
|
|
6055
|
-
});
|
|
6056
|
-
|
|
6057
|
-
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
6058
|
-
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
6059
|
-
label: PropTypes.string.isRequired,
|
|
6060
|
-
});
|
|
6061
|
-
|
|
6062
|
-
T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
|
|
6063
|
-
id: PropTypes.string.isRequired,
|
|
6064
|
-
key: PropTypes.string.isRequired,
|
|
6065
|
-
currency: PropTypes.string.isRequired,
|
|
6066
|
-
name: PropTypes.string.isRequired,
|
|
6067
|
-
includes: T['io.flow.common.v0.models.included_levies'].isRequired,
|
|
6068
|
-
status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
|
|
6069
|
-
});
|
|
6070
|
-
|
|
6071
|
-
T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
|
|
6072
|
-
key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
|
|
6073
|
-
amount: PropTypes.number.isRequired,
|
|
6074
|
-
label: PropTypes.string.isRequired,
|
|
6075
|
-
name: PropTypes.string,
|
|
6076
|
-
});
|
|
6077
|
-
|
|
6078
|
-
T['io.flow.price.v0.enums.price_detail_key'] = PropTypes.oneOf(['item_price', 'margins', 'vat', 'duty', 'rounding', 'adjustment']);
|
|
6079
|
-
|
|
6080
|
-
T['io.flow.price.v0.models.price_detail'] = PropTypes.exact({
|
|
6081
|
-
key: T['io.flow.price.v0.enums.price_detail_key'].isRequired,
|
|
6082
|
-
components: PropTypes.arrayOf(T['io.flow.price.v0.models.price_detail_component']).isRequired,
|
|
6083
|
-
amount: PropTypes.number.isRequired,
|
|
6084
|
-
label: PropTypes.string.isRequired,
|
|
6085
|
-
name: PropTypes.string,
|
|
6086
|
-
basis: PropTypes.number,
|
|
6087
|
-
});
|
|
6088
|
-
|
|
6089
|
-
T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
|
|
6090
|
-
discriminator: PropTypes.oneOf(['deminimis_per_item']).isRequired,
|
|
6091
|
-
currency: PropTypes.string.isRequired,
|
|
6092
|
-
minimum: PropTypes.number,
|
|
6093
|
-
maximum: PropTypes.number,
|
|
6094
|
-
});
|
|
6095
|
-
|
|
6096
6442
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
6097
6443
|
'adjustment',
|
|
6098
6444
|
'vat_deminimis',
|
|
@@ -6154,6 +6500,8 @@ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
|
6154
6500
|
center_key: PropTypes.string.isRequired,
|
|
6155
6501
|
});
|
|
6156
6502
|
|
|
6503
|
+
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
|
|
6504
|
+
|
|
6157
6505
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
6158
6506
|
id: PropTypes.string.isRequired,
|
|
6159
6507
|
number: PropTypes.string.isRequired,
|
|
@@ -6445,16 +6793,17 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
|
|
|
6445
6793
|
id: PropTypes.string.isRequired,
|
|
6446
6794
|
});
|
|
6447
6795
|
|
|
6448
|
-
T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
6449
|
-
preference: T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'].isRequired,
|
|
6450
|
-
description: PropTypes.string,
|
|
6451
|
-
});
|
|
6452
|
-
|
|
6453
6796
|
T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
|
|
6454
6797
|
volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
|
|
6455
6798
|
number_transactions: PropTypes.number,
|
|
6456
6799
|
});
|
|
6457
6800
|
|
|
6801
|
+
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
6802
|
+
company: PropTypes.string,
|
|
6803
|
+
email: PropTypes.string,
|
|
6804
|
+
phone: PropTypes.string,
|
|
6805
|
+
});
|
|
6806
|
+
|
|
6458
6807
|
T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
6459
6808
|
warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
|
|
6460
6809
|
warehouse_url: PropTypes.string,
|
|
@@ -6468,38 +6817,6 @@ T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropT
|
|
|
6468
6817
|
center_id: PropTypes.string,
|
|
6469
6818
|
});
|
|
6470
6819
|
|
|
6471
|
-
T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
|
|
6472
|
-
'accessories',
|
|
6473
|
-
'animals_and_pet_supplies',
|
|
6474
|
-
'apparel',
|
|
6475
|
-
'apparel_and_accessories',
|
|
6476
|
-
'arts_and_entertainment',
|
|
6477
|
-
'baby_and_toddler',
|
|
6478
|
-
'business_and_industrial',
|
|
6479
|
-
'cameras_and_optics',
|
|
6480
|
-
'electronics',
|
|
6481
|
-
'food_beverages_and_tobacco',
|
|
6482
|
-
'furniture',
|
|
6483
|
-
'gift_cards',
|
|
6484
|
-
'hardware',
|
|
6485
|
-
'health_and_beauty',
|
|
6486
|
-
'home_and_garden',
|
|
6487
|
-
'jewelry',
|
|
6488
|
-
'luggage_and_bags',
|
|
6489
|
-
'mature',
|
|
6490
|
-
'media',
|
|
6491
|
-
'office_supplies',
|
|
6492
|
-
'paper_and_art',
|
|
6493
|
-
'religious_and_ceremonial',
|
|
6494
|
-
'software',
|
|
6495
|
-
'sporting_goods',
|
|
6496
|
-
'sports_and_fitness',
|
|
6497
|
-
'toys_and_games',
|
|
6498
|
-
'toys_hobbies_gifts',
|
|
6499
|
-
'vehicles_and_parts',
|
|
6500
|
-
'other',
|
|
6501
|
-
]);
|
|
6502
|
-
|
|
6503
6820
|
T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
|
|
6504
6821
|
name: PropTypes.string.isRequired,
|
|
6505
6822
|
dob: PropTypes.string.isRequired,
|
|
@@ -7374,6 +7691,27 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
7374
7691
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
7375
7692
|
]);
|
|
7376
7693
|
|
|
7694
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
7695
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
7696
|
+
id: PropTypes.string.isRequired,
|
|
7697
|
+
});
|
|
7698
|
+
|
|
7699
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
7700
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
7701
|
+
id: PropTypes.string.isRequired,
|
|
7702
|
+
});
|
|
7703
|
+
|
|
7704
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
7705
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
7706
|
+
id: PropTypes.string.isRequired,
|
|
7707
|
+
});
|
|
7708
|
+
|
|
7709
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
7710
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
7711
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
7712
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
7713
|
+
]);
|
|
7714
|
+
|
|
7377
7715
|
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
7378
7716
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
7379
7717
|
percent: PropTypes.number.isRequired,
|
|
@@ -7401,6 +7739,13 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
7401
7739
|
id: PropTypes.string.isRequired,
|
|
7402
7740
|
});
|
|
7403
7741
|
|
|
7742
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
|
|
7743
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
|
|
7744
|
+
event_id: PropTypes.string.isRequired,
|
|
7745
|
+
timestamp: PropTypes.string.isRequired,
|
|
7746
|
+
id: PropTypes.string.isRequired,
|
|
7747
|
+
});
|
|
7748
|
+
|
|
7404
7749
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
7405
7750
|
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
7406
7751
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7463,6 +7808,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
7463
7808
|
id: PropTypes.string.isRequired,
|
|
7464
7809
|
});
|
|
7465
7810
|
|
|
7811
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'] = PropTypes.exact({
|
|
7812
|
+
discriminator: PropTypes.oneOf(['unassigned_merchant_guid_deleted']).isRequired,
|
|
7813
|
+
event_id: PropTypes.string.isRequired,
|
|
7814
|
+
timestamp: PropTypes.string.isRequired,
|
|
7815
|
+
id: PropTypes.string.isRequired,
|
|
7816
|
+
});
|
|
7817
|
+
|
|
7466
7818
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropTypes.exact({
|
|
7467
7819
|
discriminator: PropTypes.oneOf(['partner_organization_settings_deleted']).isRequired,
|
|
7468
7820
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7471,6 +7823,22 @@ T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropType
|
|
|
7471
7823
|
id: PropTypes.string.isRequired,
|
|
7472
7824
|
});
|
|
7473
7825
|
|
|
7826
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'] = PropTypes.exact({
|
|
7827
|
+
discriminator: PropTypes.oneOf(['merchant_guid_assignment_deleted']).isRequired,
|
|
7828
|
+
event_id: PropTypes.string.isRequired,
|
|
7829
|
+
timestamp: PropTypes.string.isRequired,
|
|
7830
|
+
organization: PropTypes.string.isRequired,
|
|
7831
|
+
id: PropTypes.string.isRequired,
|
|
7832
|
+
});
|
|
7833
|
+
|
|
7834
|
+
T['io.flow.internal.v0.models.organization_deactivation_deleted'] = PropTypes.exact({
|
|
7835
|
+
discriminator: PropTypes.oneOf(['organization_deactivation_deleted']).isRequired,
|
|
7836
|
+
event_id: PropTypes.string.isRequired,
|
|
7837
|
+
timestamp: PropTypes.string.isRequired,
|
|
7838
|
+
organization: PropTypes.string.isRequired,
|
|
7839
|
+
id: PropTypes.string.isRequired,
|
|
7840
|
+
});
|
|
7841
|
+
|
|
7474
7842
|
T['io.flow.internal.v0.models.organization_status_change_deleted'] = PropTypes.exact({
|
|
7475
7843
|
discriminator: PropTypes.oneOf(['organization_status_change_deleted']).isRequired,
|
|
7476
7844
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7554,6 +7922,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
7554
7922
|
id: PropTypes.string.isRequired,
|
|
7555
7923
|
});
|
|
7556
7924
|
|
|
7925
|
+
T['io.flow.internal.v0.models.label_request_error_deleted'] = PropTypes.exact({
|
|
7926
|
+
discriminator: PropTypes.oneOf(['label_request_error_deleted']).isRequired,
|
|
7927
|
+
event_id: PropTypes.string.isRequired,
|
|
7928
|
+
timestamp: PropTypes.string.isRequired,
|
|
7929
|
+
organization: PropTypes.string.isRequired,
|
|
7930
|
+
id: PropTypes.string.isRequired,
|
|
7931
|
+
});
|
|
7932
|
+
|
|
7557
7933
|
T['io.flow.internal.v0.models.import_failed'] = PropTypes.exact({
|
|
7558
7934
|
discriminator: PropTypes.oneOf(['import_failed']).isRequired,
|
|
7559
7935
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7976,6 +8352,14 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7976
8352
|
id: PropTypes.string.isRequired,
|
|
7977
8353
|
});
|
|
7978
8354
|
|
|
8355
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
|
|
8356
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
|
|
8357
|
+
event_id: PropTypes.string.isRequired,
|
|
8358
|
+
timestamp: PropTypes.string.isRequired,
|
|
8359
|
+
organization: PropTypes.string.isRequired,
|
|
8360
|
+
id: PropTypes.string.isRequired,
|
|
8361
|
+
});
|
|
8362
|
+
|
|
7979
8363
|
T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
7980
8364
|
discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
|
|
7981
8365
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7983,6 +8367,13 @@ T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
|
7983
8367
|
id: PropTypes.string.isRequired,
|
|
7984
8368
|
});
|
|
7985
8369
|
|
|
8370
|
+
T['io.flow.internal.v0.models.transaction_statement_deleted'] = PropTypes.exact({
|
|
8371
|
+
discriminator: PropTypes.oneOf(['transaction_statement_deleted']).isRequired,
|
|
8372
|
+
event_id: PropTypes.string.isRequired,
|
|
8373
|
+
timestamp: PropTypes.string.isRequired,
|
|
8374
|
+
id: PropTypes.string.isRequired,
|
|
8375
|
+
});
|
|
8376
|
+
|
|
7986
8377
|
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7987
8378
|
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7988
8379
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8089,6 +8480,14 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
|
|
|
8089
8480
|
id: PropTypes.string.isRequired,
|
|
8090
8481
|
});
|
|
8091
8482
|
|
|
8483
|
+
T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
8484
|
+
discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
|
|
8485
|
+
event_id: PropTypes.string.isRequired,
|
|
8486
|
+
timestamp: PropTypes.string.isRequired,
|
|
8487
|
+
organization: PropTypes.string.isRequired,
|
|
8488
|
+
id: PropTypes.string.isRequired,
|
|
8489
|
+
});
|
|
8490
|
+
|
|
8092
8491
|
T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
|
|
8093
8492
|
discriminator: PropTypes.oneOf(['weee']).isRequired,
|
|
8094
8493
|
label: PropTypes.string.isRequired,
|
|
@@ -8270,6 +8669,14 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
|
|
|
8270
8669
|
T['io.flow.internal.v0.models.paypal_authorization_payload'],
|
|
8271
8670
|
]);
|
|
8272
8671
|
|
|
8672
|
+
T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'] = PropTypes.oneOf(['pending', 'processing', 'processed', 'failed']);
|
|
8673
|
+
|
|
8674
|
+
T['io.flow.internal.v0.models.wash_carrier_actual_file'] = PropTypes.exact({
|
|
8675
|
+
id: PropTypes.string.isRequired,
|
|
8676
|
+
url: PropTypes.string.isRequired,
|
|
8677
|
+
status: T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'].isRequired,
|
|
8678
|
+
});
|
|
8679
|
+
|
|
8273
8680
|
T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
8274
8681
|
id: PropTypes.string.isRequired,
|
|
8275
8682
|
});
|
|
@@ -8317,6 +8724,19 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
8317
8724
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
8318
8725
|
});
|
|
8319
8726
|
|
|
8727
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
|
|
8728
|
+
id: PropTypes.string.isRequired,
|
|
8729
|
+
merchant_guid: PropTypes.string.isRequired,
|
|
8730
|
+
created_at: PropTypes.string.isRequired,
|
|
8731
|
+
});
|
|
8732
|
+
|
|
8733
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'] = PropTypes.exact({
|
|
8734
|
+
discriminator: PropTypes.oneOf(['unassigned_merchant_guid_upserted']).isRequired,
|
|
8735
|
+
event_id: PropTypes.string.isRequired,
|
|
8736
|
+
timestamp: PropTypes.string.isRequired,
|
|
8737
|
+
unassigned_merchant_guid: T['io.flow.internal.v0.models.unassigned_merchant_guid'].isRequired,
|
|
8738
|
+
});
|
|
8739
|
+
|
|
8320
8740
|
T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
|
|
8321
8741
|
|
|
8322
8742
|
T['io.flow.internal.v0.models.tracking_event'] = PropTypes.exact({
|
|
@@ -9053,6 +9473,24 @@ T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropT
|
|
|
9053
9473
|
shopify_markets_shop_statistics: T['io.flow.internal.v0.models.shopify_shop_statistics'].isRequired,
|
|
9054
9474
|
});
|
|
9055
9475
|
|
|
9476
|
+
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
9477
|
+
total_order_count: PropTypes.number.isRequired,
|
|
9478
|
+
});
|
|
9479
|
+
|
|
9480
|
+
T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'] = PropTypes.exact({
|
|
9481
|
+
total_order_count: PropTypes.number.isRequired,
|
|
9482
|
+
});
|
|
9483
|
+
|
|
9484
|
+
T['io.flow.internal.v0.models.shopify_markets_discrepancy'] = PropTypes.exact({
|
|
9485
|
+
organization_id: PropTypes.string.isRequired,
|
|
9486
|
+
count: PropTypes.number.isRequired,
|
|
9487
|
+
});
|
|
9488
|
+
|
|
9489
|
+
T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'] = PropTypes.exact({
|
|
9490
|
+
total_count: PropTypes.number.isRequired,
|
|
9491
|
+
discrepancies: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_markets_discrepancy']).isRequired,
|
|
9492
|
+
});
|
|
9493
|
+
|
|
9056
9494
|
T['io.flow.experience.v0.models.experience_reference'] = PropTypes.exact({
|
|
9057
9495
|
discriminator: PropTypes.oneOf(['experience_reference']).isRequired,
|
|
9058
9496
|
key: PropTypes.string.isRequired,
|
|
@@ -9244,28 +9682,6 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
9244
9682
|
});
|
|
9245
9683
|
|
|
9246
9684
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
9247
|
-
|
|
9248
|
-
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
9249
|
-
name: PropTypes.string.isRequired,
|
|
9250
|
-
description: PropTypes.string.isRequired,
|
|
9251
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
9252
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9253
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9254
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9255
|
-
value_threshold_usd: PropTypes.number,
|
|
9256
|
-
});
|
|
9257
|
-
|
|
9258
|
-
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
9259
|
-
id: PropTypes.string.isRequired,
|
|
9260
|
-
name: PropTypes.string.isRequired,
|
|
9261
|
-
description: PropTypes.string.isRequired,
|
|
9262
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
9263
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9264
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9265
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9266
|
-
value_threshold_usd: PropTypes.number,
|
|
9267
|
-
});
|
|
9268
|
-
|
|
9269
9685
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
9270
9686
|
|
|
9271
9687
|
T['io.flow.internal.v0.models.restriction_keyword_metadata'] = PropTypes.exact({
|
|
@@ -9291,14 +9707,26 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
9291
9707
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
9292
9708
|
});
|
|
9293
9709
|
|
|
9294
|
-
T['io.flow.internal.v0.enums.
|
|
9295
|
-
T['io.flow.internal.v0.enums.rebound_configuration_status'] = PropTypes.oneOf(['active', 'inactive']);
|
|
9710
|
+
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
9296
9711
|
|
|
9297
|
-
T['io.flow.internal.v0.models.
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9712
|
+
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
9713
|
+
key: PropTypes.string.isRequired,
|
|
9714
|
+
status: T['io.flow.internal.v0.enums.report_status'].isRequired,
|
|
9715
|
+
from: PropTypes.string.isRequired,
|
|
9716
|
+
to: PropTypes.string.isRequired,
|
|
9717
|
+
organization_id: PropTypes.string,
|
|
9718
|
+
sales_url: PropTypes.string,
|
|
9719
|
+
refunds_url: PropTypes.string,
|
|
9720
|
+
});
|
|
9721
|
+
|
|
9722
|
+
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
9723
|
+
T['io.flow.internal.v0.enums.rebound_configuration_status'] = PropTypes.oneOf(['active', 'inactive']);
|
|
9724
|
+
|
|
9725
|
+
T['io.flow.internal.v0.models.rebound_configuration_form'] = PropTypes.exact({
|
|
9726
|
+
login: PropTypes.string.isRequired,
|
|
9727
|
+
api_key: PropTypes.string.isRequired,
|
|
9728
|
+
status: T['io.flow.internal.v0.enums.rebound_configuration_status'].isRequired,
|
|
9729
|
+
orders_since_submitted_at: PropTypes.string,
|
|
9302
9730
|
});
|
|
9303
9731
|
|
|
9304
9732
|
T['io.flow.internal.v0.models.rebound_configuration'] = PropTypes.exact({
|
|
@@ -9365,6 +9793,7 @@ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'] = PropT
|
|
|
9365
9793
|
T['io.flow.internal.v0.models.rate_level'] = PropTypes.exact({
|
|
9366
9794
|
id: PropTypes.string.isRequired,
|
|
9367
9795
|
name: PropTypes.string.isRequired,
|
|
9796
|
+
key: PropTypes.string.isRequired,
|
|
9368
9797
|
});
|
|
9369
9798
|
|
|
9370
9799
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'] = PropTypes.exact({
|
|
@@ -9467,20 +9896,6 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
|
9467
9896
|
'preferential_rate',
|
|
9468
9897
|
]);
|
|
9469
9898
|
|
|
9470
|
-
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
9471
|
-
|
|
9472
|
-
T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
9473
|
-
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
9474
|
-
count: PropTypes.number.isRequired,
|
|
9475
|
-
});
|
|
9476
|
-
|
|
9477
|
-
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
9478
|
-
rule_id: PropTypes.string.isRequired,
|
|
9479
|
-
rule_name: PropTypes.string.isRequired,
|
|
9480
|
-
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
9481
|
-
count: PropTypes.number.isRequired,
|
|
9482
|
-
});
|
|
9483
|
-
|
|
9484
9899
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
9485
9900
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9486
9901
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -9497,12 +9912,6 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
|
9497
9912
|
count: PropTypes.number.isRequired,
|
|
9498
9913
|
});
|
|
9499
9914
|
|
|
9500
|
-
T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
9501
|
-
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
9502
|
-
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
9503
|
-
count: PropTypes.number.isRequired,
|
|
9504
|
-
});
|
|
9505
|
-
|
|
9506
9915
|
T['io.flow.internal.v0.models.harmonization_column_setting'] = PropTypes.exact({
|
|
9507
9916
|
column: PropTypes.string.isRequired,
|
|
9508
9917
|
position: PropTypes.number.isRequired,
|
|
@@ -9806,17 +10215,17 @@ T['io.flow.session.v0.models.session_format'] = PropTypes.exact({
|
|
|
9806
10215
|
currency: T['io.flow.session.v0.models.session_currency_format'].isRequired,
|
|
9807
10216
|
});
|
|
9808
10217
|
|
|
9809
|
-
T['io.flow.
|
|
10218
|
+
T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
|
|
9810
10219
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9811
10220
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9812
10221
|
});
|
|
9813
10222
|
|
|
9814
|
-
T['io.flow.experience.v0.models.
|
|
10223
|
+
T['io.flow.experience.v0.models.experience_currency_format_form'] = PropTypes.exact({
|
|
9815
10224
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9816
10225
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9817
10226
|
});
|
|
9818
10227
|
|
|
9819
|
-
T['io.flow.
|
|
10228
|
+
T['io.flow.experience.v0.models.experience_currency_format'] = PropTypes.exact({
|
|
9820
10229
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9821
10230
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9822
10231
|
});
|
|
@@ -9943,6 +10352,20 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
|
|
|
9943
10352
|
|
|
9944
10353
|
T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
9945
10354
|
|
|
10355
|
+
T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
|
|
10356
|
+
id: PropTypes.string.isRequired,
|
|
10357
|
+
deactivate_at: PropTypes.string.isRequired,
|
|
10358
|
+
created_at: PropTypes.string.isRequired,
|
|
10359
|
+
});
|
|
10360
|
+
|
|
10361
|
+
T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
|
|
10362
|
+
discriminator: PropTypes.oneOf(['organization_deactivation_upserted']).isRequired,
|
|
10363
|
+
event_id: PropTypes.string.isRequired,
|
|
10364
|
+
timestamp: PropTypes.string.isRequired,
|
|
10365
|
+
organization: PropTypes.string.isRequired,
|
|
10366
|
+
organization_deactivation: T['io.flow.internal.v0.models.organization_deactivation'].isRequired,
|
|
10367
|
+
});
|
|
10368
|
+
|
|
9946
10369
|
T['io.flow.internal.v0.models.organization_business_entity'] = PropTypes.exact({
|
|
9947
10370
|
id: PropTypes.string.isRequired,
|
|
9948
10371
|
name: PropTypes.string.isRequired,
|
|
@@ -9988,6 +10411,8 @@ T['io.flow.internal.v0.models.organization_bank_account_upserted'] = PropTypes.e
|
|
|
9988
10411
|
organization_bank_account: T['io.flow.billing.v0.models.organization_bank_account'].isRequired,
|
|
9989
10412
|
});
|
|
9990
10413
|
|
|
10414
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
10415
|
+
|
|
9991
10416
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
9992
10417
|
id: PropTypes.string.isRequired,
|
|
9993
10418
|
number: PropTypes.string.isRequired,
|
|
@@ -10107,6 +10532,83 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
10107
10532
|
});
|
|
10108
10533
|
|
|
10109
10534
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
10535
|
+
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
10536
|
+
|
|
10537
|
+
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
10538
|
+
domain: PropTypes.string.isRequired,
|
|
10539
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10540
|
+
});
|
|
10541
|
+
|
|
10542
|
+
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
10543
|
+
id: PropTypes.string.isRequired,
|
|
10544
|
+
domain: PropTypes.string.isRequired,
|
|
10545
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10546
|
+
});
|
|
10547
|
+
|
|
10548
|
+
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
10549
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10550
|
+
});
|
|
10551
|
+
|
|
10552
|
+
T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
10553
|
+
'billing',
|
|
10554
|
+
'b2b_invoicing',
|
|
10555
|
+
'catalog',
|
|
10556
|
+
'currency',
|
|
10557
|
+
'checkout',
|
|
10558
|
+
'fraud',
|
|
10559
|
+
'logistics',
|
|
10560
|
+
'payments',
|
|
10561
|
+
'shopify_markets',
|
|
10562
|
+
'integration_partner',
|
|
10563
|
+
'dtce',
|
|
10564
|
+
'restrictions',
|
|
10565
|
+
'organization_status',
|
|
10566
|
+
'miscellaneous',
|
|
10567
|
+
]);
|
|
10568
|
+
|
|
10569
|
+
T['io.flow.internal.v0.enums.onboarding_audit_result'] = PropTypes.oneOf(['pass', 'warning', 'fail']);
|
|
10570
|
+
T['io.flow.internal.v0.enums.onboarding_audit_message_level'] = PropTypes.oneOf(['info', 'warning', 'error']);
|
|
10571
|
+
|
|
10572
|
+
T['io.flow.internal.v0.models.onboarding_audit_message'] = PropTypes.exact({
|
|
10573
|
+
message: PropTypes.string.isRequired,
|
|
10574
|
+
level: T['io.flow.internal.v0.enums.onboarding_audit_message_level'].isRequired,
|
|
10575
|
+
});
|
|
10576
|
+
|
|
10577
|
+
T['io.flow.internal.v0.models.onboarding_audit_report_line'] = PropTypes.exact({
|
|
10578
|
+
description: PropTypes.string.isRequired,
|
|
10579
|
+
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10580
|
+
messages: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_message']).isRequired,
|
|
10581
|
+
execution_time_ms: PropTypes.number,
|
|
10582
|
+
});
|
|
10583
|
+
|
|
10584
|
+
T['io.flow.internal.v0.models.onboarding_audit_theme_report'] = PropTypes.exact({
|
|
10585
|
+
name: PropTypes.string.isRequired,
|
|
10586
|
+
key: T['io.flow.internal.v0.enums.onboarding_audit_theme_key'].isRequired,
|
|
10587
|
+
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10588
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_report_line']).isRequired,
|
|
10589
|
+
});
|
|
10590
|
+
|
|
10591
|
+
T['io.flow.internal.v0.models.decision'] = PropTypes.exact({
|
|
10592
|
+
id: PropTypes.string.isRequired,
|
|
10593
|
+
status: PropTypes.string.isRequired,
|
|
10594
|
+
old_status: PropTypes.string.isRequired,
|
|
10595
|
+
description: PropTypes.string.isRequired,
|
|
10596
|
+
category: PropTypes.string,
|
|
10597
|
+
shop_url: PropTypes.string,
|
|
10598
|
+
});
|
|
10599
|
+
|
|
10600
|
+
T['io.flow.internal.v0.models.notification'] = PropTypes.exact({
|
|
10601
|
+
order: T['io.flow.internal.v0.models.decision'].isRequired,
|
|
10602
|
+
});
|
|
10603
|
+
|
|
10604
|
+
T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
10605
|
+
id: PropTypes.string.isRequired,
|
|
10606
|
+
});
|
|
10607
|
+
|
|
10608
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
|
|
10609
|
+
discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
|
|
10610
|
+
reason: PropTypes.string.isRequired,
|
|
10611
|
+
});
|
|
10110
10612
|
|
|
10111
10613
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
10112
10614
|
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
@@ -10149,6 +10651,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
|
|
|
10149
10651
|
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'],
|
|
10150
10652
|
T['io.flow.organization.onboarding.state.v0.models.setup_completed'],
|
|
10151
10653
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'],
|
|
10654
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'],
|
|
10152
10655
|
]);
|
|
10153
10656
|
|
|
10154
10657
|
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
|
|
@@ -10162,49 +10665,13 @@ T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
|
10162
10665
|
transitioned_at: PropTypes.string,
|
|
10163
10666
|
});
|
|
10164
10667
|
|
|
10165
|
-
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
10166
|
-
|
|
10167
|
-
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
10168
|
-
domain: PropTypes.string.isRequired,
|
|
10169
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10170
|
-
});
|
|
10171
|
-
|
|
10172
|
-
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
10173
|
-
id: PropTypes.string.isRequired,
|
|
10174
|
-
domain: PropTypes.string.isRequired,
|
|
10175
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10176
|
-
});
|
|
10177
|
-
|
|
10178
|
-
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
10179
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10180
|
-
});
|
|
10181
|
-
|
|
10182
|
-
T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
10183
|
-
'billing',
|
|
10184
|
-
'b2b_invoicing',
|
|
10185
|
-
'catalog',
|
|
10186
|
-
'currency',
|
|
10187
|
-
'checkout',
|
|
10188
|
-
'fraud',
|
|
10189
|
-
'logistics',
|
|
10190
|
-
'payments',
|
|
10191
|
-
'shopify_markets',
|
|
10192
|
-
'integration_partner',
|
|
10193
|
-
'dtce',
|
|
10194
|
-
'restrictions',
|
|
10195
|
-
'organization_status',
|
|
10196
|
-
'miscellaneous',
|
|
10197
|
-
]);
|
|
10198
|
-
|
|
10199
|
-
T['io.flow.internal.v0.enums.onboarding_audit_result'] = PropTypes.oneOf(['pass', 'warning', 'fail']);
|
|
10200
|
-
|
|
10201
10668
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
10202
10669
|
age: PropTypes.number.isRequired,
|
|
10203
10670
|
compliance_approved: PropTypes.bool.isRequired,
|
|
10204
10671
|
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
10205
10672
|
application_received: PropTypes.string.isRequired,
|
|
10206
10673
|
legal_name: PropTypes.string.isRequired,
|
|
10207
|
-
shop_name: PropTypes.string
|
|
10674
|
+
shop_name: PropTypes.string,
|
|
10208
10675
|
organization_id: PropTypes.string.isRequired,
|
|
10209
10676
|
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10210
10677
|
setup_completed_at: PropTypes.string,
|
|
@@ -10215,37 +10682,25 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
10215
10682
|
blocked_since: PropTypes.string,
|
|
10216
10683
|
});
|
|
10217
10684
|
|
|
10218
|
-
T['io.flow.internal.v0.
|
|
10219
|
-
|
|
10220
|
-
|
|
10221
|
-
|
|
10222
|
-
|
|
10223
|
-
});
|
|
10224
|
-
|
|
10225
|
-
T['io.flow.internal.v0.models.onboarding_audit_report_line'] = PropTypes.exact({
|
|
10226
|
-
description: PropTypes.string.isRequired,
|
|
10227
|
-
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10228
|
-
messages: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_message']).isRequired,
|
|
10229
|
-
});
|
|
10230
|
-
|
|
10231
|
-
T['io.flow.internal.v0.models.onboarding_audit_theme_report'] = PropTypes.exact({
|
|
10232
|
-
name: PropTypes.string.isRequired,
|
|
10233
|
-
key: T['io.flow.internal.v0.enums.onboarding_audit_theme_key'].isRequired,
|
|
10234
|
-
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10235
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_report_line']).isRequired,
|
|
10685
|
+
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
10686
|
+
organization_id: PropTypes.string.isRequired,
|
|
10687
|
+
shop_name: PropTypes.string,
|
|
10688
|
+
legal_name: PropTypes.string.isRequired,
|
|
10689
|
+
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10236
10690
|
});
|
|
10237
10691
|
|
|
10238
|
-
T['io.flow.internal.v0.models.
|
|
10692
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
10239
10693
|
id: PropTypes.string.isRequired,
|
|
10240
|
-
|
|
10241
|
-
|
|
10242
|
-
description: PropTypes.string.isRequired,
|
|
10243
|
-
category: PropTypes.string,
|
|
10244
|
-
shop_url: PropTypes.string,
|
|
10694
|
+
merchant_guid: PropTypes.string.isRequired,
|
|
10695
|
+
created_at: PropTypes.string.isRequired,
|
|
10245
10696
|
});
|
|
10246
10697
|
|
|
10247
|
-
T['io.flow.internal.v0.models.
|
|
10248
|
-
|
|
10698
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'] = PropTypes.exact({
|
|
10699
|
+
discriminator: PropTypes.oneOf(['merchant_guid_assignment_upserted']).isRequired,
|
|
10700
|
+
event_id: PropTypes.string.isRequired,
|
|
10701
|
+
timestamp: PropTypes.string.isRequired,
|
|
10702
|
+
organization: PropTypes.string.isRequired,
|
|
10703
|
+
merchant_guid_assignment: T['io.flow.internal.v0.models.merchant_guid_assignment'].isRequired,
|
|
10249
10704
|
});
|
|
10250
10705
|
|
|
10251
10706
|
T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
@@ -10256,6 +10711,13 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'] = P
|
|
|
10256
10711
|
status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
10257
10712
|
});
|
|
10258
10713
|
|
|
10714
|
+
T['io.flow.internal.v0.models.organizations_audit_check_report'] = PropTypes.exact({
|
|
10715
|
+
organization_id: PropTypes.string.isRequired,
|
|
10716
|
+
organization_status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
10717
|
+
onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10718
|
+
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10719
|
+
});
|
|
10720
|
+
|
|
10259
10721
|
T['io.flow.internal.v0.models.organization_status_change'] = PropTypes.exact({
|
|
10260
10722
|
id: PropTypes.string.isRequired,
|
|
10261
10723
|
previous_status: T['io.flow.common.v0.enums.organization_status'],
|
|
@@ -10379,6 +10841,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
|
|
|
10379
10841
|
carrier_identifier: PropTypes.string,
|
|
10380
10842
|
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10381
10843
|
discounted_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10844
|
+
discount_allocations: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_discount_allocation']),
|
|
10382
10845
|
});
|
|
10383
10846
|
|
|
10384
10847
|
T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
|
|
@@ -10387,7 +10850,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
|
|
|
10387
10850
|
grams: PropTypes.number,
|
|
10388
10851
|
id: PropTypes.number.isRequired,
|
|
10389
10852
|
price: PropTypes.string,
|
|
10390
|
-
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
10853
|
+
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10391
10854
|
product_id: PropTypes.number,
|
|
10392
10855
|
quantity: PropTypes.number.isRequired,
|
|
10393
10856
|
requires_shipping: PropTypes.bool.isRequired,
|
|
@@ -10396,7 +10859,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
|
|
|
10396
10859
|
variant_id: PropTypes.number,
|
|
10397
10860
|
variant_title: PropTypes.string,
|
|
10398
10861
|
vendor: PropTypes.string,
|
|
10399
|
-
name: PropTypes.string,
|
|
10862
|
+
name: PropTypes.string.isRequired,
|
|
10400
10863
|
gift_card: PropTypes.bool.isRequired,
|
|
10401
10864
|
properties: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_property']).isRequired,
|
|
10402
10865
|
taxable: PropTypes.bool.isRequired,
|
|
@@ -10485,13 +10948,14 @@ T['io.flow.shopify.markets.v0.models.shopify_order_address'] = PropTypes.exact({
|
|
|
10485
10948
|
zip: PropTypes.string,
|
|
10486
10949
|
});
|
|
10487
10950
|
|
|
10488
|
-
T['io.flow.shopify.markets.v0.models.
|
|
10951
|
+
T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
10489
10952
|
id: PropTypes.number.isRequired,
|
|
10490
|
-
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address']
|
|
10953
|
+
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10954
|
+
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
|
|
10491
10955
|
});
|
|
10492
10956
|
|
|
10493
|
-
T['io.flow.shopify.markets.v0.models.
|
|
10494
|
-
order: T['io.flow.shopify.markets.v0.models.
|
|
10957
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
10958
|
+
order: T['io.flow.shopify.markets.v0.models.shopify_update_order'].isRequired,
|
|
10495
10959
|
});
|
|
10496
10960
|
|
|
10497
10961
|
T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact({
|
|
@@ -10614,6 +11078,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
10614
11078
|
send_receipt: PropTypes.bool,
|
|
10615
11079
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
|
|
10616
11080
|
merchant_of_record_app_id: PropTypes.number,
|
|
11081
|
+
total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
10617
11082
|
});
|
|
10618
11083
|
|
|
10619
11084
|
T['io.flow.shopify.markets.v0.models.shopify_orders_wrapper'] = PropTypes.exact({
|
|
@@ -10933,40 +11398,40 @@ T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
|
|
|
10933
11398
|
ends_at: PropTypes.string,
|
|
10934
11399
|
});
|
|
10935
11400
|
|
|
10936
|
-
T['io.flow.
|
|
10937
|
-
sku: PropTypes.string.isRequired,
|
|
11401
|
+
T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
|
|
10938
11402
|
price_book_key: PropTypes.string.isRequired,
|
|
10939
|
-
|
|
10940
|
-
item_name: PropTypes.string.isRequired,
|
|
11403
|
+
item_query: PropTypes.string.isRequired,
|
|
10941
11404
|
amount: PropTypes.number.isRequired,
|
|
11405
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10942
11406
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
10943
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10944
11407
|
});
|
|
10945
11408
|
|
|
10946
|
-
T['io.flow.
|
|
10947
|
-
item_number: PropTypes.string.isRequired,
|
|
11409
|
+
T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
|
|
10948
11410
|
price_book_key: PropTypes.string.isRequired,
|
|
10949
|
-
|
|
10950
|
-
item_name: PropTypes.string.isRequired,
|
|
11411
|
+
item_number: PropTypes.string.isRequired,
|
|
10951
11412
|
amount: PropTypes.number.isRequired,
|
|
11413
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10952
11414
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
10953
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10954
11415
|
});
|
|
10955
11416
|
|
|
10956
|
-
T['io.flow.
|
|
11417
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
|
|
11418
|
+
sku: PropTypes.string.isRequired,
|
|
10957
11419
|
price_book_key: PropTypes.string.isRequired,
|
|
10958
|
-
|
|
11420
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
11421
|
+
item_name: PropTypes.string.isRequired,
|
|
10959
11422
|
amount: PropTypes.number.isRequired,
|
|
10960
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10961
11423
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
11424
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10962
11425
|
});
|
|
10963
11426
|
|
|
10964
|
-
T['io.flow.
|
|
10965
|
-
price_book_key: PropTypes.string.isRequired,
|
|
11427
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
|
|
10966
11428
|
item_number: PropTypes.string.isRequired,
|
|
11429
|
+
price_book_key: PropTypes.string.isRequired,
|
|
11430
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
11431
|
+
item_name: PropTypes.string.isRequired,
|
|
10967
11432
|
amount: PropTypes.number.isRequired,
|
|
10968
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10969
11433
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
11434
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10970
11435
|
});
|
|
10971
11436
|
|
|
10972
11437
|
T['io.flow.internal.v0.enums.content_status'] = PropTypes.oneOf(['draft', 'live', 'archived']);
|
|
@@ -11114,6 +11579,11 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
|
|
|
11114
11579
|
code: PropTypes.string.isRequired,
|
|
11115
11580
|
});
|
|
11116
11581
|
|
|
11582
|
+
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
11583
|
+
amount: PropTypes.number.isRequired,
|
|
11584
|
+
description: PropTypes.string,
|
|
11585
|
+
});
|
|
11586
|
+
|
|
11117
11587
|
T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'] = PropTypes.exact({
|
|
11118
11588
|
id: PropTypes.string.isRequired,
|
|
11119
11589
|
});
|
|
@@ -11147,6 +11617,7 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
11147
11617
|
label: T['io.flow.label.v0.models.label_reference'],
|
|
11148
11618
|
in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
|
|
11149
11619
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
11620
|
+
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
11150
11621
|
});
|
|
11151
11622
|
|
|
11152
11623
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -11186,6 +11657,21 @@ T['io.flow.internal.v0.models.taxonomy_category'] = PropTypes.exact({
|
|
|
11186
11657
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.classification_taxonomy']).isRequired,
|
|
11187
11658
|
});
|
|
11188
11659
|
|
|
11660
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
11661
|
+
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
11662
|
+
fee: PropTypes.number.isRequired,
|
|
11663
|
+
});
|
|
11664
|
+
|
|
11665
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
11666
|
+
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
11667
|
+
percentage: PropTypes.number.isRequired,
|
|
11668
|
+
});
|
|
11669
|
+
|
|
11670
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
11671
|
+
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
11672
|
+
placeholder: PropTypes.string,
|
|
11673
|
+
});
|
|
11674
|
+
|
|
11189
11675
|
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
11190
11676
|
id: PropTypes.string.isRequired,
|
|
11191
11677
|
name: PropTypes.string.isRequired,
|
|
@@ -11216,12 +11702,97 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
11216
11702
|
|
|
11217
11703
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
11218
11704
|
|
|
11219
|
-
T['io.flow.internal.v0.
|
|
11220
|
-
|
|
11221
|
-
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
|
|
11705
|
+
T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
|
|
11706
|
+
'merchant',
|
|
11707
|
+
'merchant_integration',
|
|
11708
|
+
'shopify_integration',
|
|
11709
|
+
'globale_cx',
|
|
11710
|
+
'globale_system',
|
|
11711
|
+
]);
|
|
11712
|
+
|
|
11713
|
+
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
11714
|
+
weight: PropTypes.number.isRequired,
|
|
11715
|
+
length: PropTypes.number.isRequired,
|
|
11716
|
+
width: PropTypes.number.isRequired,
|
|
11717
|
+
height: PropTypes.number.isRequired,
|
|
11718
|
+
});
|
|
11719
|
+
|
|
11720
|
+
T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
|
|
11721
|
+
weight: PropTypes.number.isRequired,
|
|
11722
|
+
});
|
|
11723
|
+
|
|
11724
|
+
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
11725
|
+
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
11726
|
+
name: PropTypes.string.isRequired,
|
|
11727
|
+
});
|
|
11728
|
+
|
|
11729
|
+
T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
11730
|
+
amount: PropTypes.number.isRequired,
|
|
11731
|
+
percentage: PropTypes.number,
|
|
11732
|
+
fee_per_weight_unit: PropTypes.number,
|
|
11733
|
+
});
|
|
11734
|
+
|
|
11735
|
+
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
11736
|
+
fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11737
|
+
remote_area: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11738
|
+
oversize: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11739
|
+
duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11740
|
+
emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11741
|
+
peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11742
|
+
});
|
|
11743
|
+
|
|
11744
|
+
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
11745
|
+
dead: T['io.flow.internal.v0.models.weights_dead'],
|
|
11746
|
+
dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
|
|
11747
|
+
});
|
|
11748
|
+
|
|
11749
|
+
T['io.flow.internal.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
11750
|
+
id: PropTypes.string.isRequired,
|
|
11751
|
+
proposition: T['io.flow.internal.v0.models.metadata_proposition'].isRequired,
|
|
11752
|
+
});
|
|
11753
|
+
|
|
11754
|
+
T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
11755
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_flat'],
|
|
11756
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_percentage'],
|
|
11757
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
11758
|
+
]);
|
|
11759
|
+
|
|
11760
|
+
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
|
|
11761
|
+
|
|
11762
|
+
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
11763
|
+
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
11764
|
+
weights: T['io.flow.internal.v0.models.metadata_weights'].isRequired,
|
|
11765
|
+
});
|
|
11766
|
+
|
|
11767
|
+
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
11768
|
+
country: PropTypes.string.isRequired,
|
|
11769
|
+
});
|
|
11770
|
+
|
|
11771
|
+
T['io.flow.internal.v0.models.label_surcharge'] = PropTypes.exact({
|
|
11772
|
+
amount: PropTypes.number.isRequired,
|
|
11773
|
+
type: T['io.flow.internal.v0.enums.true_up_surcharge_type'].isRequired,
|
|
11774
|
+
detail: T['io.flow.internal.v0.unions.label_surcharge_detail'].isRequired,
|
|
11775
|
+
});
|
|
11776
|
+
|
|
11777
|
+
T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
|
|
11778
|
+
amount: PropTypes.number.isRequired,
|
|
11779
|
+
weight: PropTypes.number.isRequired,
|
|
11780
|
+
});
|
|
11781
|
+
|
|
11782
|
+
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
11783
|
+
id: PropTypes.string.isRequired,
|
|
11784
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
11785
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
11786
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
11787
|
+
created_at: PropTypes.string.isRequired,
|
|
11788
|
+
});
|
|
11789
|
+
|
|
11790
|
+
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
11791
|
+
id: PropTypes.string.isRequired,
|
|
11792
|
+
item_identifier: PropTypes.string,
|
|
11793
|
+
auto_generate_query: PropTypes.string,
|
|
11794
|
+
commercial_invoice_only_query: PropTypes.string,
|
|
11795
|
+
});
|
|
11225
11796
|
|
|
11226
11797
|
T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.exact({
|
|
11227
11798
|
discriminator: PropTypes.oneOf(['label_generation_settings_upserted']).isRequired,
|
|
@@ -11736,6 +12307,20 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
|
|
|
11736
12307
|
afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
|
|
11737
12308
|
});
|
|
11738
12309
|
|
|
12310
|
+
T['io.flow.internal.v0.models.algolia_index_assignment'] = PropTypes.exact({
|
|
12311
|
+
id: PropTypes.string.isRequired,
|
|
12312
|
+
name: PropTypes.string.isRequired,
|
|
12313
|
+
application_id: PropTypes.string.isRequired,
|
|
12314
|
+
});
|
|
12315
|
+
|
|
12316
|
+
T['io.flow.internal.v0.models.index_assignment_upserted'] = PropTypes.exact({
|
|
12317
|
+
discriminator: PropTypes.oneOf(['index_assignment_upserted']).isRequired,
|
|
12318
|
+
event_id: PropTypes.string.isRequired,
|
|
12319
|
+
timestamp: PropTypes.string.isRequired,
|
|
12320
|
+
organization: PropTypes.string.isRequired,
|
|
12321
|
+
assignment: T['io.flow.internal.v0.models.algolia_index_assignment'].isRequired,
|
|
12322
|
+
});
|
|
12323
|
+
|
|
11739
12324
|
T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'] = PropTypes.exact({
|
|
11740
12325
|
id: PropTypes.string.isRequired,
|
|
11741
12326
|
import_id: PropTypes.string.isRequired,
|
|
@@ -11925,6 +12510,8 @@ T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.ex
|
|
|
11925
12510
|
quantity: PropTypes.number.isRequired,
|
|
11926
12511
|
});
|
|
11927
12512
|
|
|
12513
|
+
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
12514
|
+
|
|
11928
12515
|
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
11929
12516
|
item_number: PropTypes.string.isRequired,
|
|
11930
12517
|
line_number: PropTypes.number.isRequired,
|
|
@@ -11970,6 +12557,191 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
11970
12557
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
11971
12558
|
});
|
|
11972
12559
|
|
|
12560
|
+
T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
|
|
12561
|
+
labels: PropTypes.number.isRequired,
|
|
12562
|
+
total: PropTypes.number.isRequired,
|
|
12563
|
+
});
|
|
12564
|
+
|
|
12565
|
+
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
12566
|
+
duty_guarantee: PropTypes.number.isRequired,
|
|
12567
|
+
mor: PropTypes.number.isRequired,
|
|
12568
|
+
fraud: PropTypes.number.isRequired,
|
|
12569
|
+
fx: PropTypes.number.isRequired,
|
|
12570
|
+
processing: PropTypes.number.isRequired,
|
|
12571
|
+
rate_lock: PropTypes.number.isRequired,
|
|
12572
|
+
transfer: PropTypes.number.isRequired,
|
|
12573
|
+
total: PropTypes.number.isRequired,
|
|
12574
|
+
});
|
|
12575
|
+
|
|
12576
|
+
T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
12577
|
+
fuel: PropTypes.number.isRequired,
|
|
12578
|
+
remote_area: PropTypes.number.isRequired,
|
|
12579
|
+
oversize: PropTypes.number.isRequired,
|
|
12580
|
+
ccf: PropTypes.number.isRequired,
|
|
12581
|
+
total: PropTypes.number.isRequired,
|
|
12582
|
+
});
|
|
12583
|
+
|
|
12584
|
+
T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
|
|
12585
|
+
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
12586
|
+
tax: PropTypes.number.isRequired,
|
|
12587
|
+
duty: PropTypes.number.isRequired,
|
|
12588
|
+
total: PropTypes.number.isRequired,
|
|
12589
|
+
});
|
|
12590
|
+
|
|
12591
|
+
T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact({
|
|
12592
|
+
tax: PropTypes.number.isRequired,
|
|
12593
|
+
duty: PropTypes.number.isRequired,
|
|
12594
|
+
});
|
|
12595
|
+
|
|
12596
|
+
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
12597
|
+
number: PropTypes.string.isRequired,
|
|
12598
|
+
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
12599
|
+
});
|
|
12600
|
+
|
|
12601
|
+
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
12602
|
+
vat_registration_number: PropTypes.string.isRequired,
|
|
12603
|
+
});
|
|
12604
|
+
|
|
12605
|
+
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
12606
|
+
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
12607
|
+
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
12608
|
+
charges: T['io.flow.internal.v0.models.merchant_charges'].isRequired,
|
|
12609
|
+
discounts: PropTypes.number.isRequired,
|
|
12610
|
+
});
|
|
12611
|
+
|
|
12612
|
+
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
12613
|
+
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
12614
|
+
});
|
|
12615
|
+
|
|
12616
|
+
T['io.flow.internal.v0.models.fulfillment_shipping'] = PropTypes.exact({
|
|
12617
|
+
price: PropTypes.number.isRequired,
|
|
12618
|
+
discount: PropTypes.number.isRequired,
|
|
12619
|
+
tax: PropTypes.number.isRequired,
|
|
12620
|
+
duty: PropTypes.number.isRequired,
|
|
12621
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
12622
|
+
});
|
|
12623
|
+
|
|
12624
|
+
T['io.flow.internal.v0.models.fulfillment_line'] = PropTypes.exact({
|
|
12625
|
+
item: T['io.flow.internal.v0.models.item_summary'].isRequired,
|
|
12626
|
+
quantity: PropTypes.number.isRequired,
|
|
12627
|
+
unit_price: PropTypes.number.isRequired,
|
|
12628
|
+
price: PropTypes.number.isRequired,
|
|
12629
|
+
discount: PropTypes.number.isRequired,
|
|
12630
|
+
tax: PropTypes.number.isRequired,
|
|
12631
|
+
duty: PropTypes.number.isRequired,
|
|
12632
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
12633
|
+
});
|
|
12634
|
+
|
|
12635
|
+
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
12636
|
+
country: PropTypes.string.isRequired,
|
|
12637
|
+
province_code: PropTypes.string,
|
|
12638
|
+
});
|
|
12639
|
+
|
|
12640
|
+
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
12641
|
+
'millimeter',
|
|
12642
|
+
'centimeter',
|
|
12643
|
+
'inch',
|
|
12644
|
+
'foot',
|
|
12645
|
+
'cubic_inch',
|
|
12646
|
+
'cubic_meter',
|
|
12647
|
+
'gram',
|
|
12648
|
+
'kilogram',
|
|
12649
|
+
'meter',
|
|
12650
|
+
'ounce',
|
|
12651
|
+
'pound',
|
|
12652
|
+
]);
|
|
12653
|
+
|
|
12654
|
+
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
12655
|
+
value: PropTypes.string.isRequired,
|
|
12656
|
+
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
12657
|
+
});
|
|
12658
|
+
|
|
12659
|
+
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
12660
|
+
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12661
|
+
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12662
|
+
});
|
|
12663
|
+
|
|
12664
|
+
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
12665
|
+
depth: T['io.flow.common.v0.models.measurement'],
|
|
12666
|
+
diameter: T['io.flow.common.v0.models.measurement'],
|
|
12667
|
+
length: T['io.flow.common.v0.models.measurement'],
|
|
12668
|
+
weight: T['io.flow.common.v0.models.measurement'],
|
|
12669
|
+
width: T['io.flow.common.v0.models.measurement'],
|
|
12670
|
+
});
|
|
12671
|
+
|
|
12672
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
12673
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
12674
|
+
});
|
|
12675
|
+
|
|
12676
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
12677
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
12678
|
+
});
|
|
12679
|
+
|
|
12680
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
12681
|
+
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
12682
|
+
fulfillment_key: PropTypes.string.isRequired,
|
|
12683
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
12684
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
12685
|
+
service: PropTypes.string,
|
|
12686
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
12687
|
+
});
|
|
12688
|
+
|
|
12689
|
+
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
12690
|
+
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12691
|
+
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12692
|
+
weight: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12693
|
+
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12694
|
+
});
|
|
12695
|
+
|
|
12696
|
+
T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
|
|
12697
|
+
q: PropTypes.string.isRequired,
|
|
12698
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12699
|
+
position: PropTypes.number,
|
|
12700
|
+
});
|
|
12701
|
+
|
|
12702
|
+
T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
12703
|
+
id: PropTypes.string.isRequired,
|
|
12704
|
+
q: PropTypes.string.isRequired,
|
|
12705
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12706
|
+
position: PropTypes.number.isRequired,
|
|
12707
|
+
});
|
|
12708
|
+
|
|
12709
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
12710
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
|
|
12711
|
+
event_id: PropTypes.string.isRequired,
|
|
12712
|
+
timestamp: PropTypes.string.isRequired,
|
|
12713
|
+
organization: PropTypes.string.isRequired,
|
|
12714
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
12715
|
+
});
|
|
12716
|
+
|
|
12717
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
|
|
12718
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
|
|
12719
|
+
event_id: PropTypes.string.isRequired,
|
|
12720
|
+
timestamp: PropTypes.string.isRequired,
|
|
12721
|
+
organization: PropTypes.string.isRequired,
|
|
12722
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
12723
|
+
});
|
|
12724
|
+
|
|
12725
|
+
T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
12726
|
+
id: PropTypes.string.isRequired,
|
|
12727
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
12728
|
+
q: PropTypes.string.isRequired,
|
|
12729
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12730
|
+
});
|
|
12731
|
+
|
|
12732
|
+
T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
|
|
12733
|
+
discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
|
|
12734
|
+
event_id: PropTypes.string.isRequired,
|
|
12735
|
+
timestamp: PropTypes.string.isRequired,
|
|
12736
|
+
organization: PropTypes.string.isRequired,
|
|
12737
|
+
estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
|
|
12738
|
+
});
|
|
12739
|
+
|
|
12740
|
+
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
12741
|
+
weight: PropTypes.number.isRequired,
|
|
12742
|
+
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
12743
|
+
});
|
|
12744
|
+
|
|
11973
12745
|
T['io.flow.internal.v0.enums.ftp_intent'] = PropTypes.oneOf([
|
|
11974
12746
|
'orders_from_flow',
|
|
11975
12747
|
'pricebooks_from_flow',
|
|
@@ -12358,12 +13130,14 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'] = PropT
|
|
|
12358
13130
|
carrier_id: PropTypes.string,
|
|
12359
13131
|
service_id: PropTypes.string,
|
|
12360
13132
|
carrier_tracking_number: PropTypes.string,
|
|
13133
|
+
fulfilled_via_replacement_order: PropTypes.bool,
|
|
12361
13134
|
});
|
|
12362
13135
|
|
|
12363
13136
|
T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.exact({
|
|
12364
13137
|
carrier_id: PropTypes.string,
|
|
12365
13138
|
service_id: PropTypes.string,
|
|
12366
13139
|
carrier_tracking_number: PropTypes.string,
|
|
13140
|
+
fulfilled_via_replacement_order: PropTypes.bool,
|
|
12367
13141
|
});
|
|
12368
13142
|
|
|
12369
13143
|
T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
@@ -12733,13 +13507,19 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
|
12733
13507
|
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12734
13508
|
});
|
|
12735
13509
|
|
|
12736
|
-
T['io.flow.internal.v0.models.
|
|
13510
|
+
T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
|
|
12737
13511
|
name: PropTypes.string.isRequired,
|
|
13512
|
+
url: PropTypes.string.isRequired,
|
|
12738
13513
|
created_at: PropTypes.string.isRequired,
|
|
12739
13514
|
errors: PropTypes.arrayOf(PropTypes.string),
|
|
12740
13515
|
processed_at: PropTypes.string,
|
|
12741
13516
|
});
|
|
12742
13517
|
|
|
13518
|
+
T['io.flow.internal.v0.models.erp_vendor_status_flow_file'] = PropTypes.exact({
|
|
13519
|
+
url: PropTypes.string.isRequired,
|
|
13520
|
+
created_at: PropTypes.string.isRequired,
|
|
13521
|
+
});
|
|
13522
|
+
|
|
12743
13523
|
T['io.flow.internal.v0.models.entity_reference'] = PropTypes.exact({
|
|
12744
13524
|
id: PropTypes.string.isRequired,
|
|
12745
13525
|
});
|
|
@@ -12751,10 +13531,17 @@ T['io.flow.internal.v0.models.erp_vendor_status_entity'] = PropTypes.exact({
|
|
|
12751
13531
|
|
|
12752
13532
|
T['io.flow.internal.v0.models.erp_vendor_status'] = PropTypes.exact({
|
|
12753
13533
|
entities: PropTypes.arrayOf(T['io.flow.internal.v0.models.erp_vendor_status_entity']).isRequired,
|
|
12754
|
-
|
|
13534
|
+
latest_flow_file: T['io.flow.internal.v0.models.erp_vendor_status_flow_file'],
|
|
13535
|
+
latest_priority_file: T['io.flow.internal.v0.models.erp_vendor_status_priority_file'],
|
|
13536
|
+
});
|
|
13537
|
+
|
|
13538
|
+
T['io.flow.internal.v0.models.company_reference'] = PropTypes.exact({
|
|
13539
|
+
id: PropTypes.string.isRequired,
|
|
12755
13540
|
});
|
|
12756
13541
|
|
|
12757
13542
|
T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
|
|
13543
|
+
company: T['io.flow.internal.v0.models.company_reference'].isRequired,
|
|
13544
|
+
entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
|
|
12758
13545
|
acc_des: PropTypes.string.isRequired,
|
|
12759
13546
|
country_name: PropTypes.string.isRequired,
|
|
12760
13547
|
acng_code: PropTypes.string.isRequired,
|
|
@@ -12766,7 +13553,6 @@ T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
|
|
|
12766
13553
|
state_a: PropTypes.string.isRequired,
|
|
12767
13554
|
bank_code: PropTypes.string.isRequired,
|
|
12768
13555
|
id: PropTypes.string.isRequired,
|
|
12769
|
-
entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
|
|
12770
13556
|
tax_code: PropTypes.string,
|
|
12771
13557
|
vat_flag: PropTypes.string,
|
|
12772
13558
|
w_tax_percent: PropTypes.string,
|
|
@@ -12801,6 +13587,7 @@ T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
|
|
|
12801
13587
|
|
|
12802
13588
|
T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
|
|
12803
13589
|
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
13590
|
+
name: PropTypes.string.isRequired,
|
|
12804
13591
|
url: PropTypes.string.isRequired,
|
|
12805
13592
|
});
|
|
12806
13593
|
|
|
@@ -13104,11 +13891,12 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
13104
13891
|
});
|
|
13105
13892
|
|
|
13106
13893
|
T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
|
|
13107
|
-
'
|
|
13108
|
-
'suspicious_past_activity',
|
|
13109
|
-
'risky_velocity',
|
|
13894
|
+
'merchant_policy',
|
|
13110
13895
|
'previous_chargebacks',
|
|
13111
13896
|
'restricted_party_screening',
|
|
13897
|
+
'risky_velocity',
|
|
13898
|
+
'suspicious_behavior',
|
|
13899
|
+
'suspicious_past_activity',
|
|
13112
13900
|
]);
|
|
13113
13901
|
|
|
13114
13902
|
T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
|
|
@@ -13138,6 +13926,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
13138
13926
|
refund_id: PropTypes.string,
|
|
13139
13927
|
order_identifier: T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'],
|
|
13140
13928
|
authorization_id: PropTypes.string,
|
|
13929
|
+
posting_proof_id: PropTypes.string,
|
|
13930
|
+
label_tracking_summary_id: PropTypes.string,
|
|
13141
13931
|
});
|
|
13142
13932
|
|
|
13143
13933
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -13187,6 +13977,11 @@ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.e
|
|
|
13187
13977
|
id: PropTypes.string.isRequired,
|
|
13188
13978
|
});
|
|
13189
13979
|
|
|
13980
|
+
T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
13981
|
+
sales_records: PropTypes.arrayOf(PropTypes.object),
|
|
13982
|
+
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
13983
|
+
});
|
|
13984
|
+
|
|
13190
13985
|
T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
|
|
13191
13986
|
id: PropTypes.string.isRequired,
|
|
13192
13987
|
type: PropTypes.string.isRequired,
|
|
@@ -13218,9 +14013,16 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13218
14013
|
'adjustment_transactions_count',
|
|
13219
14014
|
'adjustment_transactions_total',
|
|
13220
14015
|
'capture_transactions_count',
|
|
14016
|
+
'capture_transactions_ignored_fraud_count',
|
|
14017
|
+
'capture_transactions_ignored_fully_refunded_count',
|
|
14018
|
+
'capture_transactions_ignored_other_count',
|
|
13221
14019
|
'capture_transactions_total',
|
|
13222
|
-
'
|
|
13223
|
-
'
|
|
14020
|
+
'channel_transactions_processing_count',
|
|
14021
|
+
'channel_transactions_processing_total',
|
|
14022
|
+
'channel_transactions_adjustment_count',
|
|
14023
|
+
'channel_transactions_adjustment_total',
|
|
14024
|
+
'channel_transactions_reversal_count',
|
|
14025
|
+
'channel_transactions_reversal_total',
|
|
13224
14026
|
'channel_billed_transactions_count',
|
|
13225
14027
|
'channel_billed_transactions_total',
|
|
13226
14028
|
'credit_payment_transactions_count',
|
|
@@ -13230,41 +14032,44 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13230
14032
|
'fully_subsidized_order_transactions_count',
|
|
13231
14033
|
'fully_subsidized_order_transactions_total',
|
|
13232
14034
|
'billable_label_transactions_count',
|
|
14035
|
+
'billable_label_transactions_count_for_unique_orders',
|
|
13233
14036
|
'billable_label_transactions_total',
|
|
13234
14037
|
'revenue_share_label_transactions_count',
|
|
14038
|
+
'revenue_share_label_transactions_count_for_unique_orders',
|
|
13235
14039
|
'revenue_share_label_transactions_total',
|
|
13236
14040
|
'manual_transactions_count',
|
|
13237
14041
|
'manual_transactions_total',
|
|
13238
14042
|
'order_transactions_count',
|
|
13239
14043
|
'order_transactions_total',
|
|
13240
14044
|
'refund_transactions_count',
|
|
14045
|
+
'refund_transactions_ignored_fraud_count',
|
|
14046
|
+
'refund_transactions_ignored_fully_refunded_count',
|
|
14047
|
+
'refund_transactions_ignored_other_count',
|
|
13241
14048
|
'refund_transactions_total',
|
|
13242
14049
|
'reversal_order_cancellations_transactions_count',
|
|
13243
14050
|
'reversal_order_cancellations_transactions_total',
|
|
13244
14051
|
'reversal_external_fulfillment_transactions_count',
|
|
13245
14052
|
'reversal_external_fulfillment_transactions_total',
|
|
14053
|
+
'reversal_other_transactions_count',
|
|
14054
|
+
'reversal_other_transactions_total',
|
|
14055
|
+
'reversal_all_transactions_count',
|
|
14056
|
+
'reversal_all_transactions_total',
|
|
13246
14057
|
'tax_transactions_count',
|
|
13247
14058
|
'tax_transactions_total',
|
|
13248
14059
|
'transfer_transactions_count',
|
|
13249
14060
|
'transfer_transactions_total',
|
|
13250
14061
|
'fulfillments_count',
|
|
13251
|
-
'
|
|
14062
|
+
'fulfilled_via_replacement_order_count',
|
|
14063
|
+
'percentage_orders_with_fulfillment_proof_2_weeks',
|
|
14064
|
+
'percentage_orders_with_fulfillment_proof_4_weeks',
|
|
14065
|
+
'percentage_orders_with_fulfillment_proof_6_weeks',
|
|
14066
|
+
'percentage_orders_with_fulfillment_proof_all',
|
|
14067
|
+
'pending_payouts_max_age_in_millis',
|
|
13252
14068
|
'shipping_notifications_count',
|
|
13253
14069
|
'queued_capture_unprocessed_count',
|
|
13254
|
-
'queued_capture_deletion_unprocessed_count',
|
|
13255
|
-
'queued_channel_transaction_unprocessed_count',
|
|
13256
|
-
'queued_channel_organization_unprocessed_count',
|
|
13257
|
-
'queued_consumer_invoice_unprocessed_count',
|
|
13258
|
-
'queued_label_tracking_summary_unprocessed_count',
|
|
13259
|
-
'queued_order_unprocessed_count',
|
|
13260
|
-
'queued_order_identifier_unprocessed_count',
|
|
13261
14070
|
'queued_refund_unprocessed_count',
|
|
13262
|
-
'
|
|
13263
|
-
'
|
|
13264
|
-
'queued_statement_batch_email_unprocessed_count',
|
|
13265
|
-
'queued_statement_email_unprocessed_count',
|
|
13266
|
-
'queued_statement_summary_email_unprocessed_count',
|
|
13267
|
-
'shipping_notifications_total',
|
|
14071
|
+
'queued_record_snooze_count',
|
|
14072
|
+
'queued_record_snooze_ending_in_48_hours_count',
|
|
13268
14073
|
'statements_no_payout_count',
|
|
13269
14074
|
'statements_no_payout_total',
|
|
13270
14075
|
'statements_pending_payout_count',
|
|
@@ -13275,8 +14080,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13275
14080
|
'payouts_sent_total',
|
|
13276
14081
|
'payouts_failed_count',
|
|
13277
14082
|
'payouts_failed_total',
|
|
13278
|
-
'pending_payouts_max_age',
|
|
13279
14083
|
'average_payout_amount',
|
|
14084
|
+
'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
13280
14085
|
]);
|
|
13281
14086
|
|
|
13282
14087
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -13364,6 +14169,35 @@ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
|
13364
14169
|
description: PropTypes.string,
|
|
13365
14170
|
});
|
|
13366
14171
|
|
|
14172
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
14173
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
14174
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
14175
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14176
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14177
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
14178
|
+
business_url: PropTypes.string.isRequired,
|
|
14179
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
14180
|
+
});
|
|
14181
|
+
|
|
14182
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
14183
|
+
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
14184
|
+
);
|
|
14185
|
+
|
|
14186
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
14187
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
14188
|
+
id: PropTypes.string.isRequired,
|
|
14189
|
+
organization_id: PropTypes.string.isRequired,
|
|
14190
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
14191
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
14192
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14193
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14194
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
14195
|
+
business_url: PropTypes.string.isRequired,
|
|
14196
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
14197
|
+
});
|
|
14198
|
+
|
|
14199
|
+
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']]);
|
|
14200
|
+
|
|
13367
14201
|
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
13368
14202
|
line_number: PropTypes.string.isRequired,
|
|
13369
14203
|
item_number: PropTypes.string.isRequired,
|
|
@@ -13635,25 +14469,54 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
13635
14469
|
'autogenerated',
|
|
13636
14470
|
]);
|
|
13637
14471
|
|
|
13638
|
-
T['io.flow.
|
|
13639
|
-
|
|
13640
|
-
currency: PropTypes.string.isRequired,
|
|
13641
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
13642
|
-
});
|
|
13643
|
-
|
|
13644
|
-
T['io.flow.internal.v0.models.csv_label'] = PropTypes.exact({
|
|
13645
|
-
id: PropTypes.string.isRequired,
|
|
13646
|
-
cost: T['io.flow.internal.v0.models.csv_label_cost'].isRequired,
|
|
13647
|
-
created_at: PropTypes.string.isRequired,
|
|
14472
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14473
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
13648
14474
|
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13649
|
-
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
13650
14475
|
});
|
|
13651
14476
|
|
|
13652
|
-
T['io.flow.
|
|
14477
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([T['io.flow.billing.v0.models.transaction_metadata_shipping_label']]);
|
|
13653
14478
|
|
|
13654
|
-
T['io.flow.internal.v0.models.
|
|
13655
|
-
|
|
13656
|
-
|
|
14479
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
14480
|
+
id: PropTypes.string.isRequired,
|
|
14481
|
+
order_number: PropTypes.string.isRequired,
|
|
14482
|
+
created_at: PropTypes.string.isRequired,
|
|
14483
|
+
reference_id: PropTypes.string.isRequired,
|
|
14484
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14485
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14486
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14487
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
14488
|
+
carrier_id: PropTypes.string,
|
|
14489
|
+
service_id: PropTypes.string,
|
|
14490
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14491
|
+
});
|
|
14492
|
+
|
|
14493
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
14494
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
14495
|
+
event_id: PropTypes.string.isRequired,
|
|
14496
|
+
timestamp: PropTypes.string.isRequired,
|
|
14497
|
+
organization: PropTypes.string.isRequired,
|
|
14498
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
14499
|
+
});
|
|
14500
|
+
|
|
14501
|
+
T['io.flow.internal.v0.models.csv_label_cost'] = PropTypes.exact({
|
|
14502
|
+
amount: PropTypes.number.isRequired,
|
|
14503
|
+
currency: PropTypes.string.isRequired,
|
|
14504
|
+
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
14505
|
+
});
|
|
14506
|
+
|
|
14507
|
+
T['io.flow.internal.v0.models.csv_label'] = PropTypes.exact({
|
|
14508
|
+
id: PropTypes.string.isRequired,
|
|
14509
|
+
cost: T['io.flow.internal.v0.models.csv_label_cost'].isRequired,
|
|
14510
|
+
created_at: PropTypes.string.isRequired,
|
|
14511
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14512
|
+
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14513
|
+
});
|
|
14514
|
+
|
|
14515
|
+
T['io.flow.internal.v0.enums.label_input_source'] = PropTypes.oneOf(['estimate']);
|
|
14516
|
+
|
|
14517
|
+
T['io.flow.internal.v0.models.csv_global_e_proposition'] = PropTypes.exact({
|
|
14518
|
+
name: PropTypes.string.isRequired,
|
|
14519
|
+
});
|
|
13657
14520
|
|
|
13658
14521
|
T['io.flow.internal.v0.models.csv_global_e_shipping_method'] = PropTypes.exact({
|
|
13659
14522
|
id: PropTypes.string.isRequired,
|
|
@@ -13685,7 +14548,12 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
13685
14548
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13686
14549
|
service: PropTypes.string.isRequired,
|
|
13687
14550
|
number: PropTypes.string,
|
|
14551
|
+
rate_level_key: PropTypes.string,
|
|
13688
14552
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
14553
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14554
|
+
glbe_proposition_name: PropTypes.string,
|
|
14555
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
14556
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
13689
14557
|
});
|
|
13690
14558
|
|
|
13691
14559
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -13702,6 +14570,11 @@ T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
|
13702
14570
|
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
13703
14571
|
id: PropTypes.string,
|
|
13704
14572
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14573
|
+
rate_level_key: PropTypes.string,
|
|
14574
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14575
|
+
glbe_proposition_name: PropTypes.string,
|
|
14576
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
14577
|
+
shopify_grc_gid: PropTypes.string,
|
|
13705
14578
|
});
|
|
13706
14579
|
|
|
13707
14580
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
@@ -13712,12 +14585,16 @@ T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
|
13712
14585
|
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
13713
14586
|
id: PropTypes.string.isRequired,
|
|
13714
14587
|
number: PropTypes.string.isRequired,
|
|
14588
|
+
rate_level_key: PropTypes.string,
|
|
13715
14589
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
13716
14590
|
effective_at: PropTypes.string.isRequired,
|
|
13717
14591
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13718
14592
|
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
13719
14593
|
published_at: PropTypes.string,
|
|
13720
14594
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14595
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14596
|
+
glbe_proposition_name: PropTypes.string,
|
|
14597
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
13721
14598
|
});
|
|
13722
14599
|
|
|
13723
14600
|
T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
@@ -13730,6 +14607,15 @@ T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
|
13730
14607
|
base_amount: PropTypes.number,
|
|
13731
14608
|
});
|
|
13732
14609
|
|
|
14610
|
+
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
14611
|
+
|
|
14612
|
+
T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
|
|
14613
|
+
unit: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
14614
|
+
length: PropTypes.number.isRequired,
|
|
14615
|
+
width: PropTypes.number.isRequired,
|
|
14616
|
+
depth: PropTypes.number.isRequired,
|
|
14617
|
+
});
|
|
14618
|
+
|
|
13733
14619
|
T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
|
|
13734
14620
|
percentage: PropTypes.number.isRequired,
|
|
13735
14621
|
amount: PropTypes.number.isRequired,
|
|
@@ -13739,125 +14625,78 @@ T['io.flow.internal.v0.models.csv_actual_ratecard'] = PropTypes.exact({
|
|
|
13739
14625
|
base_amount: PropTypes.number,
|
|
13740
14626
|
});
|
|
13741
14627
|
|
|
13742
|
-
T['io.flow.
|
|
13743
|
-
'millimeter',
|
|
13744
|
-
'centimeter',
|
|
13745
|
-
'inch',
|
|
13746
|
-
'foot',
|
|
13747
|
-
'cubic_inch',
|
|
13748
|
-
'cubic_meter',
|
|
13749
|
-
'gram',
|
|
13750
|
-
'kilogram',
|
|
13751
|
-
'meter',
|
|
13752
|
-
'ounce',
|
|
13753
|
-
'pound',
|
|
13754
|
-
]);
|
|
13755
|
-
|
|
13756
|
-
T['io.flow.ratecard.v0.models.oversized_shipment_ratecard_fee'] = PropTypes.exact({
|
|
13757
|
-
discriminator: PropTypes.oneOf(['oversized_shipment_ratecard_fee']).isRequired,
|
|
13758
|
-
weight_threshold: PropTypes.number.isRequired,
|
|
13759
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
13760
|
-
margin: PropTypes.number,
|
|
13761
|
-
amount: PropTypes.number,
|
|
13762
|
-
});
|
|
13763
|
-
|
|
13764
|
-
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
13765
|
-
value: PropTypes.string.isRequired,
|
|
13766
|
-
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
13767
|
-
});
|
|
13768
|
-
|
|
13769
|
-
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
13770
|
-
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13771
|
-
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13772
|
-
});
|
|
14628
|
+
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
13773
14629
|
|
|
13774
|
-
T['io.flow.
|
|
13775
|
-
|
|
13776
|
-
|
|
13777
|
-
length: T['io.flow.
|
|
13778
|
-
weight: T['io.flow.common.v0.models.measurement'],
|
|
13779
|
-
width: T['io.flow.common.v0.models.measurement'],
|
|
14630
|
+
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
14631
|
+
currency: PropTypes.string.isRequired,
|
|
14632
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14633
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
13780
14634
|
});
|
|
13781
14635
|
|
|
13782
|
-
T['io.flow.
|
|
13783
|
-
|
|
13784
|
-
|
|
13785
|
-
|
|
13786
|
-
|
|
13787
|
-
|
|
13788
|
-
|
|
14636
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
14637
|
+
id: PropTypes.string.isRequired,
|
|
14638
|
+
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
14639
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14640
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14641
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
14642
|
+
total: PropTypes.number.isRequired,
|
|
14643
|
+
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
14644
|
+
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
13789
14645
|
});
|
|
13790
14646
|
|
|
13791
|
-
T['io.flow.
|
|
13792
|
-
|
|
13793
|
-
|
|
13794
|
-
|
|
13795
|
-
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
14647
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
14648
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14649
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14650
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
13796
14651
|
});
|
|
13797
14652
|
|
|
13798
|
-
T['io.flow.
|
|
13799
|
-
|
|
13800
|
-
|
|
13801
|
-
|
|
14653
|
+
T['io.flow.internal.v0.models.label_response_units'] = PropTypes.exact({
|
|
14654
|
+
currency: PropTypes.string.isRequired,
|
|
14655
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14656
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
13802
14657
|
});
|
|
13803
14658
|
|
|
13804
|
-
T['io.flow.
|
|
14659
|
+
T['io.flow.internal.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
13805
14660
|
id: PropTypes.string.isRequired,
|
|
13806
|
-
|
|
13807
|
-
|
|
13808
|
-
|
|
13809
|
-
|
|
13810
|
-
|
|
13811
|
-
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
13812
|
-
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
|
|
13813
|
-
event_id: PropTypes.string.isRequired,
|
|
13814
|
-
timestamp: PropTypes.string.isRequired,
|
|
13815
|
-
organization: PropTypes.string.isRequired,
|
|
13816
|
-
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
14661
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
14662
|
+
units: T['io.flow.internal.v0.models.label_response_units'].isRequired,
|
|
14663
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14664
|
+
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
14665
|
+
total: PropTypes.number.isRequired,
|
|
13817
14666
|
});
|
|
13818
14667
|
|
|
13819
|
-
T['io.flow.internal.v0.models.
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
organization: PropTypes.string.isRequired,
|
|
13824
|
-
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
14668
|
+
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
14669
|
+
currency: PropTypes.string.isRequired,
|
|
14670
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14671
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
13825
14672
|
});
|
|
13826
14673
|
|
|
13827
|
-
T['io.flow.internal.v0.models.
|
|
14674
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
13828
14675
|
id: PropTypes.string.isRequired,
|
|
13829
|
-
|
|
13830
|
-
|
|
13831
|
-
|
|
14676
|
+
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
14677
|
+
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
14678
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14679
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
14680
|
+
total: PropTypes.number.isRequired,
|
|
14681
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
14682
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
13832
14683
|
});
|
|
13833
14684
|
|
|
13834
|
-
T['io.flow.internal.v0.models.
|
|
13835
|
-
discriminator: PropTypes.oneOf(['
|
|
14685
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
14686
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
13836
14687
|
event_id: PropTypes.string.isRequired,
|
|
13837
14688
|
timestamp: PropTypes.string.isRequired,
|
|
13838
14689
|
organization: PropTypes.string.isRequired,
|
|
13839
|
-
|
|
13840
|
-
});
|
|
13841
|
-
|
|
13842
|
-
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
13843
|
-
weight: PropTypes.number.isRequired,
|
|
13844
|
-
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
14690
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
13845
14691
|
});
|
|
13846
14692
|
|
|
13847
14693
|
T['io.flow.internal.v0.models.csv_weight'] = PropTypes.exact({
|
|
13848
|
-
unit: T['io.flow.
|
|
14694
|
+
unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13849
14695
|
provided: PropTypes.number.isRequired,
|
|
13850
14696
|
dimensional: PropTypes.number.isRequired,
|
|
13851
14697
|
lookup: PropTypes.number.isRequired,
|
|
13852
14698
|
});
|
|
13853
14699
|
|
|
13854
|
-
T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
|
|
13855
|
-
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
13856
|
-
length: PropTypes.number.isRequired,
|
|
13857
|
-
width: PropTypes.number.isRequired,
|
|
13858
|
-
depth: PropTypes.number.isRequired,
|
|
13859
|
-
});
|
|
13860
|
-
|
|
13861
14700
|
T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
|
|
13862
14701
|
fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
|
|
13863
14702
|
remote_area: PropTypes.number.isRequired,
|
|
@@ -13872,7 +14711,7 @@ T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
|
|
|
13872
14711
|
base_amount: PropTypes.number.isRequired,
|
|
13873
14712
|
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13874
14713
|
total: PropTypes.number.isRequired,
|
|
13875
|
-
weight_unit: T['io.flow.
|
|
14714
|
+
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13876
14715
|
weight: PropTypes.number.isRequired,
|
|
13877
14716
|
variance: PropTypes.number.isRequired,
|
|
13878
14717
|
});
|
|
@@ -13883,7 +14722,7 @@ T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
|
|
|
13883
14722
|
base_amount: PropTypes.number.isRequired,
|
|
13884
14723
|
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13885
14724
|
total: PropTypes.number.isRequired,
|
|
13886
|
-
weight_unit: T['io.flow.
|
|
14725
|
+
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13887
14726
|
weight: PropTypes.number.isRequired,
|
|
13888
14727
|
ratecard: T['io.flow.internal.v0.models.csv_actual_ratecard'].isRequired,
|
|
13889
14728
|
});
|
|
@@ -14006,6 +14845,29 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
14006
14845
|
'pending',
|
|
14007
14846
|
]);
|
|
14008
14847
|
|
|
14848
|
+
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
14849
|
+
value: PropTypes.string.isRequired,
|
|
14850
|
+
unverified: PropTypes.bool.isRequired,
|
|
14851
|
+
});
|
|
14852
|
+
|
|
14853
|
+
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
14854
|
+
organization_id: PropTypes.string.isRequired,
|
|
14855
|
+
product_id: PropTypes.string.isRequired,
|
|
14856
|
+
});
|
|
14857
|
+
|
|
14858
|
+
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
14859
|
+
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
14860
|
+
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
14861
|
+
});
|
|
14862
|
+
|
|
14863
|
+
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
14864
|
+
model_id: PropTypes.string.isRequired,
|
|
14865
|
+
suggestion: PropTypes.string.isRequired,
|
|
14866
|
+
value: PropTypes.number.isRequired,
|
|
14867
|
+
});
|
|
14868
|
+
|
|
14869
|
+
T['io.flow.internal.v0.enums.classification_error_code'] = PropTypes.oneOf(['generic_error']);
|
|
14870
|
+
|
|
14009
14871
|
T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
14010
14872
|
'waiting_for_classification',
|
|
14011
14873
|
'classified',
|
|
@@ -14019,7 +14881,7 @@ T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
|
14019
14881
|
});
|
|
14020
14882
|
|
|
14021
14883
|
T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
14022
|
-
id: PropTypes.string,
|
|
14884
|
+
id: PropTypes.string.isRequired,
|
|
14023
14885
|
organization_id: PropTypes.string.isRequired,
|
|
14024
14886
|
item_number: PropTypes.string.isRequired,
|
|
14025
14887
|
item_name: PropTypes.string,
|
|
@@ -14053,6 +14915,12 @@ T['io.flow.internal.v0.models.item_harmonization_deleted'] = PropTypes.exact({
|
|
|
14053
14915
|
item_harmonization: T['io.flow.internal.v0.models.item_harmonization'].isRequired,
|
|
14054
14916
|
});
|
|
14055
14917
|
|
|
14918
|
+
T['io.flow.internal.v0.models.empty_classification_form'] = PropTypes.exact({
|
|
14919
|
+
discriminator: PropTypes.oneOf(['empty_classification_form']).isRequired,
|
|
14920
|
+
product_id: PropTypes.string.isRequired,
|
|
14921
|
+
harmonization_status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
14922
|
+
});
|
|
14923
|
+
|
|
14056
14924
|
T['io.flow.internal.v0.models.classification_statistics'] = PropTypes.exact({
|
|
14057
14925
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
14058
14926
|
number_of_items: PropTypes.number.isRequired,
|
|
@@ -14070,34 +14938,6 @@ T['io.flow.internal.v0.models.harmonization_classification_statistics_published'
|
|
|
14070
14938
|
data: T['io.flow.internal.v0.models.harmonization_classification_statistics_data'].isRequired,
|
|
14071
14939
|
});
|
|
14072
14940
|
|
|
14073
|
-
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
14074
|
-
value: PropTypes.string.isRequired,
|
|
14075
|
-
unverified: PropTypes.bool.isRequired,
|
|
14076
|
-
});
|
|
14077
|
-
|
|
14078
|
-
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
14079
|
-
organization_id: PropTypes.string.isRequired,
|
|
14080
|
-
product_id: PropTypes.string.isRequired,
|
|
14081
|
-
});
|
|
14082
|
-
|
|
14083
|
-
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
14084
|
-
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
14085
|
-
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
14086
|
-
});
|
|
14087
|
-
|
|
14088
|
-
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
14089
|
-
model_id: PropTypes.string.isRequired,
|
|
14090
|
-
suggestion: PropTypes.string.isRequired,
|
|
14091
|
-
value: PropTypes.number.isRequired,
|
|
14092
|
-
});
|
|
14093
|
-
|
|
14094
|
-
T['io.flow.internal.v0.models.empty_classification_form'] = PropTypes.exact({
|
|
14095
|
-
discriminator: PropTypes.oneOf(['empty_classification_form']).isRequired,
|
|
14096
|
-
product_id: PropTypes.string.isRequired,
|
|
14097
|
-
harmonization_status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
14098
|
-
});
|
|
14099
|
-
|
|
14100
|
-
T['io.flow.internal.v0.enums.classification_error_code'] = PropTypes.oneOf(['generic_error']);
|
|
14101
14941
|
T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
|
|
14102
14942
|
|
|
14103
14943
|
T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
|
|
@@ -16582,6 +17422,10 @@ T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
|
16582
17422
|
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16583
17423
|
});
|
|
16584
17424
|
|
|
17425
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
17426
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
17427
|
+
});
|
|
17428
|
+
|
|
16585
17429
|
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
16586
17430
|
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16587
17431
|
});
|
|
@@ -17729,6 +18573,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17729
18573
|
'payment_authorization_failed',
|
|
17730
18574
|
'unsupported_subsidized_order',
|
|
17731
18575
|
'unsupported_virtual_goods',
|
|
18576
|
+
'non_matching_currencies',
|
|
17732
18577
|
]);
|
|
17733
18578
|
|
|
17734
18579
|
T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -17752,36 +18597,6 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
17752
18597
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17753
18598
|
});
|
|
17754
18599
|
|
|
17755
|
-
T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17756
|
-
id: PropTypes.string.isRequired,
|
|
17757
|
-
organization_id: PropTypes.string.isRequired,
|
|
17758
|
-
order_number: PropTypes.string.isRequired,
|
|
17759
|
-
channel_id: PropTypes.string.isRequired,
|
|
17760
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
17761
|
-
payment_request_id: PropTypes.string,
|
|
17762
|
-
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17763
|
-
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17764
|
-
order_created_at: PropTypes.string,
|
|
17765
|
-
});
|
|
17766
|
-
|
|
17767
|
-
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
17768
|
-
discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
|
|
17769
|
-
event_id: PropTypes.string.isRequired,
|
|
17770
|
-
timestamp: PropTypes.string.isRequired,
|
|
17771
|
-
organization: PropTypes.string.isRequired,
|
|
17772
|
-
channel_id: PropTypes.string.isRequired,
|
|
17773
|
-
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17774
|
-
});
|
|
17775
|
-
|
|
17776
|
-
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
|
|
17777
|
-
discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
|
|
17778
|
-
event_id: PropTypes.string.isRequired,
|
|
17779
|
-
timestamp: PropTypes.string.isRequired,
|
|
17780
|
-
organization: PropTypes.string.isRequired,
|
|
17781
|
-
channel_id: PropTypes.string.isRequired,
|
|
17782
|
-
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17783
|
-
});
|
|
17784
|
-
|
|
17785
18600
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
17786
18601
|
|
|
17787
18602
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -18223,6 +19038,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
|
18223
19038
|
|
|
18224
19039
|
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
18225
19040
|
id: PropTypes.string.isRequired,
|
|
19041
|
+
shopify_shop_id: PropTypes.string,
|
|
18226
19042
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
18227
19043
|
domain: PropTypes.string.isRequired,
|
|
18228
19044
|
myshopify_domain: PropTypes.string.isRequired,
|
|
@@ -18330,33 +19146,105 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
|
|
|
18330
19146
|
catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
|
|
18331
19147
|
});
|
|
18332
19148
|
|
|
18333
|
-
T['io.flow.
|
|
19149
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
19150
|
+
'cx_team',
|
|
19151
|
+
'core_team',
|
|
19152
|
+
'core_team_investigate',
|
|
19153
|
+
'mex_team',
|
|
19154
|
+
'payments_team',
|
|
19155
|
+
'tc_team',
|
|
19156
|
+
'logistics_team',
|
|
19157
|
+
]);
|
|
18334
19158
|
|
|
18335
|
-
T['io.flow.
|
|
18336
|
-
|
|
18337
|
-
|
|
18338
|
-
|
|
18339
|
-
prices_vat: PropTypes.string,
|
|
18340
|
-
prices_vat_name: PropTypes.string,
|
|
18341
|
-
prices_duty: PropTypes.string,
|
|
18342
|
-
prices_compare_at: PropTypes.string,
|
|
18343
|
-
prices_status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
18344
|
-
inventory_status: T['io.flow.fulfillment.v0.enums.item_availability_status'],
|
|
19159
|
+
T['io.flow.internal.v0.models.product_restriction_result_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,
|
|
18345
19163
|
});
|
|
18346
19164
|
|
|
18347
|
-
T['io.flow.
|
|
18348
|
-
|
|
19165
|
+
T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
|
|
19166
|
+
message: PropTypes.string.isRequired,
|
|
19167
|
+
reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
|
|
19168
|
+
action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
|
|
19169
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18349
19170
|
});
|
|
18350
19171
|
|
|
18351
|
-
T['io.flow.
|
|
18352
|
-
|
|
18353
|
-
|
|
18354
|
-
|
|
18355
|
-
|
|
18356
|
-
|
|
18357
|
-
|
|
18358
|
-
|
|
18359
|
-
|
|
19172
|
+
T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
|
|
19173
|
+
message: PropTypes.string.isRequired,
|
|
19174
|
+
reason: PropTypes.string.isRequired,
|
|
19175
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19176
|
+
});
|
|
19177
|
+
|
|
19178
|
+
T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
|
|
19179
|
+
message: PropTypes.string.isRequired,
|
|
19180
|
+
reason: PropTypes.string.isRequired,
|
|
19181
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19182
|
+
});
|
|
19183
|
+
|
|
19184
|
+
T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
19185
|
+
id: PropTypes.string.isRequired,
|
|
19186
|
+
organization_id: PropTypes.string.isRequired,
|
|
19187
|
+
order_number: PropTypes.string.isRequired,
|
|
19188
|
+
channel_id: PropTypes.string.isRequired,
|
|
19189
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
19190
|
+
payment_request_id: PropTypes.string,
|
|
19191
|
+
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
19192
|
+
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
19193
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
19194
|
+
order_created_at: PropTypes.string,
|
|
19195
|
+
});
|
|
19196
|
+
|
|
19197
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
19198
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
|
|
19199
|
+
event_id: PropTypes.string.isRequired,
|
|
19200
|
+
timestamp: PropTypes.string.isRequired,
|
|
19201
|
+
organization: PropTypes.string.isRequired,
|
|
19202
|
+
channel_id: PropTypes.string.isRequired,
|
|
19203
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19204
|
+
});
|
|
19205
|
+
|
|
19206
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
|
|
19207
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
|
|
19208
|
+
event_id: PropTypes.string.isRequired,
|
|
19209
|
+
timestamp: PropTypes.string.isRequired,
|
|
19210
|
+
organization: PropTypes.string.isRequired,
|
|
19211
|
+
channel_id: PropTypes.string.isRequired,
|
|
19212
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19213
|
+
});
|
|
19214
|
+
|
|
19215
|
+
T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
|
|
19216
|
+
message: PropTypes.string.isRequired,
|
|
19217
|
+
reason: PropTypes.string.isRequired,
|
|
19218
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19219
|
+
});
|
|
19220
|
+
|
|
19221
|
+
T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
|
|
19222
|
+
|
|
19223
|
+
T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
|
|
19224
|
+
prices_item: PropTypes.string.isRequired,
|
|
19225
|
+
prices_currency: PropTypes.string.isRequired,
|
|
19226
|
+
prices_includes: PropTypes.string,
|
|
19227
|
+
prices_vat: PropTypes.string,
|
|
19228
|
+
prices_vat_name: PropTypes.string,
|
|
19229
|
+
prices_duty: PropTypes.string,
|
|
19230
|
+
prices_compare_at: PropTypes.string,
|
|
19231
|
+
prices_status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
19232
|
+
inventory_status: T['io.flow.fulfillment.v0.enums.item_availability_status'],
|
|
19233
|
+
});
|
|
19234
|
+
|
|
19235
|
+
T['io.flow.catalog.v0.models.flow_item_index_metadata'] = PropTypes.exact({
|
|
19236
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
19237
|
+
});
|
|
19238
|
+
|
|
19239
|
+
T['io.flow.catalog.exclusion.v0.models.exclusion_rule'] = PropTypes.exact({
|
|
19240
|
+
id: PropTypes.string.isRequired,
|
|
19241
|
+
q: PropTypes.string.isRequired,
|
|
19242
|
+
query: T['io.flow.query.builder.v0.models.query'].isRequired,
|
|
19243
|
+
regions: PropTypes.arrayOf(T['io.flow.reference.v0.models.region']).isRequired,
|
|
19244
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
19245
|
+
description: PropTypes.string,
|
|
19246
|
+
statistics: T['io.flow.catalog.exclusion.v0.models.exclusion_rule_statistic'].isRequired,
|
|
19247
|
+
});
|
|
18360
19248
|
|
|
18361
19249
|
T['io.flow.catalog.exclusion.v0.models.exclusion_rule_version'] = PropTypes.exact({
|
|
18362
19250
|
id: PropTypes.string.isRequired,
|
|
@@ -18418,6 +19306,14 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
|
|
|
18418
19306
|
filename: PropTypes.string,
|
|
18419
19307
|
});
|
|
18420
19308
|
|
|
19309
|
+
T['io.flow.internal.v0.enums.carrier_validation_status'] = PropTypes.oneOf(['success', 'error']);
|
|
19310
|
+
|
|
19311
|
+
T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
|
|
19312
|
+
organization: PropTypes.string.isRequired,
|
|
19313
|
+
status: T['io.flow.internal.v0.enums.carrier_validation_status'].isRequired,
|
|
19314
|
+
error_message: PropTypes.string,
|
|
19315
|
+
});
|
|
19316
|
+
|
|
18421
19317
|
T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
18422
19318
|
discriminator: PropTypes.oneOf(['fedex']).isRequired,
|
|
18423
19319
|
key: PropTypes.string.isRequired,
|
|
@@ -18585,6 +19481,32 @@ T['io.flow.internal.v0.models.calculator_organization_settings_upserted'] = Prop
|
|
|
18585
19481
|
calculator_organization_settings: T['io.flow.internal.v0.models.calculator_organization_settings'].isRequired,
|
|
18586
19482
|
});
|
|
18587
19483
|
|
|
19484
|
+
T['io.flow.internal.v0.models.calculator_dtce_product'] = PropTypes.exact({
|
|
19485
|
+
origin: PropTypes.string.isRequired,
|
|
19486
|
+
hsCode: PropTypes.string.isRequired,
|
|
19487
|
+
sku: PropTypes.string.isRequired,
|
|
19488
|
+
value: PropTypes.number.isRequired,
|
|
19489
|
+
weight: PropTypes.number.isRequired,
|
|
19490
|
+
quantity: PropTypes.number.isRequired,
|
|
19491
|
+
reference: PropTypes.string,
|
|
19492
|
+
});
|
|
19493
|
+
|
|
19494
|
+
T['io.flow.internal.v0.models.calculator_dtce_post_body'] = PropTypes.exact({
|
|
19495
|
+
products: PropTypes.arrayOf(T['io.flow.internal.v0.models.calculator_dtce_product']).isRequired,
|
|
19496
|
+
countryCodeFrom: PropTypes.string.isRequired,
|
|
19497
|
+
countryCodeTo: PropTypes.string.isRequired,
|
|
19498
|
+
classification: PropTypes.string.isRequired,
|
|
19499
|
+
shippingCost: PropTypes.number.isRequired,
|
|
19500
|
+
insuranceCost: PropTypes.number.isRequired,
|
|
19501
|
+
totalShipmentWeight: PropTypes.number.isRequired,
|
|
19502
|
+
currencyCode: PropTypes.string.isRequired,
|
|
19503
|
+
outputCurrencyCode: PropTypes.string.isRequired,
|
|
19504
|
+
explanation: PropTypes.bool.isRequired,
|
|
19505
|
+
responseFormat: PropTypes.number.isRequired,
|
|
19506
|
+
requestId: PropTypes.string.isRequired,
|
|
19507
|
+
provinceCode: PropTypes.string,
|
|
19508
|
+
});
|
|
19509
|
+
|
|
18588
19510
|
T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
|
|
18589
19511
|
item_type: PropTypes.string.isRequired,
|
|
18590
19512
|
gender: T['io.flow.internal.v0.models.attribute_label'],
|
|
@@ -18661,6 +19583,7 @@ T['io.flow.internal.v0.models.classification_product_harmonization'] = PropTypes
|
|
|
18661
19583
|
customs_description: PropTypes.string,
|
|
18662
19584
|
hs6_code: PropTypes.string,
|
|
18663
19585
|
hs6_description: PropTypes.string,
|
|
19586
|
+
status: T['io.flow.internal.v0.enums.item_harmonization_status'],
|
|
18664
19587
|
});
|
|
18665
19588
|
|
|
18666
19589
|
T['io.flow.internal.v0.models.courthouse_product_summary'] = PropTypes.exact({
|
|
@@ -19227,6 +20150,21 @@ T['io.flow.internal.v0.models.tracking_deleted'] = PropTypes.exact({
|
|
|
19227
20150
|
tracking: T['io.flow.tracking.v0.models.tracking'].isRequired,
|
|
19228
20151
|
});
|
|
19229
20152
|
|
|
20153
|
+
T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact({
|
|
20154
|
+
id: PropTypes.string.isRequired,
|
|
20155
|
+
range: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
20156
|
+
shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
20157
|
+
internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
20158
|
+
discrepancy_data: T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
20159
|
+
});
|
|
20160
|
+
|
|
20161
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
20162
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_upserted']).isRequired,
|
|
20163
|
+
event_id: PropTypes.string.isRequired,
|
|
20164
|
+
timestamp: PropTypes.string.isRequired,
|
|
20165
|
+
shopify_markets_metrics: T['io.flow.internal.v0.models.shopify_markets_orders_metrics'].isRequired,
|
|
20166
|
+
});
|
|
20167
|
+
|
|
19230
20168
|
T['io.flow.internal.v0.models.checkout_delivery_window_estimate'] = PropTypes.exact({
|
|
19231
20169
|
discriminator: PropTypes.oneOf(['estimate']).isRequired,
|
|
19232
20170
|
days: T['io.flow.internal.v0.models.checkout_delivery_window_estimate_days'].isRequired,
|
|
@@ -19278,10 +20216,33 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
|
|
|
19278
20216
|
all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
|
|
19279
20217
|
});
|
|
19280
20218
|
|
|
20219
|
+
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
20220
|
+
id: PropTypes.string.isRequired,
|
|
20221
|
+
});
|
|
20222
|
+
|
|
20223
|
+
T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
|
|
20224
|
+
discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
|
|
20225
|
+
event_id: PropTypes.string.isRequired,
|
|
20226
|
+
timestamp: PropTypes.string.isRequired,
|
|
20227
|
+
billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
|
|
20228
|
+
});
|
|
20229
|
+
|
|
19281
20230
|
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
19282
20231
|
id: PropTypes.string.isRequired,
|
|
19283
20232
|
});
|
|
19284
20233
|
|
|
20234
|
+
T['io.flow.internal.v0.models.transaction_statement'] = PropTypes.exact({
|
|
20235
|
+
id: PropTypes.string.isRequired,
|
|
20236
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
20237
|
+
});
|
|
20238
|
+
|
|
20239
|
+
T['io.flow.internal.v0.models.transaction_statement_upserted'] = PropTypes.exact({
|
|
20240
|
+
discriminator: PropTypes.oneOf(['transaction_statement_upserted']).isRequired,
|
|
20241
|
+
event_id: PropTypes.string.isRequired,
|
|
20242
|
+
timestamp: PropTypes.string.isRequired,
|
|
20243
|
+
transaction_statement: T['io.flow.internal.v0.models.transaction_statement'].isRequired,
|
|
20244
|
+
});
|
|
20245
|
+
|
|
19285
20246
|
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19286
20247
|
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19287
20248
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
@@ -19310,22 +20271,6 @@ T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = Pro
|
|
|
19310
20271
|
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
19311
20272
|
});
|
|
19312
20273
|
|
|
19313
|
-
T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
|
|
19314
|
-
month: PropTypes.string.isRequired,
|
|
19315
|
-
});
|
|
19316
|
-
|
|
19317
|
-
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
19318
|
-
id: PropTypes.string.isRequired,
|
|
19319
|
-
reconciliation: T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'].isRequired,
|
|
19320
|
-
});
|
|
19321
|
-
|
|
19322
|
-
T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
|
|
19323
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
|
|
19324
|
-
event_id: PropTypes.string.isRequired,
|
|
19325
|
-
timestamp: PropTypes.string.isRequired,
|
|
19326
|
-
billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
|
|
19327
|
-
});
|
|
19328
|
-
|
|
19329
20274
|
T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
19330
20275
|
'invoice',
|
|
19331
20276
|
'statement',
|
|
@@ -19483,6 +20428,55 @@ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
|
19483
20428
|
updated_at: PropTypes.string.isRequired,
|
|
19484
20429
|
});
|
|
19485
20430
|
|
|
20431
|
+
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
20432
|
+
|
|
20433
|
+
T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
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.restriction_rule_metadata'] = PropTypes.exact({
|
|
20439
|
+
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
20440
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
20441
|
+
count: PropTypes.number.isRequired,
|
|
20442
|
+
});
|
|
20443
|
+
|
|
20444
|
+
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
20445
|
+
rule_id: PropTypes.string.isRequired,
|
|
20446
|
+
rule_name: PropTypes.string.isRequired,
|
|
20447
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
20448
|
+
count: PropTypes.number.isRequired,
|
|
20449
|
+
});
|
|
20450
|
+
|
|
20451
|
+
T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
|
|
20452
|
+
hs_code: PropTypes.string,
|
|
20453
|
+
keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20454
|
+
action: T['io.flow.internal.v0.enums.restriction_status'],
|
|
20455
|
+
});
|
|
20456
|
+
|
|
20457
|
+
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
20458
|
+
name: PropTypes.string.isRequired,
|
|
20459
|
+
description: PropTypes.string.isRequired,
|
|
20460
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20461
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20462
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20463
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20464
|
+
value_threshold_usd: PropTypes.number,
|
|
20465
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20466
|
+
});
|
|
20467
|
+
|
|
20468
|
+
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
20469
|
+
id: PropTypes.string.isRequired,
|
|
20470
|
+
name: PropTypes.string.isRequired,
|
|
20471
|
+
description: PropTypes.string.isRequired,
|
|
20472
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20473
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20474
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20475
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20476
|
+
value_threshold_usd: PropTypes.number,
|
|
20477
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20478
|
+
});
|
|
20479
|
+
|
|
19486
20480
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
19487
20481
|
|
|
19488
20482
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
@@ -19603,6 +20597,7 @@ T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
|
19603
20597
|
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
19604
20598
|
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
19605
20599
|
earliest_pending_date: PropTypes.string.isRequired,
|
|
20600
|
+
priority_score: PropTypes.number.isRequired,
|
|
19606
20601
|
date: PropTypes.string.isRequired,
|
|
19607
20602
|
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
19608
20603
|
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
|
|
@@ -20196,25 +21191,6 @@ T['io.flow.fraud.v0.unions.fraud_order_reference'] = PropTypes.oneOfType([
|
|
|
20196
21191
|
T['io.flow.fraud.v0.models.fraud_payment_request_reference'],
|
|
20197
21192
|
]);
|
|
20198
21193
|
|
|
20199
|
-
T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
|
|
20200
|
-
id: PropTypes.string.isRequired,
|
|
20201
|
-
fraud_review_id: PropTypes.string.isRequired,
|
|
20202
|
-
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
20203
|
-
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
20204
|
-
status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
20205
|
-
created_at: PropTypes.string.isRequired,
|
|
20206
|
-
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
20207
|
-
});
|
|
20208
|
-
|
|
20209
|
-
T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
|
|
20210
|
-
discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
|
|
20211
|
-
event_id: PropTypes.string.isRequired,
|
|
20212
|
-
timestamp: PropTypes.string.isRequired,
|
|
20213
|
-
organization: PropTypes.string.isRequired,
|
|
20214
|
-
id: PropTypes.string.isRequired,
|
|
20215
|
-
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
|
|
20216
|
-
});
|
|
20217
|
-
|
|
20218
21194
|
T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
|
|
20219
21195
|
id: PropTypes.string.isRequired,
|
|
20220
21196
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -20230,6 +21206,7 @@ T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
|
|
|
20230
21206
|
provider: T['io.flow.internal.v0.enums.fraud_provider'],
|
|
20231
21207
|
payment_authorization_id: PropTypes.string,
|
|
20232
21208
|
decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
|
|
21209
|
+
created_at: PropTypes.string,
|
|
20233
21210
|
});
|
|
20234
21211
|
|
|
20235
21212
|
T['io.flow.internal.v0.models.fraud_review_version'] = PropTypes.exact({
|
|
@@ -20256,13 +21233,6 @@ T['io.flow.internal.v0.models.fraud_pending_review'] = PropTypes.exact({
|
|
|
20256
21233
|
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
20257
21234
|
});
|
|
20258
21235
|
|
|
20259
|
-
T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
|
|
20260
|
-
discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
|
|
20261
|
-
fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
|
|
20262
|
-
fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
|
|
20263
|
-
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
|
|
20264
|
-
});
|
|
20265
|
-
|
|
20266
21236
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'] = PropTypes.exact({
|
|
20267
21237
|
discriminator: PropTypes.oneOf(['fraud_pending_review_upserted']).isRequired,
|
|
20268
21238
|
event_id: PropTypes.string.isRequired,
|
|
@@ -20861,6 +21831,7 @@ T['io.flow.internal.v0.models.stripe_merchant_put_form'] = PropTypes.exact({
|
|
|
20861
21831
|
account_type: T['io.flow.stripe.v0.enums.account_type'].isRequired,
|
|
20862
21832
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
20863
21833
|
country: PropTypes.string.isRequired,
|
|
21834
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20864
21835
|
});
|
|
20865
21836
|
|
|
20866
21837
|
T['io.flow.internal.v0.models.stripe_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20905,6 +21876,7 @@ T['io.flow.internal.v0.models.paypal_merchant_put_form'] = PropTypes.exact({
|
|
|
20905
21876
|
external_id: PropTypes.string.isRequired,
|
|
20906
21877
|
country: PropTypes.string.isRequired,
|
|
20907
21878
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21879
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20908
21880
|
});
|
|
20909
21881
|
|
|
20910
21882
|
T['io.flow.internal.v0.models.paypal_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20922,6 +21894,7 @@ T['io.flow.internal.v0.models.fiserv_merchant_put_form'] = PropTypes.exact({
|
|
|
20922
21894
|
funding_currency: PropTypes.string.isRequired,
|
|
20923
21895
|
country: PropTypes.string.isRequired,
|
|
20924
21896
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21897
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20925
21898
|
});
|
|
20926
21899
|
|
|
20927
21900
|
T['io.flow.internal.v0.models.fiserv_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20939,6 +21912,7 @@ T['io.flow.internal.v0.models.adyen_merchant_put_form'] = PropTypes.exact({
|
|
|
20939
21912
|
external_id: PropTypes.string.isRequired,
|
|
20940
21913
|
country: PropTypes.string.isRequired,
|
|
20941
21914
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21915
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20942
21916
|
});
|
|
20943
21917
|
|
|
20944
21918
|
T['io.flow.internal.v0.unions.processor_merchant_put_form'] = PropTypes.oneOfType([
|
|
@@ -20978,6 +21952,7 @@ T['io.flow.internal.v0.models.stripe_account_put_form'] = PropTypes.exact({
|
|
|
20978
21952
|
country: PropTypes.string.isRequired,
|
|
20979
21953
|
authentication: T['io.flow.internal.v0.models.stripe_authentication_form'].isRequired,
|
|
20980
21954
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21955
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20981
21956
|
});
|
|
20982
21957
|
|
|
20983
21958
|
T['io.flow.internal.v0.models.stripe_account_modification_form'] = PropTypes.exact({
|
|
@@ -21011,6 +21986,7 @@ T['io.flow.internal.v0.models.paypal_account_put_form'] = PropTypes.exact({
|
|
|
21011
21986
|
country: PropTypes.string.isRequired,
|
|
21012
21987
|
authentication: T['io.flow.internal.v0.models.paypal_authentication_form'].isRequired,
|
|
21013
21988
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21989
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21014
21990
|
});
|
|
21015
21991
|
|
|
21016
21992
|
T['io.flow.internal.v0.models.paypal_account_modification_form'] = PropTypes.exact({
|
|
@@ -21041,6 +22017,7 @@ T['io.flow.internal.v0.models.fiserv_account_put_form'] = PropTypes.exact({
|
|
|
21041
22017
|
authentication: T['io.flow.internal.v0.models.fiserv_authentication_form'].isRequired,
|
|
21042
22018
|
country: PropTypes.string.isRequired,
|
|
21043
22019
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22020
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21044
22021
|
});
|
|
21045
22022
|
|
|
21046
22023
|
T['io.flow.internal.v0.models.fiserv_account_modification_form'] = PropTypes.exact({
|
|
@@ -21072,6 +22049,7 @@ T['io.flow.internal.v0.models.crypto_account_put_form'] = PropTypes.exact({
|
|
|
21072
22049
|
authentication: T['io.flow.internal.v0.models.crypto_authentication_form'].isRequired,
|
|
21073
22050
|
country: PropTypes.string.isRequired,
|
|
21074
22051
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22052
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21075
22053
|
});
|
|
21076
22054
|
|
|
21077
22055
|
T['io.flow.internal.v0.models.crypto_account_modification_form'] = PropTypes.exact({
|
|
@@ -21101,6 +22079,7 @@ T['io.flow.internal.v0.models.bitpay_account_put_form'] = PropTypes.exact({
|
|
|
21101
22079
|
authentication: T['io.flow.internal.v0.models.bitpay_authentication_form'].isRequired,
|
|
21102
22080
|
country: PropTypes.string.isRequired,
|
|
21103
22081
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22082
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21104
22083
|
});
|
|
21105
22084
|
|
|
21106
22085
|
T['io.flow.internal.v0.models.bitpay_account_modification_form'] = PropTypes.exact({
|
|
@@ -21130,6 +22109,7 @@ T['io.flow.internal.v0.models.afterpay_account_put_form'] = PropTypes.exact({
|
|
|
21130
22109
|
country: PropTypes.string.isRequired,
|
|
21131
22110
|
authentication: T['io.flow.internal.v0.models.afterpay_authentication_form'].isRequired,
|
|
21132
22111
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22112
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21133
22113
|
});
|
|
21134
22114
|
|
|
21135
22115
|
T['io.flow.internal.v0.models.afterpay_account_modification_form'] = PropTypes.exact({
|
|
@@ -21274,6 +22254,7 @@ T['io.flow.internal.v0.models.adyen_account_put_form'] = PropTypes.exact({
|
|
|
21274
22254
|
authentication: T['io.flow.internal.v0.models.adyen_authentication_form'].isRequired,
|
|
21275
22255
|
country: PropTypes.string.isRequired,
|
|
21276
22256
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22257
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21277
22258
|
});
|
|
21278
22259
|
|
|
21279
22260
|
T['io.flow.internal.v0.unions.processor_account_put_form'] = PropTypes.oneOfType([
|
|
@@ -21378,6 +22359,7 @@ T['io.flow.billing.v0.models.withholding_deduction'] = PropTypes.exact({
|
|
|
21378
22359
|
|
|
21379
22360
|
T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
|
|
21380
22361
|
id: PropTypes.string.isRequired,
|
|
22362
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21381
22363
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21382
22364
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21383
22365
|
currency: PropTypes.string.isRequired,
|
|
@@ -21396,6 +22378,7 @@ T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
|
|
|
21396
22378
|
T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
|
|
21397
22379
|
statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
|
|
21398
22380
|
id: PropTypes.string.isRequired,
|
|
22381
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21399
22382
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21400
22383
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21401
22384
|
currency: PropTypes.string.isRequired,
|
|
@@ -21414,6 +22397,7 @@ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
|
|
|
21414
22397
|
T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
21415
22398
|
statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
|
|
21416
22399
|
id: PropTypes.string.isRequired,
|
|
22400
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21417
22401
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21418
22402
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21419
22403
|
currency: PropTypes.string.isRequired,
|
|
@@ -21433,6 +22417,7 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
21433
22417
|
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
21434
22418
|
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
21435
22419
|
transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
|
|
22420
|
+
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
21436
22421
|
});
|
|
21437
22422
|
|
|
21438
22423
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
@@ -21562,7 +22547,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21562
22547
|
discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
|
|
21563
22548
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
21564
22549
|
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
21565
|
-
parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
21566
22550
|
beneficiary: PropTypes.string,
|
|
21567
22551
|
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
21568
22552
|
business_url: PropTypes.string,
|
|
@@ -21572,23 +22556,22 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21572
22556
|
chargeback_percentage: PropTypes.number,
|
|
21573
22557
|
bank_account_number: PropTypes.string,
|
|
21574
22558
|
aba_routing_transit_number: PropTypes.string,
|
|
21575
|
-
trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
|
|
21576
22559
|
other_trade_sector: PropTypes.string,
|
|
21577
22560
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22561
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
21578
22562
|
average_order_weight: PropTypes.number,
|
|
21579
22563
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
21580
22564
|
monthly_average_volume_amount: PropTypes.number,
|
|
21581
22565
|
monthly_average_volume_currency: PropTypes.string,
|
|
21582
22566
|
monthly_average_number_transactions: PropTypes.number,
|
|
21583
|
-
dangerous_goods: PropTypes.bool,
|
|
21584
22567
|
default_country_of_origin: PropTypes.string,
|
|
21585
22568
|
ratecard_id: PropTypes.string,
|
|
21586
22569
|
rate_card: PropTypes.string.isRequired,
|
|
21587
|
-
logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
|
|
21588
22570
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
21589
22571
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21590
22572
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21591
22573
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22574
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
21592
22575
|
});
|
|
21593
22576
|
|
|
21594
22577
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
@@ -21641,6 +22624,24 @@ T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes
|
|
|
21641
22624
|
ends_at: PropTypes.string,
|
|
21642
22625
|
});
|
|
21643
22626
|
|
|
22627
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
22628
|
+
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
|
|
22629
|
+
dimensional_threshold: PropTypes.number,
|
|
22630
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22631
|
+
weight_threshold: PropTypes.number,
|
|
22632
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22633
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22634
|
+
});
|
|
22635
|
+
|
|
22636
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
22637
|
+
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
|
|
22638
|
+
dimensional_threshold: PropTypes.number,
|
|
22639
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22640
|
+
weight_threshold: PropTypes.number,
|
|
22641
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22642
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22643
|
+
});
|
|
22644
|
+
|
|
21644
22645
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
21645
22646
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
21646
22647
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -21683,6 +22684,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
21683
22684
|
T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
|
|
21684
22685
|
T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
21685
22686
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
22687
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
|
|
21686
22688
|
]);
|
|
21687
22689
|
|
|
21688
22690
|
T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
|
|
@@ -21728,7 +22730,7 @@ T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
|
|
|
21728
22730
|
T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
21729
22731
|
T['io.flow.ratecard.v0.models.ddp_ratecard_fee'],
|
|
21730
22732
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'],
|
|
21731
|
-
T['io.flow.ratecard.v0.models.
|
|
22733
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'],
|
|
21732
22734
|
T['io.flow.ratecard.v0.models.return_package_ratecard_fee'],
|
|
21733
22735
|
T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'],
|
|
21734
22736
|
T['io.flow.ratecard.v0.models.remote_area_ratecard_fee'],
|
|
@@ -21964,6 +22966,7 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
21964
22966
|
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
21965
22967
|
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
21966
22968
|
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22969
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
21967
22970
|
});
|
|
21968
22971
|
|
|
21969
22972
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
@@ -21996,6 +22999,10 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
|
21996
22999
|
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
21997
23000
|
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
21998
23001
|
ratecard_id: PropTypes.string,
|
|
23002
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
23003
|
+
glbe_proposition_name: PropTypes.string,
|
|
23004
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
23005
|
+
rate_level_key: PropTypes.string,
|
|
21999
23006
|
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22000
23007
|
});
|
|
22001
23008
|
|
|
@@ -22098,6 +23105,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
|
22098
23105
|
|
|
22099
23106
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
22100
23107
|
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23108
|
+
volumetric_weight: PropTypes.number,
|
|
22101
23109
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22102
23110
|
reference_number: PropTypes.string,
|
|
22103
23111
|
});
|
|
@@ -22184,6 +23192,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22184
23192
|
order_number: PropTypes.string.isRequired,
|
|
22185
23193
|
service: PropTypes.string,
|
|
22186
23194
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23195
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22187
23196
|
});
|
|
22188
23197
|
|
|
22189
23198
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22278,6 +23287,7 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22278
23287
|
base: T['io.flow.common.v0.models.money'],
|
|
22279
23288
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22280
23289
|
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
23290
|
+
authorized_at: PropTypes.string,
|
|
22281
23291
|
});
|
|
22282
23292
|
|
|
22283
23293
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
@@ -22302,6 +23312,8 @@ T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
|
22302
23312
|
expires_at: PropTypes.string,
|
|
22303
23313
|
base: T['io.flow.common.v0.models.money'],
|
|
22304
23314
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
23315
|
+
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
23316
|
+
authorized_at: PropTypes.string,
|
|
22305
23317
|
});
|
|
22306
23318
|
|
|
22307
23319
|
T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
@@ -22394,7 +23406,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22394
23406
|
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22395
23407
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22396
23408
|
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22397
|
-
parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22398
23409
|
beneficiary: PropTypes.string,
|
|
22399
23410
|
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22400
23411
|
business_url: PropTypes.string,
|
|
@@ -22404,24 +23415,24 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22404
23415
|
chargeback_percentage: PropTypes.number,
|
|
22405
23416
|
bank_account_number: PropTypes.string,
|
|
22406
23417
|
aba_routing_transit_number: PropTypes.string,
|
|
22407
|
-
trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
|
|
22408
23418
|
other_trade_sector: PropTypes.string,
|
|
22409
23419
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
23420
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22410
23421
|
average_order_weight: PropTypes.number,
|
|
22411
23422
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22412
23423
|
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22413
|
-
dangerous_goods: PropTypes.bool,
|
|
22414
23424
|
default_country_of_origin: PropTypes.string,
|
|
22415
23425
|
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
|
|
22416
23426
|
rate_card: PropTypes.string.isRequired,
|
|
22417
23427
|
created_at: PropTypes.string.isRequired,
|
|
22418
23428
|
activated_at: PropTypes.string,
|
|
22419
23429
|
status_updated_at: PropTypes.string,
|
|
22420
|
-
logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
|
|
22421
23430
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22422
23431
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22423
23432
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22424
23433
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
23434
|
+
glbe_merchant_guid: PropTypes.string,
|
|
23435
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22425
23436
|
});
|
|
22426
23437
|
|
|
22427
23438
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
@@ -23136,6 +24147,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
23136
24147
|
time_blocked: PropTypes.number,
|
|
23137
24148
|
blocked_since: PropTypes.string,
|
|
23138
24149
|
completed_at: PropTypes.string,
|
|
24150
|
+
onboarding_started_at: PropTypes.string,
|
|
23139
24151
|
});
|
|
23140
24152
|
|
|
23141
24153
|
T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
|
|
@@ -23300,6 +24312,27 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
23300
24312
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
23301
24313
|
});
|
|
23302
24314
|
|
|
24315
|
+
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
24316
|
+
id: PropTypes.string.isRequired,
|
|
24317
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24318
|
+
number: PropTypes.string.isRequired,
|
|
24319
|
+
});
|
|
24320
|
+
|
|
24321
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
24322
|
+
id: PropTypes.string.isRequired,
|
|
24323
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
24324
|
+
currency: PropTypes.string.isRequired,
|
|
24325
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
24326
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
24327
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
24328
|
+
shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
|
|
24329
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
24330
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
24331
|
+
completes_order: PropTypes.bool.isRequired,
|
|
24332
|
+
sequence_number: PropTypes.number.isRequired,
|
|
24333
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
24334
|
+
});
|
|
24335
|
+
|
|
23303
24336
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
23304
24337
|
code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
|
|
23305
24338
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -23521,6 +24554,40 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
|
23521
24554
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
23522
24555
|
});
|
|
23523
24556
|
|
|
24557
|
+
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
24558
|
+
id: PropTypes.string.isRequired,
|
|
24559
|
+
key: PropTypes.string.isRequired,
|
|
24560
|
+
price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
|
|
24561
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24562
|
+
item_number: PropTypes.string.isRequired,
|
|
24563
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
24564
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
24565
|
+
});
|
|
24566
|
+
|
|
24567
|
+
T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
|
|
24568
|
+
currency: PropTypes.string.isRequired,
|
|
24569
|
+
item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24570
|
+
margins: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24571
|
+
vat: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24572
|
+
duty: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24573
|
+
rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24574
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24575
|
+
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
24576
|
+
adjustment: T['io.flow.price.v0.models.price_detail'],
|
|
24577
|
+
});
|
|
24578
|
+
|
|
24579
|
+
T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
|
|
24580
|
+
base: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
24581
|
+
local: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
24582
|
+
discount: T['io.flow.price.v0.models.price_detail'],
|
|
24583
|
+
local_before_discount: T['io.flow.price.v0.models.price_detail'],
|
|
24584
|
+
});
|
|
24585
|
+
|
|
24586
|
+
T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
|
|
24587
|
+
display: T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
24588
|
+
'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
24589
|
+
});
|
|
24590
|
+
|
|
23524
24591
|
T['io.flow.experience.v0.models.order_summary_levy'] = PropTypes.exact({
|
|
23525
24592
|
rate: PropTypes.number.isRequired,
|
|
23526
24593
|
rate_label: PropTypes.string,
|
|
@@ -23667,40 +24734,6 @@ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
|
|
|
23667
24734
|
includes: T['io.flow.common.v0.models.included_levies'],
|
|
23668
24735
|
});
|
|
23669
24736
|
|
|
23670
|
-
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
23671
|
-
id: PropTypes.string.isRequired,
|
|
23672
|
-
key: PropTypes.string.isRequired,
|
|
23673
|
-
price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
|
|
23674
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
23675
|
-
item_number: PropTypes.string.isRequired,
|
|
23676
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
23677
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
23678
|
-
});
|
|
23679
|
-
|
|
23680
|
-
T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
|
|
23681
|
-
currency: PropTypes.string.isRequired,
|
|
23682
|
-
item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
23683
|
-
margins: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
23684
|
-
vat: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
23685
|
-
duty: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
23686
|
-
rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
23687
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
23688
|
-
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
23689
|
-
adjustment: T['io.flow.price.v0.models.price_detail'],
|
|
23690
|
-
});
|
|
23691
|
-
|
|
23692
|
-
T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
|
|
23693
|
-
base: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
23694
|
-
local: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
23695
|
-
discount: T['io.flow.price.v0.models.price_detail'],
|
|
23696
|
-
local_before_discount: T['io.flow.price.v0.models.price_detail'],
|
|
23697
|
-
});
|
|
23698
|
-
|
|
23699
|
-
T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
|
|
23700
|
-
display: T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
23701
|
-
'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
23702
|
-
});
|
|
23703
|
-
|
|
23704
24737
|
T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
|
|
23705
24738
|
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
23706
24739
|
currency: PropTypes.string.isRequired,
|
|
@@ -23732,6 +24765,9 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
23732
24765
|
carrier_tracking_number_url: PropTypes.string.isRequired,
|
|
23733
24766
|
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'],
|
|
23734
24767
|
cost: T['io.flow.common.v0.models.price'],
|
|
24768
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
24769
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
24770
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23735
24771
|
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23736
24772
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
23737
24773
|
flow_tracking_number_url: PropTypes.string.isRequired,
|
|
@@ -23743,6 +24779,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
23743
24779
|
'return': T['io.flow.label.v0.models.shipping_label_document'],
|
|
23744
24780
|
order: T['io.flow.label.v0.models.label_order_summary'],
|
|
23745
24781
|
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
24782
|
+
package_dimension_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
23746
24783
|
order_identifier: PropTypes.string,
|
|
23747
24784
|
fulfillment_key: PropTypes.string,
|
|
23748
24785
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
@@ -23837,11 +24874,6 @@ T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
|
23837
24874
|
status: T['io.flow.internal.v0.enums.payment_summary_status'],
|
|
23838
24875
|
});
|
|
23839
24876
|
|
|
23840
|
-
T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
|
|
23841
|
-
T['io.flow.internal.v0.models.payment_summary_v2'],
|
|
23842
|
-
T['io.flow.internal.v0.models.fraud_summary'],
|
|
23843
|
-
]);
|
|
23844
|
-
|
|
23845
24877
|
T['io.flow.internal.v0.models.order_revenue_timeline_data_point'] = PropTypes.exact({
|
|
23846
24878
|
timestamp: PropTypes.string.isRequired,
|
|
23847
24879
|
count: PropTypes.number.isRequired,
|
|
@@ -23889,6 +24921,7 @@ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
|
23889
24921
|
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
23890
24922
|
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
23891
24923
|
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
24924
|
+
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
23892
24925
|
});
|
|
23893
24926
|
|
|
23894
24927
|
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
@@ -24926,18 +25959,6 @@ T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
|
|
|
24926
25959
|
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
24927
25960
|
});
|
|
24928
25961
|
|
|
24929
|
-
T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
24930
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
24931
|
-
status: T['io.flow.experience.v0.enums.order_status'].isRequired,
|
|
24932
|
-
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
|
|
24933
|
-
trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
|
|
24934
|
-
returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
|
|
24935
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
|
|
24936
|
-
submitted_at: PropTypes.string,
|
|
24937
|
-
created_at: PropTypes.string.isRequired,
|
|
24938
|
-
updated_at: PropTypes.string.isRequired,
|
|
24939
|
-
});
|
|
24940
|
-
|
|
24941
25962
|
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
24942
25963
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
24943
25964
|
session: T['io.flow.common.v0.models.session_reference'],
|
|
@@ -25613,8 +26634,10 @@ T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
|
|
|
25613
26634
|
T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
|
|
25614
26635
|
discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
|
|
25615
26636
|
label: T['io.flow.internal.v0.models.billing_label_summary'].isRequired,
|
|
25616
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
25617
26637
|
tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
|
|
26638
|
+
gross_value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26639
|
+
discount: T['io.flow.internal.v0.models.discount'].isRequired,
|
|
26640
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
25618
26641
|
id: PropTypes.string.isRequired,
|
|
25619
26642
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
25620
26643
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -25911,6 +26934,165 @@ T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
|
|
|
25911
26934
|
account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
|
|
25912
26935
|
});
|
|
25913
26936
|
|
|
26937
|
+
T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
26938
|
+
discriminator: PropTypes.oneOf(['user_reference']).isRequired,
|
|
26939
|
+
id: PropTypes.string.isRequired,
|
|
26940
|
+
});
|
|
26941
|
+
|
|
26942
|
+
T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
|
|
26943
|
+
discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
|
|
26944
|
+
id: PropTypes.string.isRequired,
|
|
26945
|
+
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26946
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26947
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26948
|
+
});
|
|
26949
|
+
|
|
26950
|
+
T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
|
|
26951
|
+
discriminator: PropTypes.oneOf(['partner_token']).isRequired,
|
|
26952
|
+
id: PropTypes.string.isRequired,
|
|
26953
|
+
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26954
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26955
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26956
|
+
partial: PropTypes.string.isRequired,
|
|
26957
|
+
created_at: PropTypes.string.isRequired,
|
|
26958
|
+
description: PropTypes.string,
|
|
26959
|
+
});
|
|
26960
|
+
|
|
26961
|
+
T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
|
|
26962
|
+
discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
|
|
26963
|
+
id: PropTypes.string.isRequired,
|
|
26964
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26965
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26966
|
+
partial: PropTypes.string.isRequired,
|
|
26967
|
+
cleartext: PropTypes.string,
|
|
26968
|
+
created_at: PropTypes.string.isRequired,
|
|
26969
|
+
description: PropTypes.string,
|
|
26970
|
+
});
|
|
26971
|
+
|
|
26972
|
+
T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
|
|
26973
|
+
discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
|
|
26974
|
+
id: PropTypes.string.isRequired,
|
|
26975
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26976
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26977
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26978
|
+
});
|
|
26979
|
+
|
|
26980
|
+
T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
|
|
26981
|
+
discriminator: PropTypes.oneOf(['organization_token']).isRequired,
|
|
26982
|
+
id: PropTypes.string.isRequired,
|
|
26983
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26984
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26985
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26986
|
+
partial: PropTypes.string.isRequired,
|
|
26987
|
+
created_at: PropTypes.string.isRequired,
|
|
26988
|
+
description: PropTypes.string,
|
|
26989
|
+
});
|
|
26990
|
+
|
|
26991
|
+
T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
|
|
26992
|
+
discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
|
|
26993
|
+
id: PropTypes.string.isRequired,
|
|
26994
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26995
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26996
|
+
});
|
|
26997
|
+
|
|
26998
|
+
T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
|
|
26999
|
+
T['io.flow.token.v0.models.channel_token_reference'],
|
|
27000
|
+
T['io.flow.token.v0.models.organization_token_reference'],
|
|
27001
|
+
T['io.flow.token.v0.models.organization_token_v2_reference'],
|
|
27002
|
+
T['io.flow.token.v0.models.partner_token_reference'],
|
|
27003
|
+
]);
|
|
27004
|
+
|
|
27005
|
+
T['io.flow.export.v0.models.scheduled_export'] = PropTypes.exact({
|
|
27006
|
+
id: PropTypes.string.isRequired,
|
|
27007
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27008
|
+
organization_q: PropTypes.string.isRequired,
|
|
27009
|
+
hour: PropTypes.number.isRequired,
|
|
27010
|
+
minute: PropTypes.number.isRequired,
|
|
27011
|
+
timezone: PropTypes.string.isRequired,
|
|
27012
|
+
types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
|
|
27013
|
+
last_sent_at: PropTypes.string,
|
|
27014
|
+
});
|
|
27015
|
+
|
|
27016
|
+
T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
|
|
27017
|
+
discriminator: PropTypes.oneOf(['channel_token']).isRequired,
|
|
27018
|
+
id: PropTypes.string.isRequired,
|
|
27019
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
27020
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27021
|
+
partial: PropTypes.string.isRequired,
|
|
27022
|
+
cleartext: PropTypes.string,
|
|
27023
|
+
created_at: PropTypes.string.isRequired,
|
|
27024
|
+
description: PropTypes.string,
|
|
27025
|
+
});
|
|
27026
|
+
|
|
27027
|
+
T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
|
|
27028
|
+
T['io.flow.token.v0.models.channel_token'],
|
|
27029
|
+
T['io.flow.token.v0.models.organization_token'],
|
|
27030
|
+
T['io.flow.token.v0.models.organization_token_v2'],
|
|
27031
|
+
T['io.flow.token.v0.models.partner_token'],
|
|
27032
|
+
]);
|
|
27033
|
+
|
|
27034
|
+
T['io.flow.internal.v0.models.user_one_time_token'] = PropTypes.exact({
|
|
27035
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27036
|
+
token: PropTypes.string.isRequired,
|
|
27037
|
+
});
|
|
27038
|
+
|
|
27039
|
+
T['io.flow.internal.v0.models.partner_membership_summary'] = PropTypes.exact({
|
|
27040
|
+
id: PropTypes.string.isRequired,
|
|
27041
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27042
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
27043
|
+
});
|
|
27044
|
+
|
|
27045
|
+
T['io.flow.internal.v0.models.partner_membership_version'] = PropTypes.exact({
|
|
27046
|
+
id: PropTypes.string.isRequired,
|
|
27047
|
+
timestamp: PropTypes.string.isRequired,
|
|
27048
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
27049
|
+
partner_membership: T['io.flow.internal.v0.models.partner_membership_summary'].isRequired,
|
|
27050
|
+
});
|
|
27051
|
+
|
|
27052
|
+
T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
|
|
27053
|
+
id: PropTypes.string.isRequired,
|
|
27054
|
+
fraud_review_id: PropTypes.string.isRequired,
|
|
27055
|
+
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
27056
|
+
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
27057
|
+
status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
27058
|
+
created_at: PropTypes.string.isRequired,
|
|
27059
|
+
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
27060
|
+
updated_by_user: T['io.flow.common.v0.models.user_reference'],
|
|
27061
|
+
});
|
|
27062
|
+
|
|
27063
|
+
T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
|
|
27064
|
+
discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
|
|
27065
|
+
fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
|
|
27066
|
+
fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
|
|
27067
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
|
|
27068
|
+
});
|
|
27069
|
+
|
|
27070
|
+
T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
|
|
27071
|
+
T['io.flow.internal.v0.models.payment_summary_v2'],
|
|
27072
|
+
T['io.flow.internal.v0.models.fraud_summary'],
|
|
27073
|
+
]);
|
|
27074
|
+
|
|
27075
|
+
T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
27076
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
27077
|
+
status: T['io.flow.experience.v0.enums.order_status'].isRequired,
|
|
27078
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
|
|
27079
|
+
trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
|
|
27080
|
+
returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
|
|
27081
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
|
|
27082
|
+
submitted_at: PropTypes.string,
|
|
27083
|
+
created_at: PropTypes.string.isRequired,
|
|
27084
|
+
updated_at: PropTypes.string.isRequired,
|
|
27085
|
+
});
|
|
27086
|
+
|
|
27087
|
+
T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
|
|
27088
|
+
discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
|
|
27089
|
+
event_id: PropTypes.string.isRequired,
|
|
27090
|
+
timestamp: PropTypes.string.isRequired,
|
|
27091
|
+
organization: PropTypes.string.isRequired,
|
|
27092
|
+
id: PropTypes.string.isRequired,
|
|
27093
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
|
|
27094
|
+
});
|
|
27095
|
+
|
|
25914
27096
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
25915
27097
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
25916
27098
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
@@ -25920,6 +27102,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25920
27102
|
T['io.flow.internal.v0.models.adyen_capture_upserted'],
|
|
25921
27103
|
T['io.flow.internal.v0.models.adyen_refund_deleted'],
|
|
25922
27104
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
27105
|
+
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
27106
|
+
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
25923
27107
|
T['io.flow.internal.v0.models.account_upserted'],
|
|
25924
27108
|
T['io.flow.internal.v0.models.account_upserted_v2'],
|
|
25925
27109
|
T['io.flow.internal.v0.models.account_deleted_v2'],
|
|
@@ -25961,8 +27145,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25961
27145
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
25962
27146
|
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
25963
27147
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
27148
|
+
T['io.flow.internal.v0.models.transaction_statement_upserted'],
|
|
27149
|
+
T['io.flow.internal.v0.models.transaction_statement_deleted'],
|
|
25964
27150
|
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
25965
27151
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
27152
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'],
|
|
27153
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
25966
27154
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
25967
27155
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
25968
27156
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -26099,6 +27287,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26099
27287
|
T['io.flow.internal.v0.models.issuer_upserted'],
|
|
26100
27288
|
T['io.flow.internal.v0.models.issuer_deleted'],
|
|
26101
27289
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
27290
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
27291
|
+
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
26102
27292
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
26103
27293
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
26104
27294
|
T['io.flow.internal.v0.models.localized_item_upserted_v2'],
|
|
@@ -26124,8 +27314,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26124
27314
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
26125
27315
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
26126
27316
|
T['io.flow.internal.v0.models.organization_status_change_deleted'],
|
|
27317
|
+
T['io.flow.internal.v0.models.organization_deactivation_upserted'],
|
|
27318
|
+
T['io.flow.internal.v0.models.organization_deactivation_deleted'],
|
|
27319
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'],
|
|
27320
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'],
|
|
26127
27321
|
T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
|
|
26128
27322
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
27323
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'],
|
|
27324
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
|
|
26129
27325
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
26130
27326
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
26131
27327
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -26140,198 +27336,85 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26140
27336
|
T['io.flow.internal.v0.models.chargeback_deleted'],
|
|
26141
27337
|
T['io.flow.internal.v0.models.payment_processor_account_upserted'],
|
|
26142
27338
|
T['io.flow.internal.v0.models.payment_processor_account_deleted'],
|
|
26143
|
-
T['io.flow.internal.v0.models.payment_processor_merchant_upserted'],
|
|
26144
|
-
T['io.flow.internal.v0.models.payment_processor_merchant_deleted'],
|
|
26145
|
-
T['io.flow.internal.v0.models.virtual_card_provider_upserted'],
|
|
26146
|
-
T['io.flow.internal.v0.models.virtual_card_provider_deleted'],
|
|
26147
|
-
T['io.flow.internal.v0.models.authorization_bundle_upserted'],
|
|
26148
|
-
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
26149
|
-
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
26150
|
-
T['io.flow.internal.v0.models.organization_payment_setting_deleted'],
|
|
26151
|
-
T['io.flow.internal.v0.models.paypal_payment_deleted'],
|
|
26152
|
-
T['io.flow.internal.v0.models.paypal_payment_upserted'],
|
|
26153
|
-
T['io.flow.internal.v0.models.paypal_execution_deleted'],
|
|
26154
|
-
T['io.flow.internal.v0.models.paypal_execution_upserted'],
|
|
26155
|
-
T['io.flow.internal.v0.models.paypal_refund_deleted'],
|
|
26156
|
-
T['io.flow.internal.v0.models.paypal_refund_upserted'],
|
|
26157
|
-
T['io.flow.internal.v0.models.pricing_indicator'],
|
|
26158
|
-
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
26159
|
-
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
26160
|
-
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
26161
|
-
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
26162
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
|
|
26163
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
26164
|
-
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
26165
|
-
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
26166
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
|
|
26167
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
|
|
26168
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
26169
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
|
|
26170
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
|
|
26171
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
|
|
26172
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
|
|
26173
|
-
T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
|
|
26174
|
-
T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
|
|
26175
|
-
T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
|
|
26176
|
-
T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
|
|
26177
|
-
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
26178
|
-
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
26179
|
-
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
26180
|
-
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
26181
|
-
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
26182
|
-
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
26183
|
-
T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
|
|
26184
|
-
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
26185
|
-
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
26186
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
26187
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
26188
|
-
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
26189
|
-
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
26190
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
26191
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
26192
|
-
T['io.flow.internal.v0.models.
|
|
26193
|
-
T['io.flow.internal.v0.models.
|
|
26194
|
-
T['io.flow.internal.v0.models.
|
|
26195
|
-
T['io.flow.internal.v0.models.
|
|
26196
|
-
T['io.flow.internal.v0.models.
|
|
26197
|
-
T['io.flow.internal.v0.models.
|
|
26198
|
-
T['io.flow.internal.v0.models.
|
|
26199
|
-
T['io.flow.internal.v0.models.
|
|
26200
|
-
T['io.flow.internal.v0.models.
|
|
26201
|
-
T['io.flow.internal.v0.models.
|
|
26202
|
-
T['io.flow.internal.v0.models.
|
|
26203
|
-
T['io.flow.internal.v0.models.
|
|
26204
|
-
T['io.flow.internal.v0.models.
|
|
26205
|
-
T['io.flow.internal.v0.models.
|
|
26206
|
-
T['io.flow.internal.v0.models.
|
|
26207
|
-
T['io.flow.internal.v0.models.
|
|
26208
|
-
T['io.flow.internal.v0.models.
|
|
26209
|
-
T['io.flow.internal.v0.models.
|
|
26210
|
-
T['io.flow.internal.v0.models.
|
|
26211
|
-
T['io.flow.internal.v0.models.
|
|
26212
|
-
T['io.flow.internal.v0.models.
|
|
26213
|
-
T['io.flow.internal.v0.models.
|
|
26214
|
-
T['io.flow.internal.v0.models.
|
|
26215
|
-
T['io.flow.internal.v0.models.
|
|
26216
|
-
T['io.flow.internal.v0.models.
|
|
26217
|
-
T['io.flow.internal.v0.models.
|
|
26218
|
-
]
|
|
26219
|
-
|
|
26220
|
-
T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
26221
|
-
discriminator: PropTypes.oneOf(['user_reference']).isRequired,
|
|
26222
|
-
id: PropTypes.string.isRequired,
|
|
26223
|
-
});
|
|
26224
|
-
|
|
26225
|
-
T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
|
|
26226
|
-
discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
|
|
26227
|
-
id: PropTypes.string.isRequired,
|
|
26228
|
-
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26229
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26230
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26231
|
-
});
|
|
26232
|
-
|
|
26233
|
-
T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
|
|
26234
|
-
discriminator: PropTypes.oneOf(['partner_token']).isRequired,
|
|
26235
|
-
id: PropTypes.string.isRequired,
|
|
26236
|
-
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26237
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26238
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26239
|
-
partial: PropTypes.string.isRequired,
|
|
26240
|
-
created_at: PropTypes.string.isRequired,
|
|
26241
|
-
description: PropTypes.string,
|
|
26242
|
-
});
|
|
26243
|
-
|
|
26244
|
-
T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
|
|
26245
|
-
discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
|
|
26246
|
-
id: PropTypes.string.isRequired,
|
|
26247
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26248
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26249
|
-
partial: PropTypes.string.isRequired,
|
|
26250
|
-
cleartext: PropTypes.string,
|
|
26251
|
-
created_at: PropTypes.string.isRequired,
|
|
26252
|
-
description: PropTypes.string,
|
|
26253
|
-
});
|
|
26254
|
-
|
|
26255
|
-
T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
|
|
26256
|
-
discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
|
|
26257
|
-
id: PropTypes.string.isRequired,
|
|
26258
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26259
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26260
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26261
|
-
});
|
|
26262
|
-
|
|
26263
|
-
T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
|
|
26264
|
-
discriminator: PropTypes.oneOf(['organization_token']).isRequired,
|
|
26265
|
-
id: PropTypes.string.isRequired,
|
|
26266
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26267
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26268
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26269
|
-
partial: PropTypes.string.isRequired,
|
|
26270
|
-
created_at: PropTypes.string.isRequired,
|
|
26271
|
-
description: PropTypes.string,
|
|
26272
|
-
});
|
|
26273
|
-
|
|
26274
|
-
T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
|
|
26275
|
-
discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
|
|
26276
|
-
id: PropTypes.string.isRequired,
|
|
26277
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26278
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26279
|
-
});
|
|
26280
|
-
|
|
26281
|
-
T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
|
|
26282
|
-
T['io.flow.token.v0.models.channel_token_reference'],
|
|
26283
|
-
T['io.flow.token.v0.models.organization_token_reference'],
|
|
26284
|
-
T['io.flow.token.v0.models.organization_token_v2_reference'],
|
|
26285
|
-
T['io.flow.token.v0.models.partner_token_reference'],
|
|
26286
|
-
]);
|
|
26287
|
-
|
|
26288
|
-
T['io.flow.export.v0.models.scheduled_export'] = PropTypes.exact({
|
|
26289
|
-
id: PropTypes.string.isRequired,
|
|
26290
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26291
|
-
organization_q: PropTypes.string.isRequired,
|
|
26292
|
-
hour: PropTypes.number.isRequired,
|
|
26293
|
-
minute: PropTypes.number.isRequired,
|
|
26294
|
-
timezone: PropTypes.string.isRequired,
|
|
26295
|
-
types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
|
|
26296
|
-
last_sent_at: PropTypes.string,
|
|
26297
|
-
});
|
|
26298
|
-
|
|
26299
|
-
T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
|
|
26300
|
-
discriminator: PropTypes.oneOf(['channel_token']).isRequired,
|
|
26301
|
-
id: PropTypes.string.isRequired,
|
|
26302
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26303
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26304
|
-
partial: PropTypes.string.isRequired,
|
|
26305
|
-
cleartext: PropTypes.string,
|
|
26306
|
-
created_at: PropTypes.string.isRequired,
|
|
26307
|
-
description: PropTypes.string,
|
|
26308
|
-
});
|
|
26309
|
-
|
|
26310
|
-
T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
|
|
26311
|
-
T['io.flow.token.v0.models.channel_token'],
|
|
26312
|
-
T['io.flow.token.v0.models.organization_token'],
|
|
26313
|
-
T['io.flow.token.v0.models.organization_token_v2'],
|
|
26314
|
-
T['io.flow.token.v0.models.partner_token'],
|
|
27339
|
+
T['io.flow.internal.v0.models.payment_processor_merchant_upserted'],
|
|
27340
|
+
T['io.flow.internal.v0.models.payment_processor_merchant_deleted'],
|
|
27341
|
+
T['io.flow.internal.v0.models.virtual_card_provider_upserted'],
|
|
27342
|
+
T['io.flow.internal.v0.models.virtual_card_provider_deleted'],
|
|
27343
|
+
T['io.flow.internal.v0.models.authorization_bundle_upserted'],
|
|
27344
|
+
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
27345
|
+
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
27346
|
+
T['io.flow.internal.v0.models.organization_payment_setting_deleted'],
|
|
27347
|
+
T['io.flow.internal.v0.models.paypal_payment_deleted'],
|
|
27348
|
+
T['io.flow.internal.v0.models.paypal_payment_upserted'],
|
|
27349
|
+
T['io.flow.internal.v0.models.paypal_execution_deleted'],
|
|
27350
|
+
T['io.flow.internal.v0.models.paypal_execution_upserted'],
|
|
27351
|
+
T['io.flow.internal.v0.models.paypal_refund_deleted'],
|
|
27352
|
+
T['io.flow.internal.v0.models.paypal_refund_upserted'],
|
|
27353
|
+
T['io.flow.internal.v0.models.pricing_indicator'],
|
|
27354
|
+
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
27355
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
27356
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
27357
|
+
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
27358
|
+
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
|
|
27359
|
+
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
27360
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
27361
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
27362
|
+
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
|
|
27363
|
+
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
|
|
27364
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
27365
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
|
|
27366
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
|
|
27367
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
|
|
27368
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
|
|
27369
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
|
|
27370
|
+
T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
|
|
27371
|
+
T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
|
|
27372
|
+
T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
|
|
27373
|
+
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
27374
|
+
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
27375
|
+
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
27376
|
+
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27377
|
+
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27378
|
+
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
27379
|
+
T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
|
|
27380
|
+
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
27381
|
+
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
27382
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
27383
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
27384
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
27385
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
27386
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
27387
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
27388
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
27389
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
27390
|
+
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
27391
|
+
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
27392
|
+
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
27393
|
+
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
27394
|
+
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
27395
|
+
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
27396
|
+
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
27397
|
+
T['io.flow.internal.v0.models.stripe_reversal_upserted'],
|
|
27398
|
+
T['io.flow.internal.v0.models.stripe_capture_deleted'],
|
|
27399
|
+
T['io.flow.internal.v0.models.stripe_capture_upserted'],
|
|
27400
|
+
T['io.flow.internal.v0.models.stripe_refund_deleted'],
|
|
27401
|
+
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
27402
|
+
T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'],
|
|
27403
|
+
T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'],
|
|
27404
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27405
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
27406
|
+
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
27407
|
+
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'],
|
|
27408
|
+
T['io.flow.internal.v0.models.tracking_label_upserted'],
|
|
27409
|
+
T['io.flow.internal.v0.models.tracking_label_deleted'],
|
|
27410
|
+
T['io.flow.internal.v0.models.tracking_upserted'],
|
|
27411
|
+
T['io.flow.internal.v0.models.tracking_deleted'],
|
|
27412
|
+
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27413
|
+
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27414
|
+
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
27415
|
+
T['io.flow.internal.v0.models.user_deleted_v2'],
|
|
26315
27416
|
]);
|
|
26316
27417
|
|
|
26317
|
-
T['io.flow.internal.v0.models.user_one_time_token'] = PropTypes.exact({
|
|
26318
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26319
|
-
token: PropTypes.string.isRequired,
|
|
26320
|
-
});
|
|
26321
|
-
|
|
26322
|
-
T['io.flow.internal.v0.models.partner_membership_summary'] = PropTypes.exact({
|
|
26323
|
-
id: PropTypes.string.isRequired,
|
|
26324
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26325
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
26326
|
-
});
|
|
26327
|
-
|
|
26328
|
-
T['io.flow.internal.v0.models.partner_membership_version'] = PropTypes.exact({
|
|
26329
|
-
id: PropTypes.string.isRequired,
|
|
26330
|
-
timestamp: PropTypes.string.isRequired,
|
|
26331
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
26332
|
-
partner_membership: T['io.flow.internal.v0.models.partner_membership_summary'].isRequired,
|
|
26333
|
-
});
|
|
26334
|
-
|
|
26335
27418
|
T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
|
|
26336
27419
|
T['io.flow.common.v0.models.user'],
|
|
26337
27420
|
T['io.flow.common.v0.models.user_reference'],
|
|
@@ -26424,7 +27507,7 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
|
26424
27507
|
'remote_area_surcharge',
|
|
26425
27508
|
]);
|
|
26426
27509
|
|
|
26427
|
-
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['
|
|
27510
|
+
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['summary']);
|
|
26428
27511
|
|
|
26429
27512
|
T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
26430
27513
|
'flow_rate_and_rule',
|
|
@@ -26436,13 +27519,13 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
|
26436
27519
|
|
|
26437
27520
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
26438
27521
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
26439
|
-
T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject']);
|
|
26440
27522
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
26441
27523
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
26442
27524
|
T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
|
|
26443
27525
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
26444
27526
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
26445
27527
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
27528
|
+
T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
26446
27529
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
26447
27530
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
26448
27531
|
|
|
@@ -26455,6 +27538,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26455
27538
|
'adyen_capture_upserted',
|
|
26456
27539
|
'adyen_refund_deleted',
|
|
26457
27540
|
'adyen_refund_upserted',
|
|
27541
|
+
'index_assignment_upserted',
|
|
27542
|
+
'index_assignment_deleted',
|
|
26458
27543
|
'account_upserted',
|
|
26459
27544
|
'account_upserted_v2',
|
|
26460
27545
|
'account_deleted_v2',
|
|
@@ -26496,8 +27581,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26496
27581
|
'tax_transaction_deleted',
|
|
26497
27582
|
'duty_transaction_upserted',
|
|
26498
27583
|
'duty_transaction_deleted',
|
|
27584
|
+
'transaction_statement_upserted',
|
|
27585
|
+
'transaction_statement_deleted',
|
|
26499
27586
|
'daily_value_upserted',
|
|
26500
27587
|
'daily_value_deleted',
|
|
27588
|
+
'label_invoice_request_upserted',
|
|
27589
|
+
'label_invoice_request_deleted',
|
|
26501
27590
|
'calculator_organization_settings_upserted',
|
|
26502
27591
|
'calculator_organization_settings_deleted',
|
|
26503
27592
|
'carrier_account_upserted_v2',
|
|
@@ -26634,6 +27723,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26634
27723
|
'issuer_upserted',
|
|
26635
27724
|
'issuer_deleted',
|
|
26636
27725
|
'item_form_import_request',
|
|
27726
|
+
'label_request_error_upserted',
|
|
27727
|
+
'label_request_error_deleted',
|
|
26637
27728
|
'label_tracking_summary_upserted',
|
|
26638
27729
|
'label_tracking_summary_deleted',
|
|
26639
27730
|
'localized_item_upserted_v2',
|
|
@@ -26659,8 +27750,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26659
27750
|
'organization_business_entity_upserted',
|
|
26660
27751
|
'organization_status_change_upserted',
|
|
26661
27752
|
'organization_status_change_deleted',
|
|
27753
|
+
'organization_deactivation_upserted',
|
|
27754
|
+
'organization_deactivation_deleted',
|
|
27755
|
+
'merchant_guid_assignment_upserted',
|
|
27756
|
+
'merchant_guid_assignment_deleted',
|
|
26662
27757
|
'partner_organization_settings_upserted',
|
|
26663
27758
|
'partner_organization_settings_deleted',
|
|
27759
|
+
'unassigned_merchant_guid_upserted',
|
|
27760
|
+
'unassigned_merchant_guid_deleted',
|
|
26664
27761
|
'internal_authorization_upserted',
|
|
26665
27762
|
'internal_authorization_deleted',
|
|
26666
27763
|
'afterpay_authorization_upserted',
|
|
@@ -26724,6 +27821,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26724
27821
|
'shopify_markets_webhook_registration_deleted',
|
|
26725
27822
|
'shopify_markets_shop_statistics_upserted',
|
|
26726
27823
|
'shopify_markets_shop_statistics_deleted',
|
|
27824
|
+
'shopify_markets_metrics_upserted',
|
|
27825
|
+
'shopify_markets_metrics_deleted',
|
|
26727
27826
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
26728
27827
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
26729
27828
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -26768,6 +27867,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
26768
27867
|
'unit_test',
|
|
26769
27868
|
'api',
|
|
26770
27869
|
'api_activation',
|
|
27870
|
+
'api_sandbox_setup',
|
|
26771
27871
|
'api_internal',
|
|
26772
27872
|
'api_internal_block',
|
|
26773
27873
|
'api_internal_unblock',
|
|
@@ -26810,18 +27910,31 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
26810
27910
|
'channel_transaction',
|
|
26811
27911
|
'channel_organization',
|
|
26812
27912
|
'consumer_invoice',
|
|
27913
|
+
'fulfillment_in_transit',
|
|
27914
|
+
'fulfillment_shipping_notification',
|
|
27915
|
+
'fulfillment_external',
|
|
26813
27916
|
'label_tracking_summary',
|
|
27917
|
+
'label_invoice_request',
|
|
27918
|
+
'label_origin',
|
|
26814
27919
|
'order',
|
|
26815
27920
|
'order_identifier',
|
|
26816
27921
|
'refund',
|
|
26817
27922
|
'refund_deletion',
|
|
27923
|
+
'refund_over_capture',
|
|
27924
|
+
'sales_record',
|
|
26818
27925
|
'statement_batch',
|
|
26819
|
-
'statement_batch_email',
|
|
26820
27926
|
'statement_email',
|
|
26821
27927
|
'statement_summary_email',
|
|
26822
27928
|
'wash',
|
|
26823
27929
|
]);
|
|
26824
27930
|
|
|
27931
|
+
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
27932
|
+
'shopify_small_usa',
|
|
27933
|
+
'shopify_medium_usa',
|
|
27934
|
+
'shopify_enterprise_usa',
|
|
27935
|
+
'shopify_small_sdc_usa',
|
|
27936
|
+
]);
|
|
27937
|
+
|
|
26825
27938
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
26826
27939
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
26827
27940
|
T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
|
|
@@ -26855,6 +27968,15 @@ T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf
|
|
|
26855
27968
|
|
|
26856
27969
|
T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
26857
27970
|
|
|
27971
|
+
T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.oneOf([
|
|
27972
|
+
'order_update',
|
|
27973
|
+
'card_payment',
|
|
27974
|
+
'online_payment',
|
|
27975
|
+
'flow_shop',
|
|
27976
|
+
'catalog_publication_sync',
|
|
27977
|
+
'product_restriction_result',
|
|
27978
|
+
]);
|
|
27979
|
+
|
|
26858
27980
|
T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
26859
27981
|
'apparel_and_accessories',
|
|
26860
27982
|
'beauty_and_cosmetics',
|
|
@@ -26884,8 +28006,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
26884
28006
|
'fraud_review',
|
|
26885
28007
|
'carrier_account',
|
|
26886
28008
|
'payment',
|
|
26887
|
-
'
|
|
26888
|
-
'logistics_center',
|
|
28009
|
+
'rate_levels',
|
|
26889
28010
|
'center_defaults',
|
|
26890
28011
|
]);
|
|
26891
28012
|
|
|
@@ -27123,11 +28244,6 @@ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
|
27123
28244
|
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27124
28245
|
});
|
|
27125
28246
|
|
|
27126
|
-
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
27127
|
-
amount: PropTypes.number.isRequired,
|
|
27128
|
-
description: PropTypes.string,
|
|
27129
|
-
});
|
|
27130
|
-
|
|
27131
28247
|
T['io.flow.internal.v0.models.discount_code'] = PropTypes.exact({
|
|
27132
28248
|
code: PropTypes.string.isRequired,
|
|
27133
28249
|
});
|
|
@@ -27150,6 +28266,89 @@ T['io.flow.internal.v0.models.email_modification_form'] = PropTypes.exact({
|
|
|
27150
28266
|
email: PropTypes.string,
|
|
27151
28267
|
});
|
|
27152
28268
|
|
|
28269
|
+
T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
|
|
28270
|
+
id: PropTypes.string.isRequired,
|
|
28271
|
+
acc_des: PropTypes.string,
|
|
28272
|
+
tax_code: PropTypes.string,
|
|
28273
|
+
vat_flag: PropTypes.string,
|
|
28274
|
+
country_name: PropTypes.string,
|
|
28275
|
+
w_tax_percent: PropTypes.string,
|
|
28276
|
+
iban: PropTypes.string,
|
|
28277
|
+
confirmed_date: PropTypes.string,
|
|
28278
|
+
w_tax_date: PropTypes.string,
|
|
28279
|
+
w_tax_num_expl: PropTypes.string,
|
|
28280
|
+
acng_code: PropTypes.string,
|
|
28281
|
+
phone: PropTypes.string,
|
|
28282
|
+
address: PropTypes.string,
|
|
28283
|
+
address_a: PropTypes.string,
|
|
28284
|
+
address_2: PropTypes.string,
|
|
28285
|
+
address_3: PropTypes.string,
|
|
28286
|
+
state_name: PropTypes.string,
|
|
28287
|
+
code: PropTypes.string,
|
|
28288
|
+
zip: PropTypes.string,
|
|
28289
|
+
pay_account: PropTypes.string,
|
|
28290
|
+
comp_num: PropTypes.string,
|
|
28291
|
+
w_tax_num: PropTypes.string,
|
|
28292
|
+
vat_num: PropTypes.string,
|
|
28293
|
+
orig_acc_name: PropTypes.string,
|
|
28294
|
+
branch: PropTypes.string,
|
|
28295
|
+
form_1099_code: PropTypes.string,
|
|
28296
|
+
trial_bal_code: PropTypes.string,
|
|
28297
|
+
sec_name: PropTypes.string,
|
|
28298
|
+
state: PropTypes.string,
|
|
28299
|
+
state_a: PropTypes.string,
|
|
28300
|
+
fax: PropTypes.string,
|
|
28301
|
+
details: PropTypes.string,
|
|
28302
|
+
bank_code: PropTypes.string,
|
|
28303
|
+
state_code: PropTypes.string,
|
|
28304
|
+
tax_office_code: PropTypes.string,
|
|
28305
|
+
pay_code: PropTypes.string,
|
|
28306
|
+
eacc_des: PropTypes.string,
|
|
28307
|
+
acng_des: PropTypes.string,
|
|
28308
|
+
branch_des: PropTypes.string,
|
|
28309
|
+
});
|
|
28310
|
+
|
|
28311
|
+
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
28312
|
+
acc_des: PropTypes.string,
|
|
28313
|
+
tax_code: PropTypes.string,
|
|
28314
|
+
vat_flag: PropTypes.string,
|
|
28315
|
+
country_name: PropTypes.string,
|
|
28316
|
+
w_tax_percent: PropTypes.string,
|
|
28317
|
+
iban: PropTypes.string,
|
|
28318
|
+
confirmed_date: PropTypes.string,
|
|
28319
|
+
w_tax_date: PropTypes.string,
|
|
28320
|
+
w_tax_num_expl: PropTypes.string,
|
|
28321
|
+
acng_code: PropTypes.string,
|
|
28322
|
+
phone: PropTypes.string,
|
|
28323
|
+
address: PropTypes.string,
|
|
28324
|
+
address_a: PropTypes.string,
|
|
28325
|
+
address_2: PropTypes.string,
|
|
28326
|
+
address_3: PropTypes.string,
|
|
28327
|
+
state_name: PropTypes.string,
|
|
28328
|
+
code: PropTypes.string,
|
|
28329
|
+
zip: PropTypes.string,
|
|
28330
|
+
pay_account: PropTypes.string,
|
|
28331
|
+
comp_num: PropTypes.string,
|
|
28332
|
+
w_tax_num: PropTypes.string,
|
|
28333
|
+
vat_num: PropTypes.string,
|
|
28334
|
+
orig_acc_name: PropTypes.string,
|
|
28335
|
+
branch: PropTypes.string,
|
|
28336
|
+
form_1099_code: PropTypes.string,
|
|
28337
|
+
trial_bal_code: PropTypes.string,
|
|
28338
|
+
sec_name: PropTypes.string,
|
|
28339
|
+
state: PropTypes.string,
|
|
28340
|
+
state_a: PropTypes.string,
|
|
28341
|
+
fax: PropTypes.string,
|
|
28342
|
+
details: PropTypes.string,
|
|
28343
|
+
bank_code: PropTypes.string,
|
|
28344
|
+
state_code: PropTypes.string,
|
|
28345
|
+
tax_office_code: PropTypes.string,
|
|
28346
|
+
pay_code: PropTypes.string,
|
|
28347
|
+
eacc_des: PropTypes.string,
|
|
28348
|
+
acng_des: PropTypes.string,
|
|
28349
|
+
branch_des: PropTypes.string,
|
|
28350
|
+
});
|
|
28351
|
+
|
|
27153
28352
|
T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
27154
28353
|
placeholder: PropTypes.string,
|
|
27155
28354
|
});
|
|
@@ -27229,6 +28428,10 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
|
|
|
27229
28428
|
default_contents: PropTypes.string.isRequired,
|
|
27230
28429
|
});
|
|
27231
28430
|
|
|
28431
|
+
T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
|
|
28432
|
+
id: PropTypes.string.isRequired,
|
|
28433
|
+
});
|
|
28434
|
+
|
|
27232
28435
|
T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
|
|
27233
28436
|
number: PropTypes.string.isRequired,
|
|
27234
28437
|
pin: PropTypes.string,
|
|
@@ -27244,6 +28447,18 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
|
|
|
27244
28447
|
created_by_email: PropTypes.string.isRequired,
|
|
27245
28448
|
});
|
|
27246
28449
|
|
|
28450
|
+
T['io.flow.internal.v0.models.harmonization_threshold'] = PropTypes.exact({
|
|
28451
|
+
id: PropTypes.string.isRequired,
|
|
28452
|
+
chapter: PropTypes.number.isRequired,
|
|
28453
|
+
value: PropTypes.number.isRequired,
|
|
28454
|
+
updated_at: PropTypes.string.isRequired,
|
|
28455
|
+
});
|
|
28456
|
+
|
|
28457
|
+
T['io.flow.internal.v0.models.harmonization_threshold_form'] = PropTypes.exact({
|
|
28458
|
+
chapter: PropTypes.number.isRequired,
|
|
28459
|
+
value: PropTypes.number.isRequired,
|
|
28460
|
+
});
|
|
28461
|
+
|
|
27247
28462
|
T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
|
|
27248
28463
|
code: PropTypes.string.isRequired,
|
|
27249
28464
|
description: PropTypes.string.isRequired,
|
|
@@ -27326,11 +28541,6 @@ T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
27326
28541
|
destination: PropTypes.string.isRequired,
|
|
27327
28542
|
});
|
|
27328
28543
|
|
|
27329
|
-
T['io.flow.internal.v0.models.logistics_center_check'] = PropTypes.exact({
|
|
27330
|
-
issues: PropTypes.arrayOf(PropTypes.string),
|
|
27331
|
-
is_valid: PropTypes.bool.isRequired,
|
|
27332
|
-
});
|
|
27333
|
-
|
|
27334
28544
|
T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
|
|
27335
28545
|
token: PropTypes.string.isRequired,
|
|
27336
28546
|
});
|
|
@@ -27406,6 +28616,10 @@ T['io.flow.internal.v0.models.order_service_change_csv_form'] = PropTypes.exact(
|
|
|
27406
28616
|
to_service_id: PropTypes.string.isRequired,
|
|
27407
28617
|
});
|
|
27408
28618
|
|
|
28619
|
+
T['io.flow.internal.v0.models.organization_deactivation_form'] = PropTypes.exact({
|
|
28620
|
+
deactivate_at: PropTypes.string.isRequired,
|
|
28621
|
+
});
|
|
28622
|
+
|
|
27409
28623
|
T['io.flow.internal.v0.models.organization_invitation_accept_form'] = PropTypes.exact({
|
|
27410
28624
|
email: PropTypes.string.isRequired,
|
|
27411
28625
|
});
|
|
@@ -27456,6 +28670,12 @@ T['io.flow.internal.v0.models.payment_organization_settings_put_form'] = PropTyp
|
|
|
27456
28670
|
payment_statement_suffix: PropTypes.string,
|
|
27457
28671
|
});
|
|
27458
28672
|
|
|
28673
|
+
T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
28674
|
+
scheduled: PropTypes.number.isRequired,
|
|
28675
|
+
sent: PropTypes.number.isRequired,
|
|
28676
|
+
failed: PropTypes.number.isRequired,
|
|
28677
|
+
});
|
|
28678
|
+
|
|
27459
28679
|
T['io.flow.internal.v0.models.phrase_classified'] = PropTypes.exact({
|
|
27460
28680
|
event_id: PropTypes.string.isRequired,
|
|
27461
28681
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -27485,6 +28705,20 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
|
|
|
27485
28705
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27486
28706
|
});
|
|
27487
28707
|
|
|
28708
|
+
T['io.flow.internal.v0.models.queued_record'] = PropTypes.exact({
|
|
28709
|
+
type: PropTypes.string.isRequired,
|
|
28710
|
+
type_id: PropTypes.string.isRequired,
|
|
28711
|
+
source_type: PropTypes.string,
|
|
28712
|
+
source_id: PropTypes.string,
|
|
28713
|
+
environment: PropTypes.string,
|
|
28714
|
+
created_at: PropTypes.string.isRequired,
|
|
28715
|
+
num_attempts: PropTypes.number.isRequired,
|
|
28716
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
28717
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
28718
|
+
stacktrace: PropTypes.string,
|
|
28719
|
+
snooze_id: PropTypes.string,
|
|
28720
|
+
});
|
|
28721
|
+
|
|
27488
28722
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
27489
28723
|
base: PropTypes.string.isRequired,
|
|
27490
28724
|
target: PropTypes.string.isRequired,
|
|
@@ -27500,6 +28734,7 @@ T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
|
27500
28734
|
|
|
27501
28735
|
T['io.flow.internal.v0.models.rate_level_form'] = PropTypes.exact({
|
|
27502
28736
|
name: PropTypes.string.isRequired,
|
|
28737
|
+
key: PropTypes.string.isRequired,
|
|
27503
28738
|
});
|
|
27504
28739
|
|
|
27505
28740
|
T['io.flow.internal.v0.models.rate_level_organization_form'] = PropTypes.exact({
|
|
@@ -27515,6 +28750,7 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
|
|
|
27515
28750
|
id: PropTypes.string.isRequired,
|
|
27516
28751
|
name: PropTypes.string.isRequired,
|
|
27517
28752
|
effective_at: PropTypes.string.isRequired,
|
|
28753
|
+
key: PropTypes.string.isRequired,
|
|
27518
28754
|
});
|
|
27519
28755
|
|
|
27520
28756
|
T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
|
|
@@ -27523,6 +28759,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
27523
28759
|
margin: PropTypes.number.isRequired,
|
|
27524
28760
|
});
|
|
27525
28761
|
|
|
28762
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
28763
|
+
key: PropTypes.string,
|
|
28764
|
+
from: PropTypes.string.isRequired,
|
|
28765
|
+
to: PropTypes.string.isRequired,
|
|
28766
|
+
organization_id: PropTypes.string,
|
|
28767
|
+
});
|
|
28768
|
+
|
|
27526
28769
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
27527
28770
|
task_id: PropTypes.string.isRequired,
|
|
27528
28771
|
});
|
|
@@ -27539,6 +28782,24 @@ T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
|
|
|
27539
28782
|
category: PropTypes.string.isRequired,
|
|
27540
28783
|
});
|
|
27541
28784
|
|
|
28785
|
+
T['io.flow.internal.v0.models.retracking'] = PropTypes.exact({
|
|
28786
|
+
carrier: PropTypes.string.isRequired,
|
|
28787
|
+
tracking_number: PropTypes.string,
|
|
28788
|
+
});
|
|
28789
|
+
|
|
28790
|
+
T['io.flow.internal.v0.models.retracking_form'] = PropTypes.exact({
|
|
28791
|
+
carrier: PropTypes.string.isRequired,
|
|
28792
|
+
carrier_tracking_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28793
|
+
});
|
|
28794
|
+
|
|
28795
|
+
T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
|
|
28796
|
+
requested_by: PropTypes.string.isRequired,
|
|
28797
|
+
});
|
|
28798
|
+
|
|
28799
|
+
T['io.flow.internal.v0.models.sandbox_setup_form'] = PropTypes.exact({
|
|
28800
|
+
requested_by: PropTypes.string.isRequired,
|
|
28801
|
+
});
|
|
28802
|
+
|
|
27542
28803
|
T['io.flow.internal.v0.models.screen'] = PropTypes.exact({
|
|
27543
28804
|
id: PropTypes.string.isRequired,
|
|
27544
28805
|
q: PropTypes.string.isRequired,
|
|
@@ -27680,6 +28941,11 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
|
|
|
27680
28941
|
code: PropTypes.string.isRequired,
|
|
27681
28942
|
});
|
|
27682
28943
|
|
|
28944
|
+
T['io.flow.internal.v0.models.shopify_store_password'] = PropTypes.exact({
|
|
28945
|
+
temporary_password: PropTypes.string.isRequired,
|
|
28946
|
+
expiry: PropTypes.string.isRequired,
|
|
28947
|
+
});
|
|
28948
|
+
|
|
27683
28949
|
T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
|
|
27684
28950
|
placeholder: PropTypes.string.isRequired,
|
|
27685
28951
|
});
|
|
@@ -27729,6 +28995,10 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
|
|
|
27729
28995
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27730
28996
|
});
|
|
27731
28997
|
|
|
28998
|
+
T['io.flow.internal.v0.models.wash_carrier_actual_file_form'] = PropTypes.exact({
|
|
28999
|
+
url: PropTypes.string.isRequired,
|
|
29000
|
+
});
|
|
29001
|
+
|
|
27732
29002
|
T['io.flow.internal.v0.models.wash_export_request'] = PropTypes.exact({
|
|
27733
29003
|
url: PropTypes.string.isRequired,
|
|
27734
29004
|
});
|
|
@@ -27769,7 +29039,7 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
|
|
|
27769
29039
|
name: PropTypes.string,
|
|
27770
29040
|
});
|
|
27771
29041
|
|
|
27772
|
-
T['io.flow.
|
|
29042
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
|
|
27773
29043
|
|
|
27774
29044
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
27775
29045
|
placeholder: PropTypes.string,
|
|
@@ -28495,8 +29765,45 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
28495
29765
|
order_id: PropTypes.string,
|
|
28496
29766
|
});
|
|
28497
29767
|
|
|
29768
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
29769
|
+
country: PropTypes.string.isRequired,
|
|
29770
|
+
});
|
|
29771
|
+
|
|
29772
|
+
T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
|
|
29773
|
+
|
|
29774
|
+
T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
|
|
29775
|
+
'accessories',
|
|
29776
|
+
'animals_and_pet_supplies',
|
|
29777
|
+
'apparel',
|
|
29778
|
+
'apparel_and_accessories',
|
|
29779
|
+
'arts_and_entertainment',
|
|
29780
|
+
'baby_and_toddler',
|
|
29781
|
+
'business_and_industrial',
|
|
29782
|
+
'cameras_and_optics',
|
|
29783
|
+
'electronics',
|
|
29784
|
+
'food_beverages_and_tobacco',
|
|
29785
|
+
'furniture',
|
|
29786
|
+
'gift_cards',
|
|
29787
|
+
'hardware',
|
|
29788
|
+
'health_and_beauty',
|
|
29789
|
+
'home_and_garden',
|
|
29790
|
+
'jewelry',
|
|
29791
|
+
'luggage_and_bags',
|
|
29792
|
+
'mature',
|
|
29793
|
+
'media',
|
|
29794
|
+
'office_supplies',
|
|
29795
|
+
'paper_and_art',
|
|
29796
|
+
'religious_and_ceremonial',
|
|
29797
|
+
'software',
|
|
29798
|
+
'sporting_goods',
|
|
29799
|
+
'sports_and_fitness',
|
|
29800
|
+
'toys_and_games',
|
|
29801
|
+
'toys_hobbies_gifts',
|
|
29802
|
+
'vehicles_and_parts',
|
|
29803
|
+
'other',
|
|
29804
|
+
]);
|
|
29805
|
+
|
|
28498
29806
|
T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
|
|
28499
|
-
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
28500
29807
|
T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
28501
29808
|
T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
28502
29809
|
|
|
@@ -28659,6 +29966,10 @@ T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropT
|
|
|
28659
29966
|
placeholder: PropTypes.bool,
|
|
28660
29967
|
});
|
|
28661
29968
|
|
|
29969
|
+
T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = PropTypes.exact({
|
|
29970
|
+
reason: PropTypes.string.isRequired,
|
|
29971
|
+
});
|
|
29972
|
+
|
|
28662
29973
|
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
28663
29974
|
base: PropTypes.string.isRequired,
|
|
28664
29975
|
target: PropTypes.string.isRequired,
|
|
@@ -28786,6 +30097,7 @@ export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_s
|
|
|
28786
30097
|
export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
|
|
28787
30098
|
export const alertImportSummary = T['io.flow.internal.v0.models.alert_import_summary'];
|
|
28788
30099
|
export const alertRequeueSummary = T['io.flow.internal.v0.models.alert_requeue_summary'];
|
|
30100
|
+
export const algoliaIndexAssignment = T['io.flow.internal.v0.models.algolia_index_assignment'];
|
|
28789
30101
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
28790
30102
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
28791
30103
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
@@ -28808,6 +30120,7 @@ export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized
|
|
|
28808
30120
|
export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
|
|
28809
30121
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
28810
30122
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
30123
|
+
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
28811
30124
|
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
28812
30125
|
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
28813
30126
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
@@ -28839,7 +30152,6 @@ export const billingStatementAttachmentKey = T['io.flow.internal.v0.enums.billin
|
|
|
28839
30152
|
export const billingStatementBatch = T['io.flow.internal.v0.models.billing_statement_batch'];
|
|
28840
30153
|
export const billingStatementBatchDeleted = T['io.flow.internal.v0.models.billing_statement_batch_deleted'];
|
|
28841
30154
|
export const billingStatementBatchFileKey = T['io.flow.internal.v0.enums.billing_statement_batch_file_key'];
|
|
28842
|
-
export const billingStatementBatchReconciliation = T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'];
|
|
28843
30155
|
export const billingStatementBatchReference = T['io.flow.internal.v0.models.billing_statement_batch_reference'];
|
|
28844
30156
|
export const billingStatementBatchStatement = T['io.flow.internal.v0.models.billing_statement_batch_statement'];
|
|
28845
30157
|
export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'];
|
|
@@ -28906,6 +30218,8 @@ export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser
|
|
|
28906
30218
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
28907
30219
|
export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
|
|
28908
30220
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30221
|
+
export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_dtce_post_body'];
|
|
30222
|
+
export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
|
|
28909
30223
|
export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
|
|
28910
30224
|
export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calculator_organization_settings'];
|
|
28911
30225
|
export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
|
|
@@ -28915,9 +30229,11 @@ export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
|
|
|
28915
30229
|
export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
|
|
28916
30230
|
export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
|
|
28917
30231
|
export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_account_upserted_v2'];
|
|
30232
|
+
export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
|
|
28918
30233
|
export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
|
|
28919
30234
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
28920
30235
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
30236
|
+
export const carrierValidationStatus = T['io.flow.internal.v0.enums.carrier_validation_status'];
|
|
28921
30237
|
export const catalogImportRequest = T['io.flow.internal.v0.models.catalog_import_request'];
|
|
28922
30238
|
export const catalogImportType = T['io.flow.internal.v0.enums.catalog_import_type'];
|
|
28923
30239
|
export const catalogItemBatchIndexTask = T['io.flow.internal.v0.models.catalog_item_batch_index_task'];
|
|
@@ -28926,6 +30242,7 @@ export const catalogItemIndexTask = T['io.flow.internal.v0.models.catalog_item_i
|
|
|
28926
30242
|
export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.catalog_item_region_availabilities'];
|
|
28927
30243
|
export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
|
|
28928
30244
|
export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
|
|
30245
|
+
export const catalogPublicationSyncValidationError = T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'];
|
|
28929
30246
|
export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
|
|
28930
30247
|
export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
|
|
28931
30248
|
export const catalogSettingsPutForm = T['io.flow.internal.v0.models.catalog_settings_put_form'];
|
|
@@ -28961,6 +30278,7 @@ export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_orde
|
|
|
28961
30278
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
28962
30279
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
28963
30280
|
export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
|
|
30281
|
+
export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
|
|
28964
30282
|
export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
|
|
28965
30283
|
export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
|
|
28966
30284
|
export const channelOrderAcceptanceStatus = T['io.flow.internal.v0.enums.channel_order_acceptance_status'];
|
|
@@ -29542,6 +30860,7 @@ export const classificationWrapper = T['io.flow.internal.v0.models.classificatio
|
|
|
29542
30860
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
29543
30861
|
export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
|
|
29544
30862
|
export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
|
|
30863
|
+
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
29545
30864
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
29546
30865
|
export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
29547
30866
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
@@ -29672,6 +30991,7 @@ export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor']
|
|
|
29672
30991
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
29673
30992
|
export const disputeStatusForm = T['io.flow.internal.v0.models.dispute_status_form'];
|
|
29674
30993
|
export const disputeTransaction = T['io.flow.internal.v0.models.dispute_transaction'];
|
|
30994
|
+
export const disputeTransactionType = T['io.flow.internal.v0.enums.dispute_transaction_type'];
|
|
29675
30995
|
export const disputeType = T['io.flow.internal.v0.enums.dispute_type'];
|
|
29676
30996
|
export const disputeUpserted = T['io.flow.internal.v0.models.dispute_upserted'];
|
|
29677
30997
|
export const dutiedItemsExport = T['io.flow.internal.v0.models.dutied_items_export'];
|
|
@@ -29716,10 +31036,13 @@ export const erpFlowFileForm = T['io.flow.internal.v0.models.erp_flow_file_form'
|
|
|
29716
31036
|
export const erpFlowVendor = T['io.flow.internal.v0.models.erp_flow_vendor'];
|
|
29717
31037
|
export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
|
|
29718
31038
|
export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
|
|
31039
|
+
export const erpPriorityVendor = T['io.flow.internal.v0.models.erp_priority_vendor'];
|
|
31040
|
+
export const erpPriorityVendorForm = T['io.flow.internal.v0.models.erp_priority_vendor_form'];
|
|
29719
31041
|
export const erpVendor = T['io.flow.internal.v0.models.erp_vendor'];
|
|
29720
31042
|
export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status'];
|
|
29721
31043
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
29722
|
-
export const
|
|
31044
|
+
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
31045
|
+
export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
|
|
29723
31046
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
29724
31047
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
29725
31048
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -29832,6 +31155,7 @@ export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_pro
|
|
|
29832
31155
|
export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_project_put_form'];
|
|
29833
31156
|
export const flowLabelSetting = T['io.flow.internal.v0.models.flow_label_setting'];
|
|
29834
31157
|
export const flowLabelSettingForm = T['io.flow.internal.v0.models.flow_label_setting_form'];
|
|
31158
|
+
export const flowShopValidationError = T['io.flow.internal.v0.models.flow_shop_validation_error'];
|
|
29835
31159
|
export const format = T['io.flow.internal.v0.enums.format'];
|
|
29836
31160
|
export const fraudPendingReview = T['io.flow.internal.v0.models.fraud_pending_review'];
|
|
29837
31161
|
export const fraudPendingReviewDeleted = T['io.flow.internal.v0.models.fraud_pending_review_deleted'];
|
|
@@ -29867,11 +31191,22 @@ export const ftpSettingsPaths = T['io.flow.internal.v0.models.ftp_settings_paths
|
|
|
29867
31191
|
export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
|
|
29868
31192
|
export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
|
|
29869
31193
|
export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
|
|
31194
|
+
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
29870
31195
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
31196
|
+
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
29871
31197
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
29872
31198
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
31199
|
+
export const fulfillmentLine = T['io.flow.internal.v0.models.fulfillment_line'];
|
|
31200
|
+
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
31201
|
+
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
31202
|
+
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
31203
|
+
export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'];
|
|
31204
|
+
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
31205
|
+
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
29873
31206
|
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
31207
|
+
export const fulfillmentShipping = T['io.flow.internal.v0.models.fulfillment_shipping'];
|
|
29874
31208
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
31209
|
+
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
29875
31210
|
export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
|
|
29876
31211
|
export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
|
|
29877
31212
|
export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
|
|
@@ -29883,6 +31218,7 @@ export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_reven
|
|
|
29883
31218
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
29884
31219
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
29885
31220
|
export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
|
|
31221
|
+
export const genericValidationError = T['io.flow.internal.v0.models.generic_validation_error'];
|
|
29886
31222
|
export const giftCard = T['io.flow.internal.v0.models.gift_card'];
|
|
29887
31223
|
export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
|
|
29888
31224
|
export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
|
|
@@ -29905,6 +31241,8 @@ export const harmonizationItemClassificationUpserted = T['io.flow.internal.v0.mo
|
|
|
29905
31241
|
export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
|
|
29906
31242
|
export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
|
|
29907
31243
|
export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
|
|
31244
|
+
export const harmonizationThreshold = T['io.flow.internal.v0.models.harmonization_threshold'];
|
|
31245
|
+
export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmonization_threshold_form'];
|
|
29908
31246
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
29909
31247
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
29910
31248
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
@@ -29969,6 +31307,8 @@ export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hyb
|
|
|
29969
31307
|
export const hybrisCatalogItemsImportRequestData = T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'];
|
|
29970
31308
|
export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
|
|
29971
31309
|
export const importFailed = T['io.flow.internal.v0.models.import_failed'];
|
|
31310
|
+
export const indexAssignmentDeleted = T['io.flow.internal.v0.models.index_assignment_deleted'];
|
|
31311
|
+
export const indexAssignmentUpserted = T['io.flow.internal.v0.models.index_assignment_upserted'];
|
|
29972
31312
|
export const indexTaskType = T['io.flow.internal.v0.unions.index_task_type'];
|
|
29973
31313
|
export const initialInputDataSource = T['io.flow.internal.v0.enums.initial_input_data_source'];
|
|
29974
31314
|
export const inlineAuthorizationParameters = T['io.flow.internal.v0.unions.inline_authorization_parameters'];
|
|
@@ -30039,6 +31379,7 @@ export const itemSalesMarginPostForm = T['io.flow.internal.v0.models.item_sales_
|
|
|
30039
31379
|
export const itemSalesMarginPutForm = T['io.flow.internal.v0.models.item_sales_margin_put_form'];
|
|
30040
31380
|
export const itemSalesMarginUpserted = T['io.flow.internal.v0.models.item_sales_margin_upserted'];
|
|
30041
31381
|
export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_margin_version'];
|
|
31382
|
+
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
30042
31383
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
30043
31384
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
30044
31385
|
export const itemsShipped = T['io.flow.internal.v0.models.items_shipped'];
|
|
@@ -30052,6 +31393,7 @@ export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_
|
|
|
30052
31393
|
export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
|
|
30053
31394
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
30054
31395
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
31396
|
+
export const labelBase = T['io.flow.internal.v0.models.label_base'];
|
|
30055
31397
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
30056
31398
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
30057
31399
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
@@ -30059,6 +31401,7 @@ export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job
|
|
|
30059
31401
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
30060
31402
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
30061
31403
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
31404
|
+
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
30062
31405
|
export const labelGenerationAddressFailureStatus = T['io.flow.internal.v0.enums.label_generation_address_failure_status'];
|
|
30063
31406
|
export const labelGenerationAddressFailureStatusUpdateForm = T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'];
|
|
30064
31407
|
export const labelGenerationAddressFailures = T['io.flow.internal.v0.models.label_generation_address_failures'];
|
|
@@ -30067,7 +31410,24 @@ export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.labe
|
|
|
30067
31410
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
30068
31411
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
30069
31412
|
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
31413
|
+
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31414
|
+
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31415
|
+
export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
|
|
31416
|
+
export const labelInvoiceResponseForm = T['io.flow.internal.v0.models.label_invoice_response_form'];
|
|
31417
|
+
export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
|
|
31418
|
+
export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
|
|
31419
|
+
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
31420
|
+
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
31421
|
+
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
31422
|
+
export const labelResponseUnits = T['io.flow.internal.v0.models.label_response_units'];
|
|
30070
31423
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
31424
|
+
export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
|
|
31425
|
+
export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];
|
|
31426
|
+
export const labelSurchargeDetailFlat = T['io.flow.internal.v0.models.label_surcharge_detail_flat'];
|
|
31427
|
+
export const labelSurchargeDetailPerWeightUnit = T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'];
|
|
31428
|
+
export const labelSurchargeDetailPercentage = T['io.flow.internal.v0.models.label_surcharge_detail_percentage'];
|
|
31429
|
+
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
31430
|
+
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
30071
31431
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
30072
31432
|
export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
|
|
30073
31433
|
export const labelTrackingSummaryUpserted = T['io.flow.internal.v0.models.label_tracking_summary_upserted'];
|
|
@@ -30075,6 +31435,7 @@ export const labelTransaction = T['io.flow.internal.v0.models.label_transaction'
|
|
|
30075
31435
|
export const labelTransactionDeleted = T['io.flow.internal.v0.models.label_transaction_deleted'];
|
|
30076
31436
|
export const labelTransactionType = T['io.flow.internal.v0.enums.label_transaction_type'];
|
|
30077
31437
|
export const labelTransactionUpserted = T['io.flow.internal.v0.models.label_transaction_upserted'];
|
|
31438
|
+
export const labelUnits = T['io.flow.internal.v0.models.label_units'];
|
|
30078
31439
|
export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
30079
31440
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
30080
31441
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
@@ -30114,7 +31475,6 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
|
|
|
30114
31475
|
export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
|
|
30115
31476
|
export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
|
|
30116
31477
|
export const location = T['io.flow.internal.v0.models.location'];
|
|
30117
|
-
export const logisticsCenterCheck = T['io.flow.internal.v0.models.logistics_center_check'];
|
|
30118
31478
|
export const logo = T['io.flow.internal.v0.models.logo'];
|
|
30119
31479
|
export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
30120
31480
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
@@ -30191,8 +31551,19 @@ export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.mo
|
|
|
30191
31551
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
30192
31552
|
export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
|
|
30193
31553
|
export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
|
|
31554
|
+
export const merchantCharges = T['io.flow.internal.v0.models.merchant_charges'];
|
|
31555
|
+
export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
31556
|
+
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
31557
|
+
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
31558
|
+
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
30194
31559
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30195
31560
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
31561
|
+
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
31562
|
+
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
31563
|
+
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
31564
|
+
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
31565
|
+
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
31566
|
+
export const metadataWeights = T['io.flow.internal.v0.models.metadata_weights'];
|
|
30196
31567
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
30197
31568
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
30198
31569
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -30258,10 +31629,12 @@ export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order
|
|
|
30258
31629
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
30259
31630
|
export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
|
|
30260
31631
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
31632
|
+
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
30261
31633
|
export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'];
|
|
30262
31634
|
export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
|
|
30263
31635
|
export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
|
|
30264
31636
|
export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
|
|
31637
|
+
export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
|
|
30265
31638
|
export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
|
|
30266
31639
|
export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
|
|
30267
31640
|
export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
|
|
@@ -30280,6 +31653,10 @@ export const organizationCurrencySettingDeleted = T['io.flow.internal.v0.models.
|
|
|
30280
31653
|
export const organizationCurrencySettingForm = T['io.flow.internal.v0.models.organization_currency_setting_form'];
|
|
30281
31654
|
export const organizationCurrencySettingUpserted = T['io.flow.internal.v0.models.organization_currency_setting_upserted'];
|
|
30282
31655
|
export const organizationCurrencySettingVersion = T['io.flow.internal.v0.models.organization_currency_setting_version'];
|
|
31656
|
+
export const organizationDeactivation = T['io.flow.internal.v0.models.organization_deactivation'];
|
|
31657
|
+
export const organizationDeactivationDeleted = T['io.flow.internal.v0.models.organization_deactivation_deleted'];
|
|
31658
|
+
export const organizationDeactivationForm = T['io.flow.internal.v0.models.organization_deactivation_form'];
|
|
31659
|
+
export const organizationDeactivationUpserted = T['io.flow.internal.v0.models.organization_deactivation_upserted'];
|
|
30283
31660
|
export const organizationDebugTransaction = T['io.flow.internal.v0.models.organization_debug_transaction'];
|
|
30284
31661
|
export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
|
|
30285
31662
|
export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
|
|
@@ -30312,6 +31689,7 @@ export const organizationSettingsForm = T['io.flow.internal.v0.models.organizati
|
|
|
30312
31689
|
export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
|
|
30313
31690
|
export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
|
|
30314
31691
|
export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
|
|
31692
|
+
export const organizationsAuditCheckReport = T['io.flow.internal.v0.models.organizations_audit_check_report'];
|
|
30315
31693
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
30316
31694
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
30317
31695
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -30346,6 +31724,7 @@ export const paymentSummaryStatus = T['io.flow.internal.v0.enums.payment_summary
|
|
|
30346
31724
|
export const paymentSummaryType = T['io.flow.internal.v0.enums.payment_summary_type'];
|
|
30347
31725
|
export const paymentSummaryV2 = T['io.flow.internal.v0.models.payment_summary_v2'];
|
|
30348
31726
|
export const paymentTerm = T['io.flow.internal.v0.enums.payment_term'];
|
|
31727
|
+
export const payoutStatusCounts = T['io.flow.internal.v0.models.payout_status_counts'];
|
|
30349
31728
|
export const paypalAccount = T['io.flow.internal.v0.models.paypal_account'];
|
|
30350
31729
|
export const paypalAccountModificationForm = T['io.flow.internal.v0.models.paypal_account_modification_form'];
|
|
30351
31730
|
export const paypalAccountPutForm = T['io.flow.internal.v0.models.paypal_account_put_form'];
|
|
@@ -30416,6 +31795,7 @@ export const productHarmonization = T['io.flow.internal.v0.models.product_harmon
|
|
|
30416
31795
|
export const productHarmonizationForm = T['io.flow.internal.v0.models.product_harmonization_form'];
|
|
30417
31796
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
30418
31797
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
31798
|
+
export const productRestrictionResultValidationError = T['io.flow.internal.v0.models.product_restriction_result_validation_error'];
|
|
30419
31799
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
30420
31800
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
30421
31801
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
@@ -30427,6 +31807,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
|
|
|
30427
31807
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
30428
31808
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
30429
31809
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
31810
|
+
export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
|
|
30430
31811
|
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
30431
31812
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
30432
31813
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
@@ -30444,6 +31825,7 @@ export const rateFreshnessSummaryDeleted = T['io.flow.internal.v0.models.rate_fr
|
|
|
30444
31825
|
export const rateFreshnessSummaryUpserted = T['io.flow.internal.v0.models.rate_freshness_summary_upserted'];
|
|
30445
31826
|
export const rateLevel = T['io.flow.internal.v0.models.rate_level'];
|
|
30446
31827
|
export const rateLevelForm = T['io.flow.internal.v0.models.rate_level_form'];
|
|
31828
|
+
export const rateLevelKey = T['io.flow.internal.v0.enums.rate_level_key'];
|
|
30447
31829
|
export const rateLevelOrganization = T['io.flow.internal.v0.models.rate_level_organization'];
|
|
30448
31830
|
export const rateLevelOrganizationForm = T['io.flow.internal.v0.models.rate_level_organization_form'];
|
|
30449
31831
|
export const rateLevelRatecard = T['io.flow.internal.v0.models.rate_level_ratecard'];
|
|
@@ -30493,9 +31875,13 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
|
|
|
30493
31875
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
30494
31876
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
30495
31877
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
31878
|
+
export const report = T['io.flow.internal.v0.models.report'];
|
|
31879
|
+
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
30496
31880
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
30497
31881
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
31882
|
+
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
30498
31883
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
31884
|
+
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
30499
31885
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
30500
31886
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
30501
31887
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -30528,6 +31914,8 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
|
|
|
30528
31914
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
30529
31915
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
30530
31916
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
31917
|
+
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
31918
|
+
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
30531
31919
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
30532
31920
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
30533
31921
|
export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
|
|
@@ -30539,6 +31927,8 @@ export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
|
30539
31927
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
30540
31928
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
30541
31929
|
export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
|
|
31930
|
+
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
31931
|
+
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
30542
31932
|
export const scope = T['io.flow.internal.v0.enums.scope'];
|
|
30543
31933
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
30544
31934
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -30564,6 +31954,7 @@ export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
|
30564
31954
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
30565
31955
|
export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
|
|
30566
31956
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31957
|
+
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
30567
31958
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
30568
31959
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
30569
31960
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
@@ -30585,11 +31976,18 @@ export const shopifyGiftCardReversalForm = T['io.flow.internal.v0.models.shopify
|
|
|
30585
31976
|
export const shopifyGrantStatus = T['io.flow.internal.v0.enums.shopify_grant_status'];
|
|
30586
31977
|
export const shopifyGrantsCheck = T['io.flow.internal.v0.models.shopify_grants_check'];
|
|
30587
31978
|
export const shopifyMarketsDangerousGoods = T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'];
|
|
31979
|
+
export const shopifyMarketsDiscrepancy = T['io.flow.internal.v0.models.shopify_markets_discrepancy'];
|
|
31980
|
+
export const shopifyMarketsDiscrepancyData = T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'];
|
|
30588
31981
|
export const shopifyMarketsHtsNumberAvailable = T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'];
|
|
30589
31982
|
export const shopifyMarketsIncorporationCountry = T['io.flow.internal.v0.models.shopify_markets_incorporation_country'];
|
|
31983
|
+
export const shopifyMarketsInternalOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'];
|
|
31984
|
+
export const shopifyMarketsMetricsDeleted = T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'];
|
|
31985
|
+
export const shopifyMarketsMetricsUpserted = T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'];
|
|
30590
31986
|
export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets_order'];
|
|
30591
31987
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
30592
31988
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
31989
|
+
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
31990
|
+
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
30593
31991
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
30594
31992
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
30595
31993
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
@@ -30597,6 +31995,7 @@ export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models
|
|
|
30597
31995
|
export const shopifyMarketsShopStatisticsUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'];
|
|
30598
31996
|
export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
|
|
30599
31997
|
export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
|
|
31998
|
+
export const shopifyMarketsShopifyOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'];
|
|
30600
31999
|
export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
|
|
30601
32000
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
30602
32001
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
@@ -30658,9 +32057,12 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
|
30658
32057
|
export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
|
|
30659
32058
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
30660
32059
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
32060
|
+
export const shopifyStorePassword = T['io.flow.internal.v0.models.shopify_store_password'];
|
|
30661
32061
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
30662
32062
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
30663
32063
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|
|
32064
|
+
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
32065
|
+
export const shopperSummary = T['io.flow.internal.v0.models.shopper_summary'];
|
|
30664
32066
|
export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
|
|
30665
32067
|
export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
|
|
30666
32068
|
export const simpleRoundingStrategy = T['io.flow.internal.v0.enums.simple_rounding_strategy'];
|
|
@@ -30793,6 +32195,9 @@ export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_a
|
|
|
30793
32195
|
export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
|
|
30794
32196
|
export const transactionPostingMethod = T['io.flow.internal.v0.enums.transaction_posting_method'];
|
|
30795
32197
|
export const transactionReference = T['io.flow.internal.v0.models.transaction_reference'];
|
|
32198
|
+
export const transactionStatement = T['io.flow.internal.v0.models.transaction_statement'];
|
|
32199
|
+
export const transactionStatementDeleted = T['io.flow.internal.v0.models.transaction_statement_deleted'];
|
|
32200
|
+
export const transactionStatementUpserted = T['io.flow.internal.v0.models.transaction_statement_upserted'];
|
|
30796
32201
|
export const transactionSummary = T['io.flow.internal.v0.unions.transaction_summary'];
|
|
30797
32202
|
export const transferMethod = T['io.flow.internal.v0.enums.transfer_method'];
|
|
30798
32203
|
export const transferTransaction = T['io.flow.internal.v0.models.transfer_transaction'];
|
|
@@ -30801,6 +32206,11 @@ export const transferTransactionDeletedV2 = T['io.flow.internal.v0.models.transf
|
|
|
30801
32206
|
export const transferTransactionUpserted = T['io.flow.internal.v0.models.transfer_transaction_upserted'];
|
|
30802
32207
|
export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'];
|
|
30803
32208
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
32209
|
+
export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
|
|
32210
|
+
export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
|
|
32211
|
+
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
32212
|
+
export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
|
|
32213
|
+
export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
|
|
30804
32214
|
export const unclassifiedProductStatistic = T['io.flow.internal.v0.models.unclassified_product_statistic'];
|
|
30805
32215
|
export const unclassifiedProductStatus = T['io.flow.internal.v0.enums.unclassified_product_status'];
|
|
30806
32216
|
export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.unclassified_products_purge_request'];
|
|
@@ -30835,8 +32245,13 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
|
|
|
30835
32245
|
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
30836
32246
|
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
30837
32247
|
export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
|
|
32248
|
+
export const washCarrierActualFile = T['io.flow.internal.v0.models.wash_carrier_actual_file'];
|
|
32249
|
+
export const washCarrierActualFileForm = T['io.flow.internal.v0.models.wash_carrier_actual_file_form'];
|
|
32250
|
+
export const washCarrierActualFileStatus = T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'];
|
|
30838
32251
|
export const washExportRequest = T['io.flow.internal.v0.models.wash_export_request'];
|
|
30839
32252
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
30840
32253
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
30841
32254
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|
|
32255
|
+
export const weightsDead = T['io.flow.internal.v0.models.weights_dead'];
|
|
32256
|
+
export const weightsDimensional = T['io.flow.internal.v0.models.weights_dimensional'];
|
|
30842
32257
|
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|