@flowio/api-internal-prop-types 9.24.67 → 9.24.69
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 +234 -212
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +234 -212
- package/src/api-internal.js +613 -572
package/src/api-internal.js
CHANGED
|
@@ -377,6 +377,30 @@ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
|
377
377
|
account_number: PropTypes.string.isRequired,
|
|
378
378
|
});
|
|
379
379
|
|
|
380
|
+
T['io.flow.billing.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
381
|
+
'fuel',
|
|
382
|
+
'remote_area',
|
|
383
|
+
'oversize',
|
|
384
|
+
'duties_paid',
|
|
385
|
+
'emergency',
|
|
386
|
+
'peak',
|
|
387
|
+
'address_correction',
|
|
388
|
+
]);
|
|
389
|
+
|
|
390
|
+
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
391
|
+
amount: PropTypes.number.isRequired,
|
|
392
|
+
type: T['io.flow.billing.v0.enums.trueup_surcharge_type'].isRequired,
|
|
393
|
+
percentage: PropTypes.number,
|
|
394
|
+
per_weight_unit: PropTypes.number,
|
|
395
|
+
});
|
|
396
|
+
|
|
397
|
+
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
398
|
+
amount: PropTypes.number.isRequired,
|
|
399
|
+
weight: PropTypes.number.isRequired,
|
|
400
|
+
});
|
|
401
|
+
|
|
402
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
403
|
+
|
|
380
404
|
T['io.flow.billing.v0.models.payout_reference'] = PropTypes.exact({
|
|
381
405
|
id: PropTypes.string.isRequired,
|
|
382
406
|
});
|
|
@@ -879,15 +903,42 @@ T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
|
|
|
879
903
|
weight: PropTypes.number.isRequired,
|
|
880
904
|
});
|
|
881
905
|
|
|
882
|
-
T['io.flow.billing.true.up.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
|
|
883
|
-
|
|
884
906
|
T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
885
907
|
shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
|
|
886
908
|
name: PropTypes.string.isRequired,
|
|
887
909
|
});
|
|
888
910
|
|
|
911
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
912
|
+
amount: PropTypes.number.isRequired,
|
|
913
|
+
percentage: PropTypes.number,
|
|
914
|
+
fee_per_weight_unit: PropTypes.number,
|
|
915
|
+
});
|
|
916
|
+
|
|
917
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
918
|
+
fuel: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
919
|
+
remote_area: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
920
|
+
oversize: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
921
|
+
duties_paid: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
922
|
+
emergency: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
923
|
+
peak: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
924
|
+
address_correction: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
925
|
+
});
|
|
926
|
+
|
|
927
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
|
|
928
|
+
processed_at: PropTypes.string.isRequired,
|
|
929
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
930
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
931
|
+
errors_url: PropTypes.string,
|
|
932
|
+
});
|
|
933
|
+
|
|
934
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file'] = PropTypes.exact({
|
|
935
|
+
id: PropTypes.string.isRequired,
|
|
936
|
+
url: PropTypes.string.isRequired,
|
|
937
|
+
created_at: PropTypes.string.isRequired,
|
|
938
|
+
result: T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'],
|
|
939
|
+
});
|
|
940
|
+
|
|
889
941
|
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
942
|
dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
|
|
892
943
|
dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
|
|
893
944
|
});
|
|
@@ -1418,6 +1469,7 @@ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTy
|
|
|
1418
1469
|
'order_unsupported_destination',
|
|
1419
1470
|
'order_missing_information',
|
|
1420
1471
|
'order_domestic',
|
|
1472
|
+
'order_mismatched_currencies',
|
|
1421
1473
|
]);
|
|
1422
1474
|
|
|
1423
1475
|
T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -2099,7 +2151,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
|
|
|
2099
2151
|
key: PropTypes.string.isRequired,
|
|
2100
2152
|
namespace: PropTypes.string.isRequired,
|
|
2101
2153
|
value: PropTypes.string.isRequired,
|
|
2102
|
-
|
|
2154
|
+
type: T['io.flow.shopify.markets.v0.enums.shopify_order_value_type'].isRequired,
|
|
2103
2155
|
description: PropTypes.string,
|
|
2104
2156
|
});
|
|
2105
2157
|
|
|
@@ -4683,7 +4735,15 @@ T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfT
|
|
|
4683
4735
|
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4684
4736
|
]);
|
|
4685
4737
|
|
|
4686
|
-
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
4738
|
+
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
4739
|
+
'fuel',
|
|
4740
|
+
'remote_area',
|
|
4741
|
+
'oversize',
|
|
4742
|
+
'duties_paid',
|
|
4743
|
+
'emergency',
|
|
4744
|
+
'peak',
|
|
4745
|
+
'address_correction',
|
|
4746
|
+
]);
|
|
4687
4747
|
|
|
4688
4748
|
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4689
4749
|
amount: PropTypes.number.isRequired,
|
|
@@ -4706,6 +4766,7 @@ T['io.flow.experience.v0.enums.order_payment_type'] = PropTypes.oneOf([
|
|
|
4706
4766
|
'card',
|
|
4707
4767
|
'online',
|
|
4708
4768
|
'credit',
|
|
4769
|
+
'external',
|
|
4709
4770
|
'subsidized',
|
|
4710
4771
|
'installment_plan',
|
|
4711
4772
|
'cash_on_delivery',
|
|
@@ -4864,9 +4925,11 @@ T['io.flow.stripe.v0.enums.three_ds_result'] = PropTypes.oneOf([
|
|
|
4864
4925
|
T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['challenge', 'frictionless']);
|
|
4865
4926
|
|
|
4866
4927
|
T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
|
|
4928
|
+
authenticated: PropTypes.bool,
|
|
4867
4929
|
authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
|
|
4868
4930
|
result: T['io.flow.stripe.v0.enums.three_ds_result'],
|
|
4869
4931
|
result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
|
|
4932
|
+
succeeded: PropTypes.bool,
|
|
4870
4933
|
version: PropTypes.string,
|
|
4871
4934
|
});
|
|
4872
4935
|
|
|
@@ -5518,6 +5581,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
5518
5581
|
id: PropTypes.string.isRequired,
|
|
5519
5582
|
amount: PropTypes.number.isRequired,
|
|
5520
5583
|
amount_refunded: PropTypes.number.isRequired,
|
|
5584
|
+
authorization_code: PropTypes.string,
|
|
5521
5585
|
captured: PropTypes.bool.isRequired,
|
|
5522
5586
|
created: PropTypes.number.isRequired,
|
|
5523
5587
|
currency: PropTypes.string.isRequired,
|
|
@@ -5607,6 +5671,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
5607
5671
|
id: PropTypes.string.isRequired,
|
|
5608
5672
|
amount: PropTypes.number.isRequired,
|
|
5609
5673
|
amount_refunded: PropTypes.number.isRequired,
|
|
5674
|
+
authorization_code: PropTypes.string,
|
|
5610
5675
|
captured: PropTypes.bool.isRequired,
|
|
5611
5676
|
created: PropTypes.number.isRequired,
|
|
5612
5677
|
currency: PropTypes.string.isRequired,
|
|
@@ -6504,6 +6569,8 @@ T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
|
6504
6569
|
number: PropTypes.string.isRequired,
|
|
6505
6570
|
});
|
|
6506
6571
|
|
|
6572
|
+
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
6573
|
+
|
|
6507
6574
|
T['io.flow.return.v0.enums.return_tracking_status'] = PropTypes.oneOf([
|
|
6508
6575
|
'awaiting_customs_clearance',
|
|
6509
6576
|
'cancel_requested',
|
|
@@ -7688,27 +7755,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
7688
7755
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
7689
7756
|
]);
|
|
7690
7757
|
|
|
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
|
-
|
|
7712
7758
|
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
7713
7759
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
7714
7760
|
percent: PropTypes.number.isRequired,
|
|
@@ -7852,6 +7898,14 @@ T['io.flow.internal.v0.models.order_fulfillment_deleted'] = PropTypes.exact({
|
|
|
7852
7898
|
key: PropTypes.string.isRequired,
|
|
7853
7899
|
});
|
|
7854
7900
|
|
|
7901
|
+
T['io.flow.internal.v0.models.order_combined_shipment_deleted'] = PropTypes.exact({
|
|
7902
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment_deleted']).isRequired,
|
|
7903
|
+
event_id: PropTypes.string.isRequired,
|
|
7904
|
+
timestamp: PropTypes.string.isRequired,
|
|
7905
|
+
organization: PropTypes.string.isRequired,
|
|
7906
|
+
id: PropTypes.string.isRequired,
|
|
7907
|
+
});
|
|
7908
|
+
|
|
7855
7909
|
T['io.flow.internal.v0.models.optin_prompt_deleted'] = PropTypes.exact({
|
|
7856
7910
|
discriminator: PropTypes.oneOf(['optin_prompt_deleted']).isRequired,
|
|
7857
7911
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8666,14 +8720,6 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
|
|
|
8666
8720
|
T['io.flow.internal.v0.models.paypal_authorization_payload'],
|
|
8667
8721
|
]);
|
|
8668
8722
|
|
|
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
|
-
|
|
8677
8723
|
T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
8678
8724
|
id: PropTypes.string.isRequired,
|
|
8679
8725
|
});
|
|
@@ -8860,14 +8906,6 @@ T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'] = PropTypes.ex
|
|
|
8860
8906
|
svb_virtual_card_clearing: T['io.flow.internal.v0.models.svb_virtual_card_clearing'].isRequired,
|
|
8861
8907
|
});
|
|
8862
8908
|
|
|
8863
|
-
T['io.flow.internal.v0.enums.surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid']);
|
|
8864
|
-
|
|
8865
|
-
T['io.flow.internal.v0.models.surcharge'] = PropTypes.exact({
|
|
8866
|
-
amount: PropTypes.number,
|
|
8867
|
-
percentage: PropTypes.number,
|
|
8868
|
-
type: T['io.flow.internal.v0.enums.surcharge_type'].isRequired,
|
|
8869
|
-
});
|
|
8870
|
-
|
|
8871
8909
|
T['io.flow.internal.v0.models.label_aliases'] = PropTypes.exact({
|
|
8872
8910
|
name: PropTypes.string.isRequired,
|
|
8873
8911
|
aliases: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -9360,6 +9398,7 @@ T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'] = PropTy
|
|
|
9360
9398
|
shopify_tracking_number: T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'].isRequired,
|
|
9361
9399
|
shopify_carrier_service: T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'],
|
|
9362
9400
|
fulfillment_created_at: PropTypes.string,
|
|
9401
|
+
flow_label_id: PropTypes.string,
|
|
9363
9402
|
});
|
|
9364
9403
|
|
|
9365
9404
|
T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropTypes.oneOfType([
|
|
@@ -9829,6 +9868,34 @@ T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
|
9829
9868
|
name: PropTypes.string.isRequired,
|
|
9830
9869
|
});
|
|
9831
9870
|
|
|
9871
|
+
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
9872
|
+
|
|
9873
|
+
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
9874
|
+
id: PropTypes.string.isRequired,
|
|
9875
|
+
number: PropTypes.string.isRequired,
|
|
9876
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
9877
|
+
});
|
|
9878
|
+
|
|
9879
|
+
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
9880
|
+
id: PropTypes.string.isRequired,
|
|
9881
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
9882
|
+
});
|
|
9883
|
+
|
|
9884
|
+
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
9885
|
+
id: PropTypes.string,
|
|
9886
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
9887
|
+
rate_level_key: PropTypes.string,
|
|
9888
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
9889
|
+
glbe_proposition_name: PropTypes.string,
|
|
9890
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
9891
|
+
shopify_grc_gid: PropTypes.string,
|
|
9892
|
+
});
|
|
9893
|
+
|
|
9894
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
9895
|
+
id: PropTypes.string,
|
|
9896
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
9897
|
+
});
|
|
9898
|
+
|
|
9832
9899
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
9833
9900
|
id: PropTypes.string.isRequired,
|
|
9834
9901
|
});
|
|
@@ -9862,6 +9929,35 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
9862
9929
|
country: PropTypes.string.isRequired,
|
|
9863
9930
|
});
|
|
9864
9931
|
|
|
9932
|
+
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
9933
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
9934
|
+
effective_at: PropTypes.string.isRequired,
|
|
9935
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
9936
|
+
service: PropTypes.string.isRequired,
|
|
9937
|
+
number: PropTypes.string,
|
|
9938
|
+
rate_level_key: PropTypes.string,
|
|
9939
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
9940
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
9941
|
+
glbe_proposition_name: PropTypes.string,
|
|
9942
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
9943
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
9944
|
+
});
|
|
9945
|
+
|
|
9946
|
+
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
9947
|
+
id: PropTypes.string.isRequired,
|
|
9948
|
+
number: PropTypes.string.isRequired,
|
|
9949
|
+
rate_level_key: PropTypes.string,
|
|
9950
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
9951
|
+
effective_at: PropTypes.string.isRequired,
|
|
9952
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
9953
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
9954
|
+
published_at: PropTypes.string,
|
|
9955
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
9956
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
9957
|
+
glbe_proposition_name: PropTypes.string,
|
|
9958
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
9959
|
+
});
|
|
9960
|
+
|
|
9865
9961
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
9866
9962
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
9867
9963
|
percent: PropTypes.number.isRequired,
|
|
@@ -10438,6 +10534,24 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
10438
10534
|
sort: PropTypes.string,
|
|
10439
10535
|
});
|
|
10440
10536
|
|
|
10537
|
+
T['io.flow.internal.v0.models.order_combined_shipment'] = PropTypes.exact({
|
|
10538
|
+
id: PropTypes.string.isRequired,
|
|
10539
|
+
label_id: PropTypes.string.isRequired,
|
|
10540
|
+
carrier_id: PropTypes.string.isRequired,
|
|
10541
|
+
service_id: PropTypes.string.isRequired,
|
|
10542
|
+
order_number: PropTypes.string.isRequired,
|
|
10543
|
+
provided_carrier_name: PropTypes.string,
|
|
10544
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
10545
|
+
});
|
|
10546
|
+
|
|
10547
|
+
T['io.flow.internal.v0.models.order_combined_shipment_upserted'] = PropTypes.exact({
|
|
10548
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment_upserted']).isRequired,
|
|
10549
|
+
event_id: PropTypes.string.isRequired,
|
|
10550
|
+
timestamp: PropTypes.string.isRequired,
|
|
10551
|
+
organization: PropTypes.string.isRequired,
|
|
10552
|
+
order_combined_shipment: T['io.flow.internal.v0.models.order_combined_shipment'].isRequired,
|
|
10553
|
+
});
|
|
10554
|
+
|
|
10441
10555
|
T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10442
10556
|
|
|
10443
10557
|
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
|
|
@@ -10664,6 +10778,7 @@ T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
|
10664
10778
|
|
|
10665
10779
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
10666
10780
|
age: PropTypes.number.isRequired,
|
|
10781
|
+
setup_time: PropTypes.number.isRequired,
|
|
10667
10782
|
compliance_approved: PropTypes.bool.isRequired,
|
|
10668
10783
|
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
10669
10784
|
application_received: PropTypes.string.isRequired,
|
|
@@ -10949,6 +11064,7 @@ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
|
10949
11064
|
id: PropTypes.number.isRequired,
|
|
10950
11065
|
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10951
11066
|
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
|
|
11067
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form']),
|
|
10952
11068
|
});
|
|
10953
11069
|
|
|
10954
11070
|
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
@@ -11707,6 +11823,46 @@ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = Pro
|
|
|
11707
11823
|
'globale_system',
|
|
11708
11824
|
]);
|
|
11709
11825
|
|
|
11826
|
+
T['io.flow.label.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
11827
|
+
|
|
11828
|
+
T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
11829
|
+
'flow_web_sync',
|
|
11830
|
+
'channel_web_async',
|
|
11831
|
+
'direct_api_sync',
|
|
11832
|
+
'direct_api_async',
|
|
11833
|
+
'bridge_api_sync',
|
|
11834
|
+
'partner_api_sync',
|
|
11835
|
+
'notification_requiring_crossdock',
|
|
11836
|
+
'autogenerated',
|
|
11837
|
+
]);
|
|
11838
|
+
|
|
11839
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
11840
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
11841
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
11842
|
+
});
|
|
11843
|
+
|
|
11844
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
11845
|
+
id: PropTypes.string.isRequired,
|
|
11846
|
+
order_number: PropTypes.string.isRequired,
|
|
11847
|
+
created_at: PropTypes.string.isRequired,
|
|
11848
|
+
reference_id: PropTypes.string.isRequired,
|
|
11849
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
11850
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
11851
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11852
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
11853
|
+
carrier_id: PropTypes.string,
|
|
11854
|
+
service_id: PropTypes.string,
|
|
11855
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11856
|
+
});
|
|
11857
|
+
|
|
11858
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
11859
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
11860
|
+
event_id: PropTypes.string.isRequired,
|
|
11861
|
+
timestamp: PropTypes.string.isRequired,
|
|
11862
|
+
organization: PropTypes.string.isRequired,
|
|
11863
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
11864
|
+
});
|
|
11865
|
+
|
|
11710
11866
|
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
11711
11867
|
weight: PropTypes.number.isRequired,
|
|
11712
11868
|
length: PropTypes.number.isRequired,
|
|
@@ -11718,15 +11874,42 @@ T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
|
|
|
11718
11874
|
weight: PropTypes.number.isRequired,
|
|
11719
11875
|
});
|
|
11720
11876
|
|
|
11721
|
-
T['io.flow.internal.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
|
|
11722
|
-
|
|
11723
11877
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
11724
11878
|
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
11725
11879
|
name: PropTypes.string.isRequired,
|
|
11726
11880
|
});
|
|
11727
11881
|
|
|
11882
|
+
T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
11883
|
+
amount: PropTypes.number.isRequired,
|
|
11884
|
+
percentage: PropTypes.number,
|
|
11885
|
+
fee_per_weight_unit: PropTypes.number,
|
|
11886
|
+
});
|
|
11887
|
+
|
|
11888
|
+
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
11889
|
+
fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11890
|
+
remote_area: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11891
|
+
oversize: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11892
|
+
duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11893
|
+
emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11894
|
+
peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11895
|
+
address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11896
|
+
});
|
|
11897
|
+
|
|
11898
|
+
T['io.flow.internal.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
|
|
11899
|
+
processed_at: PropTypes.string.isRequired,
|
|
11900
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
11901
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
11902
|
+
errors_url: PropTypes.string,
|
|
11903
|
+
});
|
|
11904
|
+
|
|
11905
|
+
T['io.flow.internal.v0.models.label_invoice_response_file'] = PropTypes.exact({
|
|
11906
|
+
id: PropTypes.string.isRequired,
|
|
11907
|
+
url: PropTypes.string.isRequired,
|
|
11908
|
+
created_at: PropTypes.string.isRequired,
|
|
11909
|
+
result: T['io.flow.internal.v0.models.label_invoice_response_file_result'],
|
|
11910
|
+
});
|
|
11911
|
+
|
|
11728
11912
|
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
11729
|
-
selected: T['io.flow.internal.v0.enums.weight_selection'].isRequired,
|
|
11730
11913
|
dead: T['io.flow.internal.v0.models.weights_dead'],
|
|
11731
11914
|
dimensional: T['io.flow.internal.v0.models.weights_dimensional'],
|
|
11732
11915
|
});
|
|
@@ -11742,7 +11925,81 @@ T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
|
11742
11925
|
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
11743
11926
|
]);
|
|
11744
11927
|
|
|
11745
|
-
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
11928
|
+
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
11929
|
+
'fuel',
|
|
11930
|
+
'remote_area',
|
|
11931
|
+
'oversize',
|
|
11932
|
+
'duties_paid',
|
|
11933
|
+
'emergency',
|
|
11934
|
+
'peak',
|
|
11935
|
+
'address_correction',
|
|
11936
|
+
]);
|
|
11937
|
+
|
|
11938
|
+
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
11939
|
+
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
11940
|
+
|
|
11941
|
+
T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
11942
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
11943
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
11944
|
+
});
|
|
11945
|
+
|
|
11946
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
11947
|
+
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
11948
|
+
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
11949
|
+
base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
|
|
11950
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
|
|
11951
|
+
total: PropTypes.number.isRequired,
|
|
11952
|
+
});
|
|
11953
|
+
|
|
11954
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
11955
|
+
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
11956
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
11957
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
11958
|
+
});
|
|
11959
|
+
|
|
11960
|
+
T['io.flow.billing.true.up.v0.models.label_response_units'] = PropTypes.exact({
|
|
11961
|
+
currency: PropTypes.string.isRequired,
|
|
11962
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
11963
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
11964
|
+
});
|
|
11965
|
+
|
|
11966
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
11967
|
+
id: PropTypes.string.isRequired,
|
|
11968
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
11969
|
+
units: T['io.flow.billing.true.up.v0.models.label_response_units'].isRequired,
|
|
11970
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
11971
|
+
surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
|
|
11972
|
+
total: PropTypes.number.isRequired,
|
|
11973
|
+
});
|
|
11974
|
+
|
|
11975
|
+
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
11976
|
+
currency: PropTypes.string.isRequired,
|
|
11977
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
11978
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
11979
|
+
});
|
|
11980
|
+
|
|
11981
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
11982
|
+
id: PropTypes.string.isRequired,
|
|
11983
|
+
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
11984
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
11985
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
11986
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
11987
|
+
total: PropTypes.number.isRequired,
|
|
11988
|
+
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
11989
|
+
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
11990
|
+
});
|
|
11991
|
+
|
|
11992
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
11993
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
11994
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
11995
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
11996
|
+
});
|
|
11997
|
+
|
|
11998
|
+
T['io.flow.internal.v0.models.label_response_units'] = PropTypes.exact({
|
|
11999
|
+
currency: PropTypes.string.isRequired,
|
|
12000
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12001
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
12002
|
+
});
|
|
11746
12003
|
|
|
11747
12004
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
11748
12005
|
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
@@ -11764,6 +12021,21 @@ T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
|
|
|
11764
12021
|
weight: PropTypes.number.isRequired,
|
|
11765
12022
|
});
|
|
11766
12023
|
|
|
12024
|
+
T['io.flow.internal.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
12025
|
+
id: PropTypes.string.isRequired,
|
|
12026
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
12027
|
+
units: T['io.flow.internal.v0.models.label_response_units'].isRequired,
|
|
12028
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
12029
|
+
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
12030
|
+
total: PropTypes.number.isRequired,
|
|
12031
|
+
});
|
|
12032
|
+
|
|
12033
|
+
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
12034
|
+
currency: PropTypes.string.isRequired,
|
|
12035
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12036
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
12037
|
+
});
|
|
12038
|
+
|
|
11767
12039
|
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
11768
12040
|
id: PropTypes.string.isRequired,
|
|
11769
12041
|
carrier_service_id: PropTypes.string.isRequired,
|
|
@@ -11772,12 +12044,31 @@ T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
|
11772
12044
|
created_at: PropTypes.string.isRequired,
|
|
11773
12045
|
});
|
|
11774
12046
|
|
|
11775
|
-
T['io.flow.internal.v0.models.
|
|
12047
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
11776
12048
|
id: PropTypes.string.isRequired,
|
|
11777
|
-
|
|
11778
|
-
|
|
11779
|
-
|
|
11780
|
-
|
|
12049
|
+
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
12050
|
+
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
12051
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
12052
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
12053
|
+
total: PropTypes.number.isRequired,
|
|
12054
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
12055
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
12056
|
+
});
|
|
12057
|
+
|
|
12058
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
12059
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
12060
|
+
event_id: PropTypes.string.isRequired,
|
|
12061
|
+
timestamp: PropTypes.string.isRequired,
|
|
12062
|
+
organization: PropTypes.string.isRequired,
|
|
12063
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
12064
|
+
});
|
|
12065
|
+
|
|
12066
|
+
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
12067
|
+
id: PropTypes.string.isRequired,
|
|
12068
|
+
item_identifier: PropTypes.string,
|
|
12069
|
+
auto_generate_query: PropTypes.string,
|
|
12070
|
+
commercial_invoice_only_query: PropTypes.string,
|
|
12071
|
+
});
|
|
11781
12072
|
|
|
11782
12073
|
T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.exact({
|
|
11783
12074
|
discriminator: PropTypes.oneOf(['label_generation_settings_upserted']).isRequired,
|
|
@@ -12542,6 +12833,21 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
12542
12833
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
12543
12834
|
});
|
|
12544
12835
|
|
|
12836
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
12837
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
12838
|
+
id: PropTypes.string.isRequired,
|
|
12839
|
+
});
|
|
12840
|
+
|
|
12841
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
12842
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
12843
|
+
id: PropTypes.string.isRequired,
|
|
12844
|
+
});
|
|
12845
|
+
|
|
12846
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
12847
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
12848
|
+
id: PropTypes.string.isRequired,
|
|
12849
|
+
});
|
|
12850
|
+
|
|
12545
12851
|
T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
|
|
12546
12852
|
labels: PropTypes.number.isRequired,
|
|
12547
12853
|
total: PropTypes.number.isRequired,
|
|
@@ -12563,12 +12869,13 @@ T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
|
12563
12869
|
remote_area: PropTypes.number.isRequired,
|
|
12564
12870
|
oversize: PropTypes.number.isRequired,
|
|
12565
12871
|
ccf: PropTypes.number.isRequired,
|
|
12872
|
+
emergency: PropTypes.number.isRequired,
|
|
12873
|
+
peak: PropTypes.number.isRequired,
|
|
12566
12874
|
total: PropTypes.number.isRequired,
|
|
12567
12875
|
});
|
|
12568
12876
|
|
|
12569
12877
|
T['io.flow.internal.v0.models.merchant_subsidies'] = PropTypes.exact({
|
|
12570
12878
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
12571
|
-
shipping: PropTypes.number.isRequired,
|
|
12572
12879
|
tax: PropTypes.number.isRequired,
|
|
12573
12880
|
duty: PropTypes.number.isRequired,
|
|
12574
12881
|
total: PropTypes.number.isRequired,
|
|
@@ -12588,6 +12895,12 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
|
12588
12895
|
vat_registration_number: PropTypes.string.isRequired,
|
|
12589
12896
|
});
|
|
12590
12897
|
|
|
12898
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
12899
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
12900
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
12901
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
12902
|
+
]);
|
|
12903
|
+
|
|
12591
12904
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
12592
12905
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
12593
12906
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -13914,6 +14227,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
13914
14227
|
authorization_id: PropTypes.string,
|
|
13915
14228
|
posting_proof_id: PropTypes.string,
|
|
13916
14229
|
label_tracking_summary_id: PropTypes.string,
|
|
14230
|
+
shipping_notification_id: PropTypes.string,
|
|
14231
|
+
external_fulfillment_proof_id: PropTypes.string,
|
|
13917
14232
|
});
|
|
13918
14233
|
|
|
13919
14234
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -13929,6 +14244,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
13929
14244
|
'reversal',
|
|
13930
14245
|
'shipping_label',
|
|
13931
14246
|
'shipping_label_service',
|
|
14247
|
+
'trueup',
|
|
13932
14248
|
'shipping_label_revenue_share',
|
|
13933
14249
|
'platform_fee',
|
|
13934
14250
|
'tax',
|
|
@@ -13959,6 +14275,11 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
|
13959
14275
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
13960
14276
|
});
|
|
13961
14277
|
|
|
14278
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
14279
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
14280
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
14281
|
+
]);
|
|
14282
|
+
|
|
13962
14283
|
T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
|
|
13963
14284
|
id: PropTypes.string.isRequired,
|
|
13964
14285
|
});
|
|
@@ -14002,15 +14323,14 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14002
14323
|
'capture_transactions_ignored_fraud_count',
|
|
14003
14324
|
'capture_transactions_ignored_fully_refunded_count',
|
|
14004
14325
|
'capture_transactions_ignored_other_count',
|
|
14326
|
+
'capture_transactions_ignored_previously_processed_count',
|
|
14005
14327
|
'capture_transactions_total',
|
|
14006
|
-
'
|
|
14007
|
-
'
|
|
14328
|
+
'channel_transactions_processing_count',
|
|
14329
|
+
'channel_transactions_processing_total',
|
|
14008
14330
|
'channel_transactions_adjustment_count',
|
|
14009
14331
|
'channel_transactions_adjustment_total',
|
|
14010
14332
|
'channel_transactions_reversal_count',
|
|
14011
14333
|
'channel_transactions_reversal_total',
|
|
14012
|
-
'channel_transactions_other_count',
|
|
14013
|
-
'channel_transactions_other_total',
|
|
14014
14334
|
'channel_billed_transactions_count',
|
|
14015
14335
|
'channel_billed_transactions_total',
|
|
14016
14336
|
'credit_payment_transactions_count',
|
|
@@ -14033,11 +14353,16 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14033
14353
|
'refund_transactions_ignored_fraud_count',
|
|
14034
14354
|
'refund_transactions_ignored_fully_refunded_count',
|
|
14035
14355
|
'refund_transactions_ignored_other_count',
|
|
14356
|
+
'refund_transactions_ignored_previously_processed_count',
|
|
14036
14357
|
'refund_transactions_total',
|
|
14037
14358
|
'reversal_order_cancellations_transactions_count',
|
|
14038
14359
|
'reversal_order_cancellations_transactions_total',
|
|
14039
14360
|
'reversal_external_fulfillment_transactions_count',
|
|
14040
14361
|
'reversal_external_fulfillment_transactions_total',
|
|
14362
|
+
'reversal_other_transactions_count',
|
|
14363
|
+
'reversal_other_transactions_total',
|
|
14364
|
+
'reversal_all_transactions_count',
|
|
14365
|
+
'reversal_all_transactions_total',
|
|
14041
14366
|
'tax_transactions_count',
|
|
14042
14367
|
'tax_transactions_total',
|
|
14043
14368
|
'transfer_transactions_count',
|
|
@@ -14048,27 +14373,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14048
14373
|
'percentage_orders_with_fulfillment_proof_4_weeks',
|
|
14049
14374
|
'percentage_orders_with_fulfillment_proof_6_weeks',
|
|
14050
14375
|
'percentage_orders_with_fulfillment_proof_all',
|
|
14376
|
+
'pending_payouts_max_age_in_millis',
|
|
14051
14377
|
'shipping_notifications_count',
|
|
14052
14378
|
'queued_capture_unprocessed_count',
|
|
14053
|
-
'queued_capture_deletion_unprocessed_count',
|
|
14054
|
-
'queued_channel_transaction_unprocessed_count',
|
|
14055
|
-
'queued_channel_organization_unprocessed_count',
|
|
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',
|
|
14061
|
-
'queued_label_tracking_summary_unprocessed_count',
|
|
14062
|
-
'queued_label_origin_unprocessed_count',
|
|
14063
|
-
'queued_order_unprocessed_count',
|
|
14064
|
-
'queued_order_identifier_unprocessed_count',
|
|
14065
14379
|
'queued_refund_unprocessed_count',
|
|
14066
|
-
'queued_refund_deletion_unprocessed_count',
|
|
14067
|
-
'queued_refund_over_capture_unprocessed_count',
|
|
14068
|
-
'queued_sales_record_unprocessed_count',
|
|
14069
|
-
'queued_statement_batch_unprocessed_count',
|
|
14070
|
-
'queued_statement_email_unprocessed_count',
|
|
14071
|
-
'queued_statement_summary_email_unprocessed_count',
|
|
14072
14380
|
'queued_record_snooze_count',
|
|
14073
14381
|
'queued_record_snooze_ending_in_48_hours_count',
|
|
14074
14382
|
'statements_no_payout_count',
|
|
@@ -14081,10 +14389,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14081
14389
|
'payouts_sent_total',
|
|
14082
14390
|
'payouts_failed_count',
|
|
14083
14391
|
'payouts_failed_total',
|
|
14084
|
-
'pending_payouts_max_age',
|
|
14085
14392
|
'average_payout_amount',
|
|
14086
|
-
'orders_with_payments_count',
|
|
14087
|
-
'orders_without_payments_count',
|
|
14088
14393
|
'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
14089
14394
|
]);
|
|
14090
14395
|
|
|
@@ -14191,6 +14496,7 @@ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropType
|
|
|
14191
14496
|
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
14192
14497
|
id: PropTypes.string.isRequired,
|
|
14193
14498
|
organization_id: PropTypes.string.isRequired,
|
|
14499
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
14194
14500
|
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
14195
14501
|
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
14196
14502
|
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
@@ -14454,267 +14760,6 @@ T['io.flow.internal.v0.models.customs_description_tariff_code_duty'] = PropTypes
|
|
|
14454
14760
|
tariff_codes_metadata: PropTypes.objectOf(PropTypes.string),
|
|
14455
14761
|
});
|
|
14456
14762
|
|
|
14457
|
-
T['io.flow.internal.v0.models.organization_reference'] = PropTypes.exact({
|
|
14458
|
-
id: PropTypes.string.isRequired,
|
|
14459
|
-
});
|
|
14460
|
-
|
|
14461
|
-
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14462
|
-
T['io.flow.label.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
14463
|
-
|
|
14464
|
-
T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
14465
|
-
'flow_web_sync',
|
|
14466
|
-
'channel_web_async',
|
|
14467
|
-
'direct_api_sync',
|
|
14468
|
-
'direct_api_async',
|
|
14469
|
-
'bridge_api_sync',
|
|
14470
|
-
'partner_api_sync',
|
|
14471
|
-
'notification_requiring_crossdock',
|
|
14472
|
-
'autogenerated',
|
|
14473
|
-
]);
|
|
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
|
-
|
|
14504
|
-
T['io.flow.internal.v0.models.csv_label_cost'] = PropTypes.exact({
|
|
14505
|
-
amount: PropTypes.number.isRequired,
|
|
14506
|
-
currency: PropTypes.string.isRequired,
|
|
14507
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
14508
|
-
});
|
|
14509
|
-
|
|
14510
|
-
T['io.flow.internal.v0.models.csv_label'] = PropTypes.exact({
|
|
14511
|
-
id: PropTypes.string.isRequired,
|
|
14512
|
-
cost: T['io.flow.internal.v0.models.csv_label_cost'].isRequired,
|
|
14513
|
-
created_at: PropTypes.string.isRequired,
|
|
14514
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14515
|
-
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14516
|
-
});
|
|
14517
|
-
|
|
14518
|
-
T['io.flow.internal.v0.enums.label_input_source'] = PropTypes.oneOf(['estimate']);
|
|
14519
|
-
|
|
14520
|
-
T['io.flow.internal.v0.models.csv_global_e_proposition'] = PropTypes.exact({
|
|
14521
|
-
name: PropTypes.string.isRequired,
|
|
14522
|
-
});
|
|
14523
|
-
|
|
14524
|
-
T['io.flow.internal.v0.models.csv_global_e_shipping_method'] = PropTypes.exact({
|
|
14525
|
-
id: PropTypes.string.isRequired,
|
|
14526
|
-
proposition: T['io.flow.internal.v0.models.csv_global_e_proposition'].isRequired,
|
|
14527
|
-
});
|
|
14528
|
-
|
|
14529
|
-
T['io.flow.internal.v0.models.csv_service_fee'] = PropTypes.exact({
|
|
14530
|
-
amount: PropTypes.number,
|
|
14531
|
-
currency: PropTypes.string,
|
|
14532
|
-
percentage: PropTypes.number,
|
|
14533
|
-
});
|
|
14534
|
-
|
|
14535
|
-
T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'] = PropTypes.exact({
|
|
14536
|
-
fuel: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14537
|
-
remote_area: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14538
|
-
oversize: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14539
|
-
duties_paid: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14540
|
-
});
|
|
14541
|
-
|
|
14542
|
-
T['io.flow.internal.v0.models.lane_reference'] = PropTypes.exact({
|
|
14543
|
-
id: PropTypes.string.isRequired,
|
|
14544
|
-
});
|
|
14545
|
-
|
|
14546
|
-
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
14547
|
-
|
|
14548
|
-
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
14549
|
-
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14550
|
-
effective_at: PropTypes.string.isRequired,
|
|
14551
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14552
|
-
service: PropTypes.string.isRequired,
|
|
14553
|
-
number: PropTypes.string,
|
|
14554
|
-
rate_level_key: PropTypes.string,
|
|
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),
|
|
14560
|
-
});
|
|
14561
|
-
|
|
14562
|
-
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
14563
|
-
id: PropTypes.string.isRequired,
|
|
14564
|
-
number: PropTypes.string.isRequired,
|
|
14565
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14566
|
-
});
|
|
14567
|
-
|
|
14568
|
-
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
14569
|
-
id: PropTypes.string.isRequired,
|
|
14570
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
14571
|
-
});
|
|
14572
|
-
|
|
14573
|
-
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
14574
|
-
id: PropTypes.string,
|
|
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,
|
|
14581
|
-
});
|
|
14582
|
-
|
|
14583
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
14584
|
-
id: PropTypes.string,
|
|
14585
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
14586
|
-
});
|
|
14587
|
-
|
|
14588
|
-
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
14589
|
-
id: PropTypes.string.isRequired,
|
|
14590
|
-
number: PropTypes.string.isRequired,
|
|
14591
|
-
rate_level_key: PropTypes.string,
|
|
14592
|
-
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14593
|
-
effective_at: PropTypes.string.isRequired,
|
|
14594
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14595
|
-
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
14596
|
-
published_at: PropTypes.string,
|
|
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,
|
|
14601
|
-
});
|
|
14602
|
-
|
|
14603
|
-
T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
14604
|
-
id: PropTypes.string.isRequired,
|
|
14605
|
-
number: PropTypes.string.isRequired,
|
|
14606
|
-
owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14607
|
-
lane: T['io.flow.internal.v0.models.lane_reference'].isRequired,
|
|
14608
|
-
dim_factor: PropTypes.number.isRequired,
|
|
14609
|
-
surcharges: T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'].isRequired,
|
|
14610
|
-
base_amount: PropTypes.number,
|
|
14611
|
-
});
|
|
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
|
-
|
|
14622
|
-
T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
|
|
14623
|
-
percentage: PropTypes.number.isRequired,
|
|
14624
|
-
amount: PropTypes.number.isRequired,
|
|
14625
|
-
});
|
|
14626
|
-
|
|
14627
|
-
T['io.flow.internal.v0.models.csv_actual_ratecard'] = PropTypes.exact({
|
|
14628
|
-
base_amount: PropTypes.number,
|
|
14629
|
-
});
|
|
14630
|
-
|
|
14631
|
-
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
14632
|
-
|
|
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,
|
|
14637
|
-
});
|
|
14638
|
-
|
|
14639
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
14640
|
-
id: PropTypes.string.isRequired,
|
|
14641
|
-
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
14642
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14643
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14644
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
14645
|
-
total: PropTypes.number.isRequired,
|
|
14646
|
-
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
14647
|
-
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
14648
|
-
});
|
|
14649
|
-
|
|
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,
|
|
14654
|
-
});
|
|
14655
|
-
|
|
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,
|
|
14660
|
-
});
|
|
14661
|
-
|
|
14662
|
-
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
14663
|
-
id: PropTypes.string.isRequired,
|
|
14664
|
-
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
14665
|
-
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
14666
|
-
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14667
|
-
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
14668
|
-
total: PropTypes.number.isRequired,
|
|
14669
|
-
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
14670
|
-
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
14671
|
-
});
|
|
14672
|
-
|
|
14673
|
-
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
14674
|
-
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
14675
|
-
event_id: PropTypes.string.isRequired,
|
|
14676
|
-
timestamp: PropTypes.string.isRequired,
|
|
14677
|
-
organization: PropTypes.string.isRequired,
|
|
14678
|
-
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
14679
|
-
});
|
|
14680
|
-
|
|
14681
|
-
T['io.flow.internal.v0.models.csv_weight'] = PropTypes.exact({
|
|
14682
|
-
unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14683
|
-
provided: PropTypes.number.isRequired,
|
|
14684
|
-
dimensional: PropTypes.number.isRequired,
|
|
14685
|
-
lookup: PropTypes.number.isRequired,
|
|
14686
|
-
});
|
|
14687
|
-
|
|
14688
|
-
T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
|
|
14689
|
-
fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
|
|
14690
|
-
remote_area: PropTypes.number.isRequired,
|
|
14691
|
-
oversize: PropTypes.number.isRequired,
|
|
14692
|
-
duties_paid: PropTypes.number.isRequired,
|
|
14693
|
-
});
|
|
14694
|
-
|
|
14695
|
-
T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
|
|
14696
|
-
id: PropTypes.string.isRequired,
|
|
14697
|
-
source: T['io.flow.internal.v0.enums.label_input_source'].isRequired,
|
|
14698
|
-
currency: PropTypes.string.isRequired,
|
|
14699
|
-
base_amount: PropTypes.number.isRequired,
|
|
14700
|
-
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
14701
|
-
total: PropTypes.number.isRequired,
|
|
14702
|
-
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14703
|
-
weight: PropTypes.number.isRequired,
|
|
14704
|
-
variance: PropTypes.number.isRequired,
|
|
14705
|
-
});
|
|
14706
|
-
|
|
14707
|
-
T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
|
|
14708
|
-
id: PropTypes.string.isRequired,
|
|
14709
|
-
currency: PropTypes.string.isRequired,
|
|
14710
|
-
base_amount: PropTypes.number.isRequired,
|
|
14711
|
-
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
14712
|
-
total: PropTypes.number.isRequired,
|
|
14713
|
-
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14714
|
-
weight: PropTypes.number.isRequired,
|
|
14715
|
-
ratecard: T['io.flow.internal.v0.models.csv_actual_ratecard'].isRequired,
|
|
14716
|
-
});
|
|
14717
|
-
|
|
14718
14763
|
T['io.flow.internal.v0.models.crypto_authentication_form'] = PropTypes.exact({
|
|
14719
14764
|
public_key: PropTypes.string.isRequired,
|
|
14720
14765
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -19008,6 +19053,28 @@ T['io.flow.internal.v0.models.channel_billed_transaction_pair'] = PropTypes.exac
|
|
|
19008
19053
|
channel_transaction: T['io.flow.internal.v0.models.channel_billed_transaction_reference'].isRequired,
|
|
19009
19054
|
});
|
|
19010
19055
|
|
|
19056
|
+
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
19057
|
+
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
19058
|
+
interval: PropTypes.number.isRequired,
|
|
19059
|
+
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
19060
|
+
});
|
|
19061
|
+
|
|
19062
|
+
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
19063
|
+
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
19064
|
+
interval: PropTypes.number.isRequired,
|
|
19065
|
+
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
19066
|
+
});
|
|
19067
|
+
|
|
19068
|
+
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
19069
|
+
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
19070
|
+
interval: PropTypes.number.isRequired,
|
|
19071
|
+
});
|
|
19072
|
+
|
|
19073
|
+
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
19074
|
+
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
19075
|
+
interval: PropTypes.number.isRequired,
|
|
19076
|
+
});
|
|
19077
|
+
|
|
19011
19078
|
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
19012
19079
|
id: PropTypes.string.isRequired,
|
|
19013
19080
|
});
|
|
@@ -19140,7 +19207,8 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropT
|
|
|
19140
19207
|
'core_team_investigate',
|
|
19141
19208
|
'mex_team',
|
|
19142
19209
|
'payments_team',
|
|
19143
|
-
'
|
|
19210
|
+
'tc_team',
|
|
19211
|
+
'logistics_team',
|
|
19144
19212
|
]);
|
|
19145
19213
|
|
|
19146
19214
|
T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
@@ -20568,28 +20636,6 @@ T['io.flow.internal.v0.models.organization_restriction_status_note'] = PropTypes
|
|
|
20568
20636
|
updated_at: PropTypes.string.isRequired,
|
|
20569
20637
|
});
|
|
20570
20638
|
|
|
20571
|
-
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
20572
|
-
id: PropTypes.string.isRequired,
|
|
20573
|
-
name: PropTypes.string.isRequired,
|
|
20574
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20575
|
-
url: PropTypes.string,
|
|
20576
|
-
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
20577
|
-
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
20578
|
-
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
20579
|
-
hs_code: PropTypes.string,
|
|
20580
|
-
merchant_category_code: PropTypes.string,
|
|
20581
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
20582
|
-
});
|
|
20583
|
-
|
|
20584
|
-
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
20585
|
-
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
20586
|
-
earliest_pending_date: PropTypes.string.isRequired,
|
|
20587
|
-
date: PropTypes.string.isRequired,
|
|
20588
|
-
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
20589
|
-
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
|
|
20590
|
-
count: PropTypes.number.isRequired,
|
|
20591
|
-
});
|
|
20592
|
-
|
|
20593
20639
|
T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
20594
20640
|
id: PropTypes.string.isRequired,
|
|
20595
20641
|
note: PropTypes.string.isRequired,
|
|
@@ -23428,6 +23474,31 @@ T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.ex
|
|
|
23428
23474
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23429
23475
|
});
|
|
23430
23476
|
|
|
23477
|
+
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
23478
|
+
id: PropTypes.string.isRequired,
|
|
23479
|
+
name: PropTypes.string.isRequired,
|
|
23480
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
23481
|
+
url: PropTypes.string,
|
|
23482
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
23483
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
23484
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
23485
|
+
hs_code: PropTypes.string,
|
|
23486
|
+
merchant_category_code: PropTypes.string,
|
|
23487
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
23488
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
23489
|
+
last_year_domestic_gmv: T['io.flow.common.v0.models.money'],
|
|
23490
|
+
});
|
|
23491
|
+
|
|
23492
|
+
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
23493
|
+
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
23494
|
+
earliest_pending_date: PropTypes.string.isRequired,
|
|
23495
|
+
priority_score: PropTypes.number.isRequired,
|
|
23496
|
+
date: PropTypes.string.isRequired,
|
|
23497
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
23498
|
+
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
|
|
23499
|
+
count: PropTypes.number.isRequired,
|
|
23500
|
+
});
|
|
23501
|
+
|
|
23431
23502
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
23432
23503
|
currency: PropTypes.string.isRequired,
|
|
23433
23504
|
amount: PropTypes.number.isRequired,
|
|
@@ -23585,33 +23656,6 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
23585
23656
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23586
23657
|
});
|
|
23587
23658
|
|
|
23588
|
-
T['io.flow.internal.v0.models.csv_order'] = PropTypes.exact({
|
|
23589
|
-
organization: T['io.flow.internal.v0.models.organization_reference'].isRequired,
|
|
23590
|
-
number: PropTypes.string.isRequired,
|
|
23591
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23592
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
23593
|
-
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23594
|
-
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
23595
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
23596
|
-
number_items: PropTypes.number.isRequired,
|
|
23597
|
-
});
|
|
23598
|
-
|
|
23599
|
-
T['io.flow.internal.v0.models.csv_record'] = PropTypes.exact({
|
|
23600
|
-
label: T['io.flow.internal.v0.models.csv_label'].isRequired,
|
|
23601
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
23602
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23603
|
-
order: T['io.flow.internal.v0.models.csv_order'].isRequired,
|
|
23604
|
-
flow_ratecard: T['io.flow.internal.v0.models.csv_flow_ratecard'].isRequired,
|
|
23605
|
-
global_e_shipping_method: T['io.flow.internal.v0.models.csv_global_e_shipping_method'],
|
|
23606
|
-
weight: T['io.flow.internal.v0.models.csv_weight'].isRequired,
|
|
23607
|
-
dimensions: T['io.flow.internal.v0.models.csv_dimensions'].isRequired,
|
|
23608
|
-
input: T['io.flow.internal.v0.models.csv_input'],
|
|
23609
|
-
actual: T['io.flow.internal.v0.models.csv_actual'],
|
|
23610
|
-
variance: PropTypes.number,
|
|
23611
|
-
deltas: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23612
|
-
outliers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23613
|
-
});
|
|
23614
|
-
|
|
23615
23659
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23616
23660
|
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23617
23661
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
@@ -23942,12 +23986,23 @@ T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
|
|
|
23942
23986
|
rate: PropTypes.number.isRequired,
|
|
23943
23987
|
});
|
|
23944
23988
|
|
|
23989
|
+
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
23990
|
+
T['io.flow.common.v0.models.repeat_hourly'],
|
|
23991
|
+
T['io.flow.common.v0.models.repeat_daily'],
|
|
23992
|
+
T['io.flow.common.v0.models.repeat_weekly'],
|
|
23993
|
+
T['io.flow.common.v0.models.repeat_monthly'],
|
|
23994
|
+
]);
|
|
23995
|
+
|
|
23945
23996
|
T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
23946
23997
|
name: PropTypes.string.isRequired,
|
|
23947
23998
|
description: PropTypes.string.isRequired,
|
|
23948
23999
|
offset: PropTypes.number.isRequired,
|
|
23949
24000
|
});
|
|
23950
24001
|
|
|
24002
|
+
T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
24003
|
+
country: PropTypes.string.isRequired,
|
|
24004
|
+
});
|
|
24005
|
+
|
|
23951
24006
|
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
23952
24007
|
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
23953
24008
|
id: PropTypes.string.isRequired,
|
|
@@ -24131,6 +24186,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
24131
24186
|
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
24132
24187
|
started_at: PropTypes.string,
|
|
24133
24188
|
time_blocked: PropTypes.number,
|
|
24189
|
+
time_in_setup: PropTypes.number,
|
|
24134
24190
|
blocked_since: PropTypes.string,
|
|
24135
24191
|
completed_at: PropTypes.string,
|
|
24136
24192
|
onboarding_started_at: PropTypes.string,
|
|
@@ -24290,33 +24346,18 @@ T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.e
|
|
|
24290
24346
|
});
|
|
24291
24347
|
|
|
24292
24348
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
|
|
24293
|
-
discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
|
|
24294
|
-
event_id: PropTypes.string.isRequired,
|
|
24295
|
-
timestamp: PropTypes.string.isRequired,
|
|
24296
|
-
organization: PropTypes.string.isRequired,
|
|
24297
|
-
order_number: PropTypes.string.isRequired,
|
|
24298
|
-
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24299
|
-
});
|
|
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'],
|
|
24349
|
+
discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
|
|
24350
|
+
event_id: PropTypes.string.isRequired,
|
|
24351
|
+
timestamp: PropTypes.string.isRequired,
|
|
24352
|
+
organization: PropTypes.string.isRequired,
|
|
24353
|
+
order_number: PropTypes.string.isRequired,
|
|
24354
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24355
|
+
});
|
|
24356
|
+
|
|
24357
|
+
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
24358
|
+
id: PropTypes.string.isRequired,
|
|
24359
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24360
|
+
number: PropTypes.string.isRequired,
|
|
24320
24361
|
});
|
|
24321
24362
|
|
|
24322
24363
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
@@ -25284,6 +25325,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
25284
25325
|
channel_billed: T['io.flow.common.v0.models.price'].isRequired,
|
|
25285
25326
|
tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25286
25327
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
25328
|
+
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
25287
25329
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25288
25330
|
});
|
|
25289
25331
|
|
|
@@ -26178,6 +26220,64 @@ T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
|
|
|
26178
26220
|
pending: T['io.flow.common.v0.models.price'].isRequired,
|
|
26179
26221
|
});
|
|
26180
26222
|
|
|
26223
|
+
T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
26224
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26225
|
+
id: PropTypes.string.isRequired,
|
|
26226
|
+
key: PropTypes.string,
|
|
26227
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26228
|
+
currency: PropTypes.string.isRequired,
|
|
26229
|
+
updated_at: PropTypes.string.isRequired,
|
|
26230
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26231
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26232
|
+
payment_conditions: PropTypes.string,
|
|
26233
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26234
|
+
center_key: PropTypes.string,
|
|
26235
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26236
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26237
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26238
|
+
created_at: PropTypes.string.isRequired,
|
|
26239
|
+
});
|
|
26240
|
+
|
|
26241
|
+
T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
|
|
26242
|
+
discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
|
|
26243
|
+
event_id: PropTypes.string.isRequired,
|
|
26244
|
+
timestamp: PropTypes.string.isRequired,
|
|
26245
|
+
channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
|
|
26246
|
+
});
|
|
26247
|
+
|
|
26248
|
+
T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
|
|
26249
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26250
|
+
id: PropTypes.string.isRequired,
|
|
26251
|
+
key: PropTypes.string,
|
|
26252
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26253
|
+
currency: PropTypes.string.isRequired,
|
|
26254
|
+
updated_at: PropTypes.string.isRequired,
|
|
26255
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26256
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26257
|
+
payment_conditions: PropTypes.string,
|
|
26258
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26259
|
+
center_key: PropTypes.string,
|
|
26260
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26261
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26262
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26263
|
+
created_at: PropTypes.string.isRequired,
|
|
26264
|
+
});
|
|
26265
|
+
|
|
26266
|
+
T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
|
|
26267
|
+
discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
|
|
26268
|
+
event_id: PropTypes.string.isRequired,
|
|
26269
|
+
timestamp: PropTypes.string.isRequired,
|
|
26270
|
+
organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26271
|
+
});
|
|
26272
|
+
|
|
26273
|
+
T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
|
|
26274
|
+
discriminator: PropTypes.oneOf(['account_upserted']).isRequired,
|
|
26275
|
+
event_id: PropTypes.string.isRequired,
|
|
26276
|
+
timestamp: PropTypes.string.isRequired,
|
|
26277
|
+
organization: PropTypes.string.isRequired,
|
|
26278
|
+
account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26279
|
+
});
|
|
26280
|
+
|
|
26181
26281
|
T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
26182
26282
|
|
|
26183
26283
|
T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
@@ -26185,6 +26285,31 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
|
26185
26285
|
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
26186
26286
|
});
|
|
26187
26287
|
|
|
26288
|
+
T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
26289
|
+
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
26290
|
+
id: PropTypes.string.isRequired,
|
|
26291
|
+
key: PropTypes.string,
|
|
26292
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26293
|
+
currency: PropTypes.string.isRequired,
|
|
26294
|
+
updated_at: PropTypes.string.isRequired,
|
|
26295
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26296
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26297
|
+
payment_conditions: PropTypes.string,
|
|
26298
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26299
|
+
center_key: PropTypes.string,
|
|
26300
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26301
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26302
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26303
|
+
created_at: PropTypes.string.isRequired,
|
|
26304
|
+
});
|
|
26305
|
+
|
|
26306
|
+
T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
|
|
26307
|
+
discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
|
|
26308
|
+
event_id: PropTypes.string.isRequired,
|
|
26309
|
+
timestamp: PropTypes.string.isRequired,
|
|
26310
|
+
account: T['io.flow.internal.v0.models.flow_account'].isRequired,
|
|
26311
|
+
});
|
|
26312
|
+
|
|
26188
26313
|
T['io.flow.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
26189
26314
|
id: PropTypes.string.isRequired,
|
|
26190
26315
|
currency: PropTypes.string.isRequired,
|
|
@@ -26233,6 +26358,23 @@ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
|
|
|
26233
26358
|
|
|
26234
26359
|
T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
26235
26360
|
|
|
26361
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
26362
|
+
id: PropTypes.string.isRequired,
|
|
26363
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
26364
|
+
currency: PropTypes.string.isRequired,
|
|
26365
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
26366
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
26367
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
26368
|
+
shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
|
|
26369
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
26370
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
26371
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
26372
|
+
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
26373
|
+
completes_order: PropTypes.bool.isRequired,
|
|
26374
|
+
sequence_number: PropTypes.number.isRequired,
|
|
26375
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
26376
|
+
});
|
|
26377
|
+
|
|
26236
26378
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
26237
26379
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
26238
26380
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -26390,6 +26532,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26390
26532
|
'channel_billed',
|
|
26391
26533
|
'tax',
|
|
26392
26534
|
'duty',
|
|
26535
|
+
'trueup',
|
|
26393
26536
|
]);
|
|
26394
26537
|
|
|
26395
26538
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26408,6 +26551,19 @@ T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
|
26408
26551
|
created_at: PropTypes.string.isRequired,
|
|
26409
26552
|
});
|
|
26410
26553
|
|
|
26554
|
+
T['io.flow.internal.v0.models.trueup_transaction'] = PropTypes.exact({
|
|
26555
|
+
discriminator: PropTypes.oneOf(['trueup_transaction']).isRequired,
|
|
26556
|
+
label_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
26557
|
+
id: PropTypes.string.isRequired,
|
|
26558
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26559
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26560
|
+
posted_at: PropTypes.string,
|
|
26561
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26562
|
+
description: PropTypes.string.isRequired,
|
|
26563
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26564
|
+
created_at: PropTypes.string.isRequired,
|
|
26565
|
+
});
|
|
26566
|
+
|
|
26411
26567
|
T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
|
|
26412
26568
|
discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
|
|
26413
26569
|
method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
|
|
@@ -26736,6 +26892,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26736
26892
|
T['io.flow.internal.v0.models.channel_billed_transaction'],
|
|
26737
26893
|
T['io.flow.internal.v0.models.tax_transaction'],
|
|
26738
26894
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
26895
|
+
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
26739
26896
|
]);
|
|
26740
26897
|
|
|
26741
26898
|
T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
|
|
@@ -26780,126 +26937,6 @@ T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact(
|
|
|
26780
26937
|
transaction_created_before: PropTypes.string,
|
|
26781
26938
|
});
|
|
26782
26939
|
|
|
26783
|
-
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
26784
|
-
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
26785
|
-
interval: PropTypes.number.isRequired,
|
|
26786
|
-
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
26787
|
-
});
|
|
26788
|
-
|
|
26789
|
-
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
26790
|
-
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
26791
|
-
interval: PropTypes.number.isRequired,
|
|
26792
|
-
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
26793
|
-
});
|
|
26794
|
-
|
|
26795
|
-
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
26796
|
-
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
26797
|
-
interval: PropTypes.number.isRequired,
|
|
26798
|
-
});
|
|
26799
|
-
|
|
26800
|
-
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
26801
|
-
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
26802
|
-
interval: PropTypes.number.isRequired,
|
|
26803
|
-
});
|
|
26804
|
-
|
|
26805
|
-
T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
|
|
26806
|
-
target: PropTypes.number.isRequired,
|
|
26807
|
-
rate: PropTypes.number.isRequired,
|
|
26808
|
-
});
|
|
26809
|
-
|
|
26810
|
-
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
26811
|
-
T['io.flow.common.v0.models.repeat_hourly'],
|
|
26812
|
-
T['io.flow.common.v0.models.repeat_daily'],
|
|
26813
|
-
T['io.flow.common.v0.models.repeat_weekly'],
|
|
26814
|
-
T['io.flow.common.v0.models.repeat_monthly'],
|
|
26815
|
-
]);
|
|
26816
|
-
|
|
26817
|
-
T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
26818
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26819
|
-
id: PropTypes.string.isRequired,
|
|
26820
|
-
currency: PropTypes.string.isRequired,
|
|
26821
|
-
updated_at: PropTypes.string.isRequired,
|
|
26822
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26823
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26824
|
-
payment_conditions: PropTypes.string,
|
|
26825
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26826
|
-
center_key: PropTypes.string,
|
|
26827
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26828
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26829
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26830
|
-
created_at: PropTypes.string.isRequired,
|
|
26831
|
-
});
|
|
26832
|
-
|
|
26833
|
-
T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
|
|
26834
|
-
discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
|
|
26835
|
-
event_id: PropTypes.string.isRequired,
|
|
26836
|
-
timestamp: PropTypes.string.isRequired,
|
|
26837
|
-
channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
|
|
26838
|
-
});
|
|
26839
|
-
|
|
26840
|
-
T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
26841
|
-
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
26842
|
-
id: PropTypes.string.isRequired,
|
|
26843
|
-
currency: PropTypes.string.isRequired,
|
|
26844
|
-
updated_at: PropTypes.string.isRequired,
|
|
26845
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26846
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26847
|
-
payment_conditions: PropTypes.string,
|
|
26848
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26849
|
-
center_key: PropTypes.string,
|
|
26850
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26851
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26852
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26853
|
-
created_at: PropTypes.string.isRequired,
|
|
26854
|
-
});
|
|
26855
|
-
|
|
26856
|
-
T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
|
|
26857
|
-
discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
|
|
26858
|
-
event_id: PropTypes.string.isRequired,
|
|
26859
|
-
timestamp: PropTypes.string.isRequired,
|
|
26860
|
-
account: T['io.flow.internal.v0.models.flow_account'].isRequired,
|
|
26861
|
-
});
|
|
26862
|
-
|
|
26863
|
-
T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
|
|
26864
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26865
|
-
id: PropTypes.string.isRequired,
|
|
26866
|
-
currency: PropTypes.string.isRequired,
|
|
26867
|
-
updated_at: PropTypes.string.isRequired,
|
|
26868
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26869
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26870
|
-
payment_conditions: PropTypes.string,
|
|
26871
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26872
|
-
center_key: PropTypes.string,
|
|
26873
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26874
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26875
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26876
|
-
created_at: PropTypes.string.isRequired,
|
|
26877
|
-
});
|
|
26878
|
-
|
|
26879
|
-
T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
|
|
26880
|
-
discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
|
|
26881
|
-
event_id: PropTypes.string.isRequired,
|
|
26882
|
-
timestamp: PropTypes.string.isRequired,
|
|
26883
|
-
organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26884
|
-
});
|
|
26885
|
-
|
|
26886
|
-
T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
|
|
26887
|
-
discriminator: PropTypes.oneOf(['account_upserted']).isRequired,
|
|
26888
|
-
event_id: PropTypes.string.isRequired,
|
|
26889
|
-
timestamp: PropTypes.string.isRequired,
|
|
26890
|
-
organization: PropTypes.string.isRequired,
|
|
26891
|
-
account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26892
|
-
});
|
|
26893
|
-
|
|
26894
|
-
T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
|
|
26895
|
-
timezone: PropTypes.string.isRequired,
|
|
26896
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26897
|
-
payment_conditions: PropTypes.string,
|
|
26898
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
|
|
26899
|
-
center_key: PropTypes.string,
|
|
26900
|
-
bank_account_id: PropTypes.string,
|
|
26901
|
-
});
|
|
26902
|
-
|
|
26903
26940
|
T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
26904
26941
|
id: PropTypes.string.isRequired,
|
|
26905
26942
|
});
|
|
@@ -27289,6 +27326,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27289
27326
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'],
|
|
27290
27327
|
T['io.flow.internal.v0.models.optin_prompt_upserted'],
|
|
27291
27328
|
T['io.flow.internal.v0.models.optin_prompt_deleted'],
|
|
27329
|
+
T['io.flow.internal.v0.models.order_combined_shipment_upserted'],
|
|
27330
|
+
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
27292
27331
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
27293
27332
|
T['io.flow.internal.v0.models.order_fulfillment_upserted'],
|
|
27294
27333
|
T['io.flow.internal.v0.models.order_placed'],
|
|
@@ -27725,6 +27764,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27725
27764
|
'localized_item_prices_export_request',
|
|
27726
27765
|
'optin_prompt_upserted',
|
|
27727
27766
|
'optin_prompt_deleted',
|
|
27767
|
+
'order_combined_shipment_upserted',
|
|
27768
|
+
'order_combined_shipment_deleted',
|
|
27728
27769
|
'order_fulfillment_deleted',
|
|
27729
27770
|
'order_fulfillment_upserted',
|
|
27730
27771
|
'order_placed',
|
|
@@ -27894,16 +27935,18 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27894
27935
|
'capture',
|
|
27895
27936
|
'capture_deletion',
|
|
27896
27937
|
'channel_transaction',
|
|
27897
|
-
'channel_organization',
|
|
27898
27938
|
'consumer_invoice',
|
|
27899
27939
|
'fulfillment_in_transit',
|
|
27900
27940
|
'fulfillment_shipping_notification',
|
|
27901
27941
|
'fulfillment_external',
|
|
27902
27942
|
'label_tracking_summary',
|
|
27903
27943
|
'label_invoice_request',
|
|
27944
|
+
'label_invoice_response',
|
|
27945
|
+
'label_invoice_response_file',
|
|
27904
27946
|
'label_origin',
|
|
27905
27947
|
'order',
|
|
27906
27948
|
'order_identifier',
|
|
27949
|
+
'organization_onboarding_state',
|
|
27907
27950
|
'refund',
|
|
27908
27951
|
'refund_deletion',
|
|
27909
27952
|
'refund_over_capture',
|
|
@@ -27911,7 +27954,6 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27911
27954
|
'statement_batch',
|
|
27912
27955
|
'statement_email',
|
|
27913
27956
|
'statement_summary_email',
|
|
27914
|
-
'wash',
|
|
27915
27957
|
]);
|
|
27916
27958
|
|
|
27917
27959
|
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
@@ -27999,6 +28041,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27999
28041
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
28000
28042
|
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
28001
28043
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
28044
|
+
T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
|
|
28002
28045
|
|
|
28003
28046
|
T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
28004
28047
|
email: PropTypes.string.isRequired,
|
|
@@ -28007,6 +28050,11 @@ T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
|
28007
28050
|
phone: PropTypes.string,
|
|
28008
28051
|
});
|
|
28009
28052
|
|
|
28053
|
+
T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
|
|
28054
|
+
target: PropTypes.number.isRequired,
|
|
28055
|
+
rate: PropTypes.number.isRequired,
|
|
28056
|
+
});
|
|
28057
|
+
|
|
28010
28058
|
T['io.flow.internal.v0.models.adjustment_details_amount_percentage'] = PropTypes.exact({
|
|
28011
28059
|
percentage: PropTypes.number.isRequired,
|
|
28012
28060
|
});
|
|
@@ -28521,6 +28569,10 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
|
|
|
28521
28569
|
commercial_invoice_only_query: PropTypes.string,
|
|
28522
28570
|
});
|
|
28523
28571
|
|
|
28572
|
+
T['io.flow.internal.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
28573
|
+
url: PropTypes.string.isRequired,
|
|
28574
|
+
});
|
|
28575
|
+
|
|
28524
28576
|
T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
28525
28577
|
number: PropTypes.string.isRequired,
|
|
28526
28578
|
origin: PropTypes.string.isRequired,
|
|
@@ -28588,6 +28640,12 @@ T['io.flow.internal.v0.models.optin_prompt_copy_form'] = PropTypes.exact({
|
|
|
28588
28640
|
to: PropTypes.string.isRequired,
|
|
28589
28641
|
});
|
|
28590
28642
|
|
|
28643
|
+
T['io.flow.internal.v0.models.order_combined_shipment_form'] = PropTypes.exact({
|
|
28644
|
+
order_number: PropTypes.string.isRequired,
|
|
28645
|
+
provided_carrier_name: PropTypes.string,
|
|
28646
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
28647
|
+
});
|
|
28648
|
+
|
|
28591
28649
|
T['io.flow.internal.v0.models.order_note_form'] = PropTypes.exact({
|
|
28592
28650
|
note: PropTypes.string.isRequired,
|
|
28593
28651
|
});
|
|
@@ -28981,14 +29039,6 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
|
|
|
28981
29039
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28982
29040
|
});
|
|
28983
29041
|
|
|
28984
|
-
T['io.flow.internal.v0.models.wash_carrier_actual_file_form'] = PropTypes.exact({
|
|
28985
|
-
url: PropTypes.string.isRequired,
|
|
28986
|
-
});
|
|
28987
|
-
|
|
28988
|
-
T['io.flow.internal.v0.models.wash_export_request'] = PropTypes.exact({
|
|
28989
|
-
url: PropTypes.string.isRequired,
|
|
28990
|
-
});
|
|
28991
|
-
|
|
28992
29042
|
T['io.flow.internal.v0.models.webhook'] = PropTypes.exact({
|
|
28993
29043
|
placeholder: PropTypes.string,
|
|
28994
29044
|
});
|
|
@@ -29751,6 +29801,10 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
29751
29801
|
order_id: PropTypes.string,
|
|
29752
29802
|
});
|
|
29753
29803
|
|
|
29804
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
29805
|
+
url: PropTypes.string.isRequired,
|
|
29806
|
+
});
|
|
29807
|
+
|
|
29754
29808
|
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
29755
29809
|
country: PropTypes.string.isRequired,
|
|
29756
29810
|
});
|
|
@@ -30002,8 +30056,8 @@ export const accountContactUpserted = T['io.flow.internal.v0.models.account_cont
|
|
|
30002
30056
|
export const accountDeletedV2 = T['io.flow.internal.v0.models.account_deleted_v2'];
|
|
30003
30057
|
export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_rule'];
|
|
30004
30058
|
export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_deposit_rule_form'];
|
|
30005
|
-
export const accountForm = T['io.flow.internal.v0.models.account_form'];
|
|
30006
30059
|
export const accountOrdersExportRequest = T['io.flow.internal.v0.models.account_orders_export_request'];
|
|
30060
|
+
export const accountOrigin = T['io.flow.internal.v0.models.account_origin'];
|
|
30007
30061
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
30008
30062
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
30009
30063
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -30877,22 +30931,6 @@ export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypt
|
|
|
30877
30931
|
export const cryptoAccountPutForm = T['io.flow.internal.v0.models.crypto_account_put_form'];
|
|
30878
30932
|
export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authentication'];
|
|
30879
30933
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
30880
|
-
export const csvActual = T['io.flow.internal.v0.models.csv_actual'];
|
|
30881
|
-
export const csvActualRatecard = T['io.flow.internal.v0.models.csv_actual_ratecard'];
|
|
30882
|
-
export const csvDimensions = T['io.flow.internal.v0.models.csv_dimensions'];
|
|
30883
|
-
export const csvFlowRatecard = T['io.flow.internal.v0.models.csv_flow_ratecard'];
|
|
30884
|
-
export const csvFlowRatecardSurcharges = T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'];
|
|
30885
|
-
export const csvGlobalEProposition = T['io.flow.internal.v0.models.csv_global_e_proposition'];
|
|
30886
|
-
export const csvGlobalEShippingMethod = T['io.flow.internal.v0.models.csv_global_e_shipping_method'];
|
|
30887
|
-
export const csvInput = T['io.flow.internal.v0.models.csv_input'];
|
|
30888
|
-
export const csvLabel = T['io.flow.internal.v0.models.csv_label'];
|
|
30889
|
-
export const csvLabelCost = T['io.flow.internal.v0.models.csv_label_cost'];
|
|
30890
|
-
export const csvOrder = T['io.flow.internal.v0.models.csv_order'];
|
|
30891
|
-
export const csvRecord = T['io.flow.internal.v0.models.csv_record'];
|
|
30892
|
-
export const csvServiceFee = T['io.flow.internal.v0.models.csv_service_fee'];
|
|
30893
|
-
export const csvSurchargePercentage = T['io.flow.internal.v0.models.csv_surcharge_percentage'];
|
|
30894
|
-
export const csvSurcharges = T['io.flow.internal.v0.models.csv_surcharges'];
|
|
30895
|
-
export const csvWeight = T['io.flow.internal.v0.models.csv_weight'];
|
|
30896
30934
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
30897
30935
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
30898
30936
|
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
@@ -31395,21 +31433,27 @@ export const labelGenerationSettings = T['io.flow.internal.v0.models.label_gener
|
|
|
31395
31433
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
31396
31434
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
31397
31435
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
31398
|
-
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
31399
31436
|
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31400
31437
|
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31401
31438
|
export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
|
|
31439
|
+
export const labelInvoiceResponseFile = T['io.flow.internal.v0.models.label_invoice_response_file'];
|
|
31440
|
+
export const labelInvoiceResponseFileForm = T['io.flow.internal.v0.models.label_invoice_response_file_form'];
|
|
31441
|
+
export const labelInvoiceResponseFileResult = T['io.flow.internal.v0.models.label_invoice_response_file_result'];
|
|
31442
|
+
export const labelInvoiceResponseForm = T['io.flow.internal.v0.models.label_invoice_response_form'];
|
|
31402
31443
|
export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
|
|
31403
31444
|
export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
|
|
31404
31445
|
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
31405
31446
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
31406
31447
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
31448
|
+
export const labelResponseUnits = T['io.flow.internal.v0.models.label_response_units'];
|
|
31407
31449
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
31408
31450
|
export const labelSurcharge = T['io.flow.internal.v0.models.label_surcharge'];
|
|
31409
31451
|
export const labelSurchargeDetail = T['io.flow.internal.v0.unions.label_surcharge_detail'];
|
|
31410
31452
|
export const labelSurchargeDetailFlat = T['io.flow.internal.v0.models.label_surcharge_detail_flat'];
|
|
31411
31453
|
export const labelSurchargeDetailPerWeightUnit = T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'];
|
|
31412
31454
|
export const labelSurchargeDetailPercentage = T['io.flow.internal.v0.models.label_surcharge_detail_percentage'];
|
|
31455
|
+
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
31456
|
+
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
31413
31457
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
31414
31458
|
export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
|
|
31415
31459
|
export const labelTrackingSummaryUpserted = T['io.flow.internal.v0.models.label_tracking_summary_upserted'];
|
|
@@ -31422,7 +31466,6 @@ export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
|
31422
31466
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
31423
31467
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
31424
31468
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
31425
|
-
export const laneReference = T['io.flow.internal.v0.models.lane_reference'];
|
|
31426
31469
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
31427
31470
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
31428
31471
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -31593,6 +31636,10 @@ export const orderCancellationEvidenceReturnToSender = T['io.flow.internal.v0.mo
|
|
|
31593
31636
|
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
31594
31637
|
export const orderCancellationInitiatedBy = T['io.flow.internal.v0.enums.order_cancellation_initiated_by'];
|
|
31595
31638
|
export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
|
|
31639
|
+
export const orderCombinedShipment = T['io.flow.internal.v0.models.order_combined_shipment'];
|
|
31640
|
+
export const orderCombinedShipmentDeleted = T['io.flow.internal.v0.models.order_combined_shipment_deleted'];
|
|
31641
|
+
export const orderCombinedShipmentForm = T['io.flow.internal.v0.models.order_combined_shipment_form'];
|
|
31642
|
+
export const orderCombinedShipmentUpserted = T['io.flow.internal.v0.models.order_combined_shipment_upserted'];
|
|
31596
31643
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
31597
31644
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
31598
31645
|
export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulfillment_upserted'];
|
|
@@ -31652,7 +31699,6 @@ export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.orga
|
|
|
31652
31699
|
export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.organization_payment_setting_upserted'];
|
|
31653
31700
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
31654
31701
|
export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
|
|
31655
|
-
export const organizationReference = T['io.flow.internal.v0.models.organization_reference'];
|
|
31656
31702
|
export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
|
|
31657
31703
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
31658
31704
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
@@ -32110,8 +32156,6 @@ export const subscriptionFrequency = T['io.flow.internal.v0.enums.subscription_f
|
|
|
32110
32156
|
export const subscriptionTransaction = T['io.flow.internal.v0.models.subscription_transaction'];
|
|
32111
32157
|
export const suggestionAction = T['io.flow.internal.v0.enums.suggestion_action'];
|
|
32112
32158
|
export const supportedLabels = T['io.flow.internal.v0.models.supported_labels'];
|
|
32113
|
-
export const surcharge = T['io.flow.internal.v0.models.surcharge'];
|
|
32114
|
-
export const surchargeType = T['io.flow.internal.v0.enums.surcharge_type'];
|
|
32115
32159
|
export const svbVirtualCardClearing = T['io.flow.internal.v0.models.svb_virtual_card_clearing'];
|
|
32116
32160
|
export const svbVirtualCardClearingDeleted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'];
|
|
32117
32161
|
export const svbVirtualCardClearingUpserted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'];
|
|
@@ -32190,6 +32234,8 @@ export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.trans
|
|
|
32190
32234
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
32191
32235
|
export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
|
|
32192
32236
|
export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
|
|
32237
|
+
export const trueupTransaction = T['io.flow.internal.v0.models.trueup_transaction'];
|
|
32238
|
+
export const trueupTransactionType = T['io.flow.internal.v0.enums.trueup_transaction_type'];
|
|
32193
32239
|
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
32194
32240
|
export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
|
|
32195
32241
|
export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
|
|
@@ -32227,14 +32273,9 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
|
|
|
32227
32273
|
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
32228
32274
|
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
32229
32275
|
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'];
|
|
32233
|
-
export const washExportRequest = T['io.flow.internal.v0.models.wash_export_request'];
|
|
32234
32276
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
32235
32277
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
32236
32278
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|
|
32237
|
-
export const weightSelection = T['io.flow.internal.v0.enums.weight_selection'];
|
|
32238
32279
|
export const weightsDead = T['io.flow.internal.v0.models.weights_dead'];
|
|
32239
32280
|
export const weightsDimensional = T['io.flow.internal.v0.models.weights_dimensional'];
|
|
32240
32281
|
export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
|