@flowio/api-internal-prop-types 9.24.66 → 9.24.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +1449 -266
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1449 -266
- package/src/api-internal.js +2191 -793
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
|
|
|
@@ -2835,7 +3028,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
|
2835
3028
|
starts_at: PropTypes.string.isRequired,
|
|
2836
3029
|
ends_at: PropTypes.string,
|
|
2837
3030
|
prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2838
|
-
|
|
3031
|
+
prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
|
|
2839
3032
|
usage_limit: PropTypes.number,
|
|
2840
3033
|
entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2841
3034
|
entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
@@ -2845,7 +3038,7 @@ T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
|
2845
3038
|
once_per_customer: PropTypes.bool.isRequired,
|
|
2846
3039
|
target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
|
|
2847
3040
|
customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
|
|
2848
|
-
|
|
3041
|
+
customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2849
3042
|
prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2850
3043
|
prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2851
3044
|
prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
|
|
@@ -3127,6 +3320,7 @@ T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
|
|
|
3127
3320
|
T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
|
|
3128
3321
|
executeThreeD: PropTypes.bool,
|
|
3129
3322
|
allow3DS2: PropTypes.bool,
|
|
3323
|
+
manualCapture: PropTypes.bool,
|
|
3130
3324
|
});
|
|
3131
3325
|
|
|
3132
3326
|
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
|
|
@@ -3313,6 +3507,11 @@ T['io.flow.adyen.v0.models.three_d_secure_data'] = PropTypes.exact({
|
|
|
3313
3507
|
xid: PropTypes.string,
|
|
3314
3508
|
});
|
|
3315
3509
|
|
|
3510
|
+
T['io.flow.adyen.v0.models.authorize_request_additional_data'] = PropTypes.exact({
|
|
3511
|
+
manualCapture: PropTypes.bool,
|
|
3512
|
+
'paywithgoogle.token': PropTypes.string,
|
|
3513
|
+
});
|
|
3514
|
+
|
|
3316
3515
|
T['io.flow.adyen.v0.models.bank_account'] = PropTypes.exact({
|
|
3317
3516
|
countryCode: PropTypes.string.isRequired,
|
|
3318
3517
|
ownerName: PropTypes.string.isRequired,
|
|
@@ -3378,6 +3577,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
|
|
|
3378
3577
|
redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3379
3578
|
redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3380
3579
|
storePaymentMethod: PropTypes.bool,
|
|
3580
|
+
captureDelayHours: PropTypes.number,
|
|
3381
3581
|
});
|
|
3382
3582
|
|
|
3383
3583
|
T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
|
|
@@ -3427,7 +3627,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3427
3627
|
merchantOrderReference: PropTypes.string,
|
|
3428
3628
|
shopperInteraction: T['io.flow.adyen.v0.enums.shopper_interaction'].isRequired,
|
|
3429
3629
|
bankAccount: T['io.flow.adyen.v0.models.bank_account'],
|
|
3430
|
-
additionalData:
|
|
3630
|
+
additionalData: T['io.flow.adyen.v0.models.authorize_request_additional_data'],
|
|
3431
3631
|
mpiData: T['io.flow.adyen.v0.models.three_d_secure_data'],
|
|
3432
3632
|
selectedBrand: PropTypes.string,
|
|
3433
3633
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
@@ -3435,6 +3635,7 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3435
3635
|
recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
|
|
3436
3636
|
mcc: PropTypes.string,
|
|
3437
3637
|
metadata: PropTypes.object,
|
|
3638
|
+
captureDelayHours: PropTypes.number,
|
|
3438
3639
|
});
|
|
3439
3640
|
|
|
3440
3641
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
@@ -3748,14 +3949,14 @@ T['io.flow.external.paypal.v1.enums.payer_status'] = PropTypes.oneOf(['VERIFIED'
|
|
|
3748
3949
|
T['io.flow.external.paypal.v1.enums.payment_method'] = PropTypes.oneOf(['paypal']);
|
|
3749
3950
|
|
|
3750
3951
|
T['io.flow.external.paypal.v1.models.shipping_address'] = PropTypes.exact({
|
|
3751
|
-
recipient_name: PropTypes.string
|
|
3952
|
+
recipient_name: PropTypes.string,
|
|
3752
3953
|
line1: PropTypes.string.isRequired,
|
|
3753
3954
|
line2: PropTypes.string,
|
|
3754
|
-
city: PropTypes.string
|
|
3955
|
+
city: PropTypes.string,
|
|
3755
3956
|
country_code: PropTypes.string.isRequired,
|
|
3756
|
-
postal_code: PropTypes.string
|
|
3957
|
+
postal_code: PropTypes.string,
|
|
3757
3958
|
phone: PropTypes.string,
|
|
3758
|
-
state: PropTypes.string
|
|
3959
|
+
state: PropTypes.string,
|
|
3759
3960
|
});
|
|
3760
3961
|
|
|
3761
3962
|
T['io.flow.external.paypal.v1.models.payer_info'] = PropTypes.exact({
|
|
@@ -4476,6 +4677,25 @@ T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
|
4476
4677
|
name: PropTypes.string.isRequired,
|
|
4477
4678
|
});
|
|
4478
4679
|
|
|
4680
|
+
T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
4681
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
|
|
4682
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
|
|
4683
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4684
|
+
]);
|
|
4685
|
+
|
|
4686
|
+
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
|
|
4687
|
+
|
|
4688
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4689
|
+
amount: PropTypes.number.isRequired,
|
|
4690
|
+
type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
|
|
4691
|
+
detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
|
|
4692
|
+
});
|
|
4693
|
+
|
|
4694
|
+
T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
|
|
4695
|
+
amount: PropTypes.number.isRequired,
|
|
4696
|
+
weight: PropTypes.number.isRequired,
|
|
4697
|
+
});
|
|
4698
|
+
|
|
4479
4699
|
T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
4480
4700
|
id: PropTypes.string.isRequired,
|
|
4481
4701
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
@@ -4567,6 +4787,113 @@ T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
|
|
|
4567
4787
|
});
|
|
4568
4788
|
|
|
4569
4789
|
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
|
|
4790
|
+
|
|
4791
|
+
T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
|
|
4792
|
+
'de-AT',
|
|
4793
|
+
'en-AT',
|
|
4794
|
+
'nl-BE',
|
|
4795
|
+
'fr-BE',
|
|
4796
|
+
'en-BE',
|
|
4797
|
+
'de-DE',
|
|
4798
|
+
'en-DE',
|
|
4799
|
+
'da-DK',
|
|
4800
|
+
'en-DK',
|
|
4801
|
+
'es-ES',
|
|
4802
|
+
'en-ES',
|
|
4803
|
+
'fi-FI',
|
|
4804
|
+
'sv-FI',
|
|
4805
|
+
'en-FI',
|
|
4806
|
+
'en-GB',
|
|
4807
|
+
'en-IE',
|
|
4808
|
+
'it-IT',
|
|
4809
|
+
'en-IT',
|
|
4810
|
+
'nl-NL',
|
|
4811
|
+
'en-NL',
|
|
4812
|
+
'nb-NO',
|
|
4813
|
+
'en-NO',
|
|
4814
|
+
'sv-SE',
|
|
4815
|
+
'en-SE',
|
|
4816
|
+
'en-US',
|
|
4817
|
+
'es-US',
|
|
4818
|
+
'fr-FR',
|
|
4819
|
+
'en-FR',
|
|
4820
|
+
'cs-CZ',
|
|
4821
|
+
'en-CZ',
|
|
4822
|
+
'el-GR',
|
|
4823
|
+
'en-GR',
|
|
4824
|
+
'en-AU',
|
|
4825
|
+
'en-NZ',
|
|
4826
|
+
'en-CA',
|
|
4827
|
+
'fr-CA',
|
|
4828
|
+
'pl-PL',
|
|
4829
|
+
'en-PL',
|
|
4830
|
+
'pt-PT',
|
|
4831
|
+
'en-PT',
|
|
4832
|
+
'de-CH',
|
|
4833
|
+
'fr-CH',
|
|
4834
|
+
'it-CH',
|
|
4835
|
+
'en-CH',
|
|
4836
|
+
]);
|
|
4837
|
+
|
|
4838
|
+
T['io.flow.stripe.v0.enums.payment_method_category_klarna'] = PropTypes.oneOf(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']);
|
|
4839
|
+
|
|
4840
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTypes.exact({
|
|
4841
|
+
payment_method_category: T['io.flow.stripe.v0.enums.payment_method_category_klarna'],
|
|
4842
|
+
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
4843
|
+
});
|
|
4844
|
+
|
|
4845
|
+
T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
|
|
4846
|
+
'card_not_enrolled',
|
|
4847
|
+
'network_not_supported',
|
|
4848
|
+
'abandoned',
|
|
4849
|
+
'canceled',
|
|
4850
|
+
'rejected',
|
|
4851
|
+
'bypassed',
|
|
4852
|
+
'protocol_error',
|
|
4853
|
+
]);
|
|
4854
|
+
|
|
4855
|
+
T['io.flow.stripe.v0.enums.three_ds_result'] = PropTypes.oneOf([
|
|
4856
|
+
'authenticated',
|
|
4857
|
+
'attempt_acknowledged',
|
|
4858
|
+
'exempted',
|
|
4859
|
+
'not_supported',
|
|
4860
|
+
'failed',
|
|
4861
|
+
'processing_error',
|
|
4862
|
+
]);
|
|
4863
|
+
|
|
4864
|
+
T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['challenge', 'frictionless']);
|
|
4865
|
+
|
|
4866
|
+
T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
|
|
4867
|
+
authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
|
|
4868
|
+
result: T['io.flow.stripe.v0.enums.three_ds_result'],
|
|
4869
|
+
result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
|
|
4870
|
+
version: PropTypes.string,
|
|
4871
|
+
});
|
|
4872
|
+
|
|
4873
|
+
T['io.flow.stripe.v0.models.network_token_used'] = PropTypes.exact({
|
|
4874
|
+
used: PropTypes.bool,
|
|
4875
|
+
});
|
|
4876
|
+
|
|
4877
|
+
T['io.flow.stripe.v0.enums.card_network'] = PropTypes.oneOf([
|
|
4878
|
+
'amex',
|
|
4879
|
+
'cartes_bancaires',
|
|
4880
|
+
'diners',
|
|
4881
|
+
'discover',
|
|
4882
|
+
'eftpos_au',
|
|
4883
|
+
'interac',
|
|
4884
|
+
'jcb',
|
|
4885
|
+
'mastercard',
|
|
4886
|
+
'unionpay',
|
|
4887
|
+
'visa',
|
|
4888
|
+
'unknown',
|
|
4889
|
+
]);
|
|
4890
|
+
|
|
4891
|
+
T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
4892
|
+
count: PropTypes.number,
|
|
4893
|
+
interval: PropTypes.string,
|
|
4894
|
+
type: PropTypes.string,
|
|
4895
|
+
});
|
|
4896
|
+
|
|
4570
4897
|
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4571
4898
|
|
|
4572
4899
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
@@ -4659,6 +4986,19 @@ T['io.flow.stripe.v0.models.address'] = PropTypes.exact({
|
|
|
4659
4986
|
state: PropTypes.string,
|
|
4660
4987
|
});
|
|
4661
4988
|
|
|
4989
|
+
T['io.flow.stripe.v0.models.visa_checkout_information'] = PropTypes.exact({
|
|
4990
|
+
billing_address: T['io.flow.stripe.v0.models.address'],
|
|
4991
|
+
email: PropTypes.string,
|
|
4992
|
+
name: PropTypes.string,
|
|
4993
|
+
shipping_address: T['io.flow.stripe.v0.models.address'],
|
|
4994
|
+
});
|
|
4995
|
+
|
|
4996
|
+
T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
|
|
4997
|
+
type: PropTypes.oneOf(['visa_checkout']).isRequired,
|
|
4998
|
+
visa_checkout: T['io.flow.stripe.v0.models.visa_checkout_information'].isRequired,
|
|
4999
|
+
dynamic_last4: PropTypes.string,
|
|
5000
|
+
});
|
|
5001
|
+
|
|
4662
5002
|
T['io.flow.stripe.v0.models.shipping'] = PropTypes.exact({
|
|
4663
5003
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
4664
5004
|
name: PropTypes.string,
|
|
@@ -4688,6 +5028,19 @@ T['io.flow.stripe.v0.models.order'] = PropTypes.exact({
|
|
|
4688
5028
|
shipping: T['io.flow.stripe.v0.models.shipping'],
|
|
4689
5029
|
});
|
|
4690
5030
|
|
|
5031
|
+
T['io.flow.stripe.v0.models.masterpass_information'] = PropTypes.exact({
|
|
5032
|
+
billing_address: T['io.flow.stripe.v0.models.address'],
|
|
5033
|
+
email: PropTypes.string,
|
|
5034
|
+
name: PropTypes.string,
|
|
5035
|
+
shipping_address: T['io.flow.stripe.v0.models.address'],
|
|
5036
|
+
});
|
|
5037
|
+
|
|
5038
|
+
T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
|
|
5039
|
+
type: PropTypes.oneOf(['masterpass']).isRequired,
|
|
5040
|
+
masterpass: T['io.flow.stripe.v0.models.masterpass_information'].isRequired,
|
|
5041
|
+
dynamic_last4: PropTypes.string,
|
|
5042
|
+
});
|
|
5043
|
+
|
|
4691
5044
|
T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
|
|
4692
5045
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
4693
5046
|
email: PropTypes.string,
|
|
@@ -4873,6 +5226,11 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
|
|
|
4873
5226
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
4874
5227
|
});
|
|
4875
5228
|
|
|
5229
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
|
|
5230
|
+
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
5231
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
|
|
5232
|
+
});
|
|
5233
|
+
|
|
4876
5234
|
T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
|
|
4877
5235
|
amount: PropTypes.number,
|
|
4878
5236
|
currency: PropTypes.string,
|
|
@@ -5046,6 +5404,62 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
|
|
|
5046
5404
|
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
5047
5405
|
});
|
|
5048
5406
|
|
|
5407
|
+
T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
|
|
5408
|
+
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5409
|
+
address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5410
|
+
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5411
|
+
});
|
|
5412
|
+
|
|
5413
|
+
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
5414
|
+
|
|
5415
|
+
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
5416
|
+
type: T['io.flow.stripe.v0.enums.apple_pay_type'].isRequired,
|
|
5417
|
+
});
|
|
5418
|
+
|
|
5419
|
+
T['io.flow.stripe.v0.models.apple_pay'] = PropTypes.exact({
|
|
5420
|
+
type: PropTypes.oneOf(['apple_pay']).isRequired,
|
|
5421
|
+
apple_pay: T['io.flow.stripe.v0.models.apple_pay_information'].isRequired,
|
|
5422
|
+
dynamic_last4: PropTypes.string,
|
|
5423
|
+
});
|
|
5424
|
+
|
|
5425
|
+
T['io.flow.stripe.v0.unions.card_wallet'] = PropTypes.oneOfType([
|
|
5426
|
+
T['io.flow.stripe.v0.models.masterpass'],
|
|
5427
|
+
T['io.flow.stripe.v0.models.apple_pay'],
|
|
5428
|
+
T['io.flow.stripe.v0.models.visa_checkout'],
|
|
5429
|
+
]);
|
|
5430
|
+
|
|
5431
|
+
T['io.flow.stripe.v0.models.payment_method_details_card_information'] = PropTypes.exact({
|
|
5432
|
+
brand: PropTypes.string,
|
|
5433
|
+
checks: T['io.flow.stripe.v0.models.card_checks'],
|
|
5434
|
+
country: PropTypes.string,
|
|
5435
|
+
exp_month: PropTypes.number,
|
|
5436
|
+
exp_year: PropTypes.number,
|
|
5437
|
+
fingerprint: PropTypes.string,
|
|
5438
|
+
funding: T['io.flow.stripe.v0.enums.card_funding_type'],
|
|
5439
|
+
installments: T['io.flow.stripe.v0.models.plan'],
|
|
5440
|
+
last4: PropTypes.string,
|
|
5441
|
+
mandate: PropTypes.string,
|
|
5442
|
+
network: T['io.flow.stripe.v0.enums.card_network'],
|
|
5443
|
+
network_token: T['io.flow.stripe.v0.models.network_token_used'],
|
|
5444
|
+
three_d_secure: T['io.flow.stripe.v0.models.three_d_secure_charge'],
|
|
5445
|
+
capture_before: PropTypes.number,
|
|
5446
|
+
description: PropTypes.string,
|
|
5447
|
+
iin: PropTypes.string,
|
|
5448
|
+
issuer: PropTypes.string,
|
|
5449
|
+
wallet: T['io.flow.stripe.v0.unions.card_wallet'],
|
|
5450
|
+
network_transaction_id: PropTypes.string,
|
|
5451
|
+
});
|
|
5452
|
+
|
|
5453
|
+
T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
|
|
5454
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
5455
|
+
card: T['io.flow.stripe.v0.models.payment_method_details_card_information'].isRequired,
|
|
5456
|
+
});
|
|
5457
|
+
|
|
5458
|
+
T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
|
|
5459
|
+
T['io.flow.stripe.v0.models.payment_method_details_card'],
|
|
5460
|
+
T['io.flow.stripe.v0.models.payment_method_details_klarna'],
|
|
5461
|
+
]);
|
|
5462
|
+
|
|
5049
5463
|
T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
|
|
5050
5464
|
|
|
5051
5465
|
T['io.flow.stripe.v0.models.owner'] = PropTypes.exact({
|
|
@@ -5127,7 +5541,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
5127
5541
|
payment_intent: PropTypes.string,
|
|
5128
5542
|
calculated_statement_descriptor: PropTypes.string,
|
|
5129
5543
|
statement_descriptor: PropTypes.string,
|
|
5130
|
-
payment_method_details:
|
|
5544
|
+
payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
|
|
5131
5545
|
});
|
|
5132
5546
|
|
|
5133
5547
|
T['io.flow.stripe.v0.models.payment_intent_charges'] = PropTypes.exact({
|
|
@@ -5216,7 +5630,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
5216
5630
|
payment_intent: PropTypes.string,
|
|
5217
5631
|
calculated_statement_descriptor: PropTypes.string,
|
|
5218
5632
|
statement_descriptor: PropTypes.string,
|
|
5219
|
-
payment_method_details:
|
|
5633
|
+
payment_method_details: T['io.flow.stripe.v0.unions.payment_method_details'],
|
|
5220
5634
|
});
|
|
5221
5635
|
|
|
5222
5636
|
T['io.flow.stripe.v0.models.tos_acceptance'] = PropTypes.exact({
|
|
@@ -5438,6 +5852,8 @@ T['io.flow.payment.v0.models.card_reference'] = PropTypes.exact({
|
|
|
5438
5852
|
token: PropTypes.string.isRequired,
|
|
5439
5853
|
});
|
|
5440
5854
|
|
|
5855
|
+
T['io.flow.payment.v0.enums.stored_method_usage_step'] = PropTypes.oneOf(['initial', 'subsequent']);
|
|
5856
|
+
|
|
5441
5857
|
T['io.flow.payment.v0.models.issuer_summary'] = PropTypes.exact({
|
|
5442
5858
|
iin: PropTypes.string.isRequired,
|
|
5443
5859
|
name: PropTypes.string,
|
|
@@ -5862,12 +6278,26 @@ T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
|
|
|
5862
6278
|
|
|
5863
6279
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
5864
6280
|
|
|
5865
|
-
T['io.flow.
|
|
5866
|
-
|
|
5867
|
-
|
|
6281
|
+
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
6282
|
+
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
6283
|
+
label: PropTypes.string.isRequired,
|
|
5868
6284
|
});
|
|
5869
6285
|
|
|
5870
|
-
T['io.flow.
|
|
6286
|
+
T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
|
|
6287
|
+
id: PropTypes.string.isRequired,
|
|
6288
|
+
key: PropTypes.string.isRequired,
|
|
6289
|
+
currency: PropTypes.string.isRequired,
|
|
6290
|
+
name: PropTypes.string.isRequired,
|
|
6291
|
+
includes: T['io.flow.common.v0.models.included_levies'].isRequired,
|
|
6292
|
+
status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
|
|
6293
|
+
});
|
|
6294
|
+
|
|
6295
|
+
T['io.flow.export.v0.models.export_delivery_email'] = PropTypes.exact({
|
|
6296
|
+
discriminator: PropTypes.oneOf(['export_delivery_email']).isRequired,
|
|
6297
|
+
email: PropTypes.string.isRequired,
|
|
6298
|
+
});
|
|
6299
|
+
|
|
6300
|
+
T['io.flow.export.v0.models.localized_item_prices_export_type'] = PropTypes.exact({
|
|
5871
6301
|
discriminator: PropTypes.oneOf(['localized_item_prices_export_type']).isRequired,
|
|
5872
6302
|
since: PropTypes.string,
|
|
5873
6303
|
});
|
|
@@ -6006,93 +6436,6 @@ T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
|
6006
6436
|
default_locale: PropTypes.string,
|
|
6007
6437
|
});
|
|
6008
6438
|
|
|
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
6439
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
6097
6440
|
'adjustment',
|
|
6098
6441
|
'vat_deminimis',
|
|
@@ -6154,6 +6497,8 @@ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
|
6154
6497
|
center_key: PropTypes.string.isRequired,
|
|
6155
6498
|
});
|
|
6156
6499
|
|
|
6500
|
+
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
|
|
6501
|
+
|
|
6157
6502
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
6158
6503
|
id: PropTypes.string.isRequired,
|
|
6159
6504
|
number: PropTypes.string.isRequired,
|
|
@@ -6445,16 +6790,17 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
|
|
|
6445
6790
|
id: PropTypes.string.isRequired,
|
|
6446
6791
|
});
|
|
6447
6792
|
|
|
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
6793
|
T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
|
|
6454
6794
|
volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
|
|
6455
6795
|
number_transactions: PropTypes.number,
|
|
6456
6796
|
});
|
|
6457
6797
|
|
|
6798
|
+
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
6799
|
+
company: PropTypes.string,
|
|
6800
|
+
email: PropTypes.string,
|
|
6801
|
+
phone: PropTypes.string,
|
|
6802
|
+
});
|
|
6803
|
+
|
|
6458
6804
|
T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
6459
6805
|
warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
|
|
6460
6806
|
warehouse_url: PropTypes.string,
|
|
@@ -6468,38 +6814,6 @@ T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropT
|
|
|
6468
6814
|
center_id: PropTypes.string,
|
|
6469
6815
|
});
|
|
6470
6816
|
|
|
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
6817
|
T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
|
|
6504
6818
|
name: PropTypes.string.isRequired,
|
|
6505
6819
|
dob: PropTypes.string.isRequired,
|
|
@@ -7374,6 +7688,27 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
7374
7688
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
7375
7689
|
]);
|
|
7376
7690
|
|
|
7691
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
7692
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
7693
|
+
id: PropTypes.string.isRequired,
|
|
7694
|
+
});
|
|
7695
|
+
|
|
7696
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
7697
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
7698
|
+
id: PropTypes.string.isRequired,
|
|
7699
|
+
});
|
|
7700
|
+
|
|
7701
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
7702
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
7703
|
+
id: PropTypes.string.isRequired,
|
|
7704
|
+
});
|
|
7705
|
+
|
|
7706
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
7707
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
7708
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
7709
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
7710
|
+
]);
|
|
7711
|
+
|
|
7377
7712
|
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
7378
7713
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
7379
7714
|
percent: PropTypes.number.isRequired,
|
|
@@ -7401,6 +7736,13 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
7401
7736
|
id: PropTypes.string.isRequired,
|
|
7402
7737
|
});
|
|
7403
7738
|
|
|
7739
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exact({
|
|
7740
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_deleted']).isRequired,
|
|
7741
|
+
event_id: PropTypes.string.isRequired,
|
|
7742
|
+
timestamp: PropTypes.string.isRequired,
|
|
7743
|
+
id: PropTypes.string.isRequired,
|
|
7744
|
+
});
|
|
7745
|
+
|
|
7404
7746
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
7405
7747
|
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
7406
7748
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7463,6 +7805,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
7463
7805
|
id: PropTypes.string.isRequired,
|
|
7464
7806
|
});
|
|
7465
7807
|
|
|
7808
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'] = PropTypes.exact({
|
|
7809
|
+
discriminator: PropTypes.oneOf(['unassigned_merchant_guid_deleted']).isRequired,
|
|
7810
|
+
event_id: PropTypes.string.isRequired,
|
|
7811
|
+
timestamp: PropTypes.string.isRequired,
|
|
7812
|
+
id: PropTypes.string.isRequired,
|
|
7813
|
+
});
|
|
7814
|
+
|
|
7466
7815
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropTypes.exact({
|
|
7467
7816
|
discriminator: PropTypes.oneOf(['partner_organization_settings_deleted']).isRequired,
|
|
7468
7817
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7471,6 +7820,22 @@ T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropType
|
|
|
7471
7820
|
id: PropTypes.string.isRequired,
|
|
7472
7821
|
});
|
|
7473
7822
|
|
|
7823
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'] = PropTypes.exact({
|
|
7824
|
+
discriminator: PropTypes.oneOf(['merchant_guid_assignment_deleted']).isRequired,
|
|
7825
|
+
event_id: PropTypes.string.isRequired,
|
|
7826
|
+
timestamp: PropTypes.string.isRequired,
|
|
7827
|
+
organization: PropTypes.string.isRequired,
|
|
7828
|
+
id: PropTypes.string.isRequired,
|
|
7829
|
+
});
|
|
7830
|
+
|
|
7831
|
+
T['io.flow.internal.v0.models.organization_deactivation_deleted'] = PropTypes.exact({
|
|
7832
|
+
discriminator: PropTypes.oneOf(['organization_deactivation_deleted']).isRequired,
|
|
7833
|
+
event_id: PropTypes.string.isRequired,
|
|
7834
|
+
timestamp: PropTypes.string.isRequired,
|
|
7835
|
+
organization: PropTypes.string.isRequired,
|
|
7836
|
+
id: PropTypes.string.isRequired,
|
|
7837
|
+
});
|
|
7838
|
+
|
|
7474
7839
|
T['io.flow.internal.v0.models.organization_status_change_deleted'] = PropTypes.exact({
|
|
7475
7840
|
discriminator: PropTypes.oneOf(['organization_status_change_deleted']).isRequired,
|
|
7476
7841
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7554,6 +7919,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
7554
7919
|
id: PropTypes.string.isRequired,
|
|
7555
7920
|
});
|
|
7556
7921
|
|
|
7922
|
+
T['io.flow.internal.v0.models.label_request_error_deleted'] = PropTypes.exact({
|
|
7923
|
+
discriminator: PropTypes.oneOf(['label_request_error_deleted']).isRequired,
|
|
7924
|
+
event_id: PropTypes.string.isRequired,
|
|
7925
|
+
timestamp: PropTypes.string.isRequired,
|
|
7926
|
+
organization: PropTypes.string.isRequired,
|
|
7927
|
+
id: PropTypes.string.isRequired,
|
|
7928
|
+
});
|
|
7929
|
+
|
|
7557
7930
|
T['io.flow.internal.v0.models.import_failed'] = PropTypes.exact({
|
|
7558
7931
|
discriminator: PropTypes.oneOf(['import_failed']).isRequired,
|
|
7559
7932
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7976,6 +8349,14 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7976
8349
|
id: PropTypes.string.isRequired,
|
|
7977
8350
|
});
|
|
7978
8351
|
|
|
8352
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
|
|
8353
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
|
|
8354
|
+
event_id: PropTypes.string.isRequired,
|
|
8355
|
+
timestamp: PropTypes.string.isRequired,
|
|
8356
|
+
organization: PropTypes.string.isRequired,
|
|
8357
|
+
id: PropTypes.string.isRequired,
|
|
8358
|
+
});
|
|
8359
|
+
|
|
7979
8360
|
T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
7980
8361
|
discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
|
|
7981
8362
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7983,6 +8364,13 @@ T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
|
7983
8364
|
id: PropTypes.string.isRequired,
|
|
7984
8365
|
});
|
|
7985
8366
|
|
|
8367
|
+
T['io.flow.internal.v0.models.transaction_statement_deleted'] = PropTypes.exact({
|
|
8368
|
+
discriminator: PropTypes.oneOf(['transaction_statement_deleted']).isRequired,
|
|
8369
|
+
event_id: PropTypes.string.isRequired,
|
|
8370
|
+
timestamp: PropTypes.string.isRequired,
|
|
8371
|
+
id: PropTypes.string.isRequired,
|
|
8372
|
+
});
|
|
8373
|
+
|
|
7986
8374
|
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7987
8375
|
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7988
8376
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8089,6 +8477,14 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
|
|
|
8089
8477
|
id: PropTypes.string.isRequired,
|
|
8090
8478
|
});
|
|
8091
8479
|
|
|
8480
|
+
T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
8481
|
+
discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
|
|
8482
|
+
event_id: PropTypes.string.isRequired,
|
|
8483
|
+
timestamp: PropTypes.string.isRequired,
|
|
8484
|
+
organization: PropTypes.string.isRequired,
|
|
8485
|
+
id: PropTypes.string.isRequired,
|
|
8486
|
+
});
|
|
8487
|
+
|
|
8092
8488
|
T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
|
|
8093
8489
|
discriminator: PropTypes.oneOf(['weee']).isRequired,
|
|
8094
8490
|
label: PropTypes.string.isRequired,
|
|
@@ -8270,6 +8666,14 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
|
|
|
8270
8666
|
T['io.flow.internal.v0.models.paypal_authorization_payload'],
|
|
8271
8667
|
]);
|
|
8272
8668
|
|
|
8669
|
+
T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'] = PropTypes.oneOf(['pending', 'processing', 'processed', 'failed']);
|
|
8670
|
+
|
|
8671
|
+
T['io.flow.internal.v0.models.wash_carrier_actual_file'] = PropTypes.exact({
|
|
8672
|
+
id: PropTypes.string.isRequired,
|
|
8673
|
+
url: PropTypes.string.isRequired,
|
|
8674
|
+
status: T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'].isRequired,
|
|
8675
|
+
});
|
|
8676
|
+
|
|
8273
8677
|
T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
8274
8678
|
id: PropTypes.string.isRequired,
|
|
8275
8679
|
});
|
|
@@ -8317,6 +8721,19 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
8317
8721
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
8318
8722
|
});
|
|
8319
8723
|
|
|
8724
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
|
|
8725
|
+
id: PropTypes.string.isRequired,
|
|
8726
|
+
merchant_guid: PropTypes.string.isRequired,
|
|
8727
|
+
created_at: PropTypes.string.isRequired,
|
|
8728
|
+
});
|
|
8729
|
+
|
|
8730
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'] = PropTypes.exact({
|
|
8731
|
+
discriminator: PropTypes.oneOf(['unassigned_merchant_guid_upserted']).isRequired,
|
|
8732
|
+
event_id: PropTypes.string.isRequired,
|
|
8733
|
+
timestamp: PropTypes.string.isRequired,
|
|
8734
|
+
unassigned_merchant_guid: T['io.flow.internal.v0.models.unassigned_merchant_guid'].isRequired,
|
|
8735
|
+
});
|
|
8736
|
+
|
|
8320
8737
|
T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
|
|
8321
8738
|
|
|
8322
8739
|
T['io.flow.internal.v0.models.tracking_event'] = PropTypes.exact({
|
|
@@ -9053,6 +9470,24 @@ T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropT
|
|
|
9053
9470
|
shopify_markets_shop_statistics: T['io.flow.internal.v0.models.shopify_shop_statistics'].isRequired,
|
|
9054
9471
|
});
|
|
9055
9472
|
|
|
9473
|
+
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
9474
|
+
total_order_count: PropTypes.number.isRequired,
|
|
9475
|
+
});
|
|
9476
|
+
|
|
9477
|
+
T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'] = PropTypes.exact({
|
|
9478
|
+
total_order_count: PropTypes.number.isRequired,
|
|
9479
|
+
});
|
|
9480
|
+
|
|
9481
|
+
T['io.flow.internal.v0.models.shopify_markets_discrepancy'] = PropTypes.exact({
|
|
9482
|
+
organization_id: PropTypes.string.isRequired,
|
|
9483
|
+
count: PropTypes.number.isRequired,
|
|
9484
|
+
});
|
|
9485
|
+
|
|
9486
|
+
T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'] = PropTypes.exact({
|
|
9487
|
+
total_count: PropTypes.number.isRequired,
|
|
9488
|
+
discrepancies: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_markets_discrepancy']).isRequired,
|
|
9489
|
+
});
|
|
9490
|
+
|
|
9056
9491
|
T['io.flow.experience.v0.models.experience_reference'] = PropTypes.exact({
|
|
9057
9492
|
discriminator: PropTypes.oneOf(['experience_reference']).isRequired,
|
|
9058
9493
|
key: PropTypes.string.isRequired,
|
|
@@ -9244,28 +9679,6 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
9244
9679
|
});
|
|
9245
9680
|
|
|
9246
9681
|
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
9682
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
9270
9683
|
|
|
9271
9684
|
T['io.flow.internal.v0.models.restriction_keyword_metadata'] = PropTypes.exact({
|
|
@@ -9291,14 +9704,26 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
9291
9704
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
9292
9705
|
});
|
|
9293
9706
|
|
|
9294
|
-
T['io.flow.internal.v0.enums.
|
|
9295
|
-
T['io.flow.internal.v0.enums.rebound_configuration_status'] = PropTypes.oneOf(['active', 'inactive']);
|
|
9707
|
+
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
9296
9708
|
|
|
9297
|
-
T['io.flow.internal.v0.models.
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9709
|
+
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
9710
|
+
key: PropTypes.string.isRequired,
|
|
9711
|
+
status: T['io.flow.internal.v0.enums.report_status'].isRequired,
|
|
9712
|
+
from: PropTypes.string.isRequired,
|
|
9713
|
+
to: PropTypes.string.isRequired,
|
|
9714
|
+
organization_id: PropTypes.string,
|
|
9715
|
+
sales_url: PropTypes.string,
|
|
9716
|
+
refunds_url: PropTypes.string,
|
|
9717
|
+
});
|
|
9718
|
+
|
|
9719
|
+
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
9720
|
+
T['io.flow.internal.v0.enums.rebound_configuration_status'] = PropTypes.oneOf(['active', 'inactive']);
|
|
9721
|
+
|
|
9722
|
+
T['io.flow.internal.v0.models.rebound_configuration_form'] = PropTypes.exact({
|
|
9723
|
+
login: PropTypes.string.isRequired,
|
|
9724
|
+
api_key: PropTypes.string.isRequired,
|
|
9725
|
+
status: T['io.flow.internal.v0.enums.rebound_configuration_status'].isRequired,
|
|
9726
|
+
orders_since_submitted_at: PropTypes.string,
|
|
9302
9727
|
});
|
|
9303
9728
|
|
|
9304
9729
|
T['io.flow.internal.v0.models.rebound_configuration'] = PropTypes.exact({
|
|
@@ -9365,6 +9790,7 @@ T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'] = PropT
|
|
|
9365
9790
|
T['io.flow.internal.v0.models.rate_level'] = PropTypes.exact({
|
|
9366
9791
|
id: PropTypes.string.isRequired,
|
|
9367
9792
|
name: PropTypes.string.isRequired,
|
|
9793
|
+
key: PropTypes.string.isRequired,
|
|
9368
9794
|
});
|
|
9369
9795
|
|
|
9370
9796
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'] = PropTypes.exact({
|
|
@@ -9467,20 +9893,6 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
|
9467
9893
|
'preferential_rate',
|
|
9468
9894
|
]);
|
|
9469
9895
|
|
|
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
9896
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
9485
9897
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9486
9898
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -9497,12 +9909,6 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
|
9497
9909
|
count: PropTypes.number.isRequired,
|
|
9498
9910
|
});
|
|
9499
9911
|
|
|
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
9912
|
T['io.flow.internal.v0.models.harmonization_column_setting'] = PropTypes.exact({
|
|
9507
9913
|
column: PropTypes.string.isRequired,
|
|
9508
9914
|
position: PropTypes.number.isRequired,
|
|
@@ -9806,17 +10212,17 @@ T['io.flow.session.v0.models.session_format'] = PropTypes.exact({
|
|
|
9806
10212
|
currency: T['io.flow.session.v0.models.session_currency_format'].isRequired,
|
|
9807
10213
|
});
|
|
9808
10214
|
|
|
9809
|
-
T['io.flow.
|
|
10215
|
+
T['io.flow.price.v0.models.currency_format'] = PropTypes.exact({
|
|
9810
10216
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9811
10217
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9812
10218
|
});
|
|
9813
10219
|
|
|
9814
|
-
T['io.flow.experience.v0.models.
|
|
10220
|
+
T['io.flow.experience.v0.models.experience_currency_format_form'] = PropTypes.exact({
|
|
9815
10221
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9816
10222
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9817
10223
|
});
|
|
9818
10224
|
|
|
9819
|
-
T['io.flow.
|
|
10225
|
+
T['io.flow.experience.v0.models.experience_currency_format'] = PropTypes.exact({
|
|
9820
10226
|
symbol: T['io.flow.common.v0.enums.currency_symbol_format'].isRequired,
|
|
9821
10227
|
label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
|
|
9822
10228
|
});
|
|
@@ -9943,6 +10349,20 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
|
|
|
9943
10349
|
|
|
9944
10350
|
T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
9945
10351
|
|
|
10352
|
+
T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
|
|
10353
|
+
id: PropTypes.string.isRequired,
|
|
10354
|
+
deactivate_at: PropTypes.string.isRequired,
|
|
10355
|
+
created_at: PropTypes.string.isRequired,
|
|
10356
|
+
});
|
|
10357
|
+
|
|
10358
|
+
T['io.flow.internal.v0.models.organization_deactivation_upserted'] = PropTypes.exact({
|
|
10359
|
+
discriminator: PropTypes.oneOf(['organization_deactivation_upserted']).isRequired,
|
|
10360
|
+
event_id: PropTypes.string.isRequired,
|
|
10361
|
+
timestamp: PropTypes.string.isRequired,
|
|
10362
|
+
organization: PropTypes.string.isRequired,
|
|
10363
|
+
organization_deactivation: T['io.flow.internal.v0.models.organization_deactivation'].isRequired,
|
|
10364
|
+
});
|
|
10365
|
+
|
|
9946
10366
|
T['io.flow.internal.v0.models.organization_business_entity'] = PropTypes.exact({
|
|
9947
10367
|
id: PropTypes.string.isRequired,
|
|
9948
10368
|
name: PropTypes.string.isRequired,
|
|
@@ -9988,6 +10408,8 @@ T['io.flow.internal.v0.models.organization_bank_account_upserted'] = PropTypes.e
|
|
|
9988
10408
|
organization_bank_account: T['io.flow.billing.v0.models.organization_bank_account'].isRequired,
|
|
9989
10409
|
});
|
|
9990
10410
|
|
|
10411
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
|
|
10412
|
+
|
|
9991
10413
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
9992
10414
|
id: PropTypes.string.isRequired,
|
|
9993
10415
|
number: PropTypes.string.isRequired,
|
|
@@ -10107,6 +10529,83 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
10107
10529
|
});
|
|
10108
10530
|
|
|
10109
10531
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
10532
|
+
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
10533
|
+
|
|
10534
|
+
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
10535
|
+
domain: PropTypes.string.isRequired,
|
|
10536
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10537
|
+
});
|
|
10538
|
+
|
|
10539
|
+
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
10540
|
+
id: PropTypes.string.isRequired,
|
|
10541
|
+
domain: PropTypes.string.isRequired,
|
|
10542
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10543
|
+
});
|
|
10544
|
+
|
|
10545
|
+
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
10546
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
10547
|
+
});
|
|
10548
|
+
|
|
10549
|
+
T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
10550
|
+
'billing',
|
|
10551
|
+
'b2b_invoicing',
|
|
10552
|
+
'catalog',
|
|
10553
|
+
'currency',
|
|
10554
|
+
'checkout',
|
|
10555
|
+
'fraud',
|
|
10556
|
+
'logistics',
|
|
10557
|
+
'payments',
|
|
10558
|
+
'shopify_markets',
|
|
10559
|
+
'integration_partner',
|
|
10560
|
+
'dtce',
|
|
10561
|
+
'restrictions',
|
|
10562
|
+
'organization_status',
|
|
10563
|
+
'miscellaneous',
|
|
10564
|
+
]);
|
|
10565
|
+
|
|
10566
|
+
T['io.flow.internal.v0.enums.onboarding_audit_result'] = PropTypes.oneOf(['pass', 'warning', 'fail']);
|
|
10567
|
+
T['io.flow.internal.v0.enums.onboarding_audit_message_level'] = PropTypes.oneOf(['info', 'warning', 'error']);
|
|
10568
|
+
|
|
10569
|
+
T['io.flow.internal.v0.models.onboarding_audit_message'] = PropTypes.exact({
|
|
10570
|
+
message: PropTypes.string.isRequired,
|
|
10571
|
+
level: T['io.flow.internal.v0.enums.onboarding_audit_message_level'].isRequired,
|
|
10572
|
+
});
|
|
10573
|
+
|
|
10574
|
+
T['io.flow.internal.v0.models.onboarding_audit_report_line'] = PropTypes.exact({
|
|
10575
|
+
description: PropTypes.string.isRequired,
|
|
10576
|
+
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10577
|
+
messages: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_message']).isRequired,
|
|
10578
|
+
execution_time_ms: PropTypes.number,
|
|
10579
|
+
});
|
|
10580
|
+
|
|
10581
|
+
T['io.flow.internal.v0.models.onboarding_audit_theme_report'] = PropTypes.exact({
|
|
10582
|
+
name: PropTypes.string.isRequired,
|
|
10583
|
+
key: T['io.flow.internal.v0.enums.onboarding_audit_theme_key'].isRequired,
|
|
10584
|
+
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10585
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_report_line']).isRequired,
|
|
10586
|
+
});
|
|
10587
|
+
|
|
10588
|
+
T['io.flow.internal.v0.models.decision'] = PropTypes.exact({
|
|
10589
|
+
id: PropTypes.string.isRequired,
|
|
10590
|
+
status: PropTypes.string.isRequired,
|
|
10591
|
+
old_status: PropTypes.string.isRequired,
|
|
10592
|
+
description: PropTypes.string.isRequired,
|
|
10593
|
+
category: PropTypes.string,
|
|
10594
|
+
shop_url: PropTypes.string,
|
|
10595
|
+
});
|
|
10596
|
+
|
|
10597
|
+
T['io.flow.internal.v0.models.notification'] = PropTypes.exact({
|
|
10598
|
+
order: T['io.flow.internal.v0.models.decision'].isRequired,
|
|
10599
|
+
});
|
|
10600
|
+
|
|
10601
|
+
T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
10602
|
+
id: PropTypes.string.isRequired,
|
|
10603
|
+
});
|
|
10604
|
+
|
|
10605
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
|
|
10606
|
+
discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
|
|
10607
|
+
reason: PropTypes.string.isRequired,
|
|
10608
|
+
});
|
|
10110
10609
|
|
|
10111
10610
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
10112
10611
|
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
@@ -10149,6 +10648,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
|
|
|
10149
10648
|
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'],
|
|
10150
10649
|
T['io.flow.organization.onboarding.state.v0.models.setup_completed'],
|
|
10151
10650
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'],
|
|
10651
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'],
|
|
10152
10652
|
]);
|
|
10153
10653
|
|
|
10154
10654
|
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
|
|
@@ -10162,49 +10662,13 @@ T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
|
10162
10662
|
transitioned_at: PropTypes.string,
|
|
10163
10663
|
});
|
|
10164
10664
|
|
|
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
10665
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
10202
10666
|
age: PropTypes.number.isRequired,
|
|
10203
10667
|
compliance_approved: PropTypes.bool.isRequired,
|
|
10204
10668
|
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
10205
10669
|
application_received: PropTypes.string.isRequired,
|
|
10206
10670
|
legal_name: PropTypes.string.isRequired,
|
|
10207
|
-
shop_name: PropTypes.string
|
|
10671
|
+
shop_name: PropTypes.string,
|
|
10208
10672
|
organization_id: PropTypes.string.isRequired,
|
|
10209
10673
|
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10210
10674
|
setup_completed_at: PropTypes.string,
|
|
@@ -10215,37 +10679,25 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
10215
10679
|
blocked_since: PropTypes.string,
|
|
10216
10680
|
});
|
|
10217
10681
|
|
|
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,
|
|
10682
|
+
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
10683
|
+
organization_id: PropTypes.string.isRequired,
|
|
10684
|
+
shop_name: PropTypes.string,
|
|
10685
|
+
legal_name: PropTypes.string.isRequired,
|
|
10686
|
+
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10236
10687
|
});
|
|
10237
10688
|
|
|
10238
|
-
T['io.flow.internal.v0.models.
|
|
10689
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
10239
10690
|
id: PropTypes.string.isRequired,
|
|
10240
|
-
|
|
10241
|
-
|
|
10242
|
-
description: PropTypes.string.isRequired,
|
|
10243
|
-
category: PropTypes.string,
|
|
10244
|
-
shop_url: PropTypes.string,
|
|
10691
|
+
merchant_guid: PropTypes.string.isRequired,
|
|
10692
|
+
created_at: PropTypes.string.isRequired,
|
|
10245
10693
|
});
|
|
10246
10694
|
|
|
10247
|
-
T['io.flow.internal.v0.models.
|
|
10248
|
-
|
|
10695
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'] = PropTypes.exact({
|
|
10696
|
+
discriminator: PropTypes.oneOf(['merchant_guid_assignment_upserted']).isRequired,
|
|
10697
|
+
event_id: PropTypes.string.isRequired,
|
|
10698
|
+
timestamp: PropTypes.string.isRequired,
|
|
10699
|
+
organization: PropTypes.string.isRequired,
|
|
10700
|
+
merchant_guid_assignment: T['io.flow.internal.v0.models.merchant_guid_assignment'].isRequired,
|
|
10249
10701
|
});
|
|
10250
10702
|
|
|
10251
10703
|
T['io.flow.common.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
@@ -10256,6 +10708,13 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'] = P
|
|
|
10256
10708
|
status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
10257
10709
|
});
|
|
10258
10710
|
|
|
10711
|
+
T['io.flow.internal.v0.models.organizations_audit_check_report'] = PropTypes.exact({
|
|
10712
|
+
organization_id: PropTypes.string.isRequired,
|
|
10713
|
+
organization_status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
10714
|
+
onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10715
|
+
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
10716
|
+
});
|
|
10717
|
+
|
|
10259
10718
|
T['io.flow.internal.v0.models.organization_status_change'] = PropTypes.exact({
|
|
10260
10719
|
id: PropTypes.string.isRequired,
|
|
10261
10720
|
previous_status: T['io.flow.common.v0.enums.organization_status'],
|
|
@@ -10379,6 +10838,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
|
|
|
10379
10838
|
carrier_identifier: PropTypes.string,
|
|
10380
10839
|
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10381
10840
|
discounted_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10841
|
+
discount_allocations: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_discount_allocation']),
|
|
10382
10842
|
});
|
|
10383
10843
|
|
|
10384
10844
|
T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
|
|
@@ -10387,7 +10847,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
|
|
|
10387
10847
|
grams: PropTypes.number,
|
|
10388
10848
|
id: PropTypes.number.isRequired,
|
|
10389
10849
|
price: PropTypes.string,
|
|
10390
|
-
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
10850
|
+
price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'].isRequired,
|
|
10391
10851
|
product_id: PropTypes.number,
|
|
10392
10852
|
quantity: PropTypes.number.isRequired,
|
|
10393
10853
|
requires_shipping: PropTypes.bool.isRequired,
|
|
@@ -10396,7 +10856,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact
|
|
|
10396
10856
|
variant_id: PropTypes.number,
|
|
10397
10857
|
variant_title: PropTypes.string,
|
|
10398
10858
|
vendor: PropTypes.string,
|
|
10399
|
-
name: PropTypes.string,
|
|
10859
|
+
name: PropTypes.string.isRequired,
|
|
10400
10860
|
gift_card: PropTypes.bool.isRequired,
|
|
10401
10861
|
properties: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_property']).isRequired,
|
|
10402
10862
|
taxable: PropTypes.bool.isRequired,
|
|
@@ -10485,13 +10945,14 @@ T['io.flow.shopify.markets.v0.models.shopify_order_address'] = PropTypes.exact({
|
|
|
10485
10945
|
zip: PropTypes.string,
|
|
10486
10946
|
});
|
|
10487
10947
|
|
|
10488
|
-
T['io.flow.shopify.markets.v0.models.
|
|
10948
|
+
T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
10489
10949
|
id: PropTypes.number.isRequired,
|
|
10490
|
-
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address']
|
|
10950
|
+
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10951
|
+
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
|
|
10491
10952
|
});
|
|
10492
10953
|
|
|
10493
|
-
T['io.flow.shopify.markets.v0.models.
|
|
10494
|
-
order: T['io.flow.shopify.markets.v0.models.
|
|
10954
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
10955
|
+
order: T['io.flow.shopify.markets.v0.models.shopify_update_order'].isRequired,
|
|
10495
10956
|
});
|
|
10496
10957
|
|
|
10497
10958
|
T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact({
|
|
@@ -10614,6 +11075,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
10614
11075
|
send_receipt: PropTypes.bool,
|
|
10615
11076
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
|
|
10616
11077
|
merchant_of_record_app_id: PropTypes.number,
|
|
11078
|
+
total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
10617
11079
|
});
|
|
10618
11080
|
|
|
10619
11081
|
T['io.flow.shopify.markets.v0.models.shopify_orders_wrapper'] = PropTypes.exact({
|
|
@@ -10933,40 +11395,40 @@ T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
|
|
|
10933
11395
|
ends_at: PropTypes.string,
|
|
10934
11396
|
});
|
|
10935
11397
|
|
|
10936
|
-
T['io.flow.
|
|
10937
|
-
sku: PropTypes.string.isRequired,
|
|
11398
|
+
T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
|
|
10938
11399
|
price_book_key: PropTypes.string.isRequired,
|
|
10939
|
-
|
|
10940
|
-
item_name: PropTypes.string.isRequired,
|
|
11400
|
+
item_query: PropTypes.string.isRequired,
|
|
10941
11401
|
amount: PropTypes.number.isRequired,
|
|
11402
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10942
11403
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
10943
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10944
11404
|
});
|
|
10945
11405
|
|
|
10946
|
-
T['io.flow.
|
|
10947
|
-
item_number: PropTypes.string.isRequired,
|
|
11406
|
+
T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
|
|
10948
11407
|
price_book_key: PropTypes.string.isRequired,
|
|
10949
|
-
|
|
10950
|
-
item_name: PropTypes.string.isRequired,
|
|
11408
|
+
item_number: PropTypes.string.isRequired,
|
|
10951
11409
|
amount: PropTypes.number.isRequired,
|
|
11410
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10952
11411
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
10953
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10954
11412
|
});
|
|
10955
11413
|
|
|
10956
|
-
T['io.flow.
|
|
11414
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
|
|
11415
|
+
sku: PropTypes.string.isRequired,
|
|
10957
11416
|
price_book_key: PropTypes.string.isRequired,
|
|
10958
|
-
|
|
11417
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
11418
|
+
item_name: PropTypes.string.isRequired,
|
|
10959
11419
|
amount: PropTypes.number.isRequired,
|
|
10960
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10961
11420
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
11421
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10962
11422
|
});
|
|
10963
11423
|
|
|
10964
|
-
T['io.flow.
|
|
10965
|
-
price_book_key: PropTypes.string.isRequired,
|
|
11424
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
|
|
10966
11425
|
item_number: PropTypes.string.isRequired,
|
|
11426
|
+
price_book_key: PropTypes.string.isRequired,
|
|
11427
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
11428
|
+
item_name: PropTypes.string.isRequired,
|
|
10967
11429
|
amount: PropTypes.number.isRequired,
|
|
10968
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
10969
11430
|
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
11431
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
10970
11432
|
});
|
|
10971
11433
|
|
|
10972
11434
|
T['io.flow.internal.v0.enums.content_status'] = PropTypes.oneOf(['draft', 'live', 'archived']);
|
|
@@ -11114,6 +11576,11 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
|
|
|
11114
11576
|
code: PropTypes.string.isRequired,
|
|
11115
11577
|
});
|
|
11116
11578
|
|
|
11579
|
+
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
11580
|
+
amount: PropTypes.number.isRequired,
|
|
11581
|
+
description: PropTypes.string,
|
|
11582
|
+
});
|
|
11583
|
+
|
|
11117
11584
|
T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'] = PropTypes.exact({
|
|
11118
11585
|
id: PropTypes.string.isRequired,
|
|
11119
11586
|
});
|
|
@@ -11147,6 +11614,7 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
11147
11614
|
label: T['io.flow.label.v0.models.label_reference'],
|
|
11148
11615
|
in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
|
|
11149
11616
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
11617
|
+
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
11150
11618
|
});
|
|
11151
11619
|
|
|
11152
11620
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -11186,6 +11654,21 @@ T['io.flow.internal.v0.models.taxonomy_category'] = PropTypes.exact({
|
|
|
11186
11654
|
children: PropTypes.arrayOf(T['io.flow.internal.v0.unions.classification_taxonomy']).isRequired,
|
|
11187
11655
|
});
|
|
11188
11656
|
|
|
11657
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
11658
|
+
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
11659
|
+
fee: PropTypes.number.isRequired,
|
|
11660
|
+
});
|
|
11661
|
+
|
|
11662
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
11663
|
+
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
11664
|
+
percentage: PropTypes.number.isRequired,
|
|
11665
|
+
});
|
|
11666
|
+
|
|
11667
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
11668
|
+
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
11669
|
+
placeholder: PropTypes.string,
|
|
11670
|
+
});
|
|
11671
|
+
|
|
11189
11672
|
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
11190
11673
|
id: PropTypes.string.isRequired,
|
|
11191
11674
|
name: PropTypes.string.isRequired,
|
|
@@ -11216,12 +11699,85 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
11216
11699
|
|
|
11217
11700
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
11218
11701
|
|
|
11219
|
-
T['io.flow.internal.v0.
|
|
11220
|
-
|
|
11221
|
-
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
|
|
11702
|
+
T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
|
|
11703
|
+
'merchant',
|
|
11704
|
+
'merchant_integration',
|
|
11705
|
+
'shopify_integration',
|
|
11706
|
+
'globale_cx',
|
|
11707
|
+
'globale_system',
|
|
11708
|
+
]);
|
|
11709
|
+
|
|
11710
|
+
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
11711
|
+
weight: PropTypes.number.isRequired,
|
|
11712
|
+
length: PropTypes.number.isRequired,
|
|
11713
|
+
width: PropTypes.number.isRequired,
|
|
11714
|
+
height: PropTypes.number.isRequired,
|
|
11715
|
+
});
|
|
11716
|
+
|
|
11717
|
+
T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
|
|
11718
|
+
weight: PropTypes.number.isRequired,
|
|
11719
|
+
});
|
|
11720
|
+
|
|
11721
|
+
T['io.flow.internal.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
|
|
11722
|
+
|
|
11723
|
+
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
11724
|
+
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
11725
|
+
name: PropTypes.string.isRequired,
|
|
11726
|
+
});
|
|
11727
|
+
|
|
11728
|
+
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
11729
|
+
selected: T['io.flow.internal.v0.enums.weight_selection'].isRequired,
|
|
11730
|
+
dead: T['io.flow.internal.v0.models.weights_dead'],
|
|
11731
|
+
dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
|
|
11732
|
+
});
|
|
11733
|
+
|
|
11734
|
+
T['io.flow.internal.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
11735
|
+
id: PropTypes.string.isRequired,
|
|
11736
|
+
proposition: T['io.flow.internal.v0.models.metadata_proposition'].isRequired,
|
|
11737
|
+
});
|
|
11738
|
+
|
|
11739
|
+
T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
11740
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_flat'],
|
|
11741
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_percentage'],
|
|
11742
|
+
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
11743
|
+
]);
|
|
11744
|
+
|
|
11745
|
+
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']);
|
|
11746
|
+
|
|
11747
|
+
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
11748
|
+
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
11749
|
+
weights: T['io.flow.internal.v0.models.metadata_weights'].isRequired,
|
|
11750
|
+
});
|
|
11751
|
+
|
|
11752
|
+
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
11753
|
+
country: PropTypes.string.isRequired,
|
|
11754
|
+
});
|
|
11755
|
+
|
|
11756
|
+
T['io.flow.internal.v0.models.label_surcharge'] = PropTypes.exact({
|
|
11757
|
+
amount: PropTypes.number.isRequired,
|
|
11758
|
+
type: T['io.flow.internal.v0.enums.true_up_surcharge_type'].isRequired,
|
|
11759
|
+
detail: T['io.flow.internal.v0.unions.label_surcharge_detail'].isRequired,
|
|
11760
|
+
});
|
|
11761
|
+
|
|
11762
|
+
T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
|
|
11763
|
+
amount: PropTypes.number.isRequired,
|
|
11764
|
+
weight: PropTypes.number.isRequired,
|
|
11765
|
+
});
|
|
11766
|
+
|
|
11767
|
+
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
11768
|
+
id: PropTypes.string.isRequired,
|
|
11769
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
11770
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
11771
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
11772
|
+
created_at: PropTypes.string.isRequired,
|
|
11773
|
+
});
|
|
11774
|
+
|
|
11775
|
+
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
11776
|
+
id: PropTypes.string.isRequired,
|
|
11777
|
+
item_identifier: PropTypes.string,
|
|
11778
|
+
auto_generate_query: PropTypes.string,
|
|
11779
|
+
commercial_invoice_only_query: PropTypes.string,
|
|
11780
|
+
});
|
|
11225
11781
|
|
|
11226
11782
|
T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.exact({
|
|
11227
11783
|
discriminator: PropTypes.oneOf(['label_generation_settings_upserted']).isRequired,
|
|
@@ -11736,6 +12292,20 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
|
|
|
11736
12292
|
afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
|
|
11737
12293
|
});
|
|
11738
12294
|
|
|
12295
|
+
T['io.flow.internal.v0.models.algolia_index_assignment'] = PropTypes.exact({
|
|
12296
|
+
id: PropTypes.string.isRequired,
|
|
12297
|
+
name: PropTypes.string.isRequired,
|
|
12298
|
+
application_id: PropTypes.string.isRequired,
|
|
12299
|
+
});
|
|
12300
|
+
|
|
12301
|
+
T['io.flow.internal.v0.models.index_assignment_upserted'] = PropTypes.exact({
|
|
12302
|
+
discriminator: PropTypes.oneOf(['index_assignment_upserted']).isRequired,
|
|
12303
|
+
event_id: PropTypes.string.isRequired,
|
|
12304
|
+
timestamp: PropTypes.string.isRequired,
|
|
12305
|
+
organization: PropTypes.string.isRequired,
|
|
12306
|
+
assignment: T['io.flow.internal.v0.models.algolia_index_assignment'].isRequired,
|
|
12307
|
+
});
|
|
12308
|
+
|
|
11739
12309
|
T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'] = PropTypes.exact({
|
|
11740
12310
|
id: PropTypes.string.isRequired,
|
|
11741
12311
|
import_id: PropTypes.string.isRequired,
|
|
@@ -11925,6 +12495,8 @@ T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.ex
|
|
|
11925
12495
|
quantity: PropTypes.number.isRequired,
|
|
11926
12496
|
});
|
|
11927
12497
|
|
|
12498
|
+
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
12499
|
+
|
|
11928
12500
|
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
11929
12501
|
item_number: PropTypes.string.isRequired,
|
|
11930
12502
|
line_number: PropTypes.number.isRequired,
|
|
@@ -11970,6 +12542,192 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
11970
12542
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
11971
12543
|
});
|
|
11972
12544
|
|
|
12545
|
+
T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
|
|
12546
|
+
labels: PropTypes.number.isRequired,
|
|
12547
|
+
total: PropTypes.number.isRequired,
|
|
12548
|
+
});
|
|
12549
|
+
|
|
12550
|
+
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
12551
|
+
duty_guarantee: PropTypes.number.isRequired,
|
|
12552
|
+
mor: PropTypes.number.isRequired,
|
|
12553
|
+
fraud: PropTypes.number.isRequired,
|
|
12554
|
+
fx: PropTypes.number.isRequired,
|
|
12555
|
+
processing: PropTypes.number.isRequired,
|
|
12556
|
+
rate_lock: PropTypes.number.isRequired,
|
|
12557
|
+
transfer: PropTypes.number.isRequired,
|
|
12558
|
+
total: PropTypes.number.isRequired,
|
|
12559
|
+
});
|
|
12560
|
+
|
|
12561
|
+
T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
12562
|
+
fuel: PropTypes.number.isRequired,
|
|
12563
|
+
remote_area: PropTypes.number.isRequired,
|
|
12564
|
+
oversize: PropTypes.number.isRequired,
|
|
12565
|
+
ccf: PropTypes.number.isRequired,
|
|
12566
|
+
total: PropTypes.number.isRequired,
|
|
12567
|
+
});
|
|
12568
|
+
|
|
12569
|
+
T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
|
|
12570
|
+
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
12571
|
+
shipping: PropTypes.number.isRequired,
|
|
12572
|
+
tax: PropTypes.number.isRequired,
|
|
12573
|
+
duty: PropTypes.number.isRequired,
|
|
12574
|
+
total: PropTypes.number.isRequired,
|
|
12575
|
+
});
|
|
12576
|
+
|
|
12577
|
+
T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact({
|
|
12578
|
+
tax: PropTypes.number.isRequired,
|
|
12579
|
+
duty: PropTypes.number.isRequired,
|
|
12580
|
+
});
|
|
12581
|
+
|
|
12582
|
+
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
12583
|
+
number: PropTypes.string.isRequired,
|
|
12584
|
+
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
12585
|
+
});
|
|
12586
|
+
|
|
12587
|
+
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
12588
|
+
vat_registration_number: PropTypes.string.isRequired,
|
|
12589
|
+
});
|
|
12590
|
+
|
|
12591
|
+
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
12592
|
+
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
12593
|
+
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
12594
|
+
charges: T['io.flow.internal.v0.models.merchant_charges'].isRequired,
|
|
12595
|
+
discounts: PropTypes.number.isRequired,
|
|
12596
|
+
});
|
|
12597
|
+
|
|
12598
|
+
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
12599
|
+
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
12600
|
+
});
|
|
12601
|
+
|
|
12602
|
+
T['io.flow.internal.v0.models.fulfillment_shipping'] = PropTypes.exact({
|
|
12603
|
+
price: PropTypes.number.isRequired,
|
|
12604
|
+
discount: PropTypes.number.isRequired,
|
|
12605
|
+
tax: PropTypes.number.isRequired,
|
|
12606
|
+
duty: PropTypes.number.isRequired,
|
|
12607
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
12608
|
+
});
|
|
12609
|
+
|
|
12610
|
+
T['io.flow.internal.v0.models.fulfillment_line'] = PropTypes.exact({
|
|
12611
|
+
item: T['io.flow.internal.v0.models.item_summary'].isRequired,
|
|
12612
|
+
quantity: PropTypes.number.isRequired,
|
|
12613
|
+
unit_price: PropTypes.number.isRequired,
|
|
12614
|
+
price: PropTypes.number.isRequired,
|
|
12615
|
+
discount: PropTypes.number.isRequired,
|
|
12616
|
+
tax: PropTypes.number.isRequired,
|
|
12617
|
+
duty: PropTypes.number.isRequired,
|
|
12618
|
+
subsidies: T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'].isRequired,
|
|
12619
|
+
});
|
|
12620
|
+
|
|
12621
|
+
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
12622
|
+
country: PropTypes.string.isRequired,
|
|
12623
|
+
province_code: PropTypes.string,
|
|
12624
|
+
});
|
|
12625
|
+
|
|
12626
|
+
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
12627
|
+
'millimeter',
|
|
12628
|
+
'centimeter',
|
|
12629
|
+
'inch',
|
|
12630
|
+
'foot',
|
|
12631
|
+
'cubic_inch',
|
|
12632
|
+
'cubic_meter',
|
|
12633
|
+
'gram',
|
|
12634
|
+
'kilogram',
|
|
12635
|
+
'meter',
|
|
12636
|
+
'ounce',
|
|
12637
|
+
'pound',
|
|
12638
|
+
]);
|
|
12639
|
+
|
|
12640
|
+
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
12641
|
+
value: PropTypes.string.isRequired,
|
|
12642
|
+
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
12643
|
+
});
|
|
12644
|
+
|
|
12645
|
+
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
12646
|
+
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12647
|
+
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12648
|
+
});
|
|
12649
|
+
|
|
12650
|
+
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
12651
|
+
depth: T['io.flow.common.v0.models.measurement'],
|
|
12652
|
+
diameter: T['io.flow.common.v0.models.measurement'],
|
|
12653
|
+
length: T['io.flow.common.v0.models.measurement'],
|
|
12654
|
+
weight: T['io.flow.common.v0.models.measurement'],
|
|
12655
|
+
width: T['io.flow.common.v0.models.measurement'],
|
|
12656
|
+
});
|
|
12657
|
+
|
|
12658
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
12659
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
12660
|
+
});
|
|
12661
|
+
|
|
12662
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
12663
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
12664
|
+
});
|
|
12665
|
+
|
|
12666
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
12667
|
+
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
12668
|
+
fulfillment_key: PropTypes.string.isRequired,
|
|
12669
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
12670
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
12671
|
+
service: PropTypes.string,
|
|
12672
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
12673
|
+
});
|
|
12674
|
+
|
|
12675
|
+
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
12676
|
+
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12677
|
+
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12678
|
+
weight: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12679
|
+
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
12680
|
+
});
|
|
12681
|
+
|
|
12682
|
+
T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
|
|
12683
|
+
q: PropTypes.string.isRequired,
|
|
12684
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12685
|
+
position: PropTypes.number,
|
|
12686
|
+
});
|
|
12687
|
+
|
|
12688
|
+
T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
12689
|
+
id: PropTypes.string.isRequired,
|
|
12690
|
+
q: PropTypes.string.isRequired,
|
|
12691
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12692
|
+
position: PropTypes.number.isRequired,
|
|
12693
|
+
});
|
|
12694
|
+
|
|
12695
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
12696
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
|
|
12697
|
+
event_id: PropTypes.string.isRequired,
|
|
12698
|
+
timestamp: PropTypes.string.isRequired,
|
|
12699
|
+
organization: PropTypes.string.isRequired,
|
|
12700
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
12701
|
+
});
|
|
12702
|
+
|
|
12703
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
|
|
12704
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
|
|
12705
|
+
event_id: PropTypes.string.isRequired,
|
|
12706
|
+
timestamp: PropTypes.string.isRequired,
|
|
12707
|
+
organization: PropTypes.string.isRequired,
|
|
12708
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
12709
|
+
});
|
|
12710
|
+
|
|
12711
|
+
T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
12712
|
+
id: PropTypes.string.isRequired,
|
|
12713
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
12714
|
+
q: PropTypes.string.isRequired,
|
|
12715
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
12716
|
+
});
|
|
12717
|
+
|
|
12718
|
+
T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
|
|
12719
|
+
discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
|
|
12720
|
+
event_id: PropTypes.string.isRequired,
|
|
12721
|
+
timestamp: PropTypes.string.isRequired,
|
|
12722
|
+
organization: PropTypes.string.isRequired,
|
|
12723
|
+
estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
|
|
12724
|
+
});
|
|
12725
|
+
|
|
12726
|
+
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
12727
|
+
weight: PropTypes.number.isRequired,
|
|
12728
|
+
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
12729
|
+
});
|
|
12730
|
+
|
|
11973
12731
|
T['io.flow.internal.v0.enums.ftp_intent'] = PropTypes.oneOf([
|
|
11974
12732
|
'orders_from_flow',
|
|
11975
12733
|
'pricebooks_from_flow',
|
|
@@ -12358,12 +13116,14 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'] = PropT
|
|
|
12358
13116
|
carrier_id: PropTypes.string,
|
|
12359
13117
|
service_id: PropTypes.string,
|
|
12360
13118
|
carrier_tracking_number: PropTypes.string,
|
|
13119
|
+
fulfilled_via_replacement_order: PropTypes.bool,
|
|
12361
13120
|
});
|
|
12362
13121
|
|
|
12363
13122
|
T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.exact({
|
|
12364
13123
|
carrier_id: PropTypes.string,
|
|
12365
13124
|
service_id: PropTypes.string,
|
|
12366
13125
|
carrier_tracking_number: PropTypes.string,
|
|
13126
|
+
fulfilled_via_replacement_order: PropTypes.bool,
|
|
12367
13127
|
});
|
|
12368
13128
|
|
|
12369
13129
|
T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
@@ -12733,13 +13493,19 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
|
12733
13493
|
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12734
13494
|
});
|
|
12735
13495
|
|
|
12736
|
-
T['io.flow.internal.v0.models.
|
|
13496
|
+
T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
|
|
12737
13497
|
name: PropTypes.string.isRequired,
|
|
13498
|
+
url: PropTypes.string.isRequired,
|
|
12738
13499
|
created_at: PropTypes.string.isRequired,
|
|
12739
13500
|
errors: PropTypes.arrayOf(PropTypes.string),
|
|
12740
13501
|
processed_at: PropTypes.string,
|
|
12741
13502
|
});
|
|
12742
13503
|
|
|
13504
|
+
T['io.flow.internal.v0.models.erp_vendor_status_flow_file'] = PropTypes.exact({
|
|
13505
|
+
url: PropTypes.string.isRequired,
|
|
13506
|
+
created_at: PropTypes.string.isRequired,
|
|
13507
|
+
});
|
|
13508
|
+
|
|
12743
13509
|
T['io.flow.internal.v0.models.entity_reference'] = PropTypes.exact({
|
|
12744
13510
|
id: PropTypes.string.isRequired,
|
|
12745
13511
|
});
|
|
@@ -12751,10 +13517,17 @@ T['io.flow.internal.v0.models.erp_vendor_status_entity'] = PropTypes.exact({
|
|
|
12751
13517
|
|
|
12752
13518
|
T['io.flow.internal.v0.models.erp_vendor_status'] = PropTypes.exact({
|
|
12753
13519
|
entities: PropTypes.arrayOf(T['io.flow.internal.v0.models.erp_vendor_status_entity']).isRequired,
|
|
12754
|
-
|
|
13520
|
+
latest_flow_file: T['io.flow.internal.v0.models.erp_vendor_status_flow_file'],
|
|
13521
|
+
latest_priority_file: T['io.flow.internal.v0.models.erp_vendor_status_priority_file'],
|
|
13522
|
+
});
|
|
13523
|
+
|
|
13524
|
+
T['io.flow.internal.v0.models.company_reference'] = PropTypes.exact({
|
|
13525
|
+
id: PropTypes.string.isRequired,
|
|
12755
13526
|
});
|
|
12756
13527
|
|
|
12757
13528
|
T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
|
|
13529
|
+
company: T['io.flow.internal.v0.models.company_reference'].isRequired,
|
|
13530
|
+
entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
|
|
12758
13531
|
acc_des: PropTypes.string.isRequired,
|
|
12759
13532
|
country_name: PropTypes.string.isRequired,
|
|
12760
13533
|
acng_code: PropTypes.string.isRequired,
|
|
@@ -12766,7 +13539,6 @@ T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
|
|
|
12766
13539
|
state_a: PropTypes.string.isRequired,
|
|
12767
13540
|
bank_code: PropTypes.string.isRequired,
|
|
12768
13541
|
id: PropTypes.string.isRequired,
|
|
12769
|
-
entity: T['io.flow.internal.v0.models.entity_reference'].isRequired,
|
|
12770
13542
|
tax_code: PropTypes.string,
|
|
12771
13543
|
vat_flag: PropTypes.string,
|
|
12772
13544
|
w_tax_percent: PropTypes.string,
|
|
@@ -12801,6 +13573,7 @@ T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
|
|
|
12801
13573
|
|
|
12802
13574
|
T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
|
|
12803
13575
|
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
13576
|
+
name: PropTypes.string.isRequired,
|
|
12804
13577
|
url: PropTypes.string.isRequired,
|
|
12805
13578
|
});
|
|
12806
13579
|
|
|
@@ -13104,11 +13877,12 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
13104
13877
|
});
|
|
13105
13878
|
|
|
13106
13879
|
T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
|
|
13107
|
-
'
|
|
13108
|
-
'suspicious_past_activity',
|
|
13109
|
-
'risky_velocity',
|
|
13880
|
+
'merchant_policy',
|
|
13110
13881
|
'previous_chargebacks',
|
|
13111
13882
|
'restricted_party_screening',
|
|
13883
|
+
'risky_velocity',
|
|
13884
|
+
'suspicious_behavior',
|
|
13885
|
+
'suspicious_past_activity',
|
|
13112
13886
|
]);
|
|
13113
13887
|
|
|
13114
13888
|
T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
|
|
@@ -13138,6 +13912,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
13138
13912
|
refund_id: PropTypes.string,
|
|
13139
13913
|
order_identifier: T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'],
|
|
13140
13914
|
authorization_id: PropTypes.string,
|
|
13915
|
+
posting_proof_id: PropTypes.string,
|
|
13916
|
+
label_tracking_summary_id: PropTypes.string,
|
|
13141
13917
|
});
|
|
13142
13918
|
|
|
13143
13919
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -13187,6 +13963,11 @@ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.e
|
|
|
13187
13963
|
id: PropTypes.string.isRequired,
|
|
13188
13964
|
});
|
|
13189
13965
|
|
|
13966
|
+
T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
13967
|
+
sales_records: PropTypes.arrayOf(PropTypes.object),
|
|
13968
|
+
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
13969
|
+
});
|
|
13970
|
+
|
|
13190
13971
|
T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
|
|
13191
13972
|
id: PropTypes.string.isRequired,
|
|
13192
13973
|
type: PropTypes.string.isRequired,
|
|
@@ -13218,9 +13999,18 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13218
13999
|
'adjustment_transactions_count',
|
|
13219
14000
|
'adjustment_transactions_total',
|
|
13220
14001
|
'capture_transactions_count',
|
|
14002
|
+
'capture_transactions_ignored_fraud_count',
|
|
14003
|
+
'capture_transactions_ignored_fully_refunded_count',
|
|
14004
|
+
'capture_transactions_ignored_other_count',
|
|
13221
14005
|
'capture_transactions_total',
|
|
13222
|
-
'
|
|
13223
|
-
'
|
|
14006
|
+
'channel_transactions_capture_count',
|
|
14007
|
+
'channel_transactions_capture_total',
|
|
14008
|
+
'channel_transactions_adjustment_count',
|
|
14009
|
+
'channel_transactions_adjustment_total',
|
|
14010
|
+
'channel_transactions_reversal_count',
|
|
14011
|
+
'channel_transactions_reversal_total',
|
|
14012
|
+
'channel_transactions_other_count',
|
|
14013
|
+
'channel_transactions_other_total',
|
|
13224
14014
|
'channel_billed_transactions_count',
|
|
13225
14015
|
'channel_billed_transactions_total',
|
|
13226
14016
|
'credit_payment_transactions_count',
|
|
@@ -13230,14 +14020,19 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13230
14020
|
'fully_subsidized_order_transactions_count',
|
|
13231
14021
|
'fully_subsidized_order_transactions_total',
|
|
13232
14022
|
'billable_label_transactions_count',
|
|
14023
|
+
'billable_label_transactions_count_for_unique_orders',
|
|
13233
14024
|
'billable_label_transactions_total',
|
|
13234
14025
|
'revenue_share_label_transactions_count',
|
|
14026
|
+
'revenue_share_label_transactions_count_for_unique_orders',
|
|
13235
14027
|
'revenue_share_label_transactions_total',
|
|
13236
14028
|
'manual_transactions_count',
|
|
13237
14029
|
'manual_transactions_total',
|
|
13238
14030
|
'order_transactions_count',
|
|
13239
14031
|
'order_transactions_total',
|
|
13240
14032
|
'refund_transactions_count',
|
|
14033
|
+
'refund_transactions_ignored_fraud_count',
|
|
14034
|
+
'refund_transactions_ignored_fully_refunded_count',
|
|
14035
|
+
'refund_transactions_ignored_other_count',
|
|
13241
14036
|
'refund_transactions_total',
|
|
13242
14037
|
'reversal_order_cancellations_transactions_count',
|
|
13243
14038
|
'reversal_order_cancellations_transactions_total',
|
|
@@ -13248,23 +14043,34 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13248
14043
|
'transfer_transactions_count',
|
|
13249
14044
|
'transfer_transactions_total',
|
|
13250
14045
|
'fulfillments_count',
|
|
13251
|
-
'
|
|
14046
|
+
'fulfilled_via_replacement_order_count',
|
|
14047
|
+
'percentage_orders_with_fulfillment_proof_2_weeks',
|
|
14048
|
+
'percentage_orders_with_fulfillment_proof_4_weeks',
|
|
14049
|
+
'percentage_orders_with_fulfillment_proof_6_weeks',
|
|
14050
|
+
'percentage_orders_with_fulfillment_proof_all',
|
|
13252
14051
|
'shipping_notifications_count',
|
|
13253
14052
|
'queued_capture_unprocessed_count',
|
|
13254
14053
|
'queued_capture_deletion_unprocessed_count',
|
|
13255
14054
|
'queued_channel_transaction_unprocessed_count',
|
|
13256
14055
|
'queued_channel_organization_unprocessed_count',
|
|
13257
14056
|
'queued_consumer_invoice_unprocessed_count',
|
|
14057
|
+
'queued_fulfillment_external_unprocessed_count',
|
|
14058
|
+
'queued_fulfillment_in_transit_unprocessed_count',
|
|
14059
|
+
'queued_fulfillment_shipping_notification_unprocessed_count',
|
|
14060
|
+
'queued_label_invoice_request_unprocessed_count',
|
|
13258
14061
|
'queued_label_tracking_summary_unprocessed_count',
|
|
14062
|
+
'queued_label_origin_unprocessed_count',
|
|
13259
14063
|
'queued_order_unprocessed_count',
|
|
13260
14064
|
'queued_order_identifier_unprocessed_count',
|
|
13261
14065
|
'queued_refund_unprocessed_count',
|
|
13262
14066
|
'queued_refund_deletion_unprocessed_count',
|
|
14067
|
+
'queued_refund_over_capture_unprocessed_count',
|
|
14068
|
+
'queued_sales_record_unprocessed_count',
|
|
13263
14069
|
'queued_statement_batch_unprocessed_count',
|
|
13264
|
-
'queued_statement_batch_email_unprocessed_count',
|
|
13265
14070
|
'queued_statement_email_unprocessed_count',
|
|
13266
14071
|
'queued_statement_summary_email_unprocessed_count',
|
|
13267
|
-
'
|
|
14072
|
+
'queued_record_snooze_count',
|
|
14073
|
+
'queued_record_snooze_ending_in_48_hours_count',
|
|
13268
14074
|
'statements_no_payout_count',
|
|
13269
14075
|
'statements_no_payout_total',
|
|
13270
14076
|
'statements_pending_payout_count',
|
|
@@ -13277,6 +14083,9 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
13277
14083
|
'payouts_failed_total',
|
|
13278
14084
|
'pending_payouts_max_age',
|
|
13279
14085
|
'average_payout_amount',
|
|
14086
|
+
'orders_with_payments_count',
|
|
14087
|
+
'orders_without_payments_count',
|
|
14088
|
+
'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
13280
14089
|
]);
|
|
13281
14090
|
|
|
13282
14091
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -13364,6 +14173,34 @@ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
|
13364
14173
|
description: PropTypes.string,
|
|
13365
14174
|
});
|
|
13366
14175
|
|
|
14176
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
14177
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
14178
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
14179
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14180
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14181
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
14182
|
+
business_url: PropTypes.string.isRequired,
|
|
14183
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
14184
|
+
});
|
|
14185
|
+
|
|
14186
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
14187
|
+
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
14188
|
+
);
|
|
14189
|
+
|
|
14190
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
14191
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
14192
|
+
id: PropTypes.string.isRequired,
|
|
14193
|
+
organization_id: PropTypes.string.isRequired,
|
|
14194
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
14195
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14196
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14197
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
14198
|
+
business_url: PropTypes.string.isRequired,
|
|
14199
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
14200
|
+
});
|
|
14201
|
+
|
|
14202
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
14203
|
+
|
|
13367
14204
|
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
13368
14205
|
line_number: PropTypes.string.isRequired,
|
|
13369
14206
|
item_number: PropTypes.string.isRequired,
|
|
@@ -13635,6 +14472,35 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
13635
14472
|
'autogenerated',
|
|
13636
14473
|
]);
|
|
13637
14474
|
|
|
14475
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14476
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
14477
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14478
|
+
});
|
|
14479
|
+
|
|
14480
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([T['io.flow.billing.v0.models.transaction_metadata_shipping_label']]);
|
|
14481
|
+
|
|
14482
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
14483
|
+
id: PropTypes.string.isRequired,
|
|
14484
|
+
order_number: PropTypes.string.isRequired,
|
|
14485
|
+
created_at: PropTypes.string.isRequired,
|
|
14486
|
+
reference_id: PropTypes.string.isRequired,
|
|
14487
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14488
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14489
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14490
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
14491
|
+
carrier_id: PropTypes.string,
|
|
14492
|
+
service_id: PropTypes.string,
|
|
14493
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14494
|
+
});
|
|
14495
|
+
|
|
14496
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
14497
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
14498
|
+
event_id: PropTypes.string.isRequired,
|
|
14499
|
+
timestamp: PropTypes.string.isRequired,
|
|
14500
|
+
organization: PropTypes.string.isRequired,
|
|
14501
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
14502
|
+
});
|
|
14503
|
+
|
|
13638
14504
|
T['io.flow.internal.v0.models.csv_label_cost'] = PropTypes.exact({
|
|
13639
14505
|
amount: PropTypes.number.isRequired,
|
|
13640
14506
|
currency: PropTypes.string.isRequired,
|
|
@@ -13685,7 +14551,12 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
13685
14551
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13686
14552
|
service: PropTypes.string.isRequired,
|
|
13687
14553
|
number: PropTypes.string,
|
|
14554
|
+
rate_level_key: PropTypes.string,
|
|
13688
14555
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
14556
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14557
|
+
glbe_proposition_name: PropTypes.string,
|
|
14558
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
14559
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
13689
14560
|
});
|
|
13690
14561
|
|
|
13691
14562
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -13702,6 +14573,11 @@ T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
|
13702
14573
|
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
13703
14574
|
id: PropTypes.string,
|
|
13704
14575
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14576
|
+
rate_level_key: PropTypes.string,
|
|
14577
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14578
|
+
glbe_proposition_name: PropTypes.string,
|
|
14579
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
14580
|
+
shopify_grc_gid: PropTypes.string,
|
|
13705
14581
|
});
|
|
13706
14582
|
|
|
13707
14583
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
@@ -13712,12 +14588,16 @@ T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
|
13712
14588
|
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
13713
14589
|
id: PropTypes.string.isRequired,
|
|
13714
14590
|
number: PropTypes.string.isRequired,
|
|
14591
|
+
rate_level_key: PropTypes.string,
|
|
13715
14592
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
13716
14593
|
effective_at: PropTypes.string.isRequired,
|
|
13717
14594
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13718
14595
|
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
13719
14596
|
published_at: PropTypes.string,
|
|
13720
14597
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14598
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
14599
|
+
glbe_proposition_name: PropTypes.string,
|
|
14600
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
13721
14601
|
});
|
|
13722
14602
|
|
|
13723
14603
|
T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
@@ -13730,6 +14610,15 @@ T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
|
13730
14610
|
base_amount: PropTypes.number,
|
|
13731
14611
|
});
|
|
13732
14612
|
|
|
14613
|
+
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
14614
|
+
|
|
14615
|
+
T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
|
|
14616
|
+
unit: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
14617
|
+
length: PropTypes.number.isRequired,
|
|
14618
|
+
width: PropTypes.number.isRequired,
|
|
14619
|
+
depth: PropTypes.number.isRequired,
|
|
14620
|
+
});
|
|
14621
|
+
|
|
13733
14622
|
T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
|
|
13734
14623
|
percentage: PropTypes.number.isRequired,
|
|
13735
14624
|
amount: PropTypes.number.isRequired,
|
|
@@ -13739,125 +14628,63 @@ T['io.flow.internal.v0.models.csv_actual_ratecard'] = PropTypes.exact({
|
|
|
13739
14628
|
base_amount: PropTypes.number,
|
|
13740
14629
|
});
|
|
13741
14630
|
|
|
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
|
-
});
|
|
13773
|
-
|
|
13774
|
-
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
13775
|
-
depth: T['io.flow.common.v0.models.measurement'],
|
|
13776
|
-
diameter: T['io.flow.common.v0.models.measurement'],
|
|
13777
|
-
length: T['io.flow.common.v0.models.measurement'],
|
|
13778
|
-
weight: T['io.flow.common.v0.models.measurement'],
|
|
13779
|
-
width: T['io.flow.common.v0.models.measurement'],
|
|
13780
|
-
});
|
|
13781
|
-
|
|
13782
|
-
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
13783
|
-
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
13784
|
-
fulfillment_key: PropTypes.string.isRequired,
|
|
13785
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
13786
|
-
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
13787
|
-
service: PropTypes.string,
|
|
13788
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
13789
|
-
});
|
|
13790
|
-
|
|
13791
|
-
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
13792
|
-
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13793
|
-
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13794
|
-
weight: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13795
|
-
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
13796
|
-
});
|
|
14631
|
+
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
13797
14632
|
|
|
13798
|
-
T['io.flow.
|
|
13799
|
-
|
|
13800
|
-
|
|
13801
|
-
|
|
14633
|
+
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
14634
|
+
currency: PropTypes.string.isRequired,
|
|
14635
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14636
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
13802
14637
|
});
|
|
13803
14638
|
|
|
13804
|
-
T['io.flow.
|
|
14639
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
13805
14640
|
id: PropTypes.string.isRequired,
|
|
13806
|
-
|
|
13807
|
-
|
|
13808
|
-
|
|
14641
|
+
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
14642
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14643
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14644
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
14645
|
+
total: PropTypes.number.isRequired,
|
|
14646
|
+
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
14647
|
+
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
13809
14648
|
});
|
|
13810
14649
|
|
|
13811
|
-
T['io.flow.
|
|
13812
|
-
|
|
13813
|
-
|
|
13814
|
-
|
|
13815
|
-
organization: PropTypes.string.isRequired,
|
|
13816
|
-
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
14650
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
14651
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14652
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14653
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
13817
14654
|
});
|
|
13818
14655
|
|
|
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,
|
|
14656
|
+
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
14657
|
+
currency: PropTypes.string.isRequired,
|
|
14658
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14659
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
13825
14660
|
});
|
|
13826
14661
|
|
|
13827
|
-
T['io.flow.internal.v0.models.
|
|
14662
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
13828
14663
|
id: PropTypes.string.isRequired,
|
|
13829
|
-
|
|
13830
|
-
|
|
13831
|
-
|
|
14664
|
+
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
14665
|
+
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
14666
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14667
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
14668
|
+
total: PropTypes.number.isRequired,
|
|
14669
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
14670
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
13832
14671
|
});
|
|
13833
14672
|
|
|
13834
|
-
T['io.flow.internal.v0.models.
|
|
13835
|
-
discriminator: PropTypes.oneOf(['
|
|
14673
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
14674
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
13836
14675
|
event_id: PropTypes.string.isRequired,
|
|
13837
14676
|
timestamp: PropTypes.string.isRequired,
|
|
13838
14677
|
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,
|
|
14678
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
13845
14679
|
});
|
|
13846
14680
|
|
|
13847
14681
|
T['io.flow.internal.v0.models.csv_weight'] = PropTypes.exact({
|
|
13848
|
-
unit: T['io.flow.
|
|
14682
|
+
unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13849
14683
|
provided: PropTypes.number.isRequired,
|
|
13850
14684
|
dimensional: PropTypes.number.isRequired,
|
|
13851
14685
|
lookup: PropTypes.number.isRequired,
|
|
13852
14686
|
});
|
|
13853
14687
|
|
|
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
14688
|
T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
|
|
13862
14689
|
fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
|
|
13863
14690
|
remote_area: PropTypes.number.isRequired,
|
|
@@ -13872,7 +14699,7 @@ T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
|
|
|
13872
14699
|
base_amount: PropTypes.number.isRequired,
|
|
13873
14700
|
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13874
14701
|
total: PropTypes.number.isRequired,
|
|
13875
|
-
weight_unit: T['io.flow.
|
|
14702
|
+
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13876
14703
|
weight: PropTypes.number.isRequired,
|
|
13877
14704
|
variance: PropTypes.number.isRequired,
|
|
13878
14705
|
});
|
|
@@ -13883,7 +14710,7 @@ T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
|
|
|
13883
14710
|
base_amount: PropTypes.number.isRequired,
|
|
13884
14711
|
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13885
14712
|
total: PropTypes.number.isRequired,
|
|
13886
|
-
weight_unit: T['io.flow.
|
|
14713
|
+
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
13887
14714
|
weight: PropTypes.number.isRequired,
|
|
13888
14715
|
ratecard: T['io.flow.internal.v0.models.csv_actual_ratecard'].isRequired,
|
|
13889
14716
|
});
|
|
@@ -14006,6 +14833,29 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
14006
14833
|
'pending',
|
|
14007
14834
|
]);
|
|
14008
14835
|
|
|
14836
|
+
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
14837
|
+
value: PropTypes.string.isRequired,
|
|
14838
|
+
unverified: PropTypes.bool.isRequired,
|
|
14839
|
+
});
|
|
14840
|
+
|
|
14841
|
+
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
14842
|
+
organization_id: PropTypes.string.isRequired,
|
|
14843
|
+
product_id: PropTypes.string.isRequired,
|
|
14844
|
+
});
|
|
14845
|
+
|
|
14846
|
+
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
14847
|
+
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
14848
|
+
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
14849
|
+
});
|
|
14850
|
+
|
|
14851
|
+
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
14852
|
+
model_id: PropTypes.string.isRequired,
|
|
14853
|
+
suggestion: PropTypes.string.isRequired,
|
|
14854
|
+
value: PropTypes.number.isRequired,
|
|
14855
|
+
});
|
|
14856
|
+
|
|
14857
|
+
T['io.flow.internal.v0.enums.classification_error_code'] = PropTypes.oneOf(['generic_error']);
|
|
14858
|
+
|
|
14009
14859
|
T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
14010
14860
|
'waiting_for_classification',
|
|
14011
14861
|
'classified',
|
|
@@ -14019,7 +14869,7 @@ T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
|
14019
14869
|
});
|
|
14020
14870
|
|
|
14021
14871
|
T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
14022
|
-
id: PropTypes.string,
|
|
14872
|
+
id: PropTypes.string.isRequired,
|
|
14023
14873
|
organization_id: PropTypes.string.isRequired,
|
|
14024
14874
|
item_number: PropTypes.string.isRequired,
|
|
14025
14875
|
item_name: PropTypes.string,
|
|
@@ -14053,6 +14903,12 @@ T['io.flow.internal.v0.models.item_harmonization_deleted'] = PropTypes.exact({
|
|
|
14053
14903
|
item_harmonization: T['io.flow.internal.v0.models.item_harmonization'].isRequired,
|
|
14054
14904
|
});
|
|
14055
14905
|
|
|
14906
|
+
T['io.flow.internal.v0.models.empty_classification_form'] = PropTypes.exact({
|
|
14907
|
+
discriminator: PropTypes.oneOf(['empty_classification_form']).isRequired,
|
|
14908
|
+
product_id: PropTypes.string.isRequired,
|
|
14909
|
+
harmonization_status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
14910
|
+
});
|
|
14911
|
+
|
|
14056
14912
|
T['io.flow.internal.v0.models.classification_statistics'] = PropTypes.exact({
|
|
14057
14913
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
14058
14914
|
number_of_items: PropTypes.number.isRequired,
|
|
@@ -14070,34 +14926,6 @@ T['io.flow.internal.v0.models.harmonization_classification_statistics_published'
|
|
|
14070
14926
|
data: T['io.flow.internal.v0.models.harmonization_classification_statistics_data'].isRequired,
|
|
14071
14927
|
});
|
|
14072
14928
|
|
|
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
14929
|
T['io.flow.catalog.v0.enums.image_tag'] = PropTypes.oneOf(['thumbnail', 'checkout']);
|
|
14102
14930
|
|
|
14103
14931
|
T['io.flow.catalog.v0.models.image_form'] = PropTypes.exact({
|
|
@@ -16582,6 +17410,10 @@ T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
|
16582
17410
|
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16583
17411
|
});
|
|
16584
17412
|
|
|
17413
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
17414
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
17415
|
+
});
|
|
17416
|
+
|
|
16585
17417
|
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
16586
17418
|
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16587
17419
|
});
|
|
@@ -17729,6 +18561,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17729
18561
|
'payment_authorization_failed',
|
|
17730
18562
|
'unsupported_subsidized_order',
|
|
17731
18563
|
'unsupported_virtual_goods',
|
|
18564
|
+
'non_matching_currencies',
|
|
17732
18565
|
]);
|
|
17733
18566
|
|
|
17734
18567
|
T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -17752,36 +18585,6 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
17752
18585
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17753
18586
|
});
|
|
17754
18587
|
|
|
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
18588
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
17786
18589
|
|
|
17787
18590
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -18223,6 +19026,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
|
18223
19026
|
|
|
18224
19027
|
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
18225
19028
|
id: PropTypes.string.isRequired,
|
|
19029
|
+
shopify_shop_id: PropTypes.string,
|
|
18226
19030
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
18227
19031
|
domain: PropTypes.string.isRequired,
|
|
18228
19032
|
myshopify_domain: PropTypes.string.isRequired,
|
|
@@ -18330,6 +19134,77 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
|
|
|
18330
19134
|
catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
|
|
18331
19135
|
});
|
|
18332
19136
|
|
|
19137
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
19138
|
+
'cx_team',
|
|
19139
|
+
'core_team',
|
|
19140
|
+
'core_team_investigate',
|
|
19141
|
+
'mex_team',
|
|
19142
|
+
'payments_team',
|
|
19143
|
+
'tlc_team',
|
|
19144
|
+
]);
|
|
19145
|
+
|
|
19146
|
+
T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
19147
|
+
message: PropTypes.string.isRequired,
|
|
19148
|
+
reason: PropTypes.string.isRequired,
|
|
19149
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19150
|
+
});
|
|
19151
|
+
|
|
19152
|
+
T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
|
|
19153
|
+
message: PropTypes.string.isRequired,
|
|
19154
|
+
reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
|
|
19155
|
+
action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
|
|
19156
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19157
|
+
});
|
|
19158
|
+
|
|
19159
|
+
T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
|
|
19160
|
+
message: PropTypes.string.isRequired,
|
|
19161
|
+
reason: PropTypes.string.isRequired,
|
|
19162
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19163
|
+
});
|
|
19164
|
+
|
|
19165
|
+
T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
|
|
19166
|
+
message: PropTypes.string.isRequired,
|
|
19167
|
+
reason: PropTypes.string.isRequired,
|
|
19168
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19169
|
+
});
|
|
19170
|
+
|
|
19171
|
+
T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
19172
|
+
id: PropTypes.string.isRequired,
|
|
19173
|
+
organization_id: PropTypes.string.isRequired,
|
|
19174
|
+
order_number: PropTypes.string.isRequired,
|
|
19175
|
+
channel_id: PropTypes.string.isRequired,
|
|
19176
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
19177
|
+
payment_request_id: PropTypes.string,
|
|
19178
|
+
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
19179
|
+
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
19180
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
19181
|
+
order_created_at: PropTypes.string,
|
|
19182
|
+
});
|
|
19183
|
+
|
|
19184
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
19185
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
|
|
19186
|
+
event_id: PropTypes.string.isRequired,
|
|
19187
|
+
timestamp: PropTypes.string.isRequired,
|
|
19188
|
+
organization: PropTypes.string.isRequired,
|
|
19189
|
+
channel_id: PropTypes.string.isRequired,
|
|
19190
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19191
|
+
});
|
|
19192
|
+
|
|
19193
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
|
|
19194
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
|
|
19195
|
+
event_id: PropTypes.string.isRequired,
|
|
19196
|
+
timestamp: PropTypes.string.isRequired,
|
|
19197
|
+
organization: PropTypes.string.isRequired,
|
|
19198
|
+
channel_id: PropTypes.string.isRequired,
|
|
19199
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19200
|
+
});
|
|
19201
|
+
|
|
19202
|
+
T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
|
|
19203
|
+
message: PropTypes.string.isRequired,
|
|
19204
|
+
reason: PropTypes.string.isRequired,
|
|
19205
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19206
|
+
});
|
|
19207
|
+
|
|
18333
19208
|
T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
|
|
18334
19209
|
|
|
18335
19210
|
T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
|
|
@@ -18418,6 +19293,14 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
|
|
|
18418
19293
|
filename: PropTypes.string,
|
|
18419
19294
|
});
|
|
18420
19295
|
|
|
19296
|
+
T['io.flow.internal.v0.enums.carrier_validation_status'] = PropTypes.oneOf(['success', 'error']);
|
|
19297
|
+
|
|
19298
|
+
T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
|
|
19299
|
+
organization: PropTypes.string.isRequired,
|
|
19300
|
+
status: T['io.flow.internal.v0.enums.carrier_validation_status'].isRequired,
|
|
19301
|
+
error_message: PropTypes.string,
|
|
19302
|
+
});
|
|
19303
|
+
|
|
18421
19304
|
T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
18422
19305
|
discriminator: PropTypes.oneOf(['fedex']).isRequired,
|
|
18423
19306
|
key: PropTypes.string.isRequired,
|
|
@@ -18585,11 +19468,37 @@ T['io.flow.internal.v0.models.calculator_organization_settings_upserted'] = Prop
|
|
|
18585
19468
|
calculator_organization_settings: T['io.flow.internal.v0.models.calculator_organization_settings'].isRequired,
|
|
18586
19469
|
});
|
|
18587
19470
|
|
|
18588
|
-
T['io.flow.internal.v0.models.
|
|
18589
|
-
|
|
18590
|
-
|
|
18591
|
-
|
|
18592
|
-
|
|
19471
|
+
T['io.flow.internal.v0.models.calculator_dtce_product'] = PropTypes.exact({
|
|
19472
|
+
origin: PropTypes.string.isRequired,
|
|
19473
|
+
hsCode: PropTypes.string.isRequired,
|
|
19474
|
+
sku: PropTypes.string.isRequired,
|
|
19475
|
+
value: PropTypes.number.isRequired,
|
|
19476
|
+
weight: PropTypes.number.isRequired,
|
|
19477
|
+
quantity: PropTypes.number.isRequired,
|
|
19478
|
+
reference: PropTypes.string,
|
|
19479
|
+
});
|
|
19480
|
+
|
|
19481
|
+
T['io.flow.internal.v0.models.calculator_dtce_post_body'] = PropTypes.exact({
|
|
19482
|
+
products: PropTypes.arrayOf(T['io.flow.internal.v0.models.calculator_dtce_product']).isRequired,
|
|
19483
|
+
countryCodeFrom: PropTypes.string.isRequired,
|
|
19484
|
+
countryCodeTo: PropTypes.string.isRequired,
|
|
19485
|
+
classification: PropTypes.string.isRequired,
|
|
19486
|
+
shippingCost: PropTypes.number.isRequired,
|
|
19487
|
+
insuranceCost: PropTypes.number.isRequired,
|
|
19488
|
+
totalShipmentWeight: PropTypes.number.isRequired,
|
|
19489
|
+
currencyCode: PropTypes.string.isRequired,
|
|
19490
|
+
outputCurrencyCode: PropTypes.string.isRequired,
|
|
19491
|
+
explanation: PropTypes.bool.isRequired,
|
|
19492
|
+
responseFormat: PropTypes.number.isRequired,
|
|
19493
|
+
requestId: PropTypes.string.isRequired,
|
|
19494
|
+
provinceCode: PropTypes.string,
|
|
19495
|
+
});
|
|
19496
|
+
|
|
19497
|
+
T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
|
|
19498
|
+
item_type: PropTypes.string.isRequired,
|
|
19499
|
+
gender: T['io.flow.internal.v0.models.attribute_label'],
|
|
19500
|
+
material: T['io.flow.internal.v0.models.attribute_label'],
|
|
19501
|
+
construction: T['io.flow.internal.v0.models.attribute_label'],
|
|
18593
19502
|
});
|
|
18594
19503
|
|
|
18595
19504
|
T['io.flow.internal.v0.models.product_harmonization_form'] = PropTypes.exact({
|
|
@@ -18661,6 +19570,7 @@ T['io.flow.internal.v0.models.classification_product_harmonization'] = PropTypes
|
|
|
18661
19570
|
customs_description: PropTypes.string,
|
|
18662
19571
|
hs6_code: PropTypes.string,
|
|
18663
19572
|
hs6_description: PropTypes.string,
|
|
19573
|
+
status: T['io.flow.internal.v0.enums.item_harmonization_status'],
|
|
18664
19574
|
});
|
|
18665
19575
|
|
|
18666
19576
|
T['io.flow.internal.v0.models.courthouse_product_summary'] = PropTypes.exact({
|
|
@@ -19227,6 +20137,21 @@ T['io.flow.internal.v0.models.tracking_deleted'] = PropTypes.exact({
|
|
|
19227
20137
|
tracking: T['io.flow.tracking.v0.models.tracking'].isRequired,
|
|
19228
20138
|
});
|
|
19229
20139
|
|
|
20140
|
+
T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact({
|
|
20141
|
+
id: PropTypes.string.isRequired,
|
|
20142
|
+
range: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
20143
|
+
shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
20144
|
+
internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
20145
|
+
discrepancy_data: T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
20146
|
+
});
|
|
20147
|
+
|
|
20148
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
20149
|
+
discriminator: PropTypes.oneOf(['shopify_markets_metrics_upserted']).isRequired,
|
|
20150
|
+
event_id: PropTypes.string.isRequired,
|
|
20151
|
+
timestamp: PropTypes.string.isRequired,
|
|
20152
|
+
shopify_markets_metrics: T['io.flow.internal.v0.models.shopify_markets_orders_metrics'].isRequired,
|
|
20153
|
+
});
|
|
20154
|
+
|
|
19230
20155
|
T['io.flow.internal.v0.models.checkout_delivery_window_estimate'] = PropTypes.exact({
|
|
19231
20156
|
discriminator: PropTypes.oneOf(['estimate']).isRequired,
|
|
19232
20157
|
days: T['io.flow.internal.v0.models.checkout_delivery_window_estimate_days'].isRequired,
|
|
@@ -19278,10 +20203,33 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
|
|
|
19278
20203
|
all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
|
|
19279
20204
|
});
|
|
19280
20205
|
|
|
20206
|
+
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
20207
|
+
id: PropTypes.string.isRequired,
|
|
20208
|
+
});
|
|
20209
|
+
|
|
20210
|
+
T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
|
|
20211
|
+
discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
|
|
20212
|
+
event_id: PropTypes.string.isRequired,
|
|
20213
|
+
timestamp: PropTypes.string.isRequired,
|
|
20214
|
+
billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
|
|
20215
|
+
});
|
|
20216
|
+
|
|
19281
20217
|
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
19282
20218
|
id: PropTypes.string.isRequired,
|
|
19283
20219
|
});
|
|
19284
20220
|
|
|
20221
|
+
T['io.flow.internal.v0.models.transaction_statement'] = PropTypes.exact({
|
|
20222
|
+
id: PropTypes.string.isRequired,
|
|
20223
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
20224
|
+
});
|
|
20225
|
+
|
|
20226
|
+
T['io.flow.internal.v0.models.transaction_statement_upserted'] = PropTypes.exact({
|
|
20227
|
+
discriminator: PropTypes.oneOf(['transaction_statement_upserted']).isRequired,
|
|
20228
|
+
event_id: PropTypes.string.isRequired,
|
|
20229
|
+
timestamp: PropTypes.string.isRequired,
|
|
20230
|
+
transaction_statement: T['io.flow.internal.v0.models.transaction_statement'].isRequired,
|
|
20231
|
+
});
|
|
20232
|
+
|
|
19285
20233
|
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19286
20234
|
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19287
20235
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
@@ -19310,22 +20258,6 @@ T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = Pro
|
|
|
19310
20258
|
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
19311
20259
|
});
|
|
19312
20260
|
|
|
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
20261
|
T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
19330
20262
|
'invoice',
|
|
19331
20263
|
'statement',
|
|
@@ -19483,6 +20415,55 @@ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
|
19483
20415
|
updated_at: PropTypes.string.isRequired,
|
|
19484
20416
|
});
|
|
19485
20417
|
|
|
20418
|
+
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
20419
|
+
|
|
20420
|
+
T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
20421
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
20422
|
+
count: PropTypes.number.isRequired,
|
|
20423
|
+
});
|
|
20424
|
+
|
|
20425
|
+
T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
20426
|
+
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
20427
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
20428
|
+
count: PropTypes.number.isRequired,
|
|
20429
|
+
});
|
|
20430
|
+
|
|
20431
|
+
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
20432
|
+
rule_id: PropTypes.string.isRequired,
|
|
20433
|
+
rule_name: PropTypes.string.isRequired,
|
|
20434
|
+
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
20435
|
+
count: PropTypes.number.isRequired,
|
|
20436
|
+
});
|
|
20437
|
+
|
|
20438
|
+
T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
|
|
20439
|
+
hs_code: PropTypes.string,
|
|
20440
|
+
keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20441
|
+
action: T['io.flow.internal.v0.enums.restriction_status'],
|
|
20442
|
+
});
|
|
20443
|
+
|
|
20444
|
+
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
20445
|
+
name: PropTypes.string.isRequired,
|
|
20446
|
+
description: PropTypes.string.isRequired,
|
|
20447
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20448
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20449
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20450
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20451
|
+
value_threshold_usd: PropTypes.number,
|
|
20452
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20453
|
+
});
|
|
20454
|
+
|
|
20455
|
+
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
20456
|
+
id: PropTypes.string.isRequired,
|
|
20457
|
+
name: PropTypes.string.isRequired,
|
|
20458
|
+
description: PropTypes.string.isRequired,
|
|
20459
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20460
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20461
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20462
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20463
|
+
value_threshold_usd: PropTypes.number,
|
|
20464
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20465
|
+
});
|
|
20466
|
+
|
|
19486
20467
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
19487
20468
|
|
|
19488
20469
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
@@ -20196,25 +21177,6 @@ T['io.flow.fraud.v0.unions.fraud_order_reference'] = PropTypes.oneOfType([
|
|
|
20196
21177
|
T['io.flow.fraud.v0.models.fraud_payment_request_reference'],
|
|
20197
21178
|
]);
|
|
20198
21179
|
|
|
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
21180
|
T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
|
|
20219
21181
|
id: PropTypes.string.isRequired,
|
|
20220
21182
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -20230,6 +21192,7 @@ T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
|
|
|
20230
21192
|
provider: T['io.flow.internal.v0.enums.fraud_provider'],
|
|
20231
21193
|
payment_authorization_id: PropTypes.string,
|
|
20232
21194
|
decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
|
|
21195
|
+
created_at: PropTypes.string,
|
|
20233
21196
|
});
|
|
20234
21197
|
|
|
20235
21198
|
T['io.flow.internal.v0.models.fraud_review_version'] = PropTypes.exact({
|
|
@@ -20256,13 +21219,6 @@ T['io.flow.internal.v0.models.fraud_pending_review'] = PropTypes.exact({
|
|
|
20256
21219
|
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
20257
21220
|
});
|
|
20258
21221
|
|
|
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
21222
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'] = PropTypes.exact({
|
|
20267
21223
|
discriminator: PropTypes.oneOf(['fraud_pending_review_upserted']).isRequired,
|
|
20268
21224
|
event_id: PropTypes.string.isRequired,
|
|
@@ -20861,6 +21817,7 @@ T['io.flow.internal.v0.models.stripe_merchant_put_form'] = PropTypes.exact({
|
|
|
20861
21817
|
account_type: T['io.flow.stripe.v0.enums.account_type'].isRequired,
|
|
20862
21818
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
20863
21819
|
country: PropTypes.string.isRequired,
|
|
21820
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20864
21821
|
});
|
|
20865
21822
|
|
|
20866
21823
|
T['io.flow.internal.v0.models.stripe_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20905,6 +21862,7 @@ T['io.flow.internal.v0.models.paypal_merchant_put_form'] = PropTypes.exact({
|
|
|
20905
21862
|
external_id: PropTypes.string.isRequired,
|
|
20906
21863
|
country: PropTypes.string.isRequired,
|
|
20907
21864
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21865
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20908
21866
|
});
|
|
20909
21867
|
|
|
20910
21868
|
T['io.flow.internal.v0.models.paypal_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20922,6 +21880,7 @@ T['io.flow.internal.v0.models.fiserv_merchant_put_form'] = PropTypes.exact({
|
|
|
20922
21880
|
funding_currency: PropTypes.string.isRequired,
|
|
20923
21881
|
country: PropTypes.string.isRequired,
|
|
20924
21882
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21883
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20925
21884
|
});
|
|
20926
21885
|
|
|
20927
21886
|
T['io.flow.internal.v0.models.fiserv_merchant_modification_form'] = PropTypes.exact({
|
|
@@ -20939,6 +21898,7 @@ T['io.flow.internal.v0.models.adyen_merchant_put_form'] = PropTypes.exact({
|
|
|
20939
21898
|
external_id: PropTypes.string.isRequired,
|
|
20940
21899
|
country: PropTypes.string.isRequired,
|
|
20941
21900
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21901
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20942
21902
|
});
|
|
20943
21903
|
|
|
20944
21904
|
T['io.flow.internal.v0.unions.processor_merchant_put_form'] = PropTypes.oneOfType([
|
|
@@ -20978,6 +21938,7 @@ T['io.flow.internal.v0.models.stripe_account_put_form'] = PropTypes.exact({
|
|
|
20978
21938
|
country: PropTypes.string.isRequired,
|
|
20979
21939
|
authentication: T['io.flow.internal.v0.models.stripe_authentication_form'].isRequired,
|
|
20980
21940
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21941
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
20981
21942
|
});
|
|
20982
21943
|
|
|
20983
21944
|
T['io.flow.internal.v0.models.stripe_account_modification_form'] = PropTypes.exact({
|
|
@@ -21011,6 +21972,7 @@ T['io.flow.internal.v0.models.paypal_account_put_form'] = PropTypes.exact({
|
|
|
21011
21972
|
country: PropTypes.string.isRequired,
|
|
21012
21973
|
authentication: T['io.flow.internal.v0.models.paypal_authentication_form'].isRequired,
|
|
21013
21974
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
21975
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21014
21976
|
});
|
|
21015
21977
|
|
|
21016
21978
|
T['io.flow.internal.v0.models.paypal_account_modification_form'] = PropTypes.exact({
|
|
@@ -21041,6 +22003,7 @@ T['io.flow.internal.v0.models.fiserv_account_put_form'] = PropTypes.exact({
|
|
|
21041
22003
|
authentication: T['io.flow.internal.v0.models.fiserv_authentication_form'].isRequired,
|
|
21042
22004
|
country: PropTypes.string.isRequired,
|
|
21043
22005
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22006
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21044
22007
|
});
|
|
21045
22008
|
|
|
21046
22009
|
T['io.flow.internal.v0.models.fiserv_account_modification_form'] = PropTypes.exact({
|
|
@@ -21072,6 +22035,7 @@ T['io.flow.internal.v0.models.crypto_account_put_form'] = PropTypes.exact({
|
|
|
21072
22035
|
authentication: T['io.flow.internal.v0.models.crypto_authentication_form'].isRequired,
|
|
21073
22036
|
country: PropTypes.string.isRequired,
|
|
21074
22037
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22038
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21075
22039
|
});
|
|
21076
22040
|
|
|
21077
22041
|
T['io.flow.internal.v0.models.crypto_account_modification_form'] = PropTypes.exact({
|
|
@@ -21101,6 +22065,7 @@ T['io.flow.internal.v0.models.bitpay_account_put_form'] = PropTypes.exact({
|
|
|
21101
22065
|
authentication: T['io.flow.internal.v0.models.bitpay_authentication_form'].isRequired,
|
|
21102
22066
|
country: PropTypes.string.isRequired,
|
|
21103
22067
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22068
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21104
22069
|
});
|
|
21105
22070
|
|
|
21106
22071
|
T['io.flow.internal.v0.models.bitpay_account_modification_form'] = PropTypes.exact({
|
|
@@ -21130,6 +22095,7 @@ T['io.flow.internal.v0.models.afterpay_account_put_form'] = PropTypes.exact({
|
|
|
21130
22095
|
country: PropTypes.string.isRequired,
|
|
21131
22096
|
authentication: T['io.flow.internal.v0.models.afterpay_authentication_form'].isRequired,
|
|
21132
22097
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22098
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21133
22099
|
});
|
|
21134
22100
|
|
|
21135
22101
|
T['io.flow.internal.v0.models.afterpay_account_modification_form'] = PropTypes.exact({
|
|
@@ -21274,6 +22240,7 @@ T['io.flow.internal.v0.models.adyen_account_put_form'] = PropTypes.exact({
|
|
|
21274
22240
|
authentication: T['io.flow.internal.v0.models.adyen_authentication_form'].isRequired,
|
|
21275
22241
|
country: PropTypes.string.isRequired,
|
|
21276
22242
|
status: T['io.flow.internal.v0.enums.processor_entity_status'],
|
|
22243
|
+
organization_capability: T['io.flow.internal.v0.enums.organization_capability'],
|
|
21277
22244
|
});
|
|
21278
22245
|
|
|
21279
22246
|
T['io.flow.internal.v0.unions.processor_account_put_form'] = PropTypes.oneOfType([
|
|
@@ -21378,6 +22345,7 @@ T['io.flow.billing.v0.models.withholding_deduction'] = PropTypes.exact({
|
|
|
21378
22345
|
|
|
21379
22346
|
T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
|
|
21380
22347
|
id: PropTypes.string.isRequired,
|
|
22348
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21381
22349
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21382
22350
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21383
22351
|
currency: PropTypes.string.isRequired,
|
|
@@ -21396,6 +22364,7 @@ T['io.flow.billing.v0.models.payout_transaction'] = PropTypes.exact({
|
|
|
21396
22364
|
T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
|
|
21397
22365
|
statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
|
|
21398
22366
|
id: PropTypes.string.isRequired,
|
|
22367
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21399
22368
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21400
22369
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21401
22370
|
currency: PropTypes.string.isRequired,
|
|
@@ -21414,6 +22383,7 @@ T['io.flow.billing.v0.models.channel_transaction'] = PropTypes.exact({
|
|
|
21414
22383
|
T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
21415
22384
|
statement: T['io.flow.billing.v0.models.billing_channel_statement_reference'],
|
|
21416
22385
|
id: PropTypes.string.isRequired,
|
|
22386
|
+
metadata: T['io.flow.billing.v0.unions.transaction_metadata'],
|
|
21417
22387
|
order: T['io.flow.billing.v0.models.billing_channel_order_summary'],
|
|
21418
22388
|
payment_request: T['io.flow.billing.v0.models.billing_channel_payment_request_reference'],
|
|
21419
22389
|
currency: PropTypes.string.isRequired,
|
|
@@ -21433,6 +22403,7 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
21433
22403
|
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
21434
22404
|
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
21435
22405
|
transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
|
|
22406
|
+
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
21436
22407
|
});
|
|
21437
22408
|
|
|
21438
22409
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
@@ -21562,7 +22533,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21562
22533
|
discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
|
|
21563
22534
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
21564
22535
|
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
21565
|
-
parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
21566
22536
|
beneficiary: PropTypes.string,
|
|
21567
22537
|
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
21568
22538
|
business_url: PropTypes.string,
|
|
@@ -21572,23 +22542,22 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21572
22542
|
chargeback_percentage: PropTypes.number,
|
|
21573
22543
|
bank_account_number: PropTypes.string,
|
|
21574
22544
|
aba_routing_transit_number: PropTypes.string,
|
|
21575
|
-
trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
|
|
21576
22545
|
other_trade_sector: PropTypes.string,
|
|
21577
22546
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22547
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
21578
22548
|
average_order_weight: PropTypes.number,
|
|
21579
22549
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
21580
22550
|
monthly_average_volume_amount: PropTypes.number,
|
|
21581
22551
|
monthly_average_volume_currency: PropTypes.string,
|
|
21582
22552
|
monthly_average_number_transactions: PropTypes.number,
|
|
21583
|
-
dangerous_goods: PropTypes.bool,
|
|
21584
22553
|
default_country_of_origin: PropTypes.string,
|
|
21585
22554
|
ratecard_id: PropTypes.string,
|
|
21586
22555
|
rate_card: PropTypes.string.isRequired,
|
|
21587
|
-
logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
|
|
21588
22556
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
21589
22557
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21590
22558
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21591
22559
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22560
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
21592
22561
|
});
|
|
21593
22562
|
|
|
21594
22563
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
@@ -21641,6 +22610,24 @@ T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes
|
|
|
21641
22610
|
ends_at: PropTypes.string,
|
|
21642
22611
|
});
|
|
21643
22612
|
|
|
22613
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
22614
|
+
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
|
|
22615
|
+
dimensional_threshold: PropTypes.number,
|
|
22616
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22617
|
+
weight_threshold: PropTypes.number,
|
|
22618
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22619
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22620
|
+
});
|
|
22621
|
+
|
|
22622
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
22623
|
+
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
|
|
22624
|
+
dimensional_threshold: PropTypes.number,
|
|
22625
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22626
|
+
weight_threshold: PropTypes.number,
|
|
22627
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22628
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22629
|
+
});
|
|
22630
|
+
|
|
21644
22631
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
21645
22632
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
21646
22633
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -21683,6 +22670,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
21683
22670
|
T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
|
|
21684
22671
|
T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
21685
22672
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
22673
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
|
|
21686
22674
|
]);
|
|
21687
22675
|
|
|
21688
22676
|
T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
|
|
@@ -21728,7 +22716,7 @@ T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
|
|
|
21728
22716
|
T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
21729
22717
|
T['io.flow.ratecard.v0.models.ddp_ratecard_fee'],
|
|
21730
22718
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'],
|
|
21731
|
-
T['io.flow.ratecard.v0.models.
|
|
22719
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'],
|
|
21732
22720
|
T['io.flow.ratecard.v0.models.return_package_ratecard_fee'],
|
|
21733
22721
|
T['io.flow.ratecard.v0.models.crossdock_ratecard_fee'],
|
|
21734
22722
|
T['io.flow.ratecard.v0.models.remote_area_ratecard_fee'],
|
|
@@ -21964,6 +22952,7 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
21964
22952
|
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
21965
22953
|
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
21966
22954
|
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22955
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
21967
22956
|
});
|
|
21968
22957
|
|
|
21969
22958
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
@@ -21996,6 +22985,10 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
|
21996
22985
|
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
21997
22986
|
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
21998
22987
|
ratecard_id: PropTypes.string,
|
|
22988
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
22989
|
+
glbe_proposition_name: PropTypes.string,
|
|
22990
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
22991
|
+
rate_level_key: PropTypes.string,
|
|
21999
22992
|
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22000
22993
|
});
|
|
22001
22994
|
|
|
@@ -22098,6 +23091,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
|
22098
23091
|
|
|
22099
23092
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
22100
23093
|
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23094
|
+
volumetric_weight: PropTypes.number,
|
|
22101
23095
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22102
23096
|
reference_number: PropTypes.string,
|
|
22103
23097
|
});
|
|
@@ -22184,6 +23178,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22184
23178
|
order_number: PropTypes.string.isRequired,
|
|
22185
23179
|
service: PropTypes.string,
|
|
22186
23180
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23181
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22187
23182
|
});
|
|
22188
23183
|
|
|
22189
23184
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22278,6 +23273,7 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22278
23273
|
base: T['io.flow.common.v0.models.money'],
|
|
22279
23274
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22280
23275
|
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
23276
|
+
authorized_at: PropTypes.string,
|
|
22281
23277
|
});
|
|
22282
23278
|
|
|
22283
23279
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
@@ -22302,6 +23298,8 @@ T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
|
22302
23298
|
expires_at: PropTypes.string,
|
|
22303
23299
|
base: T['io.flow.common.v0.models.money'],
|
|
22304
23300
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
23301
|
+
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
23302
|
+
authorized_at: PropTypes.string,
|
|
22305
23303
|
});
|
|
22306
23304
|
|
|
22307
23305
|
T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
@@ -22394,7 +23392,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22394
23392
|
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22395
23393
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22396
23394
|
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22397
|
-
parent_company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22398
23395
|
beneficiary: PropTypes.string,
|
|
22399
23396
|
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22400
23397
|
business_url: PropTypes.string,
|
|
@@ -22404,24 +23401,24 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22404
23401
|
chargeback_percentage: PropTypes.number,
|
|
22405
23402
|
bank_account_number: PropTypes.string,
|
|
22406
23403
|
aba_routing_transit_number: PropTypes.string,
|
|
22407
|
-
trade_sectors: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector']),
|
|
22408
23404
|
other_trade_sector: PropTypes.string,
|
|
22409
23405
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
23406
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22410
23407
|
average_order_weight: PropTypes.number,
|
|
22411
23408
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22412
23409
|
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22413
|
-
dangerous_goods: PropTypes.bool,
|
|
22414
23410
|
default_country_of_origin: PropTypes.string,
|
|
22415
23411
|
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
|
|
22416
23412
|
rate_card: PropTypes.string.isRequired,
|
|
22417
23413
|
created_at: PropTypes.string.isRequired,
|
|
22418
23414
|
activated_at: PropTypes.string,
|
|
22419
23415
|
status_updated_at: PropTypes.string,
|
|
22420
|
-
logistics_format: T['io.flow.merchant.onboarding.v0.models.logistics_format'],
|
|
22421
23416
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22422
23417
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22423
23418
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22424
23419
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
23420
|
+
glbe_merchant_guid: PropTypes.string,
|
|
23421
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22425
23422
|
});
|
|
22426
23423
|
|
|
22427
23424
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
@@ -23136,6 +24133,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
23136
24133
|
time_blocked: PropTypes.number,
|
|
23137
24134
|
blocked_since: PropTypes.string,
|
|
23138
24135
|
completed_at: PropTypes.string,
|
|
24136
|
+
onboarding_started_at: PropTypes.string,
|
|
23139
24137
|
});
|
|
23140
24138
|
|
|
23141
24139
|
T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
|
|
@@ -23300,6 +24298,27 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
23300
24298
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
23301
24299
|
});
|
|
23302
24300
|
|
|
24301
|
+
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
24302
|
+
id: PropTypes.string.isRequired,
|
|
24303
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24304
|
+
number: PropTypes.string.isRequired,
|
|
24305
|
+
});
|
|
24306
|
+
|
|
24307
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
24308
|
+
id: PropTypes.string.isRequired,
|
|
24309
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
24310
|
+
currency: PropTypes.string.isRequired,
|
|
24311
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
24312
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
24313
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
24314
|
+
shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
|
|
24315
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
24316
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
24317
|
+
completes_order: PropTypes.bool.isRequired,
|
|
24318
|
+
sequence_number: PropTypes.number.isRequired,
|
|
24319
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
24320
|
+
});
|
|
24321
|
+
|
|
23303
24322
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
23304
24323
|
code: T['io.flow.internal.v0.enums.checkout_error_code'].isRequired,
|
|
23305
24324
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -23521,6 +24540,40 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
|
23521
24540
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
23522
24541
|
});
|
|
23523
24542
|
|
|
24543
|
+
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
24544
|
+
id: PropTypes.string.isRequired,
|
|
24545
|
+
key: PropTypes.string.isRequired,
|
|
24546
|
+
price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
|
|
24547
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24548
|
+
item_number: PropTypes.string.isRequired,
|
|
24549
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
24550
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
24551
|
+
});
|
|
24552
|
+
|
|
24553
|
+
T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
|
|
24554
|
+
currency: PropTypes.string.isRequired,
|
|
24555
|
+
item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24556
|
+
margins: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24557
|
+
vat: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24558
|
+
duty: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24559
|
+
rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
|
|
24560
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24561
|
+
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
24562
|
+
adjustment: T['io.flow.price.v0.models.price_detail'],
|
|
24563
|
+
});
|
|
24564
|
+
|
|
24565
|
+
T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
|
|
24566
|
+
base: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
24567
|
+
local: T['io.flow.price.v0.models.price_details'].isRequired,
|
|
24568
|
+
discount: T['io.flow.price.v0.models.price_detail'],
|
|
24569
|
+
local_before_discount: T['io.flow.price.v0.models.price_detail'],
|
|
24570
|
+
});
|
|
24571
|
+
|
|
24572
|
+
T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
|
|
24573
|
+
display: T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
24574
|
+
'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
|
|
24575
|
+
});
|
|
24576
|
+
|
|
23524
24577
|
T['io.flow.experience.v0.models.order_summary_levy'] = PropTypes.exact({
|
|
23525
24578
|
rate: PropTypes.number.isRequired,
|
|
23526
24579
|
rate_label: PropTypes.string,
|
|
@@ -23667,40 +24720,6 @@ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
|
|
|
23667
24720
|
includes: T['io.flow.common.v0.models.included_levies'],
|
|
23668
24721
|
});
|
|
23669
24722
|
|
|
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
24723
|
T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
|
|
23705
24724
|
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
23706
24725
|
currency: PropTypes.string.isRequired,
|
|
@@ -23732,6 +24751,9 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
23732
24751
|
carrier_tracking_number_url: PropTypes.string.isRequired,
|
|
23733
24752
|
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'],
|
|
23734
24753
|
cost: T['io.flow.common.v0.models.price'],
|
|
24754
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
24755
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
24756
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23735
24757
|
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23736
24758
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
23737
24759
|
flow_tracking_number_url: PropTypes.string.isRequired,
|
|
@@ -23743,6 +24765,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
23743
24765
|
'return': T['io.flow.label.v0.models.shipping_label_document'],
|
|
23744
24766
|
order: T['io.flow.label.v0.models.label_order_summary'],
|
|
23745
24767
|
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
24768
|
+
package_dimension_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
23746
24769
|
order_identifier: PropTypes.string,
|
|
23747
24770
|
fulfillment_key: PropTypes.string,
|
|
23748
24771
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
@@ -23837,11 +24860,6 @@ T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
|
23837
24860
|
status: T['io.flow.internal.v0.enums.payment_summary_status'],
|
|
23838
24861
|
});
|
|
23839
24862
|
|
|
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
24863
|
T['io.flow.internal.v0.models.order_revenue_timeline_data_point'] = PropTypes.exact({
|
|
23846
24864
|
timestamp: PropTypes.string.isRequired,
|
|
23847
24865
|
count: PropTypes.number.isRequired,
|
|
@@ -23889,6 +24907,7 @@ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
|
23889
24907
|
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
23890
24908
|
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
23891
24909
|
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
24910
|
+
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
23892
24911
|
});
|
|
23893
24912
|
|
|
23894
24913
|
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
@@ -24926,18 +25945,6 @@ T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
|
|
|
24926
25945
|
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
24927
25946
|
});
|
|
24928
25947
|
|
|
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
25948
|
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
24942
25949
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
24943
25950
|
session: T['io.flow.common.v0.models.session_reference'],
|
|
@@ -25613,8 +26620,10 @@ T['io.flow.internal.v0.models.main_transaction_deleted'] = PropTypes.exact({
|
|
|
25613
26620
|
T['io.flow.internal.v0.models.label_transaction'] = PropTypes.exact({
|
|
25614
26621
|
discriminator: PropTypes.oneOf(['label_transaction']).isRequired,
|
|
25615
26622
|
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
26623
|
tracking: T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'].isRequired,
|
|
26624
|
+
gross_value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26625
|
+
discount: T['io.flow.internal.v0.models.discount'].isRequired,
|
|
26626
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
25618
26627
|
id: PropTypes.string.isRequired,
|
|
25619
26628
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
25620
26629
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -25911,27 +26920,188 @@ T['io.flow.internal.v0.models.account_contact_upserted'] = PropTypes.exact({
|
|
|
25911
26920
|
account_contact: T['io.flow.internal.v0.models.account_contact'].isRequired,
|
|
25912
26921
|
});
|
|
25913
26922
|
|
|
25914
|
-
T['io.flow.
|
|
25915
|
-
|
|
25916
|
-
|
|
25917
|
-
|
|
25918
|
-
|
|
25919
|
-
|
|
25920
|
-
|
|
25921
|
-
|
|
25922
|
-
T['io.flow.
|
|
25923
|
-
T['io.flow.
|
|
25924
|
-
T['io.flow.
|
|
25925
|
-
|
|
25926
|
-
|
|
25927
|
-
|
|
25928
|
-
|
|
25929
|
-
|
|
25930
|
-
T['io.flow.
|
|
25931
|
-
T['io.flow.
|
|
25932
|
-
T['io.flow.
|
|
25933
|
-
|
|
25934
|
-
|
|
26923
|
+
T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
26924
|
+
discriminator: PropTypes.oneOf(['user_reference']).isRequired,
|
|
26925
|
+
id: PropTypes.string.isRequired,
|
|
26926
|
+
});
|
|
26927
|
+
|
|
26928
|
+
T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
|
|
26929
|
+
discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
|
|
26930
|
+
id: PropTypes.string.isRequired,
|
|
26931
|
+
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26932
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26933
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26934
|
+
});
|
|
26935
|
+
|
|
26936
|
+
T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
|
|
26937
|
+
discriminator: PropTypes.oneOf(['partner_token']).isRequired,
|
|
26938
|
+
id: PropTypes.string.isRequired,
|
|
26939
|
+
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
26940
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26941
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26942
|
+
partial: PropTypes.string.isRequired,
|
|
26943
|
+
created_at: PropTypes.string.isRequired,
|
|
26944
|
+
description: PropTypes.string,
|
|
26945
|
+
});
|
|
26946
|
+
|
|
26947
|
+
T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
|
|
26948
|
+
discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
|
|
26949
|
+
id: PropTypes.string.isRequired,
|
|
26950
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26951
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26952
|
+
partial: PropTypes.string.isRequired,
|
|
26953
|
+
cleartext: PropTypes.string,
|
|
26954
|
+
created_at: PropTypes.string.isRequired,
|
|
26955
|
+
description: PropTypes.string,
|
|
26956
|
+
});
|
|
26957
|
+
|
|
26958
|
+
T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
|
|
26959
|
+
discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
|
|
26960
|
+
id: PropTypes.string.isRequired,
|
|
26961
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26962
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26963
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26964
|
+
});
|
|
26965
|
+
|
|
26966
|
+
T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
|
|
26967
|
+
discriminator: PropTypes.oneOf(['organization_token']).isRequired,
|
|
26968
|
+
id: PropTypes.string.isRequired,
|
|
26969
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26970
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26971
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
26972
|
+
partial: PropTypes.string.isRequired,
|
|
26973
|
+
created_at: PropTypes.string.isRequired,
|
|
26974
|
+
description: PropTypes.string,
|
|
26975
|
+
});
|
|
26976
|
+
|
|
26977
|
+
T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
|
|
26978
|
+
discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
|
|
26979
|
+
id: PropTypes.string.isRequired,
|
|
26980
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26981
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26982
|
+
});
|
|
26983
|
+
|
|
26984
|
+
T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
|
|
26985
|
+
T['io.flow.token.v0.models.channel_token_reference'],
|
|
26986
|
+
T['io.flow.token.v0.models.organization_token_reference'],
|
|
26987
|
+
T['io.flow.token.v0.models.organization_token_v2_reference'],
|
|
26988
|
+
T['io.flow.token.v0.models.partner_token_reference'],
|
|
26989
|
+
]);
|
|
26990
|
+
|
|
26991
|
+
T['io.flow.export.v0.models.scheduled_export'] = PropTypes.exact({
|
|
26992
|
+
id: PropTypes.string.isRequired,
|
|
26993
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
26994
|
+
organization_q: PropTypes.string.isRequired,
|
|
26995
|
+
hour: PropTypes.number.isRequired,
|
|
26996
|
+
minute: PropTypes.number.isRequired,
|
|
26997
|
+
timezone: PropTypes.string.isRequired,
|
|
26998
|
+
types: PropTypes.arrayOf(T['io.flow.export.v0.unions.export_type']).isRequired,
|
|
26999
|
+
last_sent_at: PropTypes.string,
|
|
27000
|
+
});
|
|
27001
|
+
|
|
27002
|
+
T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
|
|
27003
|
+
discriminator: PropTypes.oneOf(['channel_token']).isRequired,
|
|
27004
|
+
id: PropTypes.string.isRequired,
|
|
27005
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
27006
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27007
|
+
partial: PropTypes.string.isRequired,
|
|
27008
|
+
cleartext: PropTypes.string,
|
|
27009
|
+
created_at: PropTypes.string.isRequired,
|
|
27010
|
+
description: PropTypes.string,
|
|
27011
|
+
});
|
|
27012
|
+
|
|
27013
|
+
T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
|
|
27014
|
+
T['io.flow.token.v0.models.channel_token'],
|
|
27015
|
+
T['io.flow.token.v0.models.organization_token'],
|
|
27016
|
+
T['io.flow.token.v0.models.organization_token_v2'],
|
|
27017
|
+
T['io.flow.token.v0.models.partner_token'],
|
|
27018
|
+
]);
|
|
27019
|
+
|
|
27020
|
+
T['io.flow.internal.v0.models.user_one_time_token'] = PropTypes.exact({
|
|
27021
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27022
|
+
token: PropTypes.string.isRequired,
|
|
27023
|
+
});
|
|
27024
|
+
|
|
27025
|
+
T['io.flow.internal.v0.models.partner_membership_summary'] = PropTypes.exact({
|
|
27026
|
+
id: PropTypes.string.isRequired,
|
|
27027
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
27028
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
27029
|
+
});
|
|
27030
|
+
|
|
27031
|
+
T['io.flow.internal.v0.models.partner_membership_version'] = PropTypes.exact({
|
|
27032
|
+
id: PropTypes.string.isRequired,
|
|
27033
|
+
timestamp: PropTypes.string.isRequired,
|
|
27034
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
27035
|
+
partner_membership: T['io.flow.internal.v0.models.partner_membership_summary'].isRequired,
|
|
27036
|
+
});
|
|
27037
|
+
|
|
27038
|
+
T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
|
|
27039
|
+
id: PropTypes.string.isRequired,
|
|
27040
|
+
fraud_review_id: PropTypes.string.isRequired,
|
|
27041
|
+
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
27042
|
+
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
27043
|
+
status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
27044
|
+
created_at: PropTypes.string.isRequired,
|
|
27045
|
+
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
27046
|
+
updated_by_user: T['io.flow.common.v0.models.user_reference'],
|
|
27047
|
+
});
|
|
27048
|
+
|
|
27049
|
+
T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
|
|
27050
|
+
discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
|
|
27051
|
+
fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
|
|
27052
|
+
fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
|
|
27053
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
|
|
27054
|
+
});
|
|
27055
|
+
|
|
27056
|
+
T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
|
|
27057
|
+
T['io.flow.internal.v0.models.payment_summary_v2'],
|
|
27058
|
+
T['io.flow.internal.v0.models.fraud_summary'],
|
|
27059
|
+
]);
|
|
27060
|
+
|
|
27061
|
+
T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
27062
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
27063
|
+
status: T['io.flow.experience.v0.enums.order_status'].isRequired,
|
|
27064
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
|
|
27065
|
+
trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
|
|
27066
|
+
returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
|
|
27067
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
|
|
27068
|
+
submitted_at: PropTypes.string,
|
|
27069
|
+
created_at: PropTypes.string.isRequired,
|
|
27070
|
+
updated_at: PropTypes.string.isRequired,
|
|
27071
|
+
});
|
|
27072
|
+
|
|
27073
|
+
T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
|
|
27074
|
+
discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
|
|
27075
|
+
event_id: PropTypes.string.isRequired,
|
|
27076
|
+
timestamp: PropTypes.string.isRequired,
|
|
27077
|
+
organization: PropTypes.string.isRequired,
|
|
27078
|
+
id: PropTypes.string.isRequired,
|
|
27079
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
|
|
27080
|
+
});
|
|
27081
|
+
|
|
27082
|
+
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27083
|
+
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27084
|
+
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27085
|
+
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
27086
|
+
T['io.flow.internal.v0.models.adyen_cancel_upserted'],
|
|
27087
|
+
T['io.flow.internal.v0.models.adyen_capture_deleted'],
|
|
27088
|
+
T['io.flow.internal.v0.models.adyen_capture_upserted'],
|
|
27089
|
+
T['io.flow.internal.v0.models.adyen_refund_deleted'],
|
|
27090
|
+
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
27091
|
+
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
27092
|
+
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
27093
|
+
T['io.flow.internal.v0.models.account_upserted'],
|
|
27094
|
+
T['io.flow.internal.v0.models.account_upserted_v2'],
|
|
27095
|
+
T['io.flow.internal.v0.models.account_deleted_v2'],
|
|
27096
|
+
T['io.flow.internal.v0.models.account_contact_upserted'],
|
|
27097
|
+
T['io.flow.internal.v0.models.account_contact_deleted'],
|
|
27098
|
+
T['io.flow.internal.v0.models.billing_statement_upserted'],
|
|
27099
|
+
T['io.flow.internal.v0.models.billing_statement_deleted'],
|
|
27100
|
+
T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'],
|
|
27101
|
+
T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'],
|
|
27102
|
+
T['io.flow.internal.v0.models.channel_account_upserted_v2'],
|
|
27103
|
+
T['io.flow.internal.v0.models.channel_account_deleted'],
|
|
27104
|
+
T['io.flow.internal.v0.models.organization_account_upserted_v2'],
|
|
25935
27105
|
T['io.flow.internal.v0.models.organization_account_deleted'],
|
|
25936
27106
|
T['io.flow.internal.v0.models.account_transactions_export_request'],
|
|
25937
27107
|
T['io.flow.internal.v0.models.account_orders_export_request'],
|
|
@@ -25961,8 +27131,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25961
27131
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
25962
27132
|
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
25963
27133
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
27134
|
+
T['io.flow.internal.v0.models.transaction_statement_upserted'],
|
|
27135
|
+
T['io.flow.internal.v0.models.transaction_statement_deleted'],
|
|
25964
27136
|
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
25965
27137
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
27138
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'],
|
|
27139
|
+
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
25966
27140
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
25967
27141
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
25968
27142
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -26099,6 +27273,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26099
27273
|
T['io.flow.internal.v0.models.issuer_upserted'],
|
|
26100
27274
|
T['io.flow.internal.v0.models.issuer_deleted'],
|
|
26101
27275
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
27276
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
27277
|
+
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
26102
27278
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
26103
27279
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
26104
27280
|
T['io.flow.internal.v0.models.localized_item_upserted_v2'],
|
|
@@ -26124,8 +27300,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26124
27300
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
26125
27301
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
26126
27302
|
T['io.flow.internal.v0.models.organization_status_change_deleted'],
|
|
27303
|
+
T['io.flow.internal.v0.models.organization_deactivation_upserted'],
|
|
27304
|
+
T['io.flow.internal.v0.models.organization_deactivation_deleted'],
|
|
27305
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'],
|
|
27306
|
+
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'],
|
|
26127
27307
|
T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
|
|
26128
27308
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
27309
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'],
|
|
27310
|
+
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
|
|
26129
27311
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
26130
27312
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
26131
27313
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -26140,198 +27322,85 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26140
27322
|
T['io.flow.internal.v0.models.chargeback_deleted'],
|
|
26141
27323
|
T['io.flow.internal.v0.models.payment_processor_account_upserted'],
|
|
26142
27324
|
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'],
|
|
27325
|
+
T['io.flow.internal.v0.models.payment_processor_merchant_upserted'],
|
|
27326
|
+
T['io.flow.internal.v0.models.payment_processor_merchant_deleted'],
|
|
27327
|
+
T['io.flow.internal.v0.models.virtual_card_provider_upserted'],
|
|
27328
|
+
T['io.flow.internal.v0.models.virtual_card_provider_deleted'],
|
|
27329
|
+
T['io.flow.internal.v0.models.authorization_bundle_upserted'],
|
|
27330
|
+
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
27331
|
+
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
27332
|
+
T['io.flow.internal.v0.models.organization_payment_setting_deleted'],
|
|
27333
|
+
T['io.flow.internal.v0.models.paypal_payment_deleted'],
|
|
27334
|
+
T['io.flow.internal.v0.models.paypal_payment_upserted'],
|
|
27335
|
+
T['io.flow.internal.v0.models.paypal_execution_deleted'],
|
|
27336
|
+
T['io.flow.internal.v0.models.paypal_execution_upserted'],
|
|
27337
|
+
T['io.flow.internal.v0.models.paypal_refund_deleted'],
|
|
27338
|
+
T['io.flow.internal.v0.models.paypal_refund_upserted'],
|
|
27339
|
+
T['io.flow.internal.v0.models.pricing_indicator'],
|
|
27340
|
+
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
27341
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
27342
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
27343
|
+
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
27344
|
+
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
|
|
27345
|
+
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
27346
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
27347
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
27348
|
+
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
|
|
27349
|
+
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
|
|
27350
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
27351
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
|
|
27352
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
|
|
27353
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
|
|
27354
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
|
|
27355
|
+
T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
|
|
27356
|
+
T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
|
|
27357
|
+
T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
|
|
27358
|
+
T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
|
|
27359
|
+
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
27360
|
+
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
27361
|
+
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
27362
|
+
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27363
|
+
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27364
|
+
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
27365
|
+
T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
|
|
27366
|
+
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
27367
|
+
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
27368
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
27369
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
27370
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
27371
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
27372
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
27373
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
27374
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
27375
|
+
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
27376
|
+
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
27377
|
+
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
27378
|
+
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
27379
|
+
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
27380
|
+
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
27381
|
+
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
27382
|
+
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
27383
|
+
T['io.flow.internal.v0.models.stripe_reversal_upserted'],
|
|
27384
|
+
T['io.flow.internal.v0.models.stripe_capture_deleted'],
|
|
27385
|
+
T['io.flow.internal.v0.models.stripe_capture_upserted'],
|
|
27386
|
+
T['io.flow.internal.v0.models.stripe_refund_deleted'],
|
|
27387
|
+
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
27388
|
+
T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'],
|
|
27389
|
+
T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'],
|
|
27390
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27391
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
27392
|
+
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
27393
|
+
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'],
|
|
27394
|
+
T['io.flow.internal.v0.models.tracking_label_upserted'],
|
|
27395
|
+
T['io.flow.internal.v0.models.tracking_label_deleted'],
|
|
27396
|
+
T['io.flow.internal.v0.models.tracking_upserted'],
|
|
27397
|
+
T['io.flow.internal.v0.models.tracking_deleted'],
|
|
27398
|
+
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27399
|
+
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27400
|
+
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
27401
|
+
T['io.flow.internal.v0.models.user_deleted_v2'],
|
|
26315
27402
|
]);
|
|
26316
27403
|
|
|
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
27404
|
T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
|
|
26336
27405
|
T['io.flow.common.v0.models.user'],
|
|
26337
27406
|
T['io.flow.common.v0.models.user_reference'],
|
|
@@ -26424,7 +27493,7 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
|
26424
27493
|
'remote_area_surcharge',
|
|
26425
27494
|
]);
|
|
26426
27495
|
|
|
26427
|
-
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['
|
|
27496
|
+
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['summary']);
|
|
26428
27497
|
|
|
26429
27498
|
T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
26430
27499
|
'flow_rate_and_rule',
|
|
@@ -26436,13 +27505,13 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
|
26436
27505
|
|
|
26437
27506
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
26438
27507
|
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
27508
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
26441
27509
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
26442
27510
|
T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
|
|
26443
27511
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
26444
27512
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
26445
27513
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
27514
|
+
T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
26446
27515
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
26447
27516
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
26448
27517
|
|
|
@@ -26455,6 +27524,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26455
27524
|
'adyen_capture_upserted',
|
|
26456
27525
|
'adyen_refund_deleted',
|
|
26457
27526
|
'adyen_refund_upserted',
|
|
27527
|
+
'index_assignment_upserted',
|
|
27528
|
+
'index_assignment_deleted',
|
|
26458
27529
|
'account_upserted',
|
|
26459
27530
|
'account_upserted_v2',
|
|
26460
27531
|
'account_deleted_v2',
|
|
@@ -26496,8 +27567,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26496
27567
|
'tax_transaction_deleted',
|
|
26497
27568
|
'duty_transaction_upserted',
|
|
26498
27569
|
'duty_transaction_deleted',
|
|
27570
|
+
'transaction_statement_upserted',
|
|
27571
|
+
'transaction_statement_deleted',
|
|
26499
27572
|
'daily_value_upserted',
|
|
26500
27573
|
'daily_value_deleted',
|
|
27574
|
+
'label_invoice_request_upserted',
|
|
27575
|
+
'label_invoice_request_deleted',
|
|
26501
27576
|
'calculator_organization_settings_upserted',
|
|
26502
27577
|
'calculator_organization_settings_deleted',
|
|
26503
27578
|
'carrier_account_upserted_v2',
|
|
@@ -26634,6 +27709,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26634
27709
|
'issuer_upserted',
|
|
26635
27710
|
'issuer_deleted',
|
|
26636
27711
|
'item_form_import_request',
|
|
27712
|
+
'label_request_error_upserted',
|
|
27713
|
+
'label_request_error_deleted',
|
|
26637
27714
|
'label_tracking_summary_upserted',
|
|
26638
27715
|
'label_tracking_summary_deleted',
|
|
26639
27716
|
'localized_item_upserted_v2',
|
|
@@ -26659,8 +27736,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26659
27736
|
'organization_business_entity_upserted',
|
|
26660
27737
|
'organization_status_change_upserted',
|
|
26661
27738
|
'organization_status_change_deleted',
|
|
27739
|
+
'organization_deactivation_upserted',
|
|
27740
|
+
'organization_deactivation_deleted',
|
|
27741
|
+
'merchant_guid_assignment_upserted',
|
|
27742
|
+
'merchant_guid_assignment_deleted',
|
|
26662
27743
|
'partner_organization_settings_upserted',
|
|
26663
27744
|
'partner_organization_settings_deleted',
|
|
27745
|
+
'unassigned_merchant_guid_upserted',
|
|
27746
|
+
'unassigned_merchant_guid_deleted',
|
|
26664
27747
|
'internal_authorization_upserted',
|
|
26665
27748
|
'internal_authorization_deleted',
|
|
26666
27749
|
'afterpay_authorization_upserted',
|
|
@@ -26724,6 +27807,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26724
27807
|
'shopify_markets_webhook_registration_deleted',
|
|
26725
27808
|
'shopify_markets_shop_statistics_upserted',
|
|
26726
27809
|
'shopify_markets_shop_statistics_deleted',
|
|
27810
|
+
'shopify_markets_metrics_upserted',
|
|
27811
|
+
'shopify_markets_metrics_deleted',
|
|
26727
27812
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
26728
27813
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
26729
27814
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -26768,6 +27853,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
26768
27853
|
'unit_test',
|
|
26769
27854
|
'api',
|
|
26770
27855
|
'api_activation',
|
|
27856
|
+
'api_sandbox_setup',
|
|
26771
27857
|
'api_internal',
|
|
26772
27858
|
'api_internal_block',
|
|
26773
27859
|
'api_internal_unblock',
|
|
@@ -26810,18 +27896,31 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
26810
27896
|
'channel_transaction',
|
|
26811
27897
|
'channel_organization',
|
|
26812
27898
|
'consumer_invoice',
|
|
27899
|
+
'fulfillment_in_transit',
|
|
27900
|
+
'fulfillment_shipping_notification',
|
|
27901
|
+
'fulfillment_external',
|
|
26813
27902
|
'label_tracking_summary',
|
|
27903
|
+
'label_invoice_request',
|
|
27904
|
+
'label_origin',
|
|
26814
27905
|
'order',
|
|
26815
27906
|
'order_identifier',
|
|
26816
27907
|
'refund',
|
|
26817
27908
|
'refund_deletion',
|
|
27909
|
+
'refund_over_capture',
|
|
27910
|
+
'sales_record',
|
|
26818
27911
|
'statement_batch',
|
|
26819
|
-
'statement_batch_email',
|
|
26820
27912
|
'statement_email',
|
|
26821
27913
|
'statement_summary_email',
|
|
26822
27914
|
'wash',
|
|
26823
27915
|
]);
|
|
26824
27916
|
|
|
27917
|
+
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
27918
|
+
'shopify_small_usa',
|
|
27919
|
+
'shopify_medium_usa',
|
|
27920
|
+
'shopify_enterprise_usa',
|
|
27921
|
+
'shopify_small_sdc_usa',
|
|
27922
|
+
]);
|
|
27923
|
+
|
|
26825
27924
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
26826
27925
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
26827
27926
|
T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
|
|
@@ -26855,6 +27954,15 @@ T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf
|
|
|
26855
27954
|
|
|
26856
27955
|
T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
26857
27956
|
|
|
27957
|
+
T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.oneOf([
|
|
27958
|
+
'order_update',
|
|
27959
|
+
'card_payment',
|
|
27960
|
+
'online_payment',
|
|
27961
|
+
'flow_shop',
|
|
27962
|
+
'catalog_publication_sync',
|
|
27963
|
+
'product_restriction_result',
|
|
27964
|
+
]);
|
|
27965
|
+
|
|
26858
27966
|
T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
26859
27967
|
'apparel_and_accessories',
|
|
26860
27968
|
'beauty_and_cosmetics',
|
|
@@ -26884,8 +27992,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
26884
27992
|
'fraud_review',
|
|
26885
27993
|
'carrier_account',
|
|
26886
27994
|
'payment',
|
|
26887
|
-
'
|
|
26888
|
-
'logistics_center',
|
|
27995
|
+
'rate_levels',
|
|
26889
27996
|
'center_defaults',
|
|
26890
27997
|
]);
|
|
26891
27998
|
|
|
@@ -27123,11 +28230,6 @@ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
|
27123
28230
|
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27124
28231
|
});
|
|
27125
28232
|
|
|
27126
|
-
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
27127
|
-
amount: PropTypes.number.isRequired,
|
|
27128
|
-
description: PropTypes.string,
|
|
27129
|
-
});
|
|
27130
|
-
|
|
27131
28233
|
T['io.flow.internal.v0.models.discount_code'] = PropTypes.exact({
|
|
27132
28234
|
code: PropTypes.string.isRequired,
|
|
27133
28235
|
});
|
|
@@ -27150,6 +28252,89 @@ T['io.flow.internal.v0.models.email_modification_form'] = PropTypes.exact({
|
|
|
27150
28252
|
email: PropTypes.string,
|
|
27151
28253
|
});
|
|
27152
28254
|
|
|
28255
|
+
T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
|
|
28256
|
+
id: PropTypes.string.isRequired,
|
|
28257
|
+
acc_des: PropTypes.string,
|
|
28258
|
+
tax_code: PropTypes.string,
|
|
28259
|
+
vat_flag: PropTypes.string,
|
|
28260
|
+
country_name: PropTypes.string,
|
|
28261
|
+
w_tax_percent: PropTypes.string,
|
|
28262
|
+
iban: PropTypes.string,
|
|
28263
|
+
confirmed_date: PropTypes.string,
|
|
28264
|
+
w_tax_date: PropTypes.string,
|
|
28265
|
+
w_tax_num_expl: PropTypes.string,
|
|
28266
|
+
acng_code: PropTypes.string,
|
|
28267
|
+
phone: PropTypes.string,
|
|
28268
|
+
address: PropTypes.string,
|
|
28269
|
+
address_a: PropTypes.string,
|
|
28270
|
+
address_2: PropTypes.string,
|
|
28271
|
+
address_3: PropTypes.string,
|
|
28272
|
+
state_name: PropTypes.string,
|
|
28273
|
+
code: PropTypes.string,
|
|
28274
|
+
zip: PropTypes.string,
|
|
28275
|
+
pay_account: PropTypes.string,
|
|
28276
|
+
comp_num: PropTypes.string,
|
|
28277
|
+
w_tax_num: PropTypes.string,
|
|
28278
|
+
vat_num: PropTypes.string,
|
|
28279
|
+
orig_acc_name: PropTypes.string,
|
|
28280
|
+
branch: PropTypes.string,
|
|
28281
|
+
form_1099_code: PropTypes.string,
|
|
28282
|
+
trial_bal_code: PropTypes.string,
|
|
28283
|
+
sec_name: PropTypes.string,
|
|
28284
|
+
state: PropTypes.string,
|
|
28285
|
+
state_a: PropTypes.string,
|
|
28286
|
+
fax: PropTypes.string,
|
|
28287
|
+
details: PropTypes.string,
|
|
28288
|
+
bank_code: PropTypes.string,
|
|
28289
|
+
state_code: PropTypes.string,
|
|
28290
|
+
tax_office_code: PropTypes.string,
|
|
28291
|
+
pay_code: PropTypes.string,
|
|
28292
|
+
eacc_des: PropTypes.string,
|
|
28293
|
+
acng_des: PropTypes.string,
|
|
28294
|
+
branch_des: PropTypes.string,
|
|
28295
|
+
});
|
|
28296
|
+
|
|
28297
|
+
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
28298
|
+
acc_des: PropTypes.string,
|
|
28299
|
+
tax_code: PropTypes.string,
|
|
28300
|
+
vat_flag: PropTypes.string,
|
|
28301
|
+
country_name: PropTypes.string,
|
|
28302
|
+
w_tax_percent: PropTypes.string,
|
|
28303
|
+
iban: PropTypes.string,
|
|
28304
|
+
confirmed_date: PropTypes.string,
|
|
28305
|
+
w_tax_date: PropTypes.string,
|
|
28306
|
+
w_tax_num_expl: PropTypes.string,
|
|
28307
|
+
acng_code: PropTypes.string,
|
|
28308
|
+
phone: PropTypes.string,
|
|
28309
|
+
address: PropTypes.string,
|
|
28310
|
+
address_a: PropTypes.string,
|
|
28311
|
+
address_2: PropTypes.string,
|
|
28312
|
+
address_3: PropTypes.string,
|
|
28313
|
+
state_name: PropTypes.string,
|
|
28314
|
+
code: PropTypes.string,
|
|
28315
|
+
zip: PropTypes.string,
|
|
28316
|
+
pay_account: PropTypes.string,
|
|
28317
|
+
comp_num: PropTypes.string,
|
|
28318
|
+
w_tax_num: PropTypes.string,
|
|
28319
|
+
vat_num: PropTypes.string,
|
|
28320
|
+
orig_acc_name: PropTypes.string,
|
|
28321
|
+
branch: PropTypes.string,
|
|
28322
|
+
form_1099_code: PropTypes.string,
|
|
28323
|
+
trial_bal_code: PropTypes.string,
|
|
28324
|
+
sec_name: PropTypes.string,
|
|
28325
|
+
state: PropTypes.string,
|
|
28326
|
+
state_a: PropTypes.string,
|
|
28327
|
+
fax: PropTypes.string,
|
|
28328
|
+
details: PropTypes.string,
|
|
28329
|
+
bank_code: PropTypes.string,
|
|
28330
|
+
state_code: PropTypes.string,
|
|
28331
|
+
tax_office_code: PropTypes.string,
|
|
28332
|
+
pay_code: PropTypes.string,
|
|
28333
|
+
eacc_des: PropTypes.string,
|
|
28334
|
+
acng_des: PropTypes.string,
|
|
28335
|
+
branch_des: PropTypes.string,
|
|
28336
|
+
});
|
|
28337
|
+
|
|
27153
28338
|
T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
27154
28339
|
placeholder: PropTypes.string,
|
|
27155
28340
|
});
|
|
@@ -27229,6 +28414,10 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
|
|
|
27229
28414
|
default_contents: PropTypes.string.isRequired,
|
|
27230
28415
|
});
|
|
27231
28416
|
|
|
28417
|
+
T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
|
|
28418
|
+
id: PropTypes.string.isRequired,
|
|
28419
|
+
});
|
|
28420
|
+
|
|
27232
28421
|
T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
|
|
27233
28422
|
number: PropTypes.string.isRequired,
|
|
27234
28423
|
pin: PropTypes.string,
|
|
@@ -27244,6 +28433,18 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
|
|
|
27244
28433
|
created_by_email: PropTypes.string.isRequired,
|
|
27245
28434
|
});
|
|
27246
28435
|
|
|
28436
|
+
T['io.flow.internal.v0.models.harmonization_threshold'] = PropTypes.exact({
|
|
28437
|
+
id: PropTypes.string.isRequired,
|
|
28438
|
+
chapter: PropTypes.number.isRequired,
|
|
28439
|
+
value: PropTypes.number.isRequired,
|
|
28440
|
+
updated_at: PropTypes.string.isRequired,
|
|
28441
|
+
});
|
|
28442
|
+
|
|
28443
|
+
T['io.flow.internal.v0.models.harmonization_threshold_form'] = PropTypes.exact({
|
|
28444
|
+
chapter: PropTypes.number.isRequired,
|
|
28445
|
+
value: PropTypes.number.isRequired,
|
|
28446
|
+
});
|
|
28447
|
+
|
|
27247
28448
|
T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
|
|
27248
28449
|
code: PropTypes.string.isRequired,
|
|
27249
28450
|
description: PropTypes.string.isRequired,
|
|
@@ -27326,11 +28527,6 @@ T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
27326
28527
|
destination: PropTypes.string.isRequired,
|
|
27327
28528
|
});
|
|
27328
28529
|
|
|
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
28530
|
T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
|
|
27335
28531
|
token: PropTypes.string.isRequired,
|
|
27336
28532
|
});
|
|
@@ -27406,6 +28602,10 @@ T['io.flow.internal.v0.models.order_service_change_csv_form'] = PropTypes.exact(
|
|
|
27406
28602
|
to_service_id: PropTypes.string.isRequired,
|
|
27407
28603
|
});
|
|
27408
28604
|
|
|
28605
|
+
T['io.flow.internal.v0.models.organization_deactivation_form'] = PropTypes.exact({
|
|
28606
|
+
deactivate_at: PropTypes.string.isRequired,
|
|
28607
|
+
});
|
|
28608
|
+
|
|
27409
28609
|
T['io.flow.internal.v0.models.organization_invitation_accept_form'] = PropTypes.exact({
|
|
27410
28610
|
email: PropTypes.string.isRequired,
|
|
27411
28611
|
});
|
|
@@ -27456,6 +28656,12 @@ T['io.flow.internal.v0.models.payment_organization_settings_put_form'] = PropTyp
|
|
|
27456
28656
|
payment_statement_suffix: PropTypes.string,
|
|
27457
28657
|
});
|
|
27458
28658
|
|
|
28659
|
+
T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
28660
|
+
scheduled: PropTypes.number.isRequired,
|
|
28661
|
+
sent: PropTypes.number.isRequired,
|
|
28662
|
+
failed: PropTypes.number.isRequired,
|
|
28663
|
+
});
|
|
28664
|
+
|
|
27459
28665
|
T['io.flow.internal.v0.models.phrase_classified'] = PropTypes.exact({
|
|
27460
28666
|
event_id: PropTypes.string.isRequired,
|
|
27461
28667
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -27485,6 +28691,20 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
|
|
|
27485
28691
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27486
28692
|
});
|
|
27487
28693
|
|
|
28694
|
+
T['io.flow.internal.v0.models.queued_record'] = PropTypes.exact({
|
|
28695
|
+
type: PropTypes.string.isRequired,
|
|
28696
|
+
type_id: PropTypes.string.isRequired,
|
|
28697
|
+
source_type: PropTypes.string,
|
|
28698
|
+
source_id: PropTypes.string,
|
|
28699
|
+
environment: PropTypes.string,
|
|
28700
|
+
created_at: PropTypes.string.isRequired,
|
|
28701
|
+
num_attempts: PropTypes.number.isRequired,
|
|
28702
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
28703
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
28704
|
+
stacktrace: PropTypes.string,
|
|
28705
|
+
snooze_id: PropTypes.string,
|
|
28706
|
+
});
|
|
28707
|
+
|
|
27488
28708
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
27489
28709
|
base: PropTypes.string.isRequired,
|
|
27490
28710
|
target: PropTypes.string.isRequired,
|
|
@@ -27500,6 +28720,7 @@ T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
|
27500
28720
|
|
|
27501
28721
|
T['io.flow.internal.v0.models.rate_level_form'] = PropTypes.exact({
|
|
27502
28722
|
name: PropTypes.string.isRequired,
|
|
28723
|
+
key: PropTypes.string.isRequired,
|
|
27503
28724
|
});
|
|
27504
28725
|
|
|
27505
28726
|
T['io.flow.internal.v0.models.rate_level_organization_form'] = PropTypes.exact({
|
|
@@ -27515,6 +28736,7 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
|
|
|
27515
28736
|
id: PropTypes.string.isRequired,
|
|
27516
28737
|
name: PropTypes.string.isRequired,
|
|
27517
28738
|
effective_at: PropTypes.string.isRequired,
|
|
28739
|
+
key: PropTypes.string.isRequired,
|
|
27518
28740
|
});
|
|
27519
28741
|
|
|
27520
28742
|
T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
|
|
@@ -27523,6 +28745,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
27523
28745
|
margin: PropTypes.number.isRequired,
|
|
27524
28746
|
});
|
|
27525
28747
|
|
|
28748
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
28749
|
+
key: PropTypes.string,
|
|
28750
|
+
from: PropTypes.string.isRequired,
|
|
28751
|
+
to: PropTypes.string.isRequired,
|
|
28752
|
+
organization_id: PropTypes.string,
|
|
28753
|
+
});
|
|
28754
|
+
|
|
27526
28755
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
27527
28756
|
task_id: PropTypes.string.isRequired,
|
|
27528
28757
|
});
|
|
@@ -27539,6 +28768,24 @@ T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
|
|
|
27539
28768
|
category: PropTypes.string.isRequired,
|
|
27540
28769
|
});
|
|
27541
28770
|
|
|
28771
|
+
T['io.flow.internal.v0.models.retracking'] = PropTypes.exact({
|
|
28772
|
+
carrier: PropTypes.string.isRequired,
|
|
28773
|
+
tracking_number: PropTypes.string,
|
|
28774
|
+
});
|
|
28775
|
+
|
|
28776
|
+
T['io.flow.internal.v0.models.retracking_form'] = PropTypes.exact({
|
|
28777
|
+
carrier: PropTypes.string.isRequired,
|
|
28778
|
+
carrier_tracking_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28779
|
+
});
|
|
28780
|
+
|
|
28781
|
+
T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
|
|
28782
|
+
requested_by: PropTypes.string.isRequired,
|
|
28783
|
+
});
|
|
28784
|
+
|
|
28785
|
+
T['io.flow.internal.v0.models.sandbox_setup_form'] = PropTypes.exact({
|
|
28786
|
+
requested_by: PropTypes.string.isRequired,
|
|
28787
|
+
});
|
|
28788
|
+
|
|
27542
28789
|
T['io.flow.internal.v0.models.screen'] = PropTypes.exact({
|
|
27543
28790
|
id: PropTypes.string.isRequired,
|
|
27544
28791
|
q: PropTypes.string.isRequired,
|
|
@@ -27680,6 +28927,11 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
|
|
|
27680
28927
|
code: PropTypes.string.isRequired,
|
|
27681
28928
|
});
|
|
27682
28929
|
|
|
28930
|
+
T['io.flow.internal.v0.models.shopify_store_password'] = PropTypes.exact({
|
|
28931
|
+
temporary_password: PropTypes.string.isRequired,
|
|
28932
|
+
expiry: PropTypes.string.isRequired,
|
|
28933
|
+
});
|
|
28934
|
+
|
|
27683
28935
|
T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
|
|
27684
28936
|
placeholder: PropTypes.string.isRequired,
|
|
27685
28937
|
});
|
|
@@ -27729,6 +28981,10 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
|
|
|
27729
28981
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27730
28982
|
});
|
|
27731
28983
|
|
|
28984
|
+
T['io.flow.internal.v0.models.wash_carrier_actual_file_form'] = PropTypes.exact({
|
|
28985
|
+
url: PropTypes.string.isRequired,
|
|
28986
|
+
});
|
|
28987
|
+
|
|
27732
28988
|
T['io.flow.internal.v0.models.wash_export_request'] = PropTypes.exact({
|
|
27733
28989
|
url: PropTypes.string.isRequired,
|
|
27734
28990
|
});
|
|
@@ -27769,7 +29025,7 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
|
|
|
27769
29025
|
name: PropTypes.string,
|
|
27770
29026
|
});
|
|
27771
29027
|
|
|
27772
|
-
T['io.flow.
|
|
29028
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
|
|
27773
29029
|
|
|
27774
29030
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
27775
29031
|
placeholder: PropTypes.string,
|
|
@@ -28495,8 +29751,45 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
28495
29751
|
order_id: PropTypes.string,
|
|
28496
29752
|
});
|
|
28497
29753
|
|
|
29754
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
29755
|
+
country: PropTypes.string.isRequired,
|
|
29756
|
+
});
|
|
29757
|
+
|
|
29758
|
+
T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
|
|
29759
|
+
|
|
29760
|
+
T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
|
|
29761
|
+
'accessories',
|
|
29762
|
+
'animals_and_pet_supplies',
|
|
29763
|
+
'apparel',
|
|
29764
|
+
'apparel_and_accessories',
|
|
29765
|
+
'arts_and_entertainment',
|
|
29766
|
+
'baby_and_toddler',
|
|
29767
|
+
'business_and_industrial',
|
|
29768
|
+
'cameras_and_optics',
|
|
29769
|
+
'electronics',
|
|
29770
|
+
'food_beverages_and_tobacco',
|
|
29771
|
+
'furniture',
|
|
29772
|
+
'gift_cards',
|
|
29773
|
+
'hardware',
|
|
29774
|
+
'health_and_beauty',
|
|
29775
|
+
'home_and_garden',
|
|
29776
|
+
'jewelry',
|
|
29777
|
+
'luggage_and_bags',
|
|
29778
|
+
'mature',
|
|
29779
|
+
'media',
|
|
29780
|
+
'office_supplies',
|
|
29781
|
+
'paper_and_art',
|
|
29782
|
+
'religious_and_ceremonial',
|
|
29783
|
+
'software',
|
|
29784
|
+
'sporting_goods',
|
|
29785
|
+
'sports_and_fitness',
|
|
29786
|
+
'toys_and_games',
|
|
29787
|
+
'toys_hobbies_gifts',
|
|
29788
|
+
'vehicles_and_parts',
|
|
29789
|
+
'other',
|
|
29790
|
+
]);
|
|
29791
|
+
|
|
28498
29792
|
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
29793
|
T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
28501
29794
|
T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
28502
29795
|
|
|
@@ -28659,6 +29952,10 @@ T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropT
|
|
|
28659
29952
|
placeholder: PropTypes.bool,
|
|
28660
29953
|
});
|
|
28661
29954
|
|
|
29955
|
+
T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = PropTypes.exact({
|
|
29956
|
+
reason: PropTypes.string.isRequired,
|
|
29957
|
+
});
|
|
29958
|
+
|
|
28662
29959
|
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
28663
29960
|
base: PropTypes.string.isRequired,
|
|
28664
29961
|
target: PropTypes.string.isRequired,
|
|
@@ -28786,6 +30083,7 @@ export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_s
|
|
|
28786
30083
|
export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
|
|
28787
30084
|
export const alertImportSummary = T['io.flow.internal.v0.models.alert_import_summary'];
|
|
28788
30085
|
export const alertRequeueSummary = T['io.flow.internal.v0.models.alert_requeue_summary'];
|
|
30086
|
+
export const algoliaIndexAssignment = T['io.flow.internal.v0.models.algolia_index_assignment'];
|
|
28789
30087
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
28790
30088
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
28791
30089
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
@@ -28808,6 +30106,7 @@ export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized
|
|
|
28808
30106
|
export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
|
|
28809
30107
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
28810
30108
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
30109
|
+
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
28811
30110
|
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
28812
30111
|
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
28813
30112
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
@@ -28839,7 +30138,6 @@ export const billingStatementAttachmentKey = T['io.flow.internal.v0.enums.billin
|
|
|
28839
30138
|
export const billingStatementBatch = T['io.flow.internal.v0.models.billing_statement_batch'];
|
|
28840
30139
|
export const billingStatementBatchDeleted = T['io.flow.internal.v0.models.billing_statement_batch_deleted'];
|
|
28841
30140
|
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
30141
|
export const billingStatementBatchReference = T['io.flow.internal.v0.models.billing_statement_batch_reference'];
|
|
28844
30142
|
export const billingStatementBatchStatement = T['io.flow.internal.v0.models.billing_statement_batch_statement'];
|
|
28845
30143
|
export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'];
|
|
@@ -28906,6 +30204,8 @@ export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser
|
|
|
28906
30204
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
28907
30205
|
export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
|
|
28908
30206
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30207
|
+
export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_dtce_post_body'];
|
|
30208
|
+
export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
|
|
28909
30209
|
export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
|
|
28910
30210
|
export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calculator_organization_settings'];
|
|
28911
30211
|
export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
|
|
@@ -28915,9 +30215,11 @@ export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
|
|
|
28915
30215
|
export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
|
|
28916
30216
|
export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
|
|
28917
30217
|
export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_account_upserted_v2'];
|
|
30218
|
+
export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
|
|
28918
30219
|
export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
|
|
28919
30220
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
28920
30221
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
30222
|
+
export const carrierValidationStatus = T['io.flow.internal.v0.enums.carrier_validation_status'];
|
|
28921
30223
|
export const catalogImportRequest = T['io.flow.internal.v0.models.catalog_import_request'];
|
|
28922
30224
|
export const catalogImportType = T['io.flow.internal.v0.enums.catalog_import_type'];
|
|
28923
30225
|
export const catalogItemBatchIndexTask = T['io.flow.internal.v0.models.catalog_item_batch_index_task'];
|
|
@@ -28926,6 +30228,7 @@ export const catalogItemIndexTask = T['io.flow.internal.v0.models.catalog_item_i
|
|
|
28926
30228
|
export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.catalog_item_region_availabilities'];
|
|
28927
30229
|
export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
|
|
28928
30230
|
export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
|
|
30231
|
+
export const catalogPublicationSyncValidationError = T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'];
|
|
28929
30232
|
export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
|
|
28930
30233
|
export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
|
|
28931
30234
|
export const catalogSettingsPutForm = T['io.flow.internal.v0.models.catalog_settings_put_form'];
|
|
@@ -28961,6 +30264,7 @@ export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_orde
|
|
|
28961
30264
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
28962
30265
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
28963
30266
|
export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
|
|
30267
|
+
export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
|
|
28964
30268
|
export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
|
|
28965
30269
|
export const channelOrderAcceptanceRejectionReason = T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'];
|
|
28966
30270
|
export const channelOrderAcceptanceStatus = T['io.flow.internal.v0.enums.channel_order_acceptance_status'];
|
|
@@ -29542,6 +30846,7 @@ export const classificationWrapper = T['io.flow.internal.v0.models.classificatio
|
|
|
29542
30846
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
29543
30847
|
export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
|
|
29544
30848
|
export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
|
|
30849
|
+
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
29545
30850
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
29546
30851
|
export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
29547
30852
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
@@ -29672,6 +30977,7 @@ export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor']
|
|
|
29672
30977
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
29673
30978
|
export const disputeStatusForm = T['io.flow.internal.v0.models.dispute_status_form'];
|
|
29674
30979
|
export const disputeTransaction = T['io.flow.internal.v0.models.dispute_transaction'];
|
|
30980
|
+
export const disputeTransactionType = T['io.flow.internal.v0.enums.dispute_transaction_type'];
|
|
29675
30981
|
export const disputeType = T['io.flow.internal.v0.enums.dispute_type'];
|
|
29676
30982
|
export const disputeUpserted = T['io.flow.internal.v0.models.dispute_upserted'];
|
|
29677
30983
|
export const dutiedItemsExport = T['io.flow.internal.v0.models.dutied_items_export'];
|
|
@@ -29716,10 +31022,13 @@ export const erpFlowFileForm = T['io.flow.internal.v0.models.erp_flow_file_form'
|
|
|
29716
31022
|
export const erpFlowVendor = T['io.flow.internal.v0.models.erp_flow_vendor'];
|
|
29717
31023
|
export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
|
|
29718
31024
|
export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
|
|
31025
|
+
export const erpPriorityVendor = T['io.flow.internal.v0.models.erp_priority_vendor'];
|
|
31026
|
+
export const erpPriorityVendorForm = T['io.flow.internal.v0.models.erp_priority_vendor_form'];
|
|
29719
31027
|
export const erpVendor = T['io.flow.internal.v0.models.erp_vendor'];
|
|
29720
31028
|
export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status'];
|
|
29721
31029
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
29722
|
-
export const
|
|
31030
|
+
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
31031
|
+
export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
|
|
29723
31032
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
29724
31033
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
29725
31034
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -29832,6 +31141,7 @@ export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_pro
|
|
|
29832
31141
|
export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_project_put_form'];
|
|
29833
31142
|
export const flowLabelSetting = T['io.flow.internal.v0.models.flow_label_setting'];
|
|
29834
31143
|
export const flowLabelSettingForm = T['io.flow.internal.v0.models.flow_label_setting_form'];
|
|
31144
|
+
export const flowShopValidationError = T['io.flow.internal.v0.models.flow_shop_validation_error'];
|
|
29835
31145
|
export const format = T['io.flow.internal.v0.enums.format'];
|
|
29836
31146
|
export const fraudPendingReview = T['io.flow.internal.v0.models.fraud_pending_review'];
|
|
29837
31147
|
export const fraudPendingReviewDeleted = T['io.flow.internal.v0.models.fraud_pending_review_deleted'];
|
|
@@ -29867,11 +31177,22 @@ export const ftpSettingsPaths = T['io.flow.internal.v0.models.ftp_settings_paths
|
|
|
29867
31177
|
export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
|
|
29868
31178
|
export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
|
|
29869
31179
|
export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
|
|
31180
|
+
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
29870
31181
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
31182
|
+
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
29871
31183
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
29872
31184
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
31185
|
+
export const fulfillmentLine = T['io.flow.internal.v0.models.fulfillment_line'];
|
|
31186
|
+
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
31187
|
+
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
31188
|
+
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
31189
|
+
export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'];
|
|
31190
|
+
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
31191
|
+
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
29873
31192
|
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
31193
|
+
export const fulfillmentShipping = T['io.flow.internal.v0.models.fulfillment_shipping'];
|
|
29874
31194
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
31195
|
+
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
29875
31196
|
export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
|
|
29876
31197
|
export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
|
|
29877
31198
|
export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
|
|
@@ -29883,6 +31204,7 @@ export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_reven
|
|
|
29883
31204
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
29884
31205
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
29885
31206
|
export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
|
|
31207
|
+
export const genericValidationError = T['io.flow.internal.v0.models.generic_validation_error'];
|
|
29886
31208
|
export const giftCard = T['io.flow.internal.v0.models.gift_card'];
|
|
29887
31209
|
export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
|
|
29888
31210
|
export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
|
|
@@ -29905,6 +31227,8 @@ export const harmonizationItemClassificationUpserted = T['io.flow.internal.v0.mo
|
|
|
29905
31227
|
export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
|
|
29906
31228
|
export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
|
|
29907
31229
|
export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
|
|
31230
|
+
export const harmonizationThreshold = T['io.flow.internal.v0.models.harmonization_threshold'];
|
|
31231
|
+
export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmonization_threshold_form'];
|
|
29908
31232
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
29909
31233
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
29910
31234
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
@@ -29969,6 +31293,8 @@ export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hyb
|
|
|
29969
31293
|
export const hybrisCatalogItemsImportRequestData = T['io.flow.internal.v0.models.hybris_catalog_items_import_request_data'];
|
|
29970
31294
|
export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
|
|
29971
31295
|
export const importFailed = T['io.flow.internal.v0.models.import_failed'];
|
|
31296
|
+
export const indexAssignmentDeleted = T['io.flow.internal.v0.models.index_assignment_deleted'];
|
|
31297
|
+
export const indexAssignmentUpserted = T['io.flow.internal.v0.models.index_assignment_upserted'];
|
|
29972
31298
|
export const indexTaskType = T['io.flow.internal.v0.unions.index_task_type'];
|
|
29973
31299
|
export const initialInputDataSource = T['io.flow.internal.v0.enums.initial_input_data_source'];
|
|
29974
31300
|
export const inlineAuthorizationParameters = T['io.flow.internal.v0.unions.inline_authorization_parameters'];
|
|
@@ -30039,6 +31365,7 @@ export const itemSalesMarginPostForm = T['io.flow.internal.v0.models.item_sales_
|
|
|
30039
31365
|
export const itemSalesMarginPutForm = T['io.flow.internal.v0.models.item_sales_margin_put_form'];
|
|
30040
31366
|
export const itemSalesMarginUpserted = T['io.flow.internal.v0.models.item_sales_margin_upserted'];
|
|
30041
31367
|
export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_margin_version'];
|
|
31368
|
+
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
30042
31369
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
30043
31370
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
30044
31371
|
export const itemsShipped = T['io.flow.internal.v0.models.items_shipped'];
|
|
@@ -30052,6 +31379,7 @@ export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_
|
|
|
30052
31379
|
export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
|
|
30053
31380
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
30054
31381
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
31382
|
+
export const labelBase = T['io.flow.internal.v0.models.label_base'];
|
|
30055
31383
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
30056
31384
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
30057
31385
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
@@ -30059,6 +31387,7 @@ export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job
|
|
|
30059
31387
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
30060
31388
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
30061
31389
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
31390
|
+
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
30062
31391
|
export const labelGenerationAddressFailureStatus = T['io.flow.internal.v0.enums.label_generation_address_failure_status'];
|
|
30063
31392
|
export const labelGenerationAddressFailureStatusUpdateForm = T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'];
|
|
30064
31393
|
export const labelGenerationAddressFailures = T['io.flow.internal.v0.models.label_generation_address_failures'];
|
|
@@ -30067,7 +31396,20 @@ export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.labe
|
|
|
30067
31396
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
30068
31397
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
30069
31398
|
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
31399
|
+
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31400
|
+
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31401
|
+
export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
|
|
31402
|
+
export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
|
|
31403
|
+
export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
|
|
31404
|
+
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
31405
|
+
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
31406
|
+
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
30070
31407
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
31408
|
+
export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
|
|
31409
|
+
export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];
|
|
31410
|
+
export const labelSurchargeDetailFlat = T['io.flow.internal.v0.models.label_surcharge_detail_flat'];
|
|
31411
|
+
export const labelSurchargeDetailPerWeightUnit = T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'];
|
|
31412
|
+
export const labelSurchargeDetailPercentage = T['io.flow.internal.v0.models.label_surcharge_detail_percentage'];
|
|
30071
31413
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
30072
31414
|
export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
|
|
30073
31415
|
export const labelTrackingSummaryUpserted = T['io.flow.internal.v0.models.label_tracking_summary_upserted'];
|
|
@@ -30075,6 +31417,7 @@ export const labelTransaction = T['io.flow.internal.v0.models.label_transaction'
|
|
|
30075
31417
|
export const labelTransactionDeleted = T['io.flow.internal.v0.models.label_transaction_deleted'];
|
|
30076
31418
|
export const labelTransactionType = T['io.flow.internal.v0.enums.label_transaction_type'];
|
|
30077
31419
|
export const labelTransactionUpserted = T['io.flow.internal.v0.models.label_transaction_upserted'];
|
|
31420
|
+
export const labelUnits = T['io.flow.internal.v0.models.label_units'];
|
|
30078
31421
|
export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
30079
31422
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
30080
31423
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
@@ -30114,7 +31457,6 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
|
|
|
30114
31457
|
export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
|
|
30115
31458
|
export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
|
|
30116
31459
|
export const location = T['io.flow.internal.v0.models.location'];
|
|
30117
|
-
export const logisticsCenterCheck = T['io.flow.internal.v0.models.logistics_center_check'];
|
|
30118
31460
|
export const logo = T['io.flow.internal.v0.models.logo'];
|
|
30119
31461
|
export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
30120
31462
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
@@ -30191,8 +31533,19 @@ export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.mo
|
|
|
30191
31533
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
30192
31534
|
export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
|
|
30193
31535
|
export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
|
|
31536
|
+
export const merchantCharges = T['io.flow.internal.v0.models.merchant_charges'];
|
|
31537
|
+
export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
31538
|
+
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
31539
|
+
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
31540
|
+
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
30194
31541
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30195
31542
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
31543
|
+
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
31544
|
+
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
31545
|
+
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
31546
|
+
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
31547
|
+
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
31548
|
+
export const metadataWeights = T['io.flow.internal.v0.models.metadata_weights'];
|
|
30196
31549
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
30197
31550
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
30198
31551
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -30258,10 +31611,12 @@ export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order
|
|
|
30258
31611
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
30259
31612
|
export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
|
|
30260
31613
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
31614
|
+
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
30261
31615
|
export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'];
|
|
30262
31616
|
export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
|
|
30263
31617
|
export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
|
|
30264
31618
|
export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
|
|
31619
|
+
export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
|
|
30265
31620
|
export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
|
|
30266
31621
|
export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
|
|
30267
31622
|
export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
|
|
@@ -30280,6 +31635,10 @@ export const organizationCurrencySettingDeleted = T['io.flow.internal.v0.models.
|
|
|
30280
31635
|
export const organizationCurrencySettingForm = T['io.flow.internal.v0.models.organization_currency_setting_form'];
|
|
30281
31636
|
export const organizationCurrencySettingUpserted = T['io.flow.internal.v0.models.organization_currency_setting_upserted'];
|
|
30282
31637
|
export const organizationCurrencySettingVersion = T['io.flow.internal.v0.models.organization_currency_setting_version'];
|
|
31638
|
+
export const organizationDeactivation = T['io.flow.internal.v0.models.organization_deactivation'];
|
|
31639
|
+
export const organizationDeactivationDeleted = T['io.flow.internal.v0.models.organization_deactivation_deleted'];
|
|
31640
|
+
export const organizationDeactivationForm = T['io.flow.internal.v0.models.organization_deactivation_form'];
|
|
31641
|
+
export const organizationDeactivationUpserted = T['io.flow.internal.v0.models.organization_deactivation_upserted'];
|
|
30283
31642
|
export const organizationDebugTransaction = T['io.flow.internal.v0.models.organization_debug_transaction'];
|
|
30284
31643
|
export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
|
|
30285
31644
|
export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
|
|
@@ -30312,6 +31671,7 @@ export const organizationSettingsForm = T['io.flow.internal.v0.models.organizati
|
|
|
30312
31671
|
export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
|
|
30313
31672
|
export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
|
|
30314
31673
|
export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
|
|
31674
|
+
export const organizationsAuditCheckReport = T['io.flow.internal.v0.models.organizations_audit_check_report'];
|
|
30315
31675
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
30316
31676
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
30317
31677
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -30346,6 +31706,7 @@ export const paymentSummaryStatus = T['io.flow.internal.v0.enums.payment_summary
|
|
|
30346
31706
|
export const paymentSummaryType = T['io.flow.internal.v0.enums.payment_summary_type'];
|
|
30347
31707
|
export const paymentSummaryV2 = T['io.flow.internal.v0.models.payment_summary_v2'];
|
|
30348
31708
|
export const paymentTerm = T['io.flow.internal.v0.enums.payment_term'];
|
|
31709
|
+
export const payoutStatusCounts = T['io.flow.internal.v0.models.payout_status_counts'];
|
|
30349
31710
|
export const paypalAccount = T['io.flow.internal.v0.models.paypal_account'];
|
|
30350
31711
|
export const paypalAccountModificationForm = T['io.flow.internal.v0.models.paypal_account_modification_form'];
|
|
30351
31712
|
export const paypalAccountPutForm = T['io.flow.internal.v0.models.paypal_account_put_form'];
|
|
@@ -30416,6 +31777,7 @@ export const productHarmonization = T['io.flow.internal.v0.models.product_harmon
|
|
|
30416
31777
|
export const productHarmonizationForm = T['io.flow.internal.v0.models.product_harmonization_form'];
|
|
30417
31778
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
30418
31779
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
31780
|
+
export const productRestrictionResultValidationError = T['io.flow.internal.v0.models.product_restriction_result_validation_error'];
|
|
30419
31781
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
30420
31782
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
30421
31783
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
@@ -30427,6 +31789,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
|
|
|
30427
31789
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
30428
31790
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
30429
31791
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
31792
|
+
export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
|
|
30430
31793
|
export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
|
|
30431
31794
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
30432
31795
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
@@ -30444,6 +31807,7 @@ export const rateFreshnessSummaryDeleted = T['io.flow.internal.v0.models.rate_fr
|
|
|
30444
31807
|
export const rateFreshnessSummaryUpserted = T['io.flow.internal.v0.models.rate_freshness_summary_upserted'];
|
|
30445
31808
|
export const rateLevel = T['io.flow.internal.v0.models.rate_level'];
|
|
30446
31809
|
export const rateLevelForm = T['io.flow.internal.v0.models.rate_level_form'];
|
|
31810
|
+
export const rateLevelKey = T['io.flow.internal.v0.enums.rate_level_key'];
|
|
30447
31811
|
export const rateLevelOrganization = T['io.flow.internal.v0.models.rate_level_organization'];
|
|
30448
31812
|
export const rateLevelOrganizationForm = T['io.flow.internal.v0.models.rate_level_organization_form'];
|
|
30449
31813
|
export const rateLevelRatecard = T['io.flow.internal.v0.models.rate_level_ratecard'];
|
|
@@ -30493,9 +31857,13 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
|
|
|
30493
31857
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
30494
31858
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
30495
31859
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
31860
|
+
export const report = T['io.flow.internal.v0.models.report'];
|
|
31861
|
+
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
30496
31862
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
30497
31863
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
31864
|
+
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
30498
31865
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
31866
|
+
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
30499
31867
|
export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
|
|
30500
31868
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
30501
31869
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -30528,6 +31896,8 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
|
|
|
30528
31896
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
30529
31897
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
30530
31898
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
31899
|
+
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
31900
|
+
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
30531
31901
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
30532
31902
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
30533
31903
|
export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
|
|
@@ -30539,6 +31909,8 @@ export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
|
30539
31909
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
30540
31910
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
30541
31911
|
export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
|
|
31912
|
+
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
31913
|
+
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
30542
31914
|
export const scope = T['io.flow.internal.v0.enums.scope'];
|
|
30543
31915
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
30544
31916
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -30564,6 +31936,7 @@ export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
|
30564
31936
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
30565
31937
|
export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
|
|
30566
31938
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31939
|
+
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
30567
31940
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
30568
31941
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
30569
31942
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
@@ -30585,11 +31958,18 @@ export const shopifyGiftCardReversalForm = T['io.flow.internal.v0.models.shopify
|
|
|
30585
31958
|
export const shopifyGrantStatus = T['io.flow.internal.v0.enums.shopify_grant_status'];
|
|
30586
31959
|
export const shopifyGrantsCheck = T['io.flow.internal.v0.models.shopify_grants_check'];
|
|
30587
31960
|
export const shopifyMarketsDangerousGoods = T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'];
|
|
31961
|
+
export const shopifyMarketsDiscrepancy = T['io.flow.internal.v0.models.shopify_markets_discrepancy'];
|
|
31962
|
+
export const shopifyMarketsDiscrepancyData = T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'];
|
|
30588
31963
|
export const shopifyMarketsHtsNumberAvailable = T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'];
|
|
30589
31964
|
export const shopifyMarketsIncorporationCountry = T['io.flow.internal.v0.models.shopify_markets_incorporation_country'];
|
|
31965
|
+
export const shopifyMarketsInternalOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'];
|
|
31966
|
+
export const shopifyMarketsMetricsDeleted = T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'];
|
|
31967
|
+
export const shopifyMarketsMetricsUpserted = T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'];
|
|
30590
31968
|
export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets_order'];
|
|
30591
31969
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
30592
31970
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
31971
|
+
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
31972
|
+
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
30593
31973
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
30594
31974
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
30595
31975
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
@@ -30597,6 +31977,7 @@ export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models
|
|
|
30597
31977
|
export const shopifyMarketsShopStatisticsUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'];
|
|
30598
31978
|
export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
|
|
30599
31979
|
export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
|
|
31980
|
+
export const shopifyMarketsShopifyOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'];
|
|
30600
31981
|
export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
|
|
30601
31982
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
30602
31983
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
@@ -30658,9 +32039,12 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
|
30658
32039
|
export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
|
|
30659
32040
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
30660
32041
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
32042
|
+
export const shopifyStorePassword = T['io.flow.internal.v0.models.shopify_store_password'];
|
|
30661
32043
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
30662
32044
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
30663
32045
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|
|
32046
|
+
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
32047
|
+
export const shopperSummary = T['io.flow.internal.v0.models.shopper_summary'];
|
|
30664
32048
|
export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
|
|
30665
32049
|
export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
|
|
30666
32050
|
export const simpleRoundingStrategy = T['io.flow.internal.v0.enums.simple_rounding_strategy'];
|
|
@@ -30793,6 +32177,9 @@ export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_a
|
|
|
30793
32177
|
export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
|
|
30794
32178
|
export const transactionPostingMethod = T['io.flow.internal.v0.enums.transaction_posting_method'];
|
|
30795
32179
|
export const transactionReference = T['io.flow.internal.v0.models.transaction_reference'];
|
|
32180
|
+
export const transactionStatement = T['io.flow.internal.v0.models.transaction_statement'];
|
|
32181
|
+
export const transactionStatementDeleted = T['io.flow.internal.v0.models.transaction_statement_deleted'];
|
|
32182
|
+
export const transactionStatementUpserted = T['io.flow.internal.v0.models.transaction_statement_upserted'];
|
|
30796
32183
|
export const transactionSummary = T['io.flow.internal.v0.unions.transaction_summary'];
|
|
30797
32184
|
export const transferMethod = T['io.flow.internal.v0.enums.transfer_method'];
|
|
30798
32185
|
export const transferTransaction = T['io.flow.internal.v0.models.transfer_transaction'];
|
|
@@ -30801,6 +32188,11 @@ export const transferTransactionDeletedV2 = T['io.flow.internal.v0.models.transf
|
|
|
30801
32188
|
export const transferTransactionUpserted = T['io.flow.internal.v0.models.transfer_transaction_upserted'];
|
|
30802
32189
|
export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.transfer_transaction_upserted_v2'];
|
|
30803
32190
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
32191
|
+
export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
|
|
32192
|
+
export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
|
|
32193
|
+
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
32194
|
+
export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
|
|
32195
|
+
export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
|
|
30804
32196
|
export const unclassifiedProductStatistic = T['io.flow.internal.v0.models.unclassified_product_statistic'];
|
|
30805
32197
|
export const unclassifiedProductStatus = T['io.flow.internal.v0.enums.unclassified_product_status'];
|
|
30806
32198
|
export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.unclassified_products_purge_request'];
|
|
@@ -30835,8 +32227,14 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
|
|
|
30835
32227
|
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
30836
32228
|
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
30837
32229
|
export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
|
|
32230
|
+
export const washCarrierActualFile = T['io.flow.internal.v0.models.wash_carrier_actual_file'];
|
|
32231
|
+
export const washCarrierActualFileForm = T['io.flow.internal.v0.models.wash_carrier_actual_file_form'];
|
|
32232
|
+
export const washCarrierActualFileStatus = T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'];
|
|
30838
32233
|
export const washExportRequest = T['io.flow.internal.v0.models.wash_export_request'];
|
|
30839
32234
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
30840
32235
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
30841
32236
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|
|
32237
|
+
export const weightSelection = T['io.flow.internal.v0.enums.weight_selection'];
|
|
32238
|
+
export const weightsDead = T['io.flow.internal.v0.models.weights_dead'];
|
|
32239
|
+
export const weightsDimensional = T['io.flow.internal.v0.models.weights_dimensional'];
|
|
30842
32240
|
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|