@flowio/api-internal-prop-types 9.24.68 → 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 +194 -206
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +194 -206
- package/src/api-internal.js +578 -554
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
|
});
|
|
@@ -2100,7 +2151,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
|
|
|
2100
2151
|
key: PropTypes.string.isRequired,
|
|
2101
2152
|
namespace: PropTypes.string.isRequired,
|
|
2102
2153
|
value: PropTypes.string.isRequired,
|
|
2103
|
-
|
|
2154
|
+
type: T['io.flow.shopify.markets.v0.enums.shopify_order_value_type'].isRequired,
|
|
2104
2155
|
description: PropTypes.string,
|
|
2105
2156
|
});
|
|
2106
2157
|
|
|
@@ -4684,7 +4735,15 @@ T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfT
|
|
|
4684
4735
|
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4685
4736
|
]);
|
|
4686
4737
|
|
|
4687
|
-
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
|
+
]);
|
|
4688
4747
|
|
|
4689
4748
|
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4690
4749
|
amount: PropTypes.number.isRequired,
|
|
@@ -4707,6 +4766,7 @@ T['io.flow.experience.v0.enums.order_payment_type'] = PropTypes.oneOf([
|
|
|
4707
4766
|
'card',
|
|
4708
4767
|
'online',
|
|
4709
4768
|
'credit',
|
|
4769
|
+
'external',
|
|
4710
4770
|
'subsidized',
|
|
4711
4771
|
'installment_plan',
|
|
4712
4772
|
'cash_on_delivery',
|
|
@@ -5521,6 +5581,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
5521
5581
|
id: PropTypes.string.isRequired,
|
|
5522
5582
|
amount: PropTypes.number.isRequired,
|
|
5523
5583
|
amount_refunded: PropTypes.number.isRequired,
|
|
5584
|
+
authorization_code: PropTypes.string,
|
|
5524
5585
|
captured: PropTypes.bool.isRequired,
|
|
5525
5586
|
created: PropTypes.number.isRequired,
|
|
5526
5587
|
currency: PropTypes.string.isRequired,
|
|
@@ -5610,6 +5671,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
5610
5671
|
id: PropTypes.string.isRequired,
|
|
5611
5672
|
amount: PropTypes.number.isRequired,
|
|
5612
5673
|
amount_refunded: PropTypes.number.isRequired,
|
|
5674
|
+
authorization_code: PropTypes.string,
|
|
5613
5675
|
captured: PropTypes.bool.isRequired,
|
|
5614
5676
|
created: PropTypes.number.isRequired,
|
|
5615
5677
|
currency: PropTypes.string.isRequired,
|
|
@@ -6507,6 +6569,8 @@ T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
|
6507
6569
|
number: PropTypes.string.isRequired,
|
|
6508
6570
|
});
|
|
6509
6571
|
|
|
6572
|
+
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
6573
|
+
|
|
6510
6574
|
T['io.flow.return.v0.enums.return_tracking_status'] = PropTypes.oneOf([
|
|
6511
6575
|
'awaiting_customs_clearance',
|
|
6512
6576
|
'cancel_requested',
|
|
@@ -7691,27 +7755,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
7691
7755
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
7692
7756
|
]);
|
|
7693
7757
|
|
|
7694
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
7695
|
-
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
7696
|
-
id: PropTypes.string.isRequired,
|
|
7697
|
-
});
|
|
7698
|
-
|
|
7699
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
7700
|
-
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
7701
|
-
id: PropTypes.string.isRequired,
|
|
7702
|
-
});
|
|
7703
|
-
|
|
7704
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
7705
|
-
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
7706
|
-
id: PropTypes.string.isRequired,
|
|
7707
|
-
});
|
|
7708
|
-
|
|
7709
|
-
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
7710
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
7711
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
7712
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
7713
|
-
]);
|
|
7714
|
-
|
|
7715
7758
|
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
7716
7759
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
7717
7760
|
percent: PropTypes.number.isRequired,
|
|
@@ -7855,6 +7898,14 @@ T['io.flow.internal.v0.models.order_fulfillment_deleted'] = PropTypes.exact({
|
|
|
7855
7898
|
key: PropTypes.string.isRequired,
|
|
7856
7899
|
});
|
|
7857
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
|
+
|
|
7858
7909
|
T['io.flow.internal.v0.models.optin_prompt_deleted'] = PropTypes.exact({
|
|
7859
7910
|
discriminator: PropTypes.oneOf(['optin_prompt_deleted']).isRequired,
|
|
7860
7911
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8669,14 +8720,6 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
|
|
|
8669
8720
|
T['io.flow.internal.v0.models.paypal_authorization_payload'],
|
|
8670
8721
|
]);
|
|
8671
8722
|
|
|
8672
|
-
T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'] = PropTypes.oneOf(['pending', 'processing', 'processed', 'failed']);
|
|
8673
|
-
|
|
8674
|
-
T['io.flow.internal.v0.models.wash_carrier_actual_file'] = PropTypes.exact({
|
|
8675
|
-
id: PropTypes.string.isRequired,
|
|
8676
|
-
url: PropTypes.string.isRequired,
|
|
8677
|
-
status: T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'].isRequired,
|
|
8678
|
-
});
|
|
8679
|
-
|
|
8680
8723
|
T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
8681
8724
|
id: PropTypes.string.isRequired,
|
|
8682
8725
|
});
|
|
@@ -8863,14 +8906,6 @@ T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'] = PropTypes.ex
|
|
|
8863
8906
|
svb_virtual_card_clearing: T['io.flow.internal.v0.models.svb_virtual_card_clearing'].isRequired,
|
|
8864
8907
|
});
|
|
8865
8908
|
|
|
8866
|
-
T['io.flow.internal.v0.enums.surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid']);
|
|
8867
|
-
|
|
8868
|
-
T['io.flow.internal.v0.models.surcharge'] = PropTypes.exact({
|
|
8869
|
-
amount: PropTypes.number,
|
|
8870
|
-
percentage: PropTypes.number,
|
|
8871
|
-
type: T['io.flow.internal.v0.enums.surcharge_type'].isRequired,
|
|
8872
|
-
});
|
|
8873
|
-
|
|
8874
8909
|
T['io.flow.internal.v0.models.label_aliases'] = PropTypes.exact({
|
|
8875
8910
|
name: PropTypes.string.isRequired,
|
|
8876
8911
|
aliases: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -9363,6 +9398,7 @@ T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'] = PropTy
|
|
|
9363
9398
|
shopify_tracking_number: T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'].isRequired,
|
|
9364
9399
|
shopify_carrier_service: T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'],
|
|
9365
9400
|
fulfillment_created_at: PropTypes.string,
|
|
9401
|
+
flow_label_id: PropTypes.string,
|
|
9366
9402
|
});
|
|
9367
9403
|
|
|
9368
9404
|
T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropTypes.oneOfType([
|
|
@@ -9832,6 +9868,34 @@ T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
|
9832
9868
|
name: PropTypes.string.isRequired,
|
|
9833
9869
|
});
|
|
9834
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
|
+
|
|
9835
9899
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
9836
9900
|
id: PropTypes.string.isRequired,
|
|
9837
9901
|
});
|
|
@@ -9865,6 +9929,35 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
9865
9929
|
country: PropTypes.string.isRequired,
|
|
9866
9930
|
});
|
|
9867
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
|
+
|
|
9868
9961
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
9869
9962
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
9870
9963
|
percent: PropTypes.number.isRequired,
|
|
@@ -10441,6 +10534,24 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
10441
10534
|
sort: PropTypes.string,
|
|
10442
10535
|
});
|
|
10443
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
|
+
|
|
10444
10555
|
T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10445
10556
|
|
|
10446
10557
|
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
|
|
@@ -10667,6 +10778,7 @@ T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
|
10667
10778
|
|
|
10668
10779
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
10669
10780
|
age: PropTypes.number.isRequired,
|
|
10781
|
+
setup_time: PropTypes.number.isRequired,
|
|
10670
10782
|
compliance_approved: PropTypes.bool.isRequired,
|
|
10671
10783
|
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
10672
10784
|
application_received: PropTypes.string.isRequired,
|
|
@@ -10952,6 +11064,7 @@ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
|
10952
11064
|
id: PropTypes.number.isRequired,
|
|
10953
11065
|
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10954
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']),
|
|
10955
11068
|
});
|
|
10956
11069
|
|
|
10957
11070
|
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
@@ -11710,6 +11823,46 @@ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = Pro
|
|
|
11710
11823
|
'globale_system',
|
|
11711
11824
|
]);
|
|
11712
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
|
+
|
|
11713
11866
|
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
11714
11867
|
weight: PropTypes.number.isRequired,
|
|
11715
11868
|
length: PropTypes.number.isRequired,
|
|
@@ -11739,6 +11892,21 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
11739
11892
|
duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11740
11893
|
emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11741
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'],
|
|
11742
11910
|
});
|
|
11743
11911
|
|
|
11744
11912
|
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
@@ -11757,7 +11925,81 @@ T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
|
11757
11925
|
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
11758
11926
|
]);
|
|
11759
11927
|
|
|
11760
|
-
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
|
+
});
|
|
11761
12003
|
|
|
11762
12004
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
11763
12005
|
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
@@ -11779,6 +12021,21 @@ T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
|
|
|
11779
12021
|
weight: PropTypes.number.isRequired,
|
|
11780
12022
|
});
|
|
11781
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
|
+
|
|
11782
12039
|
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
11783
12040
|
id: PropTypes.string.isRequired,
|
|
11784
12041
|
carrier_service_id: PropTypes.string.isRequired,
|
|
@@ -11787,9 +12044,28 @@ T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
|
11787
12044
|
created_at: PropTypes.string.isRequired,
|
|
11788
12045
|
});
|
|
11789
12046
|
|
|
11790
|
-
T['io.flow.internal.v0.models.
|
|
12047
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
11791
12048
|
id: PropTypes.string.isRequired,
|
|
11792
|
-
|
|
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,
|
|
11793
12069
|
auto_generate_query: PropTypes.string,
|
|
11794
12070
|
commercial_invoice_only_query: PropTypes.string,
|
|
11795
12071
|
});
|
|
@@ -12557,6 +12833,21 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
12557
12833
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
12558
12834
|
});
|
|
12559
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
|
+
|
|
12560
12851
|
T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
|
|
12561
12852
|
labels: PropTypes.number.isRequired,
|
|
12562
12853
|
total: PropTypes.number.isRequired,
|
|
@@ -12578,6 +12869,8 @@ T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
|
12578
12869
|
remote_area: PropTypes.number.isRequired,
|
|
12579
12870
|
oversize: PropTypes.number.isRequired,
|
|
12580
12871
|
ccf: PropTypes.number.isRequired,
|
|
12872
|
+
emergency: PropTypes.number.isRequired,
|
|
12873
|
+
peak: PropTypes.number.isRequired,
|
|
12581
12874
|
total: PropTypes.number.isRequired,
|
|
12582
12875
|
});
|
|
12583
12876
|
|
|
@@ -12602,6 +12895,12 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
|
12602
12895
|
vat_registration_number: PropTypes.string.isRequired,
|
|
12603
12896
|
});
|
|
12604
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
|
+
|
|
12605
12904
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
12606
12905
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
12607
12906
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -13928,6 +14227,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
13928
14227
|
authorization_id: PropTypes.string,
|
|
13929
14228
|
posting_proof_id: PropTypes.string,
|
|
13930
14229
|
label_tracking_summary_id: PropTypes.string,
|
|
14230
|
+
shipping_notification_id: PropTypes.string,
|
|
14231
|
+
external_fulfillment_proof_id: PropTypes.string,
|
|
13931
14232
|
});
|
|
13932
14233
|
|
|
13933
14234
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -13943,6 +14244,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
13943
14244
|
'reversal',
|
|
13944
14245
|
'shipping_label',
|
|
13945
14246
|
'shipping_label_service',
|
|
14247
|
+
'trueup',
|
|
13946
14248
|
'shipping_label_revenue_share',
|
|
13947
14249
|
'platform_fee',
|
|
13948
14250
|
'tax',
|
|
@@ -13973,6 +14275,11 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
|
13973
14275
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
13974
14276
|
});
|
|
13975
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
|
+
|
|
13976
14283
|
T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
|
|
13977
14284
|
id: PropTypes.string.isRequired,
|
|
13978
14285
|
});
|
|
@@ -14016,6 +14323,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14016
14323
|
'capture_transactions_ignored_fraud_count',
|
|
14017
14324
|
'capture_transactions_ignored_fully_refunded_count',
|
|
14018
14325
|
'capture_transactions_ignored_other_count',
|
|
14326
|
+
'capture_transactions_ignored_previously_processed_count',
|
|
14019
14327
|
'capture_transactions_total',
|
|
14020
14328
|
'channel_transactions_processing_count',
|
|
14021
14329
|
'channel_transactions_processing_total',
|
|
@@ -14045,6 +14353,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14045
14353
|
'refund_transactions_ignored_fraud_count',
|
|
14046
14354
|
'refund_transactions_ignored_fully_refunded_count',
|
|
14047
14355
|
'refund_transactions_ignored_other_count',
|
|
14356
|
+
'refund_transactions_ignored_previously_processed_count',
|
|
14048
14357
|
'refund_transactions_total',
|
|
14049
14358
|
'reversal_order_cancellations_transactions_count',
|
|
14050
14359
|
'reversal_order_cancellations_transactions_total',
|
|
@@ -14451,282 +14760,6 @@ T['io.flow.internal.v0.models.customs_description_tariff_code_duty'] = PropTypes
|
|
|
14451
14760
|
tariff_codes_metadata: PropTypes.objectOf(PropTypes.string),
|
|
14452
14761
|
});
|
|
14453
14762
|
|
|
14454
|
-
T['io.flow.internal.v0.models.organization_reference'] = PropTypes.exact({
|
|
14455
|
-
id: PropTypes.string.isRequired,
|
|
14456
|
-
});
|
|
14457
|
-
|
|
14458
|
-
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14459
|
-
T['io.flow.label.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
14460
|
-
|
|
14461
|
-
T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
14462
|
-
'flow_web_sync',
|
|
14463
|
-
'channel_web_async',
|
|
14464
|
-
'direct_api_sync',
|
|
14465
|
-
'direct_api_async',
|
|
14466
|
-
'bridge_api_sync',
|
|
14467
|
-
'partner_api_sync',
|
|
14468
|
-
'notification_requiring_crossdock',
|
|
14469
|
-
'autogenerated',
|
|
14470
|
-
]);
|
|
14471
|
-
|
|
14472
|
-
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14473
|
-
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
14474
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14475
|
-
});
|
|
14476
|
-
|
|
14477
|
-
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([T['io.flow.billing.v0.models.transaction_metadata_shipping_label']]);
|
|
14478
|
-
|
|
14479
|
-
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
14480
|
-
id: PropTypes.string.isRequired,
|
|
14481
|
-
order_number: PropTypes.string.isRequired,
|
|
14482
|
-
created_at: PropTypes.string.isRequired,
|
|
14483
|
-
reference_id: PropTypes.string.isRequired,
|
|
14484
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14485
|
-
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14486
|
-
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14487
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
14488
|
-
carrier_id: PropTypes.string,
|
|
14489
|
-
service_id: PropTypes.string,
|
|
14490
|
-
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14491
|
-
});
|
|
14492
|
-
|
|
14493
|
-
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
14494
|
-
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
14495
|
-
event_id: PropTypes.string.isRequired,
|
|
14496
|
-
timestamp: PropTypes.string.isRequired,
|
|
14497
|
-
organization: PropTypes.string.isRequired,
|
|
14498
|
-
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
14499
|
-
});
|
|
14500
|
-
|
|
14501
|
-
T['io.flow.internal.v0.models.csv_label_cost'] = PropTypes.exact({
|
|
14502
|
-
amount: PropTypes.number.isRequired,
|
|
14503
|
-
currency: PropTypes.string.isRequired,
|
|
14504
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
14505
|
-
});
|
|
14506
|
-
|
|
14507
|
-
T['io.flow.internal.v0.models.csv_label'] = PropTypes.exact({
|
|
14508
|
-
id: PropTypes.string.isRequired,
|
|
14509
|
-
cost: T['io.flow.internal.v0.models.csv_label_cost'].isRequired,
|
|
14510
|
-
created_at: PropTypes.string.isRequired,
|
|
14511
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14512
|
-
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14513
|
-
});
|
|
14514
|
-
|
|
14515
|
-
T['io.flow.internal.v0.enums.label_input_source'] = PropTypes.oneOf(['estimate']);
|
|
14516
|
-
|
|
14517
|
-
T['io.flow.internal.v0.models.csv_global_e_proposition'] = PropTypes.exact({
|
|
14518
|
-
name: PropTypes.string.isRequired,
|
|
14519
|
-
});
|
|
14520
|
-
|
|
14521
|
-
T['io.flow.internal.v0.models.csv_global_e_shipping_method'] = PropTypes.exact({
|
|
14522
|
-
id: PropTypes.string.isRequired,
|
|
14523
|
-
proposition: T['io.flow.internal.v0.models.csv_global_e_proposition'].isRequired,
|
|
14524
|
-
});
|
|
14525
|
-
|
|
14526
|
-
T['io.flow.internal.v0.models.csv_service_fee'] = PropTypes.exact({
|
|
14527
|
-
amount: PropTypes.number,
|
|
14528
|
-
currency: PropTypes.string,
|
|
14529
|
-
percentage: PropTypes.number,
|
|
14530
|
-
});
|
|
14531
|
-
|
|
14532
|
-
T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'] = PropTypes.exact({
|
|
14533
|
-
fuel: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14534
|
-
remote_area: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14535
|
-
oversize: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14536
|
-
duties_paid: T['io.flow.internal.v0.models.csv_service_fee'],
|
|
14537
|
-
});
|
|
14538
|
-
|
|
14539
|
-
T['io.flow.internal.v0.models.lane_reference'] = PropTypes.exact({
|
|
14540
|
-
id: PropTypes.string.isRequired,
|
|
14541
|
-
});
|
|
14542
|
-
|
|
14543
|
-
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
14544
|
-
|
|
14545
|
-
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
14546
|
-
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14547
|
-
effective_at: PropTypes.string.isRequired,
|
|
14548
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14549
|
-
service: PropTypes.string.isRequired,
|
|
14550
|
-
number: PropTypes.string,
|
|
14551
|
-
rate_level_key: PropTypes.string,
|
|
14552
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
14553
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
14554
|
-
glbe_proposition_name: PropTypes.string,
|
|
14555
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
14556
|
-
data: PropTypes.objectOf(PropTypes.string),
|
|
14557
|
-
});
|
|
14558
|
-
|
|
14559
|
-
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
14560
|
-
id: PropTypes.string.isRequired,
|
|
14561
|
-
number: PropTypes.string.isRequired,
|
|
14562
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14563
|
-
});
|
|
14564
|
-
|
|
14565
|
-
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
14566
|
-
id: PropTypes.string.isRequired,
|
|
14567
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
14568
|
-
});
|
|
14569
|
-
|
|
14570
|
-
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
14571
|
-
id: PropTypes.string,
|
|
14572
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14573
|
-
rate_level_key: PropTypes.string,
|
|
14574
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
14575
|
-
glbe_proposition_name: PropTypes.string,
|
|
14576
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
14577
|
-
shopify_grc_gid: PropTypes.string,
|
|
14578
|
-
});
|
|
14579
|
-
|
|
14580
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
14581
|
-
id: PropTypes.string,
|
|
14582
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
14583
|
-
});
|
|
14584
|
-
|
|
14585
|
-
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
14586
|
-
id: PropTypes.string.isRequired,
|
|
14587
|
-
number: PropTypes.string.isRequired,
|
|
14588
|
-
rate_level_key: PropTypes.string,
|
|
14589
|
-
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14590
|
-
effective_at: PropTypes.string.isRequired,
|
|
14591
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14592
|
-
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
14593
|
-
published_at: PropTypes.string,
|
|
14594
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14595
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
14596
|
-
glbe_proposition_name: PropTypes.string,
|
|
14597
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
14598
|
-
});
|
|
14599
|
-
|
|
14600
|
-
T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
14601
|
-
id: PropTypes.string.isRequired,
|
|
14602
|
-
number: PropTypes.string.isRequired,
|
|
14603
|
-
owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
14604
|
-
lane: T['io.flow.internal.v0.models.lane_reference'].isRequired,
|
|
14605
|
-
dim_factor: PropTypes.number.isRequired,
|
|
14606
|
-
surcharges: T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'].isRequired,
|
|
14607
|
-
base_amount: PropTypes.number,
|
|
14608
|
-
});
|
|
14609
|
-
|
|
14610
|
-
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
14611
|
-
|
|
14612
|
-
T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
|
|
14613
|
-
unit: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
14614
|
-
length: PropTypes.number.isRequired,
|
|
14615
|
-
width: PropTypes.number.isRequired,
|
|
14616
|
-
depth: PropTypes.number.isRequired,
|
|
14617
|
-
});
|
|
14618
|
-
|
|
14619
|
-
T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
|
|
14620
|
-
percentage: PropTypes.number.isRequired,
|
|
14621
|
-
amount: PropTypes.number.isRequired,
|
|
14622
|
-
});
|
|
14623
|
-
|
|
14624
|
-
T['io.flow.internal.v0.models.csv_actual_ratecard'] = PropTypes.exact({
|
|
14625
|
-
base_amount: PropTypes.number,
|
|
14626
|
-
});
|
|
14627
|
-
|
|
14628
|
-
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
14629
|
-
|
|
14630
|
-
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
14631
|
-
currency: PropTypes.string.isRequired,
|
|
14632
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14633
|
-
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
14634
|
-
});
|
|
14635
|
-
|
|
14636
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
14637
|
-
id: PropTypes.string.isRequired,
|
|
14638
|
-
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
14639
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14640
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14641
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
14642
|
-
total: PropTypes.number.isRequired,
|
|
14643
|
-
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
14644
|
-
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
14645
|
-
});
|
|
14646
|
-
|
|
14647
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
14648
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
14649
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
14650
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
14651
|
-
});
|
|
14652
|
-
|
|
14653
|
-
T['io.flow.internal.v0.models.label_response_units'] = PropTypes.exact({
|
|
14654
|
-
currency: PropTypes.string.isRequired,
|
|
14655
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14656
|
-
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
14657
|
-
});
|
|
14658
|
-
|
|
14659
|
-
T['io.flow.internal.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
14660
|
-
id: PropTypes.string.isRequired,
|
|
14661
|
-
label_invoice_request_id: PropTypes.string.isRequired,
|
|
14662
|
-
units: T['io.flow.internal.v0.models.label_response_units'].isRequired,
|
|
14663
|
-
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14664
|
-
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
14665
|
-
total: PropTypes.number.isRequired,
|
|
14666
|
-
});
|
|
14667
|
-
|
|
14668
|
-
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
14669
|
-
currency: PropTypes.string.isRequired,
|
|
14670
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14671
|
-
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
14672
|
-
});
|
|
14673
|
-
|
|
14674
|
-
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
14675
|
-
id: PropTypes.string.isRequired,
|
|
14676
|
-
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
14677
|
-
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
14678
|
-
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
14679
|
-
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
14680
|
-
total: PropTypes.number.isRequired,
|
|
14681
|
-
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
14682
|
-
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
14683
|
-
});
|
|
14684
|
-
|
|
14685
|
-
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
14686
|
-
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
14687
|
-
event_id: PropTypes.string.isRequired,
|
|
14688
|
-
timestamp: PropTypes.string.isRequired,
|
|
14689
|
-
organization: PropTypes.string.isRequired,
|
|
14690
|
-
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
14691
|
-
});
|
|
14692
|
-
|
|
14693
|
-
T['io.flow.internal.v0.models.csv_weight'] = PropTypes.exact({
|
|
14694
|
-
unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14695
|
-
provided: PropTypes.number.isRequired,
|
|
14696
|
-
dimensional: PropTypes.number.isRequired,
|
|
14697
|
-
lookup: PropTypes.number.isRequired,
|
|
14698
|
-
});
|
|
14699
|
-
|
|
14700
|
-
T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
|
|
14701
|
-
fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
|
|
14702
|
-
remote_area: PropTypes.number.isRequired,
|
|
14703
|
-
oversize: PropTypes.number.isRequired,
|
|
14704
|
-
duties_paid: PropTypes.number.isRequired,
|
|
14705
|
-
});
|
|
14706
|
-
|
|
14707
|
-
T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
|
|
14708
|
-
id: PropTypes.string.isRequired,
|
|
14709
|
-
source: T['io.flow.internal.v0.enums.label_input_source'].isRequired,
|
|
14710
|
-
currency: PropTypes.string.isRequired,
|
|
14711
|
-
base_amount: PropTypes.number.isRequired,
|
|
14712
|
-
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
14713
|
-
total: PropTypes.number.isRequired,
|
|
14714
|
-
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14715
|
-
weight: PropTypes.number.isRequired,
|
|
14716
|
-
variance: PropTypes.number.isRequired,
|
|
14717
|
-
});
|
|
14718
|
-
|
|
14719
|
-
T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
|
|
14720
|
-
id: PropTypes.string.isRequired,
|
|
14721
|
-
currency: PropTypes.string.isRequired,
|
|
14722
|
-
base_amount: PropTypes.number.isRequired,
|
|
14723
|
-
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
14724
|
-
total: PropTypes.number.isRequired,
|
|
14725
|
-
weight_unit: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
14726
|
-
weight: PropTypes.number.isRequired,
|
|
14727
|
-
ratecard: T['io.flow.internal.v0.models.csv_actual_ratecard'].isRequired,
|
|
14728
|
-
});
|
|
14729
|
-
|
|
14730
14763
|
T['io.flow.internal.v0.models.crypto_authentication_form'] = PropTypes.exact({
|
|
14731
14764
|
public_key: PropTypes.string.isRequired,
|
|
14732
14765
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -19020,6 +19053,28 @@ T['io.flow.internal.v0.models.channel_billed_transaction_pair'] = PropTypes.exac
|
|
|
19020
19053
|
channel_transaction: T['io.flow.internal.v0.models.channel_billed_transaction_reference'].isRequired,
|
|
19021
19054
|
});
|
|
19022
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
|
+
|
|
19023
19078
|
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
19024
19079
|
id: PropTypes.string.isRequired,
|
|
19025
19080
|
});
|
|
@@ -20581,29 +20636,6 @@ T['io.flow.internal.v0.models.organization_restriction_status_note'] = PropTypes
|
|
|
20581
20636
|
updated_at: PropTypes.string.isRequired,
|
|
20582
20637
|
});
|
|
20583
20638
|
|
|
20584
|
-
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
20585
|
-
id: PropTypes.string.isRequired,
|
|
20586
|
-
name: PropTypes.string.isRequired,
|
|
20587
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20588
|
-
url: PropTypes.string,
|
|
20589
|
-
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
20590
|
-
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
20591
|
-
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
20592
|
-
hs_code: PropTypes.string,
|
|
20593
|
-
merchant_category_code: PropTypes.string,
|
|
20594
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
20595
|
-
});
|
|
20596
|
-
|
|
20597
|
-
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
20598
|
-
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
20599
|
-
earliest_pending_date: PropTypes.string.isRequired,
|
|
20600
|
-
priority_score: PropTypes.number.isRequired,
|
|
20601
|
-
date: PropTypes.string.isRequired,
|
|
20602
|
-
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
20603
|
-
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
|
|
20604
|
-
count: PropTypes.number.isRequired,
|
|
20605
|
-
});
|
|
20606
|
-
|
|
20607
20639
|
T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
20608
20640
|
id: PropTypes.string.isRequired,
|
|
20609
20641
|
note: PropTypes.string.isRequired,
|
|
@@ -23442,6 +23474,31 @@ T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.ex
|
|
|
23442
23474
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23443
23475
|
});
|
|
23444
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
|
+
|
|
23445
23502
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
23446
23503
|
currency: PropTypes.string.isRequired,
|
|
23447
23504
|
amount: PropTypes.number.isRequired,
|
|
@@ -23599,33 +23656,6 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
23599
23656
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23600
23657
|
});
|
|
23601
23658
|
|
|
23602
|
-
T['io.flow.internal.v0.models.csv_order'] = PropTypes.exact({
|
|
23603
|
-
organization: T['io.flow.internal.v0.models.organization_reference'].isRequired,
|
|
23604
|
-
number: PropTypes.string.isRequired,
|
|
23605
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23606
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
23607
|
-
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23608
|
-
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
23609
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
23610
|
-
number_items: PropTypes.number.isRequired,
|
|
23611
|
-
});
|
|
23612
|
-
|
|
23613
|
-
T['io.flow.internal.v0.models.csv_record'] = PropTypes.exact({
|
|
23614
|
-
label: T['io.flow.internal.v0.models.csv_label'].isRequired,
|
|
23615
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
23616
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23617
|
-
order: T['io.flow.internal.v0.models.csv_order'].isRequired,
|
|
23618
|
-
flow_ratecard: T['io.flow.internal.v0.models.csv_flow_ratecard'].isRequired,
|
|
23619
|
-
global_e_shipping_method: T['io.flow.internal.v0.models.csv_global_e_shipping_method'],
|
|
23620
|
-
weight: T['io.flow.internal.v0.models.csv_weight'].isRequired,
|
|
23621
|
-
dimensions: T['io.flow.internal.v0.models.csv_dimensions'].isRequired,
|
|
23622
|
-
input: T['io.flow.internal.v0.models.csv_input'],
|
|
23623
|
-
actual: T['io.flow.internal.v0.models.csv_actual'],
|
|
23624
|
-
variance: PropTypes.number,
|
|
23625
|
-
deltas: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23626
|
-
outliers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23627
|
-
});
|
|
23628
|
-
|
|
23629
23659
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23630
23660
|
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23631
23661
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
@@ -23956,12 +23986,23 @@ T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
|
|
|
23956
23986
|
rate: PropTypes.number.isRequired,
|
|
23957
23987
|
});
|
|
23958
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
|
+
|
|
23959
23996
|
T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
23960
23997
|
name: PropTypes.string.isRequired,
|
|
23961
23998
|
description: PropTypes.string.isRequired,
|
|
23962
23999
|
offset: PropTypes.number.isRequired,
|
|
23963
24000
|
});
|
|
23964
24001
|
|
|
24002
|
+
T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
24003
|
+
country: PropTypes.string.isRequired,
|
|
24004
|
+
});
|
|
24005
|
+
|
|
23965
24006
|
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
23966
24007
|
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
23967
24008
|
id: PropTypes.string.isRequired,
|
|
@@ -24145,6 +24186,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
24145
24186
|
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
24146
24187
|
started_at: PropTypes.string,
|
|
24147
24188
|
time_blocked: PropTypes.number,
|
|
24189
|
+
time_in_setup: PropTypes.number,
|
|
24148
24190
|
blocked_since: PropTypes.string,
|
|
24149
24191
|
completed_at: PropTypes.string,
|
|
24150
24192
|
onboarding_started_at: PropTypes.string,
|
|
@@ -24304,33 +24346,18 @@ T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.e
|
|
|
24304
24346
|
});
|
|
24305
24347
|
|
|
24306
24348
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
|
|
24307
|
-
discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
|
|
24308
|
-
event_id: PropTypes.string.isRequired,
|
|
24309
|
-
timestamp: PropTypes.string.isRequired,
|
|
24310
|
-
organization: PropTypes.string.isRequired,
|
|
24311
|
-
order_number: PropTypes.string.isRequired,
|
|
24312
|
-
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24313
|
-
});
|
|
24314
|
-
|
|
24315
|
-
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
24316
|
-
id: PropTypes.string.isRequired,
|
|
24317
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24318
|
-
number: PropTypes.string.isRequired,
|
|
24319
|
-
});
|
|
24320
|
-
|
|
24321
|
-
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
24322
|
-
id: PropTypes.string.isRequired,
|
|
24323
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
24324
|
-
currency: PropTypes.string.isRequired,
|
|
24325
|
-
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
24326
|
-
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
24327
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
24328
|
-
shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
|
|
24329
|
-
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
24330
|
-
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
24331
|
-
completes_order: PropTypes.bool.isRequired,
|
|
24332
|
-
sequence_number: PropTypes.number.isRequired,
|
|
24333
|
-
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
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,
|
|
24334
24361
|
});
|
|
24335
24362
|
|
|
24336
24363
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
@@ -25298,6 +25325,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
25298
25325
|
channel_billed: T['io.flow.common.v0.models.price'].isRequired,
|
|
25299
25326
|
tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25300
25327
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
25328
|
+
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
25301
25329
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25302
25330
|
});
|
|
25303
25331
|
|
|
@@ -26192,6 +26220,64 @@ T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
|
|
|
26192
26220
|
pending: T['io.flow.common.v0.models.price'].isRequired,
|
|
26193
26221
|
});
|
|
26194
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
|
+
|
|
26195
26281
|
T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
26196
26282
|
|
|
26197
26283
|
T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
@@ -26199,6 +26285,31 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
|
26199
26285
|
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
26200
26286
|
});
|
|
26201
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
|
+
|
|
26202
26313
|
T['io.flow.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
26203
26314
|
id: PropTypes.string.isRequired,
|
|
26204
26315
|
currency: PropTypes.string.isRequired,
|
|
@@ -26247,6 +26358,23 @@ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
|
|
|
26247
26358
|
|
|
26248
26359
|
T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
26249
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
|
+
|
|
26250
26378
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
26251
26379
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
26252
26380
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -26404,6 +26532,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26404
26532
|
'channel_billed',
|
|
26405
26533
|
'tax',
|
|
26406
26534
|
'duty',
|
|
26535
|
+
'trueup',
|
|
26407
26536
|
]);
|
|
26408
26537
|
|
|
26409
26538
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26422,6 +26551,19 @@ T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
|
26422
26551
|
created_at: PropTypes.string.isRequired,
|
|
26423
26552
|
});
|
|
26424
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
|
+
|
|
26425
26567
|
T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
|
|
26426
26568
|
discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
|
|
26427
26569
|
method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
|
|
@@ -26750,6 +26892,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26750
26892
|
T['io.flow.internal.v0.models.channel_billed_transaction'],
|
|
26751
26893
|
T['io.flow.internal.v0.models.tax_transaction'],
|
|
26752
26894
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
26895
|
+
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
26753
26896
|
]);
|
|
26754
26897
|
|
|
26755
26898
|
T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
|
|
@@ -26794,126 +26937,6 @@ T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact(
|
|
|
26794
26937
|
transaction_created_before: PropTypes.string,
|
|
26795
26938
|
});
|
|
26796
26939
|
|
|
26797
|
-
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
26798
|
-
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
26799
|
-
interval: PropTypes.number.isRequired,
|
|
26800
|
-
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
26801
|
-
});
|
|
26802
|
-
|
|
26803
|
-
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
26804
|
-
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
26805
|
-
interval: PropTypes.number.isRequired,
|
|
26806
|
-
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
26807
|
-
});
|
|
26808
|
-
|
|
26809
|
-
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
26810
|
-
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
26811
|
-
interval: PropTypes.number.isRequired,
|
|
26812
|
-
});
|
|
26813
|
-
|
|
26814
|
-
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
26815
|
-
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
26816
|
-
interval: PropTypes.number.isRequired,
|
|
26817
|
-
});
|
|
26818
|
-
|
|
26819
|
-
T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
|
|
26820
|
-
target: PropTypes.number.isRequired,
|
|
26821
|
-
rate: PropTypes.number.isRequired,
|
|
26822
|
-
});
|
|
26823
|
-
|
|
26824
|
-
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
26825
|
-
T['io.flow.common.v0.models.repeat_hourly'],
|
|
26826
|
-
T['io.flow.common.v0.models.repeat_daily'],
|
|
26827
|
-
T['io.flow.common.v0.models.repeat_weekly'],
|
|
26828
|
-
T['io.flow.common.v0.models.repeat_monthly'],
|
|
26829
|
-
]);
|
|
26830
|
-
|
|
26831
|
-
T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
26832
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26833
|
-
id: PropTypes.string.isRequired,
|
|
26834
|
-
currency: PropTypes.string.isRequired,
|
|
26835
|
-
updated_at: PropTypes.string.isRequired,
|
|
26836
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26837
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26838
|
-
payment_conditions: PropTypes.string,
|
|
26839
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26840
|
-
center_key: PropTypes.string,
|
|
26841
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26842
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26843
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26844
|
-
created_at: PropTypes.string.isRequired,
|
|
26845
|
-
});
|
|
26846
|
-
|
|
26847
|
-
T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
|
|
26848
|
-
discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
|
|
26849
|
-
event_id: PropTypes.string.isRequired,
|
|
26850
|
-
timestamp: PropTypes.string.isRequired,
|
|
26851
|
-
channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
|
|
26852
|
-
});
|
|
26853
|
-
|
|
26854
|
-
T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
26855
|
-
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
26856
|
-
id: PropTypes.string.isRequired,
|
|
26857
|
-
currency: PropTypes.string.isRequired,
|
|
26858
|
-
updated_at: PropTypes.string.isRequired,
|
|
26859
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26860
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26861
|
-
payment_conditions: PropTypes.string,
|
|
26862
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26863
|
-
center_key: PropTypes.string,
|
|
26864
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26865
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26866
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26867
|
-
created_at: PropTypes.string.isRequired,
|
|
26868
|
-
});
|
|
26869
|
-
|
|
26870
|
-
T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
|
|
26871
|
-
discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
|
|
26872
|
-
event_id: PropTypes.string.isRequired,
|
|
26873
|
-
timestamp: PropTypes.string.isRequired,
|
|
26874
|
-
account: T['io.flow.internal.v0.models.flow_account'].isRequired,
|
|
26875
|
-
});
|
|
26876
|
-
|
|
26877
|
-
T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
|
|
26878
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26879
|
-
id: PropTypes.string.isRequired,
|
|
26880
|
-
currency: PropTypes.string.isRequired,
|
|
26881
|
-
updated_at: PropTypes.string.isRequired,
|
|
26882
|
-
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26883
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26884
|
-
payment_conditions: PropTypes.string,
|
|
26885
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26886
|
-
center_key: PropTypes.string,
|
|
26887
|
-
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26888
|
-
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26889
|
-
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26890
|
-
created_at: PropTypes.string.isRequired,
|
|
26891
|
-
});
|
|
26892
|
-
|
|
26893
|
-
T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
|
|
26894
|
-
discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
|
|
26895
|
-
event_id: PropTypes.string.isRequired,
|
|
26896
|
-
timestamp: PropTypes.string.isRequired,
|
|
26897
|
-
organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26898
|
-
});
|
|
26899
|
-
|
|
26900
|
-
T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
|
|
26901
|
-
discriminator: PropTypes.oneOf(['account_upserted']).isRequired,
|
|
26902
|
-
event_id: PropTypes.string.isRequired,
|
|
26903
|
-
timestamp: PropTypes.string.isRequired,
|
|
26904
|
-
organization: PropTypes.string.isRequired,
|
|
26905
|
-
account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26906
|
-
});
|
|
26907
|
-
|
|
26908
|
-
T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
|
|
26909
|
-
timezone: PropTypes.string.isRequired,
|
|
26910
|
-
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26911
|
-
payment_conditions: PropTypes.string,
|
|
26912
|
-
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
|
|
26913
|
-
center_key: PropTypes.string,
|
|
26914
|
-
bank_account_id: PropTypes.string,
|
|
26915
|
-
});
|
|
26916
|
-
|
|
26917
26940
|
T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
26918
26941
|
id: PropTypes.string.isRequired,
|
|
26919
26942
|
});
|
|
@@ -27303,6 +27326,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27303
27326
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'],
|
|
27304
27327
|
T['io.flow.internal.v0.models.optin_prompt_upserted'],
|
|
27305
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'],
|
|
27306
27331
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
27307
27332
|
T['io.flow.internal.v0.models.order_fulfillment_upserted'],
|
|
27308
27333
|
T['io.flow.internal.v0.models.order_placed'],
|
|
@@ -27739,6 +27764,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27739
27764
|
'localized_item_prices_export_request',
|
|
27740
27765
|
'optin_prompt_upserted',
|
|
27741
27766
|
'optin_prompt_deleted',
|
|
27767
|
+
'order_combined_shipment_upserted',
|
|
27768
|
+
'order_combined_shipment_deleted',
|
|
27742
27769
|
'order_fulfillment_deleted',
|
|
27743
27770
|
'order_fulfillment_upserted',
|
|
27744
27771
|
'order_placed',
|
|
@@ -27908,16 +27935,18 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27908
27935
|
'capture',
|
|
27909
27936
|
'capture_deletion',
|
|
27910
27937
|
'channel_transaction',
|
|
27911
|
-
'channel_organization',
|
|
27912
27938
|
'consumer_invoice',
|
|
27913
27939
|
'fulfillment_in_transit',
|
|
27914
27940
|
'fulfillment_shipping_notification',
|
|
27915
27941
|
'fulfillment_external',
|
|
27916
27942
|
'label_tracking_summary',
|
|
27917
27943
|
'label_invoice_request',
|
|
27944
|
+
'label_invoice_response',
|
|
27945
|
+
'label_invoice_response_file',
|
|
27918
27946
|
'label_origin',
|
|
27919
27947
|
'order',
|
|
27920
27948
|
'order_identifier',
|
|
27949
|
+
'organization_onboarding_state',
|
|
27921
27950
|
'refund',
|
|
27922
27951
|
'refund_deletion',
|
|
27923
27952
|
'refund_over_capture',
|
|
@@ -27925,7 +27954,6 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27925
27954
|
'statement_batch',
|
|
27926
27955
|
'statement_email',
|
|
27927
27956
|
'statement_summary_email',
|
|
27928
|
-
'wash',
|
|
27929
27957
|
]);
|
|
27930
27958
|
|
|
27931
27959
|
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
@@ -28013,6 +28041,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
28013
28041
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
28014
28042
|
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
28015
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']);
|
|
28016
28045
|
|
|
28017
28046
|
T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
28018
28047
|
email: PropTypes.string.isRequired,
|
|
@@ -28021,6 +28050,11 @@ T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
|
28021
28050
|
phone: PropTypes.string,
|
|
28022
28051
|
});
|
|
28023
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
|
+
|
|
28024
28058
|
T['io.flow.internal.v0.models.adjustment_details_amount_percentage'] = PropTypes.exact({
|
|
28025
28059
|
percentage: PropTypes.number.isRequired,
|
|
28026
28060
|
});
|
|
@@ -28535,6 +28569,10 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
|
|
|
28535
28569
|
commercial_invoice_only_query: PropTypes.string,
|
|
28536
28570
|
});
|
|
28537
28571
|
|
|
28572
|
+
T['io.flow.internal.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
28573
|
+
url: PropTypes.string.isRequired,
|
|
28574
|
+
});
|
|
28575
|
+
|
|
28538
28576
|
T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
28539
28577
|
number: PropTypes.string.isRequired,
|
|
28540
28578
|
origin: PropTypes.string.isRequired,
|
|
@@ -28602,6 +28640,12 @@ T['io.flow.internal.v0.models.optin_prompt_copy_form'] = PropTypes.exact({
|
|
|
28602
28640
|
to: PropTypes.string.isRequired,
|
|
28603
28641
|
});
|
|
28604
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
|
+
|
|
28605
28649
|
T['io.flow.internal.v0.models.order_note_form'] = PropTypes.exact({
|
|
28606
28650
|
note: PropTypes.string.isRequired,
|
|
28607
28651
|
});
|
|
@@ -28995,14 +29039,6 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
|
|
|
28995
29039
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28996
29040
|
});
|
|
28997
29041
|
|
|
28998
|
-
T['io.flow.internal.v0.models.wash_carrier_actual_file_form'] = PropTypes.exact({
|
|
28999
|
-
url: PropTypes.string.isRequired,
|
|
29000
|
-
});
|
|
29001
|
-
|
|
29002
|
-
T['io.flow.internal.v0.models.wash_export_request'] = PropTypes.exact({
|
|
29003
|
-
url: PropTypes.string.isRequired,
|
|
29004
|
-
});
|
|
29005
|
-
|
|
29006
29042
|
T['io.flow.internal.v0.models.webhook'] = PropTypes.exact({
|
|
29007
29043
|
placeholder: PropTypes.string,
|
|
29008
29044
|
});
|
|
@@ -29765,6 +29801,10 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
29765
29801
|
order_id: PropTypes.string,
|
|
29766
29802
|
});
|
|
29767
29803
|
|
|
29804
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
29805
|
+
url: PropTypes.string.isRequired,
|
|
29806
|
+
});
|
|
29807
|
+
|
|
29768
29808
|
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
29769
29809
|
country: PropTypes.string.isRequired,
|
|
29770
29810
|
});
|
|
@@ -30016,8 +30056,8 @@ export const accountContactUpserted = T['io.flow.internal.v0.models.account_cont
|
|
|
30016
30056
|
export const accountDeletedV2 = T['io.flow.internal.v0.models.account_deleted_v2'];
|
|
30017
30057
|
export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_rule'];
|
|
30018
30058
|
export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_deposit_rule_form'];
|
|
30019
|
-
export const accountForm = T['io.flow.internal.v0.models.account_form'];
|
|
30020
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'];
|
|
30021
30061
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
30022
30062
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
30023
30063
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -30891,22 +30931,6 @@ export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypt
|
|
|
30891
30931
|
export const cryptoAccountPutForm = T['io.flow.internal.v0.models.crypto_account_put_form'];
|
|
30892
30932
|
export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authentication'];
|
|
30893
30933
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
30894
|
-
export const csvActual = T['io.flow.internal.v0.models.csv_actual'];
|
|
30895
|
-
export const csvActualRatecard = T['io.flow.internal.v0.models.csv_actual_ratecard'];
|
|
30896
|
-
export const csvDimensions = T['io.flow.internal.v0.models.csv_dimensions'];
|
|
30897
|
-
export const csvFlowRatecard = T['io.flow.internal.v0.models.csv_flow_ratecard'];
|
|
30898
|
-
export const csvFlowRatecardSurcharges = T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'];
|
|
30899
|
-
export const csvGlobalEProposition = T['io.flow.internal.v0.models.csv_global_e_proposition'];
|
|
30900
|
-
export const csvGlobalEShippingMethod = T['io.flow.internal.v0.models.csv_global_e_shipping_method'];
|
|
30901
|
-
export const csvInput = T['io.flow.internal.v0.models.csv_input'];
|
|
30902
|
-
export const csvLabel = T['io.flow.internal.v0.models.csv_label'];
|
|
30903
|
-
export const csvLabelCost = T['io.flow.internal.v0.models.csv_label_cost'];
|
|
30904
|
-
export const csvOrder = T['io.flow.internal.v0.models.csv_order'];
|
|
30905
|
-
export const csvRecord = T['io.flow.internal.v0.models.csv_record'];
|
|
30906
|
-
export const csvServiceFee = T['io.flow.internal.v0.models.csv_service_fee'];
|
|
30907
|
-
export const csvSurchargePercentage = T['io.flow.internal.v0.models.csv_surcharge_percentage'];
|
|
30908
|
-
export const csvSurcharges = T['io.flow.internal.v0.models.csv_surcharges'];
|
|
30909
|
-
export const csvWeight = T['io.flow.internal.v0.models.csv_weight'];
|
|
30910
30934
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
30911
30935
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
30912
30936
|
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
@@ -31409,10 +31433,12 @@ export const labelGenerationSettings = T['io.flow.internal.v0.models.label_gener
|
|
|
31409
31433
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
31410
31434
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
31411
31435
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
31412
|
-
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
31413
31436
|
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31414
31437
|
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31415
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'];
|
|
31416
31442
|
export const labelInvoiceResponseForm = T['io.flow.internal.v0.models.label_invoice_response_form'];
|
|
31417
31443
|
export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
|
|
31418
31444
|
export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
|
|
@@ -31440,7 +31466,6 @@ export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
|
31440
31466
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
31441
31467
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
31442
31468
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
31443
|
-
export const laneReference = T['io.flow.internal.v0.models.lane_reference'];
|
|
31444
31469
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
31445
31470
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
31446
31471
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -31611,6 +31636,10 @@ export const orderCancellationEvidenceReturnToSender = T['io.flow.internal.v0.mo
|
|
|
31611
31636
|
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
31612
31637
|
export const orderCancellationInitiatedBy = T['io.flow.internal.v0.enums.order_cancellation_initiated_by'];
|
|
31613
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'];
|
|
31614
31643
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
31615
31644
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
31616
31645
|
export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulfillment_upserted'];
|
|
@@ -31670,7 +31699,6 @@ export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.orga
|
|
|
31670
31699
|
export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.organization_payment_setting_upserted'];
|
|
31671
31700
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
31672
31701
|
export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
|
|
31673
|
-
export const organizationReference = T['io.flow.internal.v0.models.organization_reference'];
|
|
31674
31702
|
export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
|
|
31675
31703
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
31676
31704
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
@@ -32128,8 +32156,6 @@ export const subscriptionFrequency = T['io.flow.internal.v0.enums.subscription_f
|
|
|
32128
32156
|
export const subscriptionTransaction = T['io.flow.internal.v0.models.subscription_transaction'];
|
|
32129
32157
|
export const suggestionAction = T['io.flow.internal.v0.enums.suggestion_action'];
|
|
32130
32158
|
export const supportedLabels = T['io.flow.internal.v0.models.supported_labels'];
|
|
32131
|
-
export const surcharge = T['io.flow.internal.v0.models.surcharge'];
|
|
32132
|
-
export const surchargeType = T['io.flow.internal.v0.enums.surcharge_type'];
|
|
32133
32159
|
export const svbVirtualCardClearing = T['io.flow.internal.v0.models.svb_virtual_card_clearing'];
|
|
32134
32160
|
export const svbVirtualCardClearingDeleted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'];
|
|
32135
32161
|
export const svbVirtualCardClearingUpserted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'];
|
|
@@ -32208,6 +32234,8 @@ export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.trans
|
|
|
32208
32234
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
32209
32235
|
export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
|
|
32210
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'];
|
|
32211
32239
|
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
32212
32240
|
export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
|
|
32213
32241
|
export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
|
|
@@ -32245,10 +32273,6 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
|
|
|
32245
32273
|
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
32246
32274
|
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
32247
32275
|
export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
|
|
32248
|
-
export const washCarrierActualFile = T['io.flow.internal.v0.models.wash_carrier_actual_file'];
|
|
32249
|
-
export const washCarrierActualFileForm = T['io.flow.internal.v0.models.wash_carrier_actual_file_form'];
|
|
32250
|
-
export const washCarrierActualFileStatus = T['io.flow.internal.v0.enums.wash_carrier_actual_file_status'];
|
|
32251
|
-
export const washExportRequest = T['io.flow.internal.v0.models.wash_export_request'];
|
|
32252
32276
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
32253
32277
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
32254
32278
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|