@flowio/api-internal-prop-types 9.24.68 → 9.24.70
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 +255 -215
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +255 -215
- package/src/api-internal.js +689 -598
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
|
});
|
|
@@ -390,6 +414,12 @@ T['io.flow.billing.v0.enums.transaction_payout_pending_reason'] = PropTypes.oneO
|
|
|
390
414
|
'waiting_for_positive_account_balance',
|
|
391
415
|
]);
|
|
392
416
|
|
|
417
|
+
T['io.flow.billing.v0.models.pending_transaction'] = PropTypes.exact({
|
|
418
|
+
id: PropTypes.string.isRequired,
|
|
419
|
+
reason: T['io.flow.billing.v0.enums.transaction_payout_pending_reason'].isRequired,
|
|
420
|
+
reason_set_at: PropTypes.string.isRequired,
|
|
421
|
+
});
|
|
422
|
+
|
|
393
423
|
T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
|
|
394
424
|
id: PropTypes.string.isRequired,
|
|
395
425
|
});
|
|
@@ -879,15 +909,42 @@ T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
|
|
|
879
909
|
weight: PropTypes.number.isRequired,
|
|
880
910
|
});
|
|
881
911
|
|
|
882
|
-
T['io.flow.billing.true.up.v0.enums.weight_selection'] = PropTypes.oneOf(['dead', 'dimensional']);
|
|
883
|
-
|
|
884
912
|
T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
885
913
|
shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
|
|
886
914
|
name: PropTypes.string.isRequired,
|
|
887
915
|
});
|
|
888
916
|
|
|
917
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
918
|
+
amount: PropTypes.number.isRequired,
|
|
919
|
+
percentage: PropTypes.number,
|
|
920
|
+
fee_per_weight_unit: PropTypes.number,
|
|
921
|
+
});
|
|
922
|
+
|
|
923
|
+
T['io.flow.billing.true.up.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
924
|
+
fuel: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
925
|
+
remote_area: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
926
|
+
oversize: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
927
|
+
duties_paid: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
928
|
+
emergency: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
929
|
+
peak: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
930
|
+
address_correction: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
931
|
+
});
|
|
932
|
+
|
|
933
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
|
|
934
|
+
processed_at: PropTypes.string.isRequired,
|
|
935
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
936
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
937
|
+
errors_url: PropTypes.string,
|
|
938
|
+
});
|
|
939
|
+
|
|
940
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file'] = PropTypes.exact({
|
|
941
|
+
id: PropTypes.string.isRequired,
|
|
942
|
+
url: PropTypes.string.isRequired,
|
|
943
|
+
created_at: PropTypes.string.isRequired,
|
|
944
|
+
result: T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'],
|
|
945
|
+
});
|
|
946
|
+
|
|
889
947
|
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
948
|
dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
|
|
892
949
|
dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
|
|
893
950
|
});
|
|
@@ -1750,7 +1807,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
|
|
|
1750
1807
|
country_code: PropTypes.string,
|
|
1751
1808
|
});
|
|
1752
1809
|
|
|
1753
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', '
|
|
1810
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
|
|
1754
1811
|
|
|
1755
1812
|
T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
1756
1813
|
'amex',
|
|
@@ -1762,12 +1819,12 @@ T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
|
1762
1819
|
'visa',
|
|
1763
1820
|
]);
|
|
1764
1821
|
|
|
1765
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', '
|
|
1822
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'store_pickup', 'service_pickup']);
|
|
1766
1823
|
|
|
1767
1824
|
T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
|
|
1768
1825
|
label: PropTypes.string.isRequired,
|
|
1769
1826
|
detail: PropTypes.string.isRequired,
|
|
1770
|
-
amount: PropTypes.
|
|
1827
|
+
amount: PropTypes.number.isRequired,
|
|
1771
1828
|
identifier: PropTypes.string.isRequired,
|
|
1772
1829
|
});
|
|
1773
1830
|
|
|
@@ -1776,7 +1833,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
|
|
|
1776
1833
|
T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
|
|
1777
1834
|
label: PropTypes.string.isRequired,
|
|
1778
1835
|
type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
|
|
1779
|
-
amount: PropTypes.
|
|
1836
|
+
amount: PropTypes.number.isRequired,
|
|
1780
1837
|
});
|
|
1781
1838
|
|
|
1782
1839
|
T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
|
|
@@ -2100,7 +2157,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
|
|
|
2100
2157
|
key: PropTypes.string.isRequired,
|
|
2101
2158
|
namespace: PropTypes.string.isRequired,
|
|
2102
2159
|
value: PropTypes.string.isRequired,
|
|
2103
|
-
|
|
2160
|
+
type: T['io.flow.shopify.markets.v0.enums.shopify_order_value_type'].isRequired,
|
|
2104
2161
|
description: PropTypes.string,
|
|
2105
2162
|
});
|
|
2106
2163
|
|
|
@@ -4684,7 +4741,15 @@ T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'] = PropTypes.oneOfT
|
|
|
4684
4741
|
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4685
4742
|
]);
|
|
4686
4743
|
|
|
4687
|
-
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
4744
|
+
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
4745
|
+
'fuel',
|
|
4746
|
+
'remote_area',
|
|
4747
|
+
'oversize',
|
|
4748
|
+
'duties_paid',
|
|
4749
|
+
'emergency',
|
|
4750
|
+
'peak',
|
|
4751
|
+
'address_correction',
|
|
4752
|
+
]);
|
|
4688
4753
|
|
|
4689
4754
|
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4690
4755
|
amount: PropTypes.number.isRequired,
|
|
@@ -4707,6 +4772,7 @@ T['io.flow.experience.v0.enums.order_payment_type'] = PropTypes.oneOf([
|
|
|
4707
4772
|
'card',
|
|
4708
4773
|
'online',
|
|
4709
4774
|
'credit',
|
|
4775
|
+
'external',
|
|
4710
4776
|
'subsidized',
|
|
4711
4777
|
'installment_plan',
|
|
4712
4778
|
'cash_on_delivery',
|
|
@@ -4762,6 +4828,13 @@ T['io.flow.stripe.v0.models.three_d_secure'] = PropTypes.exact({
|
|
|
4762
4828
|
customer: PropTypes.string,
|
|
4763
4829
|
});
|
|
4764
4830
|
|
|
4831
|
+
T['io.flow.stripe.v0.models.source_card_request'] = PropTypes.exact({
|
|
4832
|
+
exp_month: PropTypes.string.isRequired,
|
|
4833
|
+
exp_year: PropTypes.string.isRequired,
|
|
4834
|
+
number: PropTypes.string.isRequired,
|
|
4835
|
+
cvc: PropTypes.string,
|
|
4836
|
+
});
|
|
4837
|
+
|
|
4765
4838
|
T['io.flow.stripe.v0.enums.klarna_product'] = PropTypes.oneOf(['payment']);
|
|
4766
4839
|
|
|
4767
4840
|
T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
|
|
@@ -4775,19 +4848,21 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
|
|
|
4775
4848
|
locale: PropTypes.string,
|
|
4776
4849
|
});
|
|
4777
4850
|
|
|
4851
|
+
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4778
4852
|
T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
4779
4853
|
T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']);
|
|
4780
4854
|
T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
|
|
4781
|
-
T['io.flow.stripe.v0.enums.request_three_d_secure_type'] = PropTypes.oneOf(['automatic', 'any']);
|
|
4782
4855
|
|
|
4783
|
-
T['io.flow.stripe.v0.
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4856
|
+
T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
|
|
4857
|
+
'setup_on_session',
|
|
4858
|
+
'setup_off_session_recurring',
|
|
4859
|
+
'setup_off_session_unscheduled',
|
|
4860
|
+
'stored_on_session',
|
|
4861
|
+
'stored_on_session_recurring',
|
|
4862
|
+
'stored_on_session_unscheduled',
|
|
4863
|
+
]);
|
|
4789
4864
|
|
|
4790
|
-
T['io.flow.stripe.v0.enums.
|
|
4865
|
+
T['io.flow.stripe.v0.enums.request_three_d_secure_type'] = PropTypes.oneOf(['automatic', 'any']);
|
|
4791
4866
|
|
|
4792
4867
|
T['io.flow.stripe.v0.enums.preferred_locale_klarna'] = PropTypes.oneOf([
|
|
4793
4868
|
'de-AT',
|
|
@@ -4897,10 +4972,26 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
|
4897
4972
|
type: PropTypes.string,
|
|
4898
4973
|
});
|
|
4899
4974
|
|
|
4900
|
-
T['io.flow.stripe.v0.
|
|
4975
|
+
T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
|
|
4976
|
+
exp_month: PropTypes.string.isRequired,
|
|
4977
|
+
exp_year: PropTypes.string.isRequired,
|
|
4978
|
+
number: PropTypes.string.isRequired,
|
|
4979
|
+
cvc: PropTypes.string,
|
|
4980
|
+
});
|
|
4981
|
+
|
|
4982
|
+
T['io.flow.stripe.v0.models.three_d_secure_usage'] = PropTypes.exact({
|
|
4983
|
+
supported: PropTypes.bool,
|
|
4984
|
+
});
|
|
4985
|
+
|
|
4986
|
+
T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
|
|
4987
|
+
available: PropTypes.arrayOf(PropTypes.string),
|
|
4988
|
+
preferred: PropTypes.string,
|
|
4989
|
+
});
|
|
4901
4990
|
|
|
4902
4991
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
4992
|
+
network: PropTypes.string,
|
|
4903
4993
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
4994
|
+
stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
|
|
4904
4995
|
});
|
|
4905
4996
|
|
|
4906
4997
|
T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
@@ -4919,16 +5010,6 @@ T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
|
4919
5010
|
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
4920
5011
|
});
|
|
4921
5012
|
|
|
4922
|
-
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
4923
|
-
off_session: PropTypes.bool,
|
|
4924
|
-
payment_method: PropTypes.string,
|
|
4925
|
-
payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
|
|
4926
|
-
payment_method_types: PropTypes.arrayOf(PropTypes.string),
|
|
4927
|
-
receipt_email: PropTypes.string,
|
|
4928
|
-
save_payment_method: PropTypes.bool,
|
|
4929
|
-
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
4930
|
-
});
|
|
4931
|
-
|
|
4932
5013
|
T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
4933
5014
|
T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
4934
5015
|
|
|
@@ -5051,10 +5132,33 @@ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
|
|
|
5051
5132
|
phone: PropTypes.string,
|
|
5052
5133
|
});
|
|
5053
5134
|
|
|
5054
|
-
T['io.flow.stripe.v0.models.
|
|
5055
|
-
type:
|
|
5135
|
+
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
5136
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
5056
5137
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
5057
|
-
|
|
5138
|
+
metadata: PropTypes.object,
|
|
5139
|
+
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
5140
|
+
});
|
|
5141
|
+
|
|
5142
|
+
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
|
|
5143
|
+
|
|
5144
|
+
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
5145
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
5146
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
5147
|
+
metadata: PropTypes.object,
|
|
5148
|
+
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
5149
|
+
});
|
|
5150
|
+
|
|
5151
|
+
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
|
|
5152
|
+
|
|
5153
|
+
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
5154
|
+
off_session: PropTypes.bool,
|
|
5155
|
+
payment_method: PropTypes.string,
|
|
5156
|
+
payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
|
|
5157
|
+
payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
|
|
5158
|
+
payment_method_types: PropTypes.arrayOf(PropTypes.string),
|
|
5159
|
+
receipt_email: PropTypes.string,
|
|
5160
|
+
save_payment_method: PropTypes.bool,
|
|
5161
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
5058
5162
|
});
|
|
5059
5163
|
|
|
5060
5164
|
T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
|
|
@@ -5172,6 +5276,8 @@ T['io.flow.stripe.v0.models.metadata'] = PropTypes.exact({
|
|
|
5172
5276
|
order_number: PropTypes.string,
|
|
5173
5277
|
authorization_id: PropTypes.string,
|
|
5174
5278
|
organization_id: PropTypes.string,
|
|
5279
|
+
payment_request_id: PropTypes.string,
|
|
5280
|
+
payment_request_order_reference: PropTypes.string,
|
|
5175
5281
|
});
|
|
5176
5282
|
|
|
5177
5283
|
T['io.flow.stripe.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -5197,6 +5303,7 @@ T['io.flow.stripe.v0.models.payment_intent_form'] = PropTypes.exact({
|
|
|
5197
5303
|
metadata: T['io.flow.stripe.v0.models.metadata'],
|
|
5198
5304
|
on_behalf_of: PropTypes.string,
|
|
5199
5305
|
payment_method: PropTypes.string,
|
|
5306
|
+
payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
|
|
5200
5307
|
payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
|
|
5201
5308
|
payment_method_types: PropTypes.arrayOf(PropTypes.string),
|
|
5202
5309
|
receipt_email: PropTypes.string,
|
|
@@ -5384,11 +5491,30 @@ T['io.flow.stripe.v0.models.source_card'] = PropTypes.exact({
|
|
|
5384
5491
|
dynamic_last4: PropTypes.string,
|
|
5385
5492
|
});
|
|
5386
5493
|
|
|
5494
|
+
T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
|
|
5495
|
+
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5496
|
+
address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5497
|
+
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5498
|
+
});
|
|
5499
|
+
|
|
5500
|
+
T['io.flow.stripe.v0.models.payment_method_card_details'] = PropTypes.exact({
|
|
5501
|
+
brand: T['io.flow.stripe.v0.enums.card_brand'],
|
|
5502
|
+
checks: T['io.flow.stripe.v0.models.card_checks'],
|
|
5503
|
+
country: PropTypes.string,
|
|
5504
|
+
exp_month: PropTypes.number,
|
|
5505
|
+
exp_year: PropTypes.number,
|
|
5506
|
+
fingerprint: PropTypes.string,
|
|
5507
|
+
funding: T['io.flow.stripe.v0.enums.card_funding_type'],
|
|
5508
|
+
last4: PropTypes.string,
|
|
5509
|
+
networks: T['io.flow.stripe.v0.models.card_networks'],
|
|
5510
|
+
three_d_secure_usage: T['io.flow.stripe.v0.models.three_d_secure_usage'],
|
|
5511
|
+
});
|
|
5512
|
+
|
|
5387
5513
|
T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
5388
5514
|
id: PropTypes.string.isRequired,
|
|
5389
5515
|
object: PropTypes.string.isRequired,
|
|
5390
5516
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
5391
|
-
card: T['io.flow.stripe.v0.models.
|
|
5517
|
+
card: T['io.flow.stripe.v0.models.payment_method_card_details'],
|
|
5392
5518
|
card_present: PropTypes.object,
|
|
5393
5519
|
created: PropTypes.number.isRequired,
|
|
5394
5520
|
customer: PropTypes.string,
|
|
@@ -5407,12 +5533,6 @@ T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
|
|
|
5407
5533
|
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
5408
5534
|
});
|
|
5409
5535
|
|
|
5410
|
-
T['io.flow.stripe.v0.models.card_checks'] = PropTypes.exact({
|
|
5411
|
-
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5412
|
-
address_postal_code_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5413
|
-
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
5414
|
-
});
|
|
5415
|
-
|
|
5416
5536
|
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
5417
5537
|
|
|
5418
5538
|
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
@@ -5521,6 +5641,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
5521
5641
|
id: PropTypes.string.isRequired,
|
|
5522
5642
|
amount: PropTypes.number.isRequired,
|
|
5523
5643
|
amount_refunded: PropTypes.number.isRequired,
|
|
5644
|
+
authorization_code: PropTypes.string,
|
|
5524
5645
|
captured: PropTypes.bool.isRequired,
|
|
5525
5646
|
created: PropTypes.number.isRequired,
|
|
5526
5647
|
currency: PropTypes.string.isRequired,
|
|
@@ -5610,6 +5731,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
5610
5731
|
id: PropTypes.string.isRequired,
|
|
5611
5732
|
amount: PropTypes.number.isRequired,
|
|
5612
5733
|
amount_refunded: PropTypes.number.isRequired,
|
|
5734
|
+
authorization_code: PropTypes.string,
|
|
5613
5735
|
captured: PropTypes.bool.isRequired,
|
|
5614
5736
|
created: PropTypes.number.isRequired,
|
|
5615
5737
|
currency: PropTypes.string.isRequired,
|
|
@@ -6507,6 +6629,8 @@ T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
|
6507
6629
|
number: PropTypes.string.isRequired,
|
|
6508
6630
|
});
|
|
6509
6631
|
|
|
6632
|
+
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
6633
|
+
|
|
6510
6634
|
T['io.flow.return.v0.enums.return_tracking_status'] = PropTypes.oneOf([
|
|
6511
6635
|
'awaiting_customs_clearance',
|
|
6512
6636
|
'cancel_requested',
|
|
@@ -7691,27 +7815,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
7691
7815
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
7692
7816
|
]);
|
|
7693
7817
|
|
|
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
7818
|
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
7716
7819
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
7717
7820
|
percent: PropTypes.number.isRequired,
|
|
@@ -7855,6 +7958,14 @@ T['io.flow.internal.v0.models.order_fulfillment_deleted'] = PropTypes.exact({
|
|
|
7855
7958
|
key: PropTypes.string.isRequired,
|
|
7856
7959
|
});
|
|
7857
7960
|
|
|
7961
|
+
T['io.flow.internal.v0.models.order_combined_shipment_deleted'] = PropTypes.exact({
|
|
7962
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment_deleted']).isRequired,
|
|
7963
|
+
event_id: PropTypes.string.isRequired,
|
|
7964
|
+
timestamp: PropTypes.string.isRequired,
|
|
7965
|
+
organization: PropTypes.string.isRequired,
|
|
7966
|
+
id: PropTypes.string.isRequired,
|
|
7967
|
+
});
|
|
7968
|
+
|
|
7858
7969
|
T['io.flow.internal.v0.models.optin_prompt_deleted'] = PropTypes.exact({
|
|
7859
7970
|
discriminator: PropTypes.oneOf(['optin_prompt_deleted']).isRequired,
|
|
7860
7971
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8669,14 +8780,6 @@ T['io.flow.internal.v0.unions.authorization_payload'] = PropTypes.oneOfType([
|
|
|
8669
8780
|
T['io.flow.internal.v0.models.paypal_authorization_payload'],
|
|
8670
8781
|
]);
|
|
8671
8782
|
|
|
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
8783
|
T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
8681
8784
|
id: PropTypes.string.isRequired,
|
|
8682
8785
|
});
|
|
@@ -8863,14 +8966,6 @@ T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'] = PropTypes.ex
|
|
|
8863
8966
|
svb_virtual_card_clearing: T['io.flow.internal.v0.models.svb_virtual_card_clearing'].isRequired,
|
|
8864
8967
|
});
|
|
8865
8968
|
|
|
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
8969
|
T['io.flow.internal.v0.models.label_aliases'] = PropTypes.exact({
|
|
8875
8970
|
name: PropTypes.string.isRequired,
|
|
8876
8971
|
aliases: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -9363,6 +9458,7 @@ T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'] = PropTy
|
|
|
9363
9458
|
shopify_tracking_number: T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'].isRequired,
|
|
9364
9459
|
shopify_carrier_service: T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'],
|
|
9365
9460
|
fulfillment_created_at: PropTypes.string,
|
|
9461
|
+
flow_label_id: PropTypes.string,
|
|
9366
9462
|
});
|
|
9367
9463
|
|
|
9368
9464
|
T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropTypes.oneOfType([
|
|
@@ -9832,6 +9928,34 @@ T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
|
9832
9928
|
name: PropTypes.string.isRequired,
|
|
9833
9929
|
});
|
|
9834
9930
|
|
|
9931
|
+
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
9932
|
+
|
|
9933
|
+
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
9934
|
+
id: PropTypes.string.isRequired,
|
|
9935
|
+
number: PropTypes.string.isRequired,
|
|
9936
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
9937
|
+
});
|
|
9938
|
+
|
|
9939
|
+
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
9940
|
+
id: PropTypes.string.isRequired,
|
|
9941
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
9942
|
+
});
|
|
9943
|
+
|
|
9944
|
+
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
9945
|
+
id: PropTypes.string,
|
|
9946
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
9947
|
+
rate_level_key: PropTypes.string,
|
|
9948
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
9949
|
+
glbe_proposition_name: PropTypes.string,
|
|
9950
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
9951
|
+
shopify_grc_gid: PropTypes.string,
|
|
9952
|
+
});
|
|
9953
|
+
|
|
9954
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
9955
|
+
id: PropTypes.string,
|
|
9956
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
9957
|
+
});
|
|
9958
|
+
|
|
9835
9959
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
9836
9960
|
id: PropTypes.string.isRequired,
|
|
9837
9961
|
});
|
|
@@ -9865,6 +9989,35 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
9865
9989
|
country: PropTypes.string.isRequired,
|
|
9866
9990
|
});
|
|
9867
9991
|
|
|
9992
|
+
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
9993
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
9994
|
+
effective_at: PropTypes.string.isRequired,
|
|
9995
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
9996
|
+
service: PropTypes.string.isRequired,
|
|
9997
|
+
number: PropTypes.string,
|
|
9998
|
+
rate_level_key: PropTypes.string,
|
|
9999
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
10000
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
10001
|
+
glbe_proposition_name: PropTypes.string,
|
|
10002
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
10003
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
10004
|
+
});
|
|
10005
|
+
|
|
10006
|
+
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
10007
|
+
id: PropTypes.string.isRequired,
|
|
10008
|
+
number: PropTypes.string.isRequired,
|
|
10009
|
+
rate_level_key: PropTypes.string,
|
|
10010
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
10011
|
+
effective_at: PropTypes.string.isRequired,
|
|
10012
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
10013
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
10014
|
+
published_at: PropTypes.string,
|
|
10015
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
10016
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
10017
|
+
glbe_proposition_name: PropTypes.string,
|
|
10018
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
10019
|
+
});
|
|
10020
|
+
|
|
9868
10021
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
9869
10022
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
9870
10023
|
percent: PropTypes.number.isRequired,
|
|
@@ -10441,6 +10594,24 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
10441
10594
|
sort: PropTypes.string,
|
|
10442
10595
|
});
|
|
10443
10596
|
|
|
10597
|
+
T['io.flow.internal.v0.models.order_combined_shipment'] = PropTypes.exact({
|
|
10598
|
+
id: PropTypes.string.isRequired,
|
|
10599
|
+
label_id: PropTypes.string.isRequired,
|
|
10600
|
+
carrier_id: PropTypes.string.isRequired,
|
|
10601
|
+
service_id: PropTypes.string.isRequired,
|
|
10602
|
+
order_number: PropTypes.string.isRequired,
|
|
10603
|
+
provided_carrier_name: PropTypes.string,
|
|
10604
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
10605
|
+
});
|
|
10606
|
+
|
|
10607
|
+
T['io.flow.internal.v0.models.order_combined_shipment_upserted'] = PropTypes.exact({
|
|
10608
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment_upserted']).isRequired,
|
|
10609
|
+
event_id: PropTypes.string.isRequired,
|
|
10610
|
+
timestamp: PropTypes.string.isRequired,
|
|
10611
|
+
organization: PropTypes.string.isRequired,
|
|
10612
|
+
order_combined_shipment: T['io.flow.internal.v0.models.order_combined_shipment'].isRequired,
|
|
10613
|
+
});
|
|
10614
|
+
|
|
10444
10615
|
T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10445
10616
|
|
|
10446
10617
|
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
|
|
@@ -10667,6 +10838,7 @@ T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
|
10667
10838
|
|
|
10668
10839
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
10669
10840
|
age: PropTypes.number.isRequired,
|
|
10841
|
+
setup_time: PropTypes.number.isRequired,
|
|
10670
10842
|
compliance_approved: PropTypes.bool.isRequired,
|
|
10671
10843
|
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
10672
10844
|
application_received: PropTypes.string.isRequired,
|
|
@@ -10952,6 +11124,7 @@ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
|
|
|
10952
11124
|
id: PropTypes.number.isRequired,
|
|
10953
11125
|
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10954
11126
|
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
|
|
11127
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form']),
|
|
10955
11128
|
});
|
|
10956
11129
|
|
|
10957
11130
|
T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
|
|
@@ -11710,26 +11883,66 @@ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = Pro
|
|
|
11710
11883
|
'globale_system',
|
|
11711
11884
|
]);
|
|
11712
11885
|
|
|
11713
|
-
T['io.flow.
|
|
11714
|
-
weight: PropTypes.number.isRequired,
|
|
11715
|
-
length: PropTypes.number.isRequired,
|
|
11716
|
-
width: PropTypes.number.isRequired,
|
|
11717
|
-
height: PropTypes.number.isRequired,
|
|
11718
|
-
});
|
|
11886
|
+
T['io.flow.label.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
11719
11887
|
|
|
11720
|
-
T['io.flow.
|
|
11721
|
-
|
|
11722
|
-
|
|
11888
|
+
T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
11889
|
+
'flow_web_sync',
|
|
11890
|
+
'channel_web_async',
|
|
11891
|
+
'direct_api_sync',
|
|
11892
|
+
'direct_api_async',
|
|
11893
|
+
'bridge_api_sync',
|
|
11894
|
+
'partner_api_sync',
|
|
11895
|
+
'notification_requiring_crossdock',
|
|
11896
|
+
'autogenerated',
|
|
11897
|
+
]);
|
|
11723
11898
|
|
|
11724
|
-
T['io.flow.
|
|
11725
|
-
|
|
11726
|
-
|
|
11899
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
11900
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
11901
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
11727
11902
|
});
|
|
11728
11903
|
|
|
11729
|
-
T['io.flow.internal.v0.models.
|
|
11730
|
-
|
|
11731
|
-
|
|
11732
|
-
|
|
11904
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
11905
|
+
id: PropTypes.string.isRequired,
|
|
11906
|
+
order_number: PropTypes.string.isRequired,
|
|
11907
|
+
created_at: PropTypes.string.isRequired,
|
|
11908
|
+
reference_id: PropTypes.string.isRequired,
|
|
11909
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
11910
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
11911
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11912
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
11913
|
+
carrier_id: PropTypes.string,
|
|
11914
|
+
service_id: PropTypes.string,
|
|
11915
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11916
|
+
});
|
|
11917
|
+
|
|
11918
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
11919
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
11920
|
+
event_id: PropTypes.string.isRequired,
|
|
11921
|
+
timestamp: PropTypes.string.isRequired,
|
|
11922
|
+
organization: PropTypes.string.isRequired,
|
|
11923
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
11924
|
+
});
|
|
11925
|
+
|
|
11926
|
+
T['io.flow.internal.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
11927
|
+
weight: PropTypes.number.isRequired,
|
|
11928
|
+
length: PropTypes.number.isRequired,
|
|
11929
|
+
width: PropTypes.number.isRequired,
|
|
11930
|
+
height: PropTypes.number.isRequired,
|
|
11931
|
+
});
|
|
11932
|
+
|
|
11933
|
+
T['io.flow.internal.v0.models.weights_dead'] = PropTypes.exact({
|
|
11934
|
+
weight: PropTypes.number.isRequired,
|
|
11935
|
+
});
|
|
11936
|
+
|
|
11937
|
+
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
11938
|
+
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
11939
|
+
name: PropTypes.string.isRequired,
|
|
11940
|
+
});
|
|
11941
|
+
|
|
11942
|
+
T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
11943
|
+
amount: PropTypes.number.isRequired,
|
|
11944
|
+
percentage: PropTypes.number,
|
|
11945
|
+
fee_per_weight_unit: PropTypes.number,
|
|
11733
11946
|
});
|
|
11734
11947
|
|
|
11735
11948
|
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
@@ -11739,6 +11952,21 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
11739
11952
|
duties_paid: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11740
11953
|
emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11741
11954
|
peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11955
|
+
address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
11956
|
+
});
|
|
11957
|
+
|
|
11958
|
+
T['io.flow.internal.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
|
|
11959
|
+
processed_at: PropTypes.string.isRequired,
|
|
11960
|
+
number_lines_successful: PropTypes.number.isRequired,
|
|
11961
|
+
number_lines_with_errors: PropTypes.number.isRequired,
|
|
11962
|
+
errors_url: PropTypes.string,
|
|
11963
|
+
});
|
|
11964
|
+
|
|
11965
|
+
T['io.flow.internal.v0.models.label_invoice_response_file'] = PropTypes.exact({
|
|
11966
|
+
id: PropTypes.string.isRequired,
|
|
11967
|
+
url: PropTypes.string.isRequired,
|
|
11968
|
+
created_at: PropTypes.string.isRequired,
|
|
11969
|
+
result: T['io.flow.internal.v0.models.label_invoice_response_file_result'],
|
|
11742
11970
|
});
|
|
11743
11971
|
|
|
11744
11972
|
T['io.flow.internal.v0.models.metadata_weights'] = PropTypes.exact({
|
|
@@ -11757,7 +11985,81 @@ T['io.flow.internal.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
|
11757
11985
|
T['io.flow.internal.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
11758
11986
|
]);
|
|
11759
11987
|
|
|
11760
|
-
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
11988
|
+
T['io.flow.internal.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
11989
|
+
'fuel',
|
|
11990
|
+
'remote_area',
|
|
11991
|
+
'oversize',
|
|
11992
|
+
'duties_paid',
|
|
11993
|
+
'emergency',
|
|
11994
|
+
'peak',
|
|
11995
|
+
'address_correction',
|
|
11996
|
+
]);
|
|
11997
|
+
|
|
11998
|
+
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
11999
|
+
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
12000
|
+
|
|
12001
|
+
T['io.flow.billing.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
12002
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12003
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
12004
|
+
});
|
|
12005
|
+
|
|
12006
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
12007
|
+
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
12008
|
+
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
12009
|
+
base: T['io.flow.billing.v0.models.trueup_label_base'].isRequired,
|
|
12010
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
|
|
12011
|
+
total: PropTypes.number.isRequired,
|
|
12012
|
+
});
|
|
12013
|
+
|
|
12014
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
12015
|
+
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
12016
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
12017
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
12018
|
+
});
|
|
12019
|
+
|
|
12020
|
+
T['io.flow.billing.true.up.v0.models.label_response_units'] = PropTypes.exact({
|
|
12021
|
+
currency: PropTypes.string.isRequired,
|
|
12022
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12023
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
12024
|
+
});
|
|
12025
|
+
|
|
12026
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
12027
|
+
id: PropTypes.string.isRequired,
|
|
12028
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
12029
|
+
units: T['io.flow.billing.true.up.v0.models.label_response_units'].isRequired,
|
|
12030
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
12031
|
+
surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
|
|
12032
|
+
total: PropTypes.number.isRequired,
|
|
12033
|
+
});
|
|
12034
|
+
|
|
12035
|
+
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
12036
|
+
currency: PropTypes.string.isRequired,
|
|
12037
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12038
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
12039
|
+
});
|
|
12040
|
+
|
|
12041
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
12042
|
+
id: PropTypes.string.isRequired,
|
|
12043
|
+
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
12044
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
12045
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
12046
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
12047
|
+
total: PropTypes.number.isRequired,
|
|
12048
|
+
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
12049
|
+
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
12050
|
+
});
|
|
12051
|
+
|
|
12052
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
12053
|
+
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
12054
|
+
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
12055
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
12056
|
+
});
|
|
12057
|
+
|
|
12058
|
+
T['io.flow.internal.v0.models.label_response_units'] = PropTypes.exact({
|
|
12059
|
+
currency: PropTypes.string.isRequired,
|
|
12060
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12061
|
+
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
12062
|
+
});
|
|
11761
12063
|
|
|
11762
12064
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
11763
12065
|
ratecard: T['io.flow.internal.v0.models.metadata_ratecard'].isRequired,
|
|
@@ -11779,6 +12081,21 @@ T['io.flow.internal.v0.models.label_base'] = PropTypes.exact({
|
|
|
11779
12081
|
weight: PropTypes.number.isRequired,
|
|
11780
12082
|
});
|
|
11781
12083
|
|
|
12084
|
+
T['io.flow.internal.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
12085
|
+
id: PropTypes.string.isRequired,
|
|
12086
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
12087
|
+
units: T['io.flow.internal.v0.models.label_response_units'].isRequired,
|
|
12088
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
12089
|
+
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
12090
|
+
total: PropTypes.number.isRequired,
|
|
12091
|
+
});
|
|
12092
|
+
|
|
12093
|
+
T['io.flow.internal.v0.models.label_units'] = PropTypes.exact({
|
|
12094
|
+
currency: PropTypes.string.isRequired,
|
|
12095
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
12096
|
+
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
12097
|
+
});
|
|
12098
|
+
|
|
11782
12099
|
T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
11783
12100
|
id: PropTypes.string.isRequired,
|
|
11784
12101
|
carrier_service_id: PropTypes.string.isRequired,
|
|
@@ -11787,6 +12104,25 @@ T['io.flow.internal.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
|
11787
12104
|
created_at: PropTypes.string.isRequired,
|
|
11788
12105
|
});
|
|
11789
12106
|
|
|
12107
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
12108
|
+
id: PropTypes.string.isRequired,
|
|
12109
|
+
label: T['io.flow.internal.v0.models.true_up_label_summary'].isRequired,
|
|
12110
|
+
units: T['io.flow.internal.v0.models.label_units'].isRequired,
|
|
12111
|
+
base: T['io.flow.internal.v0.models.label_base'].isRequired,
|
|
12112
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.label_surcharge']).isRequired,
|
|
12113
|
+
total: PropTypes.number.isRequired,
|
|
12114
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
12115
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
12116
|
+
});
|
|
12117
|
+
|
|
12118
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
12119
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
12120
|
+
event_id: PropTypes.string.isRequired,
|
|
12121
|
+
timestamp: PropTypes.string.isRequired,
|
|
12122
|
+
organization: PropTypes.string.isRequired,
|
|
12123
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
12124
|
+
});
|
|
12125
|
+
|
|
11790
12126
|
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
11791
12127
|
id: PropTypes.string.isRequired,
|
|
11792
12128
|
item_identifier: PropTypes.string,
|
|
@@ -12557,6 +12893,21 @@ T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropType
|
|
|
12557
12893
|
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
12558
12894
|
});
|
|
12559
12895
|
|
|
12896
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
12897
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
12898
|
+
id: PropTypes.string.isRequired,
|
|
12899
|
+
});
|
|
12900
|
+
|
|
12901
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
12902
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
12903
|
+
id: PropTypes.string.isRequired,
|
|
12904
|
+
});
|
|
12905
|
+
|
|
12906
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
12907
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
12908
|
+
id: PropTypes.string.isRequired,
|
|
12909
|
+
});
|
|
12910
|
+
|
|
12560
12911
|
T['io.flow.internal.v0.models.merchant_charges'] = PropTypes.exact({
|
|
12561
12912
|
labels: PropTypes.number.isRequired,
|
|
12562
12913
|
total: PropTypes.number.isRequired,
|
|
@@ -12578,6 +12929,8 @@ T['io.flow.internal.v0.models.shopper_fees'] = PropTypes.exact({
|
|
|
12578
12929
|
remote_area: PropTypes.number.isRequired,
|
|
12579
12930
|
oversize: PropTypes.number.isRequired,
|
|
12580
12931
|
ccf: PropTypes.number.isRequired,
|
|
12932
|
+
emergency: PropTypes.number.isRequired,
|
|
12933
|
+
peak: PropTypes.number.isRequired,
|
|
12581
12934
|
total: PropTypes.number.isRequired,
|
|
12582
12935
|
});
|
|
12583
12936
|
|
|
@@ -12602,6 +12955,12 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
|
12602
12955
|
vat_registration_number: PropTypes.string.isRequired,
|
|
12603
12956
|
});
|
|
12604
12957
|
|
|
12958
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
12959
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
12960
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
12961
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
12962
|
+
]);
|
|
12963
|
+
|
|
12605
12964
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
12606
12965
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
12607
12966
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -13928,6 +14287,8 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
|
|
|
13928
14287
|
authorization_id: PropTypes.string,
|
|
13929
14288
|
posting_proof_id: PropTypes.string,
|
|
13930
14289
|
label_tracking_summary_id: PropTypes.string,
|
|
14290
|
+
shipping_notification_id: PropTypes.string,
|
|
14291
|
+
external_fulfillment_proof_id: PropTypes.string,
|
|
13931
14292
|
});
|
|
13932
14293
|
|
|
13933
14294
|
T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -13943,6 +14304,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
13943
14304
|
'reversal',
|
|
13944
14305
|
'shipping_label',
|
|
13945
14306
|
'shipping_label_service',
|
|
14307
|
+
'trueup',
|
|
13946
14308
|
'shipping_label_revenue_share',
|
|
13947
14309
|
'platform_fee',
|
|
13948
14310
|
'tax',
|
|
@@ -13973,6 +14335,11 @@ T['io.flow.billing.v0.models.billing_channel_order_summary'] = PropTypes.exact({
|
|
|
13973
14335
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
13974
14336
|
});
|
|
13975
14337
|
|
|
14338
|
+
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
14339
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
14340
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
14341
|
+
]);
|
|
14342
|
+
|
|
13976
14343
|
T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.exact({
|
|
13977
14344
|
id: PropTypes.string.isRequired,
|
|
13978
14345
|
});
|
|
@@ -14016,6 +14383,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14016
14383
|
'capture_transactions_ignored_fraud_count',
|
|
14017
14384
|
'capture_transactions_ignored_fully_refunded_count',
|
|
14018
14385
|
'capture_transactions_ignored_other_count',
|
|
14386
|
+
'capture_transactions_ignored_previously_processed_count',
|
|
14019
14387
|
'capture_transactions_total',
|
|
14020
14388
|
'channel_transactions_processing_count',
|
|
14021
14389
|
'channel_transactions_processing_total',
|
|
@@ -14045,6 +14413,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
14045
14413
|
'refund_transactions_ignored_fraud_count',
|
|
14046
14414
|
'refund_transactions_ignored_fully_refunded_count',
|
|
14047
14415
|
'refund_transactions_ignored_other_count',
|
|
14416
|
+
'refund_transactions_ignored_previously_processed_count',
|
|
14048
14417
|
'refund_transactions_total',
|
|
14049
14418
|
'reversal_order_cancellations_transactions_count',
|
|
14050
14419
|
'reversal_order_cancellations_transactions_total',
|
|
@@ -14451,282 +14820,6 @@ T['io.flow.internal.v0.models.customs_description_tariff_code_duty'] = PropTypes
|
|
|
14451
14820
|
tariff_codes_metadata: PropTypes.objectOf(PropTypes.string),
|
|
14452
14821
|
});
|
|
14453
14822
|
|
|
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
14823
|
T['io.flow.internal.v0.models.crypto_authentication_form'] = PropTypes.exact({
|
|
14731
14824
|
public_key: PropTypes.string.isRequired,
|
|
14732
14825
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -19020,6 +19113,28 @@ T['io.flow.internal.v0.models.channel_billed_transaction_pair'] = PropTypes.exac
|
|
|
19020
19113
|
channel_transaction: T['io.flow.internal.v0.models.channel_billed_transaction_reference'].isRequired,
|
|
19021
19114
|
});
|
|
19022
19115
|
|
|
19116
|
+
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
19117
|
+
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
19118
|
+
interval: PropTypes.number.isRequired,
|
|
19119
|
+
days: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
19120
|
+
});
|
|
19121
|
+
|
|
19122
|
+
T['io.flow.common.v0.models.repeat_weekly'] = PropTypes.exact({
|
|
19123
|
+
discriminator: PropTypes.oneOf(['repeat_weekly']).isRequired,
|
|
19124
|
+
interval: PropTypes.number.isRequired,
|
|
19125
|
+
days_of_week: PropTypes.arrayOf(T['io.flow.common.v0.enums.day_of_week']).isRequired,
|
|
19126
|
+
});
|
|
19127
|
+
|
|
19128
|
+
T['io.flow.common.v0.models.repeat_daily'] = PropTypes.exact({
|
|
19129
|
+
discriminator: PropTypes.oneOf(['repeat_daily']).isRequired,
|
|
19130
|
+
interval: PropTypes.number.isRequired,
|
|
19131
|
+
});
|
|
19132
|
+
|
|
19133
|
+
T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
19134
|
+
discriminator: PropTypes.oneOf(['repeat_hourly']).isRequired,
|
|
19135
|
+
interval: PropTypes.number.isRequired,
|
|
19136
|
+
});
|
|
19137
|
+
|
|
19023
19138
|
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
19024
19139
|
id: PropTypes.string.isRequired,
|
|
19025
19140
|
});
|
|
@@ -20581,29 +20696,6 @@ T['io.flow.internal.v0.models.organization_restriction_status_note'] = PropTypes
|
|
|
20581
20696
|
updated_at: PropTypes.string.isRequired,
|
|
20582
20697
|
});
|
|
20583
20698
|
|
|
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
20699
|
T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
20608
20700
|
id: PropTypes.string.isRequired,
|
|
20609
20701
|
note: PropTypes.string.isRequired,
|
|
@@ -23442,6 +23534,31 @@ T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.ex
|
|
|
23442
23534
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23443
23535
|
});
|
|
23444
23536
|
|
|
23537
|
+
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
23538
|
+
id: PropTypes.string.isRequired,
|
|
23539
|
+
name: PropTypes.string.isRequired,
|
|
23540
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
23541
|
+
url: PropTypes.string,
|
|
23542
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
23543
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
23544
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
23545
|
+
hs_code: PropTypes.string,
|
|
23546
|
+
merchant_category_code: PropTypes.string,
|
|
23547
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
23548
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
23549
|
+
last_year_domestic_gmv: T['io.flow.common.v0.models.money'],
|
|
23550
|
+
});
|
|
23551
|
+
|
|
23552
|
+
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
23553
|
+
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
23554
|
+
earliest_pending_date: PropTypes.string.isRequired,
|
|
23555
|
+
priority_score: PropTypes.number.isRequired,
|
|
23556
|
+
date: PropTypes.string.isRequired,
|
|
23557
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
23558
|
+
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
|
|
23559
|
+
count: PropTypes.number.isRequired,
|
|
23560
|
+
});
|
|
23561
|
+
|
|
23445
23562
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
23446
23563
|
currency: PropTypes.string.isRequired,
|
|
23447
23564
|
amount: PropTypes.number.isRequired,
|
|
@@ -23599,33 +23716,6 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
23599
23716
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23600
23717
|
});
|
|
23601
23718
|
|
|
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
23719
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23630
23720
|
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23631
23721
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
@@ -23956,12 +24046,23 @@ T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
|
|
|
23956
24046
|
rate: PropTypes.number.isRequired,
|
|
23957
24047
|
});
|
|
23958
24048
|
|
|
24049
|
+
T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
24050
|
+
T['io.flow.common.v0.models.repeat_hourly'],
|
|
24051
|
+
T['io.flow.common.v0.models.repeat_daily'],
|
|
24052
|
+
T['io.flow.common.v0.models.repeat_weekly'],
|
|
24053
|
+
T['io.flow.common.v0.models.repeat_monthly'],
|
|
24054
|
+
]);
|
|
24055
|
+
|
|
23959
24056
|
T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
23960
24057
|
name: PropTypes.string.isRequired,
|
|
23961
24058
|
description: PropTypes.string.isRequired,
|
|
23962
24059
|
offset: PropTypes.number.isRequired,
|
|
23963
24060
|
});
|
|
23964
24061
|
|
|
24062
|
+
T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
24063
|
+
country: PropTypes.string.isRequired,
|
|
24064
|
+
});
|
|
24065
|
+
|
|
23965
24066
|
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
23966
24067
|
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
23967
24068
|
id: PropTypes.string.isRequired,
|
|
@@ -24145,6 +24246,7 @@ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state
|
|
|
24145
24246
|
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
24146
24247
|
started_at: PropTypes.string,
|
|
24147
24248
|
time_blocked: PropTypes.number,
|
|
24249
|
+
time_in_setup: PropTypes.number,
|
|
24148
24250
|
blocked_since: PropTypes.string,
|
|
24149
24251
|
completed_at: PropTypes.string,
|
|
24150
24252
|
onboarding_started_at: PropTypes.string,
|
|
@@ -24308,29 +24410,14 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
24308
24410
|
event_id: PropTypes.string.isRequired,
|
|
24309
24411
|
timestamp: PropTypes.string.isRequired,
|
|
24310
24412
|
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'],
|
|
24413
|
+
order_number: PropTypes.string.isRequired,
|
|
24414
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24415
|
+
});
|
|
24416
|
+
|
|
24417
|
+
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
24418
|
+
id: PropTypes.string.isRequired,
|
|
24419
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24420
|
+
number: PropTypes.string.isRequired,
|
|
24334
24421
|
});
|
|
24335
24422
|
|
|
24336
24423
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
@@ -25298,6 +25385,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
25298
25385
|
channel_billed: T['io.flow.common.v0.models.price'].isRequired,
|
|
25299
25386
|
tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25300
25387
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
25388
|
+
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
25301
25389
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25302
25390
|
});
|
|
25303
25391
|
|
|
@@ -26192,6 +26280,64 @@ T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
|
|
|
26192
26280
|
pending: T['io.flow.common.v0.models.price'].isRequired,
|
|
26193
26281
|
});
|
|
26194
26282
|
|
|
26283
|
+
T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
26284
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
26285
|
+
id: PropTypes.string.isRequired,
|
|
26286
|
+
key: PropTypes.string,
|
|
26287
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26288
|
+
currency: PropTypes.string.isRequired,
|
|
26289
|
+
updated_at: PropTypes.string.isRequired,
|
|
26290
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26291
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26292
|
+
payment_conditions: PropTypes.string,
|
|
26293
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26294
|
+
center_key: PropTypes.string,
|
|
26295
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26296
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26297
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26298
|
+
created_at: PropTypes.string.isRequired,
|
|
26299
|
+
});
|
|
26300
|
+
|
|
26301
|
+
T['io.flow.internal.v0.models.channel_account_upserted_v2'] = PropTypes.exact({
|
|
26302
|
+
discriminator: PropTypes.oneOf(['channel_account_upserted_v2']).isRequired,
|
|
26303
|
+
event_id: PropTypes.string.isRequired,
|
|
26304
|
+
timestamp: PropTypes.string.isRequired,
|
|
26305
|
+
channel_account: T['io.flow.internal.v0.models.channel_account'].isRequired,
|
|
26306
|
+
});
|
|
26307
|
+
|
|
26308
|
+
T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
|
|
26309
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26310
|
+
id: PropTypes.string.isRequired,
|
|
26311
|
+
key: PropTypes.string,
|
|
26312
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26313
|
+
currency: PropTypes.string.isRequired,
|
|
26314
|
+
updated_at: PropTypes.string.isRequired,
|
|
26315
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26316
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26317
|
+
payment_conditions: PropTypes.string,
|
|
26318
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26319
|
+
center_key: PropTypes.string,
|
|
26320
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26321
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26322
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26323
|
+
created_at: PropTypes.string.isRequired,
|
|
26324
|
+
});
|
|
26325
|
+
|
|
26326
|
+
T['io.flow.internal.v0.models.organization_account_upserted_v2'] = PropTypes.exact({
|
|
26327
|
+
discriminator: PropTypes.oneOf(['organization_account_upserted_v2']).isRequired,
|
|
26328
|
+
event_id: PropTypes.string.isRequired,
|
|
26329
|
+
timestamp: PropTypes.string.isRequired,
|
|
26330
|
+
organization_account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26331
|
+
});
|
|
26332
|
+
|
|
26333
|
+
T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
|
|
26334
|
+
discriminator: PropTypes.oneOf(['account_upserted']).isRequired,
|
|
26335
|
+
event_id: PropTypes.string.isRequired,
|
|
26336
|
+
timestamp: PropTypes.string.isRequired,
|
|
26337
|
+
organization: PropTypes.string.isRequired,
|
|
26338
|
+
account: T['io.flow.internal.v0.models.organization_account'].isRequired,
|
|
26339
|
+
});
|
|
26340
|
+
|
|
26195
26341
|
T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
26196
26342
|
|
|
26197
26343
|
T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
@@ -26199,6 +26345,31 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
|
26199
26345
|
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
26200
26346
|
});
|
|
26201
26347
|
|
|
26348
|
+
T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
|
|
26349
|
+
source: T['io.flow.internal.v0.models.account_source'].isRequired,
|
|
26350
|
+
id: PropTypes.string.isRequired,
|
|
26351
|
+
key: PropTypes.string,
|
|
26352
|
+
origin: T['io.flow.internal.v0.models.account_origin'],
|
|
26353
|
+
currency: PropTypes.string.isRequired,
|
|
26354
|
+
updated_at: PropTypes.string.isRequired,
|
|
26355
|
+
timezone: T['io.flow.reference.v0.models.timezone'].isRequired,
|
|
26356
|
+
payment_schedule: T['io.flow.common.v0.unions.repeat_schedule'].isRequired,
|
|
26357
|
+
payment_conditions: PropTypes.string,
|
|
26358
|
+
deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule'],
|
|
26359
|
+
center_key: PropTypes.string,
|
|
26360
|
+
statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
|
|
26361
|
+
next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
|
|
26362
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
|
|
26363
|
+
created_at: PropTypes.string.isRequired,
|
|
26364
|
+
});
|
|
26365
|
+
|
|
26366
|
+
T['io.flow.internal.v0.models.account_upserted_v2'] = PropTypes.exact({
|
|
26367
|
+
discriminator: PropTypes.oneOf(['account_upserted_v2']).isRequired,
|
|
26368
|
+
event_id: PropTypes.string.isRequired,
|
|
26369
|
+
timestamp: PropTypes.string.isRequired,
|
|
26370
|
+
account: T['io.flow.internal.v0.models.flow_account'].isRequired,
|
|
26371
|
+
});
|
|
26372
|
+
|
|
26202
26373
|
T['io.flow.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
26203
26374
|
id: PropTypes.string.isRequired,
|
|
26204
26375
|
currency: PropTypes.string.isRequired,
|
|
@@ -26247,6 +26418,23 @@ T['io.flow.internal.v0.models.invoice'] = PropTypes.exact({
|
|
|
26247
26418
|
|
|
26248
26419
|
T['io.flow.internal.v0.enums.responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
26249
26420
|
|
|
26421
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
26422
|
+
id: PropTypes.string.isRequired,
|
|
26423
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
26424
|
+
currency: PropTypes.string.isRequired,
|
|
26425
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
26426
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
26427
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_line']).isRequired,
|
|
26428
|
+
shipping: T['io.flow.internal.v0.models.fulfillment_shipping'].isRequired,
|
|
26429
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
26430
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
26431
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
26432
|
+
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
26433
|
+
completes_order: PropTypes.bool.isRequired,
|
|
26434
|
+
sequence_number: PropTypes.number.isRequired,
|
|
26435
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
26436
|
+
});
|
|
26437
|
+
|
|
26250
26438
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
26251
26439
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
26252
26440
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -26404,6 +26592,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26404
26592
|
'channel_billed',
|
|
26405
26593
|
'tax',
|
|
26406
26594
|
'duty',
|
|
26595
|
+
'trueup',
|
|
26407
26596
|
]);
|
|
26408
26597
|
|
|
26409
26598
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26422,6 +26611,19 @@ T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
|
26422
26611
|
created_at: PropTypes.string.isRequired,
|
|
26423
26612
|
});
|
|
26424
26613
|
|
|
26614
|
+
T['io.flow.internal.v0.models.trueup_transaction'] = PropTypes.exact({
|
|
26615
|
+
discriminator: PropTypes.oneOf(['trueup_transaction']).isRequired,
|
|
26616
|
+
label_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
26617
|
+
id: PropTypes.string.isRequired,
|
|
26618
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26619
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26620
|
+
posted_at: PropTypes.string,
|
|
26621
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26622
|
+
description: PropTypes.string.isRequired,
|
|
26623
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26624
|
+
created_at: PropTypes.string.isRequired,
|
|
26625
|
+
});
|
|
26626
|
+
|
|
26425
26627
|
T['io.flow.internal.v0.models.transfer_transaction'] = PropTypes.exact({
|
|
26426
26628
|
discriminator: PropTypes.oneOf(['transfer_transaction']).isRequired,
|
|
26427
26629
|
method: T['io.flow.internal.v0.enums.transfer_method'].isRequired,
|
|
@@ -26750,6 +26952,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26750
26952
|
T['io.flow.internal.v0.models.channel_billed_transaction'],
|
|
26751
26953
|
T['io.flow.internal.v0.models.tax_transaction'],
|
|
26752
26954
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
26955
|
+
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
26753
26956
|
]);
|
|
26754
26957
|
|
|
26755
26958
|
T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.exact({
|
|
@@ -26794,126 +26997,6 @@ T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact(
|
|
|
26794
26997
|
transaction_created_before: PropTypes.string,
|
|
26795
26998
|
});
|
|
26796
26999
|
|
|
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
27000
|
T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
26918
27001
|
id: PropTypes.string.isRequired,
|
|
26919
27002
|
});
|
|
@@ -27303,6 +27386,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27303
27386
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'],
|
|
27304
27387
|
T['io.flow.internal.v0.models.optin_prompt_upserted'],
|
|
27305
27388
|
T['io.flow.internal.v0.models.optin_prompt_deleted'],
|
|
27389
|
+
T['io.flow.internal.v0.models.order_combined_shipment_upserted'],
|
|
27390
|
+
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
27306
27391
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
27307
27392
|
T['io.flow.internal.v0.models.order_fulfillment_upserted'],
|
|
27308
27393
|
T['io.flow.internal.v0.models.order_placed'],
|
|
@@ -27739,6 +27824,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27739
27824
|
'localized_item_prices_export_request',
|
|
27740
27825
|
'optin_prompt_upserted',
|
|
27741
27826
|
'optin_prompt_deleted',
|
|
27827
|
+
'order_combined_shipment_upserted',
|
|
27828
|
+
'order_combined_shipment_deleted',
|
|
27742
27829
|
'order_fulfillment_deleted',
|
|
27743
27830
|
'order_fulfillment_upserted',
|
|
27744
27831
|
'order_placed',
|
|
@@ -27908,16 +27995,18 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27908
27995
|
'capture',
|
|
27909
27996
|
'capture_deletion',
|
|
27910
27997
|
'channel_transaction',
|
|
27911
|
-
'channel_organization',
|
|
27912
27998
|
'consumer_invoice',
|
|
27913
27999
|
'fulfillment_in_transit',
|
|
27914
28000
|
'fulfillment_shipping_notification',
|
|
27915
28001
|
'fulfillment_external',
|
|
27916
28002
|
'label_tracking_summary',
|
|
27917
28003
|
'label_invoice_request',
|
|
28004
|
+
'label_invoice_response',
|
|
28005
|
+
'label_invoice_response_file',
|
|
27918
28006
|
'label_origin',
|
|
27919
28007
|
'order',
|
|
27920
28008
|
'order_identifier',
|
|
28009
|
+
'organization_onboarding_state',
|
|
27921
28010
|
'refund',
|
|
27922
28011
|
'refund_deletion',
|
|
27923
28012
|
'refund_over_capture',
|
|
@@ -27925,7 +28014,6 @@ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
|
|
|
27925
28014
|
'statement_batch',
|
|
27926
28015
|
'statement_email',
|
|
27927
28016
|
'statement_summary_email',
|
|
27928
|
-
'wash',
|
|
27929
28017
|
]);
|
|
27930
28018
|
|
|
27931
28019
|
T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
@@ -28013,6 +28101,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
28013
28101
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
28014
28102
|
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
28015
28103
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
28104
|
+
T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
|
|
28016
28105
|
|
|
28017
28106
|
T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
28018
28107
|
email: PropTypes.string.isRequired,
|
|
@@ -28021,6 +28110,11 @@ T['io.flow.internal.v0.models.account_contact_form'] = PropTypes.exact({
|
|
|
28021
28110
|
phone: PropTypes.string,
|
|
28022
28111
|
});
|
|
28023
28112
|
|
|
28113
|
+
T['io.flow.internal.v0.models.account_deposit_rule_form'] = PropTypes.exact({
|
|
28114
|
+
target: PropTypes.number.isRequired,
|
|
28115
|
+
rate: PropTypes.number.isRequired,
|
|
28116
|
+
});
|
|
28117
|
+
|
|
28024
28118
|
T['io.flow.internal.v0.models.adjustment_details_amount_percentage'] = PropTypes.exact({
|
|
28025
28119
|
percentage: PropTypes.number.isRequired,
|
|
28026
28120
|
});
|
|
@@ -28535,6 +28629,10 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
|
|
|
28535
28629
|
commercial_invoice_only_query: PropTypes.string,
|
|
28536
28630
|
});
|
|
28537
28631
|
|
|
28632
|
+
T['io.flow.internal.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
28633
|
+
url: PropTypes.string.isRequired,
|
|
28634
|
+
});
|
|
28635
|
+
|
|
28538
28636
|
T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
28539
28637
|
number: PropTypes.string.isRequired,
|
|
28540
28638
|
origin: PropTypes.string.isRequired,
|
|
@@ -28602,6 +28700,12 @@ T['io.flow.internal.v0.models.optin_prompt_copy_form'] = PropTypes.exact({
|
|
|
28602
28700
|
to: PropTypes.string.isRequired,
|
|
28603
28701
|
});
|
|
28604
28702
|
|
|
28703
|
+
T['io.flow.internal.v0.models.order_combined_shipment_form'] = PropTypes.exact({
|
|
28704
|
+
order_number: PropTypes.string.isRequired,
|
|
28705
|
+
provided_carrier_name: PropTypes.string,
|
|
28706
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
28707
|
+
});
|
|
28708
|
+
|
|
28605
28709
|
T['io.flow.internal.v0.models.order_note_form'] = PropTypes.exact({
|
|
28606
28710
|
note: PropTypes.string.isRequired,
|
|
28607
28711
|
});
|
|
@@ -28995,14 +29099,6 @@ T['io.flow.internal.v0.models.user_product_detail_settings'] = PropTypes.exact({
|
|
|
28995
29099
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28996
29100
|
});
|
|
28997
29101
|
|
|
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
29102
|
T['io.flow.internal.v0.models.webhook'] = PropTypes.exact({
|
|
29007
29103
|
placeholder: PropTypes.string,
|
|
29008
29104
|
});
|
|
@@ -29129,12 +29225,17 @@ T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29129
29225
|
'charge.failed',
|
|
29130
29226
|
'charge.pending',
|
|
29131
29227
|
'charge.refunded',
|
|
29132
|
-
'charge.
|
|
29228
|
+
'charge.expired',
|
|
29133
29229
|
'charge.succeeded',
|
|
29134
29230
|
'charge.updated',
|
|
29231
|
+
'charge.refund.updated',
|
|
29232
|
+
'payment_intent.created',
|
|
29135
29233
|
'payment_intent.amount_capturable_updated',
|
|
29136
29234
|
'payment_intent.payment_failed',
|
|
29137
29235
|
'payment_intent.succeeded',
|
|
29236
|
+
'payment_intent.requires_action',
|
|
29237
|
+
'payment_intent.canceled',
|
|
29238
|
+
'payment_intent.processing',
|
|
29138
29239
|
'source.canceled',
|
|
29139
29240
|
'source.chargeable',
|
|
29140
29241
|
'source.failed',
|
|
@@ -29148,6 +29249,8 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
29148
29249
|
'pay_over_time',
|
|
29149
29250
|
]);
|
|
29150
29251
|
|
|
29252
|
+
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
|
|
29253
|
+
|
|
29151
29254
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
29152
29255
|
object: PropTypes.string.isRequired,
|
|
29153
29256
|
exp_month: PropTypes.string.isRequired,
|
|
@@ -29765,6 +29868,10 @@ T['io.flow.crypto.v0.models.payment_request'] = PropTypes.exact({
|
|
|
29765
29868
|
order_id: PropTypes.string,
|
|
29766
29869
|
});
|
|
29767
29870
|
|
|
29871
|
+
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
29872
|
+
url: PropTypes.string.isRequired,
|
|
29873
|
+
});
|
|
29874
|
+
|
|
29768
29875
|
T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropTypes.exact({
|
|
29769
29876
|
country: PropTypes.string.isRequired,
|
|
29770
29877
|
});
|
|
@@ -30016,8 +30123,8 @@ export const accountContactUpserted = T['io.flow.internal.v0.models.account_cont
|
|
|
30016
30123
|
export const accountDeletedV2 = T['io.flow.internal.v0.models.account_deleted_v2'];
|
|
30017
30124
|
export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_rule'];
|
|
30018
30125
|
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
30126
|
export const accountOrdersExportRequest = T['io.flow.internal.v0.models.account_orders_export_request'];
|
|
30127
|
+
export const accountOrigin = T['io.flow.internal.v0.models.account_origin'];
|
|
30021
30128
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
30022
30129
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
30023
30130
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -30891,22 +30998,6 @@ export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypt
|
|
|
30891
30998
|
export const cryptoAccountPutForm = T['io.flow.internal.v0.models.crypto_account_put_form'];
|
|
30892
30999
|
export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authentication'];
|
|
30893
31000
|
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
31001
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
30911
31002
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
30912
31003
|
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
@@ -31409,10 +31500,12 @@ export const labelGenerationSettings = T['io.flow.internal.v0.models.label_gener
|
|
|
31409
31500
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
31410
31501
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
31411
31502
|
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
31503
|
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31414
31504
|
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31415
31505
|
export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
|
|
31506
|
+
export const labelInvoiceResponseFile = T['io.flow.internal.v0.models.label_invoice_response_file'];
|
|
31507
|
+
export const labelInvoiceResponseFileForm = T['io.flow.internal.v0.models.label_invoice_response_file_form'];
|
|
31508
|
+
export const labelInvoiceResponseFileResult = T['io.flow.internal.v0.models.label_invoice_response_file_result'];
|
|
31416
31509
|
export const labelInvoiceResponseForm = T['io.flow.internal.v0.models.label_invoice_response_form'];
|
|
31417
31510
|
export const labelMetadata = T['io.flow.internal.v0.models.label_metadata'];
|
|
31418
31511
|
export const labelRequestError = T['io.flow.internal.v0.models.label_request_error'];
|
|
@@ -31440,7 +31533,6 @@ export const labeledContent = T['io.flow.internal.v0.models.labeled_content'];
|
|
|
31440
31533
|
export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'];
|
|
31441
31534
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
31442
31535
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
31443
|
-
export const laneReference = T['io.flow.internal.v0.models.lane_reference'];
|
|
31444
31536
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
31445
31537
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
31446
31538
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -31611,6 +31703,10 @@ export const orderCancellationEvidenceReturnToSender = T['io.flow.internal.v0.mo
|
|
|
31611
31703
|
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
31612
31704
|
export const orderCancellationInitiatedBy = T['io.flow.internal.v0.enums.order_cancellation_initiated_by'];
|
|
31613
31705
|
export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
|
|
31706
|
+
export const orderCombinedShipment = T['io.flow.internal.v0.models.order_combined_shipment'];
|
|
31707
|
+
export const orderCombinedShipmentDeleted = T['io.flow.internal.v0.models.order_combined_shipment_deleted'];
|
|
31708
|
+
export const orderCombinedShipmentForm = T['io.flow.internal.v0.models.order_combined_shipment_form'];
|
|
31709
|
+
export const orderCombinedShipmentUpserted = T['io.flow.internal.v0.models.order_combined_shipment_upserted'];
|
|
31614
31710
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
31615
31711
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
31616
31712
|
export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulfillment_upserted'];
|
|
@@ -31670,7 +31766,6 @@ export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.orga
|
|
|
31670
31766
|
export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.organization_payment_setting_upserted'];
|
|
31671
31767
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
31672
31768
|
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
31769
|
export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
|
|
31675
31770
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
31676
31771
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
@@ -32128,8 +32223,6 @@ export const subscriptionFrequency = T['io.flow.internal.v0.enums.subscription_f
|
|
|
32128
32223
|
export const subscriptionTransaction = T['io.flow.internal.v0.models.subscription_transaction'];
|
|
32129
32224
|
export const suggestionAction = T['io.flow.internal.v0.enums.suggestion_action'];
|
|
32130
32225
|
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
32226
|
export const svbVirtualCardClearing = T['io.flow.internal.v0.models.svb_virtual_card_clearing'];
|
|
32134
32227
|
export const svbVirtualCardClearingDeleted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'];
|
|
32135
32228
|
export const svbVirtualCardClearingUpserted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'];
|
|
@@ -32208,6 +32301,8 @@ export const transferTransactionUpsertedV2 = T['io.flow.internal.v0.models.trans
|
|
|
32208
32301
|
export const tribe = T['io.flow.internal.v0.models.tribe'];
|
|
32209
32302
|
export const trueUpLabelSummary = T['io.flow.internal.v0.models.true_up_label_summary'];
|
|
32210
32303
|
export const trueUpSurchargeType = T['io.flow.internal.v0.enums.true_up_surcharge_type'];
|
|
32304
|
+
export const trueupTransaction = T['io.flow.internal.v0.models.trueup_transaction'];
|
|
32305
|
+
export const trueupTransactionType = T['io.flow.internal.v0.enums.trueup_transaction_type'];
|
|
32211
32306
|
export const unassignedMerchantGuid = T['io.flow.internal.v0.models.unassigned_merchant_guid'];
|
|
32212
32307
|
export const unassignedMerchantGuidDeleted = T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'];
|
|
32213
32308
|
export const unassignedMerchantGuidUpserted = T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'];
|
|
@@ -32245,10 +32340,6 @@ export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_pr
|
|
|
32245
32340
|
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
32246
32341
|
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
32247
32342
|
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
32343
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
32253
32344
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|
|
32254
32345
|
export const webhook = T['io.flow.internal.v0.models.webhook'];
|