@flowio/api-prop-types 10.16.75 → 10.16.77
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.d.ts +141 -28
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +141 -28
- package/src/api.js +183 -31
package/src/api.js
CHANGED
|
@@ -125,6 +125,35 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_customers_redact'] = PropT
|
|
|
125
125
|
orders_to_redact: PropTypes.arrayOf(PropTypes.number),
|
|
126
126
|
});
|
|
127
127
|
|
|
128
|
+
T['io.flow.shopify.external.v0.enums.shopify_plan_name'] = PropTypes.oneOf([
|
|
129
|
+
'basic',
|
|
130
|
+
'business',
|
|
131
|
+
'cancelled',
|
|
132
|
+
'dormant',
|
|
133
|
+
'enterprise',
|
|
134
|
+
'fraudulent',
|
|
135
|
+
'frozen',
|
|
136
|
+
'npo_full',
|
|
137
|
+
'npo_lite',
|
|
138
|
+
'open_learning',
|
|
139
|
+
'paid_trial',
|
|
140
|
+
'professional',
|
|
141
|
+
'retail',
|
|
142
|
+
'shopify_alumni',
|
|
143
|
+
'shopify_plus',
|
|
144
|
+
'staff',
|
|
145
|
+
'staff_business',
|
|
146
|
+
'starter',
|
|
147
|
+
'starter_2022',
|
|
148
|
+
'unlimited',
|
|
149
|
+
]);
|
|
150
|
+
|
|
151
|
+
T['io.flow.shopify.external.v0.models.shopify_shop_update'] = PropTypes.exact({
|
|
152
|
+
id: PropTypes.number.isRequired,
|
|
153
|
+
plan_display_name: PropTypes.string.isRequired,
|
|
154
|
+
plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'].isRequired,
|
|
155
|
+
});
|
|
156
|
+
|
|
128
157
|
T['io.flow.shopify.external.v0.enums.restock_type'] = PropTypes.oneOf(['no_restock', 'cancel', 'return']);
|
|
129
158
|
|
|
130
159
|
T['io.flow.shopify.external.v0.models.shopify_location'] = PropTypes.exact({
|
|
@@ -645,7 +674,7 @@ T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
|
645
674
|
id: PropTypes.number.isRequired,
|
|
646
675
|
product_id: PropTypes.number.isRequired,
|
|
647
676
|
variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
648
|
-
src: PropTypes.string
|
|
677
|
+
src: PropTypes.string,
|
|
649
678
|
position: PropTypes.number.isRequired,
|
|
650
679
|
created_at: PropTypes.string.isRequired,
|
|
651
680
|
updated_at: PropTypes.string.isRequired,
|
|
@@ -2269,6 +2298,14 @@ T['io.flow.v0.models.return_deleted'] = PropTypes.exact({
|
|
|
2269
2298
|
id: PropTypes.string.isRequired,
|
|
2270
2299
|
});
|
|
2271
2300
|
|
|
2301
|
+
T['io.flow.v0.models.product_restriction_result_deleted'] = PropTypes.exact({
|
|
2302
|
+
discriminator: PropTypes.oneOf(['product_restriction_result_deleted']).isRequired,
|
|
2303
|
+
event_id: PropTypes.string.isRequired,
|
|
2304
|
+
timestamp: PropTypes.string.isRequired,
|
|
2305
|
+
organization: PropTypes.string.isRequired,
|
|
2306
|
+
id: PropTypes.string.isRequired,
|
|
2307
|
+
});
|
|
2308
|
+
|
|
2272
2309
|
T['io.flow.v0.models.ratecard_lane_deleted'] = PropTypes.exact({
|
|
2273
2310
|
discriminator: PropTypes.oneOf(['ratecard_lane_deleted']).isRequired,
|
|
2274
2311
|
event_id: PropTypes.string.isRequired,
|
|
@@ -2380,6 +2417,14 @@ T['io.flow.v0.models.checkout_optin_responses_deleted'] = PropTypes.exact({
|
|
|
2380
2417
|
id: PropTypes.string.isRequired,
|
|
2381
2418
|
});
|
|
2382
2419
|
|
|
2420
|
+
T['io.flow.v0.models.label_processing_modification_deleted'] = PropTypes.exact({
|
|
2421
|
+
discriminator: PropTypes.oneOf(['label_processing_modification_deleted']).isRequired,
|
|
2422
|
+
event_id: PropTypes.string.isRequired,
|
|
2423
|
+
timestamp: PropTypes.string.isRequired,
|
|
2424
|
+
organization: PropTypes.string.isRequired,
|
|
2425
|
+
id: PropTypes.string.isRequired,
|
|
2426
|
+
});
|
|
2427
|
+
|
|
2383
2428
|
T['io.flow.v0.models.manifested_label_deleted'] = PropTypes.exact({
|
|
2384
2429
|
discriminator: PropTypes.oneOf(['manifested_label_deleted']).isRequired,
|
|
2385
2430
|
event_id: PropTypes.string.isRequired,
|
|
@@ -2977,6 +3022,20 @@ T['io.flow.v0.models.user_form'] = PropTypes.exact({
|
|
|
2977
3022
|
|
|
2978
3023
|
T['io.flow.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
2979
3024
|
|
|
3025
|
+
T['io.flow.v0.models.trueup_label_base_weight'] = PropTypes.exact({
|
|
3026
|
+
weight: PropTypes.number.isRequired,
|
|
3027
|
+
});
|
|
3028
|
+
|
|
3029
|
+
T['io.flow.v0.models.trueup_label_fuel'] = PropTypes.exact({
|
|
3030
|
+
amount: PropTypes.number.isRequired,
|
|
3031
|
+
percentage: PropTypes.number,
|
|
3032
|
+
per_weight_unit: PropTypes.number,
|
|
3033
|
+
});
|
|
3034
|
+
|
|
3035
|
+
T['io.flow.v0.models.trueup_label_base_v2'] = PropTypes.exact({
|
|
3036
|
+
amount: PropTypes.number.isRequired,
|
|
3037
|
+
});
|
|
3038
|
+
|
|
2980
3039
|
T['io.flow.v0.models.dimensional_weight'] = PropTypes.exact({
|
|
2981
3040
|
weight: PropTypes.number.isRequired,
|
|
2982
3041
|
length: PropTypes.number,
|
|
@@ -2988,12 +3047,18 @@ T['io.flow.v0.models.dead_weight'] = PropTypes.exact({
|
|
|
2988
3047
|
weight: PropTypes.number.isRequired,
|
|
2989
3048
|
});
|
|
2990
3049
|
|
|
3050
|
+
T['io.flow.v0.models.trueup_label_weights'] = PropTypes.exact({
|
|
3051
|
+
base: T['io.flow.v0.models.trueup_label_base_weight'].isRequired,
|
|
3052
|
+
dead: T['io.flow.v0.models.dead_weight'],
|
|
3053
|
+
dimensional: T['io.flow.v0.models.dimensional_weight'],
|
|
3054
|
+
});
|
|
3055
|
+
|
|
2991
3056
|
T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
2992
3057
|
amount: PropTypes.number.isRequired,
|
|
2993
3058
|
weight: PropTypes.number.isRequired,
|
|
2994
3059
|
});
|
|
2995
3060
|
|
|
2996
|
-
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
3061
|
+
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
2997
3062
|
|
|
2998
3063
|
T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
2999
3064
|
id: PropTypes.string.isRequired,
|
|
@@ -3004,12 +3069,20 @@ T['io.flow.v0.models.transaction_metadata_original_transaction'] = PropTypes.exa
|
|
|
3004
3069
|
id: PropTypes.string.isRequired,
|
|
3005
3070
|
});
|
|
3006
3071
|
|
|
3072
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout_reference'] = PropTypes.exact({
|
|
3073
|
+
id: PropTypes.string.isRequired,
|
|
3074
|
+
});
|
|
3075
|
+
|
|
3007
3076
|
T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
3008
3077
|
iin: PropTypes.string.isRequired,
|
|
3009
3078
|
country: PropTypes.string.isRequired,
|
|
3010
3079
|
});
|
|
3011
3080
|
|
|
3012
|
-
T['io.flow.v0.models.
|
|
3081
|
+
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
3082
|
+
id: PropTypes.string.isRequired,
|
|
3083
|
+
});
|
|
3084
|
+
|
|
3085
|
+
T['io.flow.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
3013
3086
|
transaction_id: PropTypes.string.isRequired,
|
|
3014
3087
|
});
|
|
3015
3088
|
|
|
@@ -3822,14 +3895,6 @@ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
|
|
|
3822
3895
|
product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
3823
3896
|
});
|
|
3824
3897
|
|
|
3825
|
-
T['io.flow.v0.models.product_restriction_result_deleted'] = PropTypes.exact({
|
|
3826
|
-
discriminator: PropTypes.oneOf(['product_restriction_result_deleted']).isRequired,
|
|
3827
|
-
event_id: PropTypes.string.isRequired,
|
|
3828
|
-
timestamp: PropTypes.string.isRequired,
|
|
3829
|
-
organization: PropTypes.string.isRequired,
|
|
3830
|
-
product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
3831
|
-
});
|
|
3832
|
-
|
|
3833
3898
|
T['io.flow.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
|
|
3834
3899
|
T['io.flow.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
|
|
3835
3900
|
|
|
@@ -3965,42 +4030,43 @@ T['io.flow.v0.models.payment_method_data_validate_applepay'] = PropTypes.exact({
|
|
|
3965
4030
|
|
|
3966
4031
|
T['io.flow.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
3967
4032
|
type: PropTypes.oneOf(['init_bancontact']).isRequired,
|
|
3968
|
-
|
|
4033
|
+
reference: PropTypes.string,
|
|
3969
4034
|
});
|
|
3970
4035
|
|
|
3971
4036
|
T['io.flow.v0.models.payment_method_data_init_sofort'] = PropTypes.exact({
|
|
3972
4037
|
type: PropTypes.oneOf(['init_sofort']).isRequired,
|
|
3973
|
-
|
|
4038
|
+
reference: PropTypes.string,
|
|
3974
4039
|
});
|
|
3975
4040
|
|
|
3976
4041
|
T['io.flow.v0.models.payment_method_data_init_ideal'] = PropTypes.exact({
|
|
3977
4042
|
type: PropTypes.oneOf(['init_ideal']).isRequired,
|
|
3978
4043
|
issuer: PropTypes.string,
|
|
4044
|
+
reference: PropTypes.string,
|
|
3979
4045
|
});
|
|
3980
4046
|
|
|
3981
4047
|
T['io.flow.v0.models.payment_method_data_init_paypal'] = PropTypes.exact({
|
|
3982
4048
|
type: PropTypes.oneOf(['init_paypal']).isRequired,
|
|
3983
|
-
|
|
4049
|
+
reference: PropTypes.string,
|
|
3984
4050
|
});
|
|
3985
4051
|
|
|
3986
4052
|
T['io.flow.v0.models.payment_method_data_init_googlepay'] = PropTypes.exact({
|
|
3987
4053
|
type: PropTypes.oneOf(['init_googlepay']).isRequired,
|
|
3988
|
-
|
|
4054
|
+
reference: PropTypes.string,
|
|
3989
4055
|
});
|
|
3990
4056
|
|
|
3991
4057
|
T['io.flow.v0.models.payment_method_data_init_applepay'] = PropTypes.exact({
|
|
3992
4058
|
type: PropTypes.oneOf(['init_applepay']).isRequired,
|
|
3993
|
-
|
|
4059
|
+
reference: PropTypes.string,
|
|
3994
4060
|
});
|
|
3995
4061
|
|
|
3996
4062
|
T['io.flow.v0.models.payment_method_data_init_afterpay'] = PropTypes.exact({
|
|
3997
4063
|
type: PropTypes.oneOf(['init_afterpay']).isRequired,
|
|
3998
|
-
|
|
4064
|
+
reference: PropTypes.string,
|
|
3999
4065
|
});
|
|
4000
4066
|
|
|
4001
4067
|
T['io.flow.v0.models.payment_method_data_init_klarna'] = PropTypes.exact({
|
|
4002
4068
|
type: PropTypes.oneOf(['init_klarna']).isRequired,
|
|
4003
|
-
|
|
4069
|
+
reference: PropTypes.string,
|
|
4004
4070
|
});
|
|
4005
4071
|
|
|
4006
4072
|
T['io.flow.v0.models.payment_request_billing_currency_rate'] = PropTypes.exact({
|
|
@@ -4343,6 +4409,7 @@ T['io.flow.v0.models.payment_reversal'] = PropTypes.exact({
|
|
|
4343
4409
|
currency: PropTypes.string.isRequired,
|
|
4344
4410
|
base_amount: PropTypes.number,
|
|
4345
4411
|
base_currency: PropTypes.string,
|
|
4412
|
+
reference: PropTypes.string,
|
|
4346
4413
|
created_at: PropTypes.string.isRequired,
|
|
4347
4414
|
updated_at: PropTypes.string.isRequired,
|
|
4348
4415
|
status: T['io.flow.v0.models.payment_reversal_status'].isRequired,
|
|
@@ -4537,7 +4604,7 @@ T['io.flow.v0.models.shipping'] = PropTypes.exact({
|
|
|
4537
4604
|
});
|
|
4538
4605
|
|
|
4539
4606
|
T['io.flow.v0.models.payment_order_details_line_item'] = PropTypes.exact({
|
|
4540
|
-
id: PropTypes.string
|
|
4607
|
+
id: PropTypes.string,
|
|
4541
4608
|
description: PropTypes.string.isRequired,
|
|
4542
4609
|
quantity: PropTypes.number.isRequired,
|
|
4543
4610
|
amount: PropTypes.number.isRequired,
|
|
@@ -4670,6 +4737,7 @@ T['io.flow.v0.unions.online_authorization_details'] = PropTypes.oneOfType([
|
|
|
4670
4737
|
T['io.flow.v0.models.merchant_deactivated'] = PropTypes.exact({
|
|
4671
4738
|
discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
|
|
4672
4739
|
reason: PropTypes.string.isRequired,
|
|
4740
|
+
deactivate_at: PropTypes.string,
|
|
4673
4741
|
});
|
|
4674
4742
|
|
|
4675
4743
|
T['io.flow.v0.models.merchant_activated'] = PropTypes.exact({
|
|
@@ -4911,6 +4979,15 @@ T['io.flow.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
|
4911
4979
|
length: T['io.flow.v0.enums.unit_of_length'],
|
|
4912
4980
|
});
|
|
4913
4981
|
|
|
4982
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base_data'] = PropTypes.exact({
|
|
4983
|
+
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
4984
|
+
weights: T['io.flow.v0.models.trueup_label_weights'].isRequired,
|
|
4985
|
+
units: T['io.flow.v0.models.trueup_label_units'].isRequired,
|
|
4986
|
+
base: T['io.flow.v0.models.trueup_label_base_v2'].isRequired,
|
|
4987
|
+
fuel: T['io.flow.v0.models.trueup_label_fuel'],
|
|
4988
|
+
total: PropTypes.number.isRequired,
|
|
4989
|
+
});
|
|
4990
|
+
|
|
4914
4991
|
T['io.flow.v0.models.label_units'] = PropTypes.exact({
|
|
4915
4992
|
currency: PropTypes.string.isRequired,
|
|
4916
4993
|
weight: T['io.flow.v0.enums.unit_of_weight'].isRequired,
|
|
@@ -4975,6 +5052,12 @@ T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
4975
5052
|
'eei_filing',
|
|
4976
5053
|
'fixed_ddp',
|
|
4977
5054
|
'fixed_currency_conversion',
|
|
5055
|
+
'prohibited_item',
|
|
5056
|
+
'undeliverable_shipment',
|
|
5057
|
+
'signature_required',
|
|
5058
|
+
'direct_delivery',
|
|
5059
|
+
'saturday_stop',
|
|
5060
|
+
'residential_extended_area_pickup',
|
|
4978
5061
|
]);
|
|
4979
5062
|
|
|
4980
5063
|
T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -4984,6 +5067,11 @@ T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
|
4984
5067
|
per_weight_unit: PropTypes.number,
|
|
4985
5068
|
});
|
|
4986
5069
|
|
|
5070
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'] = PropTypes.exact({
|
|
5071
|
+
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
5072
|
+
surcharge: T['io.flow.v0.models.trueup_label_surcharge'].isRequired,
|
|
5073
|
+
});
|
|
5074
|
+
|
|
4987
5075
|
T['io.flow.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
4988
5076
|
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
4989
5077
|
units: T['io.flow.v0.models.trueup_label_units'].isRequired,
|
|
@@ -5835,6 +5923,7 @@ T['io.flow.v0.models.payment_refund'] = PropTypes.exact({
|
|
|
5835
5923
|
currency: PropTypes.string.isRequired,
|
|
5836
5924
|
base_amount: PropTypes.number,
|
|
5837
5925
|
base_currency: PropTypes.string,
|
|
5926
|
+
reference: PropTypes.string,
|
|
5838
5927
|
created_at: PropTypes.string.isRequired,
|
|
5839
5928
|
updated_at: PropTypes.string.isRequired,
|
|
5840
5929
|
status: T['io.flow.v0.models.payment_refund_status'].isRequired,
|
|
@@ -6829,6 +6918,17 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
6829
6918
|
'negative_balance_guarantee',
|
|
6830
6919
|
]);
|
|
6831
6920
|
|
|
6921
|
+
T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
6922
|
+
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
6923
|
+
id: PropTypes.string,
|
|
6924
|
+
key: PropTypes.string,
|
|
6925
|
+
});
|
|
6926
|
+
|
|
6927
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6928
|
+
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
6929
|
+
failed_payout: T['io.flow.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
6930
|
+
});
|
|
6931
|
+
|
|
6832
6932
|
T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6833
6933
|
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6834
6934
|
description: PropTypes.string.isRequired,
|
|
@@ -6843,7 +6943,21 @@ T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
|
6843
6943
|
carrier_id: PropTypes.string.isRequired,
|
|
6844
6944
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
6845
6945
|
revenue_share_percentage: PropTypes.number.isRequired,
|
|
6846
|
-
outbound: T['io.flow.v0.models.
|
|
6946
|
+
outbound: T['io.flow.v0.models.transaction_metadata_outbound_transaction'],
|
|
6947
|
+
});
|
|
6948
|
+
|
|
6949
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes.exact({
|
|
6950
|
+
discriminator: PropTypes.oneOf(['trueup_surcharge']).isRequired,
|
|
6951
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6952
|
+
estimate: T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
6953
|
+
actual: T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
6954
|
+
});
|
|
6955
|
+
|
|
6956
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base'] = PropTypes.exact({
|
|
6957
|
+
discriminator: PropTypes.oneOf(['trueup_base']).isRequired,
|
|
6958
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6959
|
+
estimate: T['io.flow.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
6960
|
+
actual: T['io.flow.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
6847
6961
|
});
|
|
6848
6962
|
|
|
6849
6963
|
T['io.flow.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
@@ -6887,6 +7001,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
6887
7001
|
'shipping_label_service',
|
|
6888
7002
|
'shipping_label_revenue_share',
|
|
6889
7003
|
'trueup',
|
|
7004
|
+
'trueup_base',
|
|
7005
|
+
'trueup_surcharge',
|
|
6890
7006
|
'carrier_charge',
|
|
6891
7007
|
'carrier_charge_revenue_share',
|
|
6892
7008
|
'platform_fee',
|
|
@@ -6900,6 +7016,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
6900
7016
|
'order_service',
|
|
6901
7017
|
'virtual_card_capture',
|
|
6902
7018
|
'virtual_card_refund',
|
|
7019
|
+
'failed_payout',
|
|
6903
7020
|
]);
|
|
6904
7021
|
|
|
6905
7022
|
T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -7569,14 +7686,19 @@ T['io.flow.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
7569
7686
|
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
7570
7687
|
method: PropTypes.string.isRequired,
|
|
7571
7688
|
card: T['io.flow.v0.models.transaction_metadata_channel_card_metadata'],
|
|
7689
|
+
organization_transaction: T['io.flow.v0.models.transaction_reference'].isRequired,
|
|
7572
7690
|
});
|
|
7573
7691
|
|
|
7574
7692
|
T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
7575
7693
|
T['io.flow.v0.models.transaction_metadata_shipping_label'],
|
|
7576
7694
|
T['io.flow.v0.models.transaction_metadata_channel'],
|
|
7577
7695
|
T['io.flow.v0.models.transaction_metadata_trueup'],
|
|
7696
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base'],
|
|
7697
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge'],
|
|
7578
7698
|
T['io.flow.v0.models.transaction_metadata_carrier_charge'],
|
|
7579
7699
|
T['io.flow.v0.models.transaction_metadata_manual'],
|
|
7700
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout'],
|
|
7701
|
+
T['io.flow.v0.models.transaction_metadata_payment_transaction'],
|
|
7580
7702
|
]);
|
|
7581
7703
|
|
|
7582
7704
|
T['io.flow.v0.models.transaction_network_details_card'] = PropTypes.exact({
|
|
@@ -7601,6 +7723,7 @@ T['io.flow.v0.models.payment_method_data_authorize_card'] = PropTypes.exact({
|
|
|
7601
7723
|
device_fingerprint_details: T['io.flow.v0.unions.device_fingerprint_details'].isRequired,
|
|
7602
7724
|
cvv: PropTypes.string,
|
|
7603
7725
|
stored_details_card: T['io.flow.v0.unions.payment_method_stored_details_card'],
|
|
7726
|
+
reference: PropTypes.string,
|
|
7604
7727
|
});
|
|
7605
7728
|
|
|
7606
7729
|
T['io.flow.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
@@ -7718,6 +7841,7 @@ T['io.flow.v0.models.payment_capture'] = PropTypes.exact({
|
|
|
7718
7841
|
currency: PropTypes.string.isRequired,
|
|
7719
7842
|
base_amount: PropTypes.number,
|
|
7720
7843
|
base_currency: PropTypes.string,
|
|
7844
|
+
reference: PropTypes.string,
|
|
7721
7845
|
created_at: PropTypes.string.isRequired,
|
|
7722
7846
|
updated_at: PropTypes.string.isRequired,
|
|
7723
7847
|
status: T['io.flow.v0.models.payment_capture_status'].isRequired,
|
|
@@ -9883,6 +10007,7 @@ T['io.flow.v0.models.payment_authorization'] = PropTypes.exact({
|
|
|
9883
10007
|
currency: PropTypes.string.isRequired,
|
|
9884
10008
|
base_amount: PropTypes.number,
|
|
9885
10009
|
base_currency: PropTypes.string,
|
|
10010
|
+
reference: PropTypes.string,
|
|
9886
10011
|
});
|
|
9887
10012
|
|
|
9888
10013
|
T['io.flow.v0.models.payment_information'] = PropTypes.exact({
|
|
@@ -10159,11 +10284,6 @@ T['io.flow.v0.models.money'] = PropTypes.exact({
|
|
|
10159
10284
|
currency: PropTypes.string.isRequired,
|
|
10160
10285
|
});
|
|
10161
10286
|
|
|
10162
|
-
T['io.flow.v0.models.virtual_card_form'] = PropTypes.exact({
|
|
10163
|
-
limit: T['io.flow.v0.models.money'].isRequired,
|
|
10164
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10165
|
-
});
|
|
10166
|
-
|
|
10167
10287
|
T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
10168
10288
|
tracking_id: PropTypes.string.isRequired,
|
|
10169
10289
|
status: T['io.flow.v0.enums.tracking_status'].isRequired,
|
|
@@ -11780,6 +11900,21 @@ T['io.flow.v0.models.quote_form'] = PropTypes.exact({
|
|
|
11780
11900
|
direction: T['io.flow.v0.enums.lane_direction'],
|
|
11781
11901
|
});
|
|
11782
11902
|
|
|
11903
|
+
T['io.flow.v0.models.label_processing_modification'] = PropTypes.exact({
|
|
11904
|
+
id: PropTypes.string.isRequired,
|
|
11905
|
+
modifications: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11906
|
+
destination: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
11907
|
+
destination_provided_to_carrier: T['io.flow.v0.models.shipping_address'],
|
|
11908
|
+
});
|
|
11909
|
+
|
|
11910
|
+
T['io.flow.v0.models.label_processing_modification_upserted'] = PropTypes.exact({
|
|
11911
|
+
discriminator: PropTypes.oneOf(['label_processing_modification_upserted']).isRequired,
|
|
11912
|
+
event_id: PropTypes.string.isRequired,
|
|
11913
|
+
timestamp: PropTypes.string.isRequired,
|
|
11914
|
+
organization: PropTypes.string.isRequired,
|
|
11915
|
+
label_processing_modification: T['io.flow.v0.models.label_processing_modification'].isRequired,
|
|
11916
|
+
});
|
|
11917
|
+
|
|
11783
11918
|
T['io.flow.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
11784
11919
|
origin_address: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
11785
11920
|
destination_address: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
@@ -13321,6 +13456,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
13321
13456
|
T['io.flow.v0.models.notification_deleted_v2'],
|
|
13322
13457
|
T['io.flow.v0.models.manifested_label_upserted'],
|
|
13323
13458
|
T['io.flow.v0.models.manifested_label_deleted'],
|
|
13459
|
+
T['io.flow.v0.models.label_processing_modification_upserted'],
|
|
13460
|
+
T['io.flow.v0.models.label_processing_modification_deleted'],
|
|
13324
13461
|
T['io.flow.v0.models.local_item_upserted'],
|
|
13325
13462
|
T['io.flow.v0.models.local_item_deleted'],
|
|
13326
13463
|
T['io.flow.v0.models.merchant_application_upserted'],
|
|
@@ -13703,6 +13840,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
13703
13840
|
'notification_deleted_v2',
|
|
13704
13841
|
'manifested_label_upserted',
|
|
13705
13842
|
'manifested_label_deleted',
|
|
13843
|
+
'label_processing_modification_upserted',
|
|
13844
|
+
'label_processing_modification_deleted',
|
|
13706
13845
|
'local_item_upserted',
|
|
13707
13846
|
'local_item_deleted',
|
|
13708
13847
|
'merchant_application_upserted',
|
|
@@ -13957,6 +14096,7 @@ T['io.flow.v0.models.customer_purge_settings_form'] = PropTypes.exact({
|
|
|
13957
14096
|
|
|
13958
14097
|
T['io.flow.v0.models.deactivation_put_form'] = PropTypes.exact({
|
|
13959
14098
|
reason: PropTypes.string.isRequired,
|
|
14099
|
+
deactivate_at: PropTypes.string,
|
|
13960
14100
|
});
|
|
13961
14101
|
|
|
13962
14102
|
T['io.flow.v0.models.default_bank_account_form'] = PropTypes.exact({
|
|
@@ -14264,6 +14404,7 @@ T['io.flow.v0.models.password_reset_request_form'] = PropTypes.exact({
|
|
|
14264
14404
|
T['io.flow.v0.models.payment_capture_form'] = PropTypes.exact({
|
|
14265
14405
|
amount: PropTypes.number,
|
|
14266
14406
|
currency: PropTypes.string,
|
|
14407
|
+
reference: PropTypes.string,
|
|
14267
14408
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14268
14409
|
});
|
|
14269
14410
|
|
|
@@ -14274,11 +14415,13 @@ T['io.flow.v0.models.payment_reference'] = PropTypes.exact({
|
|
|
14274
14415
|
T['io.flow.v0.models.payment_refund_form'] = PropTypes.exact({
|
|
14275
14416
|
amount: PropTypes.number,
|
|
14276
14417
|
currency: PropTypes.string,
|
|
14418
|
+
reference: PropTypes.string,
|
|
14277
14419
|
});
|
|
14278
14420
|
|
|
14279
14421
|
T['io.flow.v0.models.payment_reversal_form'] = PropTypes.exact({
|
|
14280
14422
|
amount: PropTypes.number,
|
|
14281
14423
|
currency: PropTypes.string,
|
|
14424
|
+
reference: PropTypes.string,
|
|
14282
14425
|
});
|
|
14283
14426
|
|
|
14284
14427
|
T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
|
|
@@ -14463,10 +14606,6 @@ T['io.flow.v0.models.token_validation_form'] = PropTypes.exact({
|
|
|
14463
14606
|
token: PropTypes.string.isRequired,
|
|
14464
14607
|
});
|
|
14465
14608
|
|
|
14466
|
-
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
14467
|
-
id: PropTypes.string.isRequired,
|
|
14468
|
-
});
|
|
14469
|
-
|
|
14470
14609
|
T['io.flow.v0.models.transit_window'] = PropTypes.exact({
|
|
14471
14610
|
origin_country: PropTypes.string.isRequired,
|
|
14472
14611
|
destination_country: PropTypes.string.isRequired,
|
|
@@ -15464,6 +15603,9 @@ export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
|
|
|
15464
15603
|
export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
|
|
15465
15604
|
export const labelFormatUpserted = T['io.flow.v0.models.label_format_upserted'];
|
|
15466
15605
|
export const labelOrderSummary = T['io.flow.v0.models.label_order_summary'];
|
|
15606
|
+
export const labelProcessingModification = T['io.flow.v0.models.label_processing_modification'];
|
|
15607
|
+
export const labelProcessingModificationDeleted = T['io.flow.v0.models.label_processing_modification_deleted'];
|
|
15608
|
+
export const labelProcessingModificationUpserted = T['io.flow.v0.models.label_processing_modification_upserted'];
|
|
15467
15609
|
export const labelReference = T['io.flow.v0.models.label_reference'];
|
|
15468
15610
|
export const labelRequestMethod = T['io.flow.v0.enums.label_request_method'];
|
|
15469
15611
|
export const labelSurcharge = T['io.flow.v0.models.label_surcharge'];
|
|
@@ -16369,16 +16511,23 @@ export const transactionDetails = T['io.flow.v0.unions.transaction_details'];
|
|
|
16369
16511
|
export const transactionDetailsCard = T['io.flow.v0.models.transaction_details_card'];
|
|
16370
16512
|
export const transactionMetadata = T['io.flow.v0.unions.transaction_metadata'];
|
|
16371
16513
|
export const transactionMetadataCarrierCharge = T['io.flow.v0.models.transaction_metadata_carrier_charge'];
|
|
16372
|
-
export const transactionMetadataCarrierChargeOutbound = T['io.flow.v0.models.transaction_metadata_carrier_charge_outbound'];
|
|
16373
16514
|
export const transactionMetadataChannel = T['io.flow.v0.models.transaction_metadata_channel'];
|
|
16374
16515
|
export const transactionMetadataChannelCardMetadata = T['io.flow.v0.models.transaction_metadata_channel_card_metadata'];
|
|
16375
16516
|
export const transactionMetadataChannelCardMetadataIssuerSummary = T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'];
|
|
16517
|
+
export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
|
|
16518
|
+
export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
|
|
16376
16519
|
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|
|
16377
16520
|
export const transactionMetadataOriginalTransaction = T['io.flow.v0.models.transaction_metadata_original_transaction'];
|
|
16521
|
+
export const transactionMetadataOutboundTransaction = T['io.flow.v0.models.transaction_metadata_outbound_transaction'];
|
|
16522
|
+
export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transaction_metadata_payment_transaction'];
|
|
16378
16523
|
export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
|
|
16379
16524
|
export const transactionMetadataShippingLabelCarrier = T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'];
|
|
16380
16525
|
export const transactionMetadataTrueup = T['io.flow.v0.models.transaction_metadata_trueup'];
|
|
16526
|
+
export const transactionMetadataTrueupBase = T['io.flow.v0.models.transaction_metadata_trueup_base'];
|
|
16527
|
+
export const transactionMetadataTrueupBaseData = T['io.flow.v0.models.transaction_metadata_trueup_base_data'];
|
|
16381
16528
|
export const transactionMetadataTrueupData = T['io.flow.v0.models.transaction_metadata_trueup_data'];
|
|
16529
|
+
export const transactionMetadataTrueupSurcharge = T['io.flow.v0.models.transaction_metadata_trueup_surcharge'];
|
|
16530
|
+
export const transactionMetadataTrueupSurchargeData = T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'];
|
|
16382
16531
|
export const transactionNetworkDetailsCard = T['io.flow.v0.models.transaction_network_details_card'];
|
|
16383
16532
|
export const transactionReference = T['io.flow.v0.models.transaction_reference'];
|
|
16384
16533
|
export const transactionSource = T['io.flow.v0.enums.transaction_source'];
|
|
@@ -16386,8 +16535,12 @@ export const transactionUpserted = T['io.flow.v0.models.transaction_upserted'];
|
|
|
16386
16535
|
export const transitEstimate = T['io.flow.v0.models.transit_estimate'];
|
|
16387
16536
|
export const transitWindow = T['io.flow.v0.models.transit_window'];
|
|
16388
16537
|
export const trueupLabelBase = T['io.flow.v0.models.trueup_label_base'];
|
|
16538
|
+
export const trueupLabelBaseV2 = T['io.flow.v0.models.trueup_label_base_v2'];
|
|
16539
|
+
export const trueupLabelBaseWeight = T['io.flow.v0.models.trueup_label_base_weight'];
|
|
16540
|
+
export const trueupLabelFuel = T['io.flow.v0.models.trueup_label_fuel'];
|
|
16389
16541
|
export const trueupLabelSurcharge = T['io.flow.v0.models.trueup_label_surcharge'];
|
|
16390
16542
|
export const trueupLabelUnits = T['io.flow.v0.models.trueup_label_units'];
|
|
16543
|
+
export const trueupLabelWeights = T['io.flow.v0.models.trueup_label_weights'];
|
|
16391
16544
|
export const trueupSource = T['io.flow.v0.enums.trueup_source'];
|
|
16392
16545
|
export const trueupSurchargeType = T['io.flow.v0.enums.trueup_surcharge_type'];
|
|
16393
16546
|
export const ultimateBeneficiaryOwner = T['io.flow.v0.models.ultimate_beneficiary_owner'];
|
|
@@ -16413,7 +16566,6 @@ export const virtualCardCapture = T['io.flow.v0.models.virtual_card_capture'];
|
|
|
16413
16566
|
export const virtualCardCaptureDeleted = T['io.flow.v0.models.virtual_card_capture_deleted'];
|
|
16414
16567
|
export const virtualCardCaptureUpserted = T['io.flow.v0.models.virtual_card_capture_upserted'];
|
|
16415
16568
|
export const virtualCardCaptureVersion = T['io.flow.v0.models.virtual_card_capture_version'];
|
|
16416
|
-
export const virtualCardForm = T['io.flow.v0.models.virtual_card_form'];
|
|
16417
16569
|
export const virtualCardReference = T['io.flow.v0.models.virtual_card_reference'];
|
|
16418
16570
|
export const virtualCardRefund = T['io.flow.v0.models.virtual_card_refund'];
|
|
16419
16571
|
export const virtualCardRefundDeleted = T['io.flow.v0.models.virtual_card_refund_deleted'];
|