@flowio/api-prop-types 10.16.57 → 10.16.59
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 +210 -197
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +210 -197
- package/src/api.js +267 -239
package/src/api.js
CHANGED
|
@@ -1,105 +1,6 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
|
-
|
|
4
|
-
T['io.flow.billing.true.up.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
5
|
-
id: PropTypes.string.isRequired,
|
|
6
|
-
});
|
|
7
|
-
|
|
8
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
9
|
-
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
10
|
-
fee: PropTypes.number.isRequired,
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
14
|
-
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
15
|
-
percentage: PropTypes.number.isRequired,
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
19
|
-
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
20
|
-
placeholder: PropTypes.string,
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
T['io.flow.billing.true.up.v0.models.weights_dimensional'] = PropTypes.exact({
|
|
24
|
-
weight: PropTypes.number.isRequired,
|
|
25
|
-
length: PropTypes.number.isRequired,
|
|
26
|
-
width: PropTypes.number.isRequired,
|
|
27
|
-
height: PropTypes.number.isRequired,
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
T['io.flow.billing.true.up.v0.models.weights_dead'] = PropTypes.exact({
|
|
31
|
-
weight: PropTypes.number.isRequired,
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
T['io.flow.billing.true.up.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
35
|
-
shipping_method: T['io.flow.billing.true.up.v0.models.shipping_method_reference'].isRequired,
|
|
36
|
-
name: PropTypes.string.isRequired,
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
40
|
-
amount: PropTypes.number.isRequired,
|
|
41
|
-
percentage: PropTypes.number,
|
|
42
|
-
fee_per_weight_unit: PropTypes.number,
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
46
|
-
fuel: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
47
|
-
remote_area: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
48
|
-
oversize: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
49
|
-
duties_paid: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
50
|
-
emergency: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
51
|
-
peak: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
52
|
-
address_correction: T['io.flow.billing.true.up.v0.models.label_surcharge_single_form'],
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'] = PropTypes.exact({
|
|
56
|
-
processed_at: PropTypes.string.isRequired,
|
|
57
|
-
number_lines_successful: PropTypes.number.isRequired,
|
|
58
|
-
number_lines_with_errors: PropTypes.number.isRequired,
|
|
59
|
-
errors_url: PropTypes.string,
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_response_file'] = PropTypes.exact({
|
|
63
|
-
id: PropTypes.string.isRequired,
|
|
64
|
-
url: PropTypes.string.isRequired,
|
|
65
|
-
created_at: PropTypes.string.isRequired,
|
|
66
|
-
result: T['io.flow.billing.true.up.v0.models.label_invoice_response_file_result'],
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
T['io.flow.billing.true.up.v0.models.metadata_weights'] = PropTypes.exact({
|
|
70
|
-
dead: T['io.flow.billing.true.up.v0.models.weights_dead'],
|
|
71
|
-
dimensional: T['io.flow.billing.true.up.v0.models.weights_dimensional'],
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
T['io.flow.billing.true.up.v0.models.metadata_ratecard'] = PropTypes.exact({
|
|
75
|
-
id: PropTypes.string.isRequired,
|
|
76
|
-
proposition: T['io.flow.billing.true.up.v0.models.metadata_proposition'].isRequired,
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
T['io.flow.billing.true.up.v0.models.label_metadata'] = PropTypes.exact({
|
|
80
|
-
ratecard: T['io.flow.billing.true.up.v0.models.metadata_ratecard'].isRequired,
|
|
81
|
-
weights: T['io.flow.billing.true.up.v0.models.metadata_weights'].isRequired,
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
T['io.flow.billing.true.up.v0.models.label_destination'] = PropTypes.exact({
|
|
85
|
-
country: PropTypes.string.isRequired,
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
T['io.flow.billing.true.up.v0.models.true_up_label_summary'] = PropTypes.exact({
|
|
89
|
-
id: PropTypes.string.isRequired,
|
|
90
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
91
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
92
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
93
|
-
created_at: PropTypes.string.isRequired,
|
|
94
|
-
});
|
|
95
|
-
|
|
96
3
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
97
|
-
T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
|
|
98
|
-
|
|
99
|
-
T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
100
|
-
code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
|
|
101
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
102
|
-
});
|
|
103
4
|
|
|
104
5
|
T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
|
|
105
6
|
discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
|
|
@@ -118,6 +19,13 @@ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
118
19
|
T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
|
|
119
20
|
]);
|
|
120
21
|
|
|
22
|
+
T['io.flow.error.v0.enums.generic_error_code'] = PropTypes.oneOf(['generic_error', 'client_error', 'server_error']);
|
|
23
|
+
|
|
24
|
+
T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
25
|
+
code: T['io.flow.error.v0.enums.generic_error_code'].isRequired,
|
|
26
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27
|
+
});
|
|
28
|
+
|
|
121
29
|
T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
|
|
122
30
|
'carts/create',
|
|
123
31
|
'carts/update',
|
|
@@ -1103,6 +1011,7 @@ T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
|
1103
1011
|
network: PropTypes.string,
|
|
1104
1012
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
1105
1013
|
stored_credential_transaction_type: T['io.flow.stripe.v0.enums.stored_credential_transaction_type'],
|
|
1014
|
+
mcc: PropTypes.string,
|
|
1106
1015
|
});
|
|
1107
1016
|
|
|
1108
1017
|
T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
@@ -2742,6 +2651,22 @@ T['io.flow.v0.models.attribute_upserted'] = PropTypes.exact({
|
|
|
2742
2651
|
type: PropTypes.string.isRequired,
|
|
2743
2652
|
});
|
|
2744
2653
|
|
|
2654
|
+
T['io.flow.v0.models.organization_pending_payout_transaction_deleted'] = PropTypes.exact({
|
|
2655
|
+
discriminator: PropTypes.oneOf(['organization_pending_payout_transaction_deleted']).isRequired,
|
|
2656
|
+
event_id: PropTypes.string.isRequired,
|
|
2657
|
+
timestamp: PropTypes.string.isRequired,
|
|
2658
|
+
organization: PropTypes.string.isRequired,
|
|
2659
|
+
id: PropTypes.string.isRequired,
|
|
2660
|
+
});
|
|
2661
|
+
|
|
2662
|
+
T['io.flow.v0.models.channel_pending_payout_transaction_deleted'] = PropTypes.exact({
|
|
2663
|
+
discriminator: PropTypes.oneOf(['channel_pending_payout_transaction_deleted']).isRequired,
|
|
2664
|
+
event_id: PropTypes.string.isRequired,
|
|
2665
|
+
timestamp: PropTypes.string.isRequired,
|
|
2666
|
+
channel_id: PropTypes.string.isRequired,
|
|
2667
|
+
id: PropTypes.string.isRequired,
|
|
2668
|
+
});
|
|
2669
|
+
|
|
2745
2670
|
T['io.flow.v0.models.organization_payout_deleted'] = PropTypes.exact({
|
|
2746
2671
|
discriminator: PropTypes.oneOf(['organization_payout_deleted']).isRequired,
|
|
2747
2672
|
event_id: PropTypes.string.isRequired,
|
|
@@ -2890,24 +2815,15 @@ T['io.flow.v0.models.user_form'] = PropTypes.exact({
|
|
|
2890
2815
|
|
|
2891
2816
|
T['io.flow.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
2892
2817
|
|
|
2893
|
-
T['io.flow.v0.
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
'peak',
|
|
2900
|
-
'address_correction',
|
|
2901
|
-
]);
|
|
2902
|
-
|
|
2903
|
-
T['io.flow.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
2904
|
-
T['io.flow.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
2818
|
+
T['io.flow.v0.models.dimensional_weight'] = PropTypes.exact({
|
|
2819
|
+
weight: PropTypes.number.isRequired,
|
|
2820
|
+
length: PropTypes.number,
|
|
2821
|
+
width: PropTypes.number,
|
|
2822
|
+
height: PropTypes.number,
|
|
2823
|
+
});
|
|
2905
2824
|
|
|
2906
|
-
T['io.flow.v0.models.
|
|
2907
|
-
|
|
2908
|
-
type: T['io.flow.v0.enums.trueup_surcharge_type'].isRequired,
|
|
2909
|
-
percentage: PropTypes.number,
|
|
2910
|
-
per_weight_unit: PropTypes.number,
|
|
2825
|
+
T['io.flow.v0.models.dead_weight'] = PropTypes.exact({
|
|
2826
|
+
weight: PropTypes.number.isRequired,
|
|
2911
2827
|
});
|
|
2912
2828
|
|
|
2913
2829
|
T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
@@ -2915,19 +2831,15 @@ T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
2915
2831
|
weight: PropTypes.number.isRequired,
|
|
2916
2832
|
});
|
|
2917
2833
|
|
|
2918
|
-
T['io.flow.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
2919
|
-
weight: T['io.flow.v0.enums.unit_of_weight'].isRequired,
|
|
2920
|
-
length: T['io.flow.v0.enums.unit_of_length'],
|
|
2921
|
-
});
|
|
2922
|
-
|
|
2923
2834
|
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
2924
2835
|
|
|
2925
|
-
T['io.flow.v0.models.
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2836
|
+
T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
2837
|
+
id: PropTypes.string.isRequired,
|
|
2838
|
+
tracking_number: PropTypes.string.isRequired,
|
|
2839
|
+
});
|
|
2840
|
+
|
|
2841
|
+
T['io.flow.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
2842
|
+
id: PropTypes.string.isRequired,
|
|
2931
2843
|
});
|
|
2932
2844
|
|
|
2933
2845
|
T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
@@ -3407,74 +3319,11 @@ T['io.flow.v0.models.service_unknown'] = PropTypes.exact({
|
|
|
3407
3319
|
name: PropTypes.string.isRequired,
|
|
3408
3320
|
});
|
|
3409
3321
|
|
|
3410
|
-
T['io.flow.
|
|
3411
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'],
|
|
3412
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'],
|
|
3413
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
3414
|
-
]);
|
|
3415
|
-
|
|
3416
|
-
T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'] = PropTypes.oneOf([
|
|
3417
|
-
'fuel',
|
|
3418
|
-
'remote_area',
|
|
3419
|
-
'oversize',
|
|
3420
|
-
'duties_paid',
|
|
3421
|
-
'emergency',
|
|
3422
|
-
'peak',
|
|
3423
|
-
'address_correction',
|
|
3424
|
-
]);
|
|
3425
|
-
|
|
3426
|
-
T['io.flow.units.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
3427
|
-
T['io.flow.units.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
3428
|
-
|
|
3429
|
-
T['io.flow.billing.true.up.v0.models.label_response_units'] = PropTypes.exact({
|
|
3430
|
-
currency: PropTypes.string.isRequired,
|
|
3431
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
3432
|
-
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
3433
|
-
});
|
|
3434
|
-
|
|
3435
|
-
T['io.flow.billing.true.up.v0.models.label_surcharge'] = PropTypes.exact({
|
|
3436
|
-
amount: PropTypes.number.isRequired,
|
|
3437
|
-
type: T['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'].isRequired,
|
|
3438
|
-
detail: T['io.flow.billing.true.up.v0.unions.label_surcharge_detail'].isRequired,
|
|
3439
|
-
});
|
|
3440
|
-
|
|
3441
|
-
T['io.flow.billing.true.up.v0.models.label_base'] = PropTypes.exact({
|
|
3322
|
+
T['io.flow.v0.models.label_base'] = PropTypes.exact({
|
|
3442
3323
|
amount: PropTypes.number.isRequired,
|
|
3443
3324
|
weight: PropTypes.number.isRequired,
|
|
3444
3325
|
});
|
|
3445
3326
|
|
|
3446
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_response_form'] = PropTypes.exact({
|
|
3447
|
-
id: PropTypes.string.isRequired,
|
|
3448
|
-
label_invoice_request_id: PropTypes.string.isRequired,
|
|
3449
|
-
units: T['io.flow.billing.true.up.v0.models.label_response_units'].isRequired,
|
|
3450
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
3451
|
-
surcharges: T['io.flow.billing.true.up.v0.models.label_surcharge_form'].isRequired,
|
|
3452
|
-
total: PropTypes.number.isRequired,
|
|
3453
|
-
});
|
|
3454
|
-
|
|
3455
|
-
T['io.flow.billing.true.up.v0.models.label_units'] = PropTypes.exact({
|
|
3456
|
-
currency: PropTypes.string.isRequired,
|
|
3457
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight'].isRequired,
|
|
3458
|
-
length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
|
|
3459
|
-
});
|
|
3460
|
-
|
|
3461
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
3462
|
-
id: PropTypes.string.isRequired,
|
|
3463
|
-
label: T['io.flow.billing.true.up.v0.models.true_up_label_summary'].isRequired,
|
|
3464
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
3465
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
3466
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
3467
|
-
total: PropTypes.number.isRequired,
|
|
3468
|
-
destination: T['io.flow.billing.true.up.v0.models.label_destination'].isRequired,
|
|
3469
|
-
metadata: T['io.flow.billing.true.up.v0.models.label_metadata'].isRequired,
|
|
3470
|
-
});
|
|
3471
|
-
|
|
3472
|
-
T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
3473
|
-
units: T['io.flow.billing.true.up.v0.models.label_units'].isRequired,
|
|
3474
|
-
base: T['io.flow.billing.true.up.v0.models.label_base'].isRequired,
|
|
3475
|
-
surcharges: PropTypes.arrayOf(T['io.flow.billing.true.up.v0.models.label_surcharge']).isRequired,
|
|
3476
|
-
});
|
|
3477
|
-
|
|
3478
3327
|
T['io.flow.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
|
|
3479
3328
|
T['io.flow.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
|
|
3480
3329
|
T['io.flow.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
|
|
@@ -4035,11 +3884,24 @@ T['io.flow.v0.enums.payment_status'] = PropTypes.oneOf([
|
|
|
4035
3884
|
|
|
4036
3885
|
T['io.flow.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
4037
3886
|
|
|
3887
|
+
T['io.flow.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
3888
|
+
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
3889
|
+
transaction_identifier: PropTypes.string,
|
|
3890
|
+
method_type: PropTypes.string,
|
|
3891
|
+
result_status: PropTypes.string,
|
|
3892
|
+
reason_code: PropTypes.string,
|
|
3893
|
+
avs_result_code: PropTypes.string,
|
|
3894
|
+
cvv_result_code: PropTypes.string,
|
|
3895
|
+
threeds_result_code: PropTypes.string,
|
|
3896
|
+
});
|
|
3897
|
+
|
|
4038
3898
|
T['io.flow.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
4039
3899
|
organization: PropTypes.string.isRequired,
|
|
4040
3900
|
key: PropTypes.string.isRequired,
|
|
4041
3901
|
});
|
|
4042
3902
|
|
|
3903
|
+
T['io.flow.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([T['io.flow.v0.models.payment_processor_transaction_details_card']]);
|
|
3904
|
+
|
|
4043
3905
|
T['io.flow.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
4044
3906
|
id: PropTypes.string.isRequired,
|
|
4045
3907
|
label: PropTypes.string.isRequired,
|
|
@@ -4931,6 +4793,20 @@ T['io.flow.v0.models.price_detail'] = PropTypes.exact({
|
|
|
4931
4793
|
basis: PropTypes.number,
|
|
4932
4794
|
});
|
|
4933
4795
|
|
|
4796
|
+
T['io.flow.v0.enums.unit_of_length'] = PropTypes.oneOf(['millimeter', 'centimeter', 'inch', 'foot', 'meter']);
|
|
4797
|
+
T['io.flow.v0.enums.unit_of_weight'] = PropTypes.oneOf(['gram', 'kilogram', 'ounce', 'pound']);
|
|
4798
|
+
|
|
4799
|
+
T['io.flow.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
4800
|
+
weight: T['io.flow.v0.enums.unit_of_weight'].isRequired,
|
|
4801
|
+
length: T['io.flow.v0.enums.unit_of_length'],
|
|
4802
|
+
});
|
|
4803
|
+
|
|
4804
|
+
T['io.flow.v0.models.label_units'] = PropTypes.exact({
|
|
4805
|
+
currency: PropTypes.string.isRequired,
|
|
4806
|
+
weight: T['io.flow.v0.enums.unit_of_weight'].isRequired,
|
|
4807
|
+
length: T['io.flow.v0.enums.unit_of_length'].isRequired,
|
|
4808
|
+
});
|
|
4809
|
+
|
|
4934
4810
|
T['io.flow.v0.models.label_tracking_summary_update'] = PropTypes.exact({
|
|
4935
4811
|
timestamp: PropTypes.string.isRequired,
|
|
4936
4812
|
created_at: PropTypes.string,
|
|
@@ -4956,6 +4832,66 @@ T['io.flow.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
4956
4832
|
rejected: T['io.flow.v0.models.label_tracking_summary_update'],
|
|
4957
4833
|
});
|
|
4958
4834
|
|
|
4835
|
+
T['io.flow.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
4836
|
+
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
4837
|
+
fee: PropTypes.number.isRequired,
|
|
4838
|
+
});
|
|
4839
|
+
|
|
4840
|
+
T['io.flow.v0.models.label_surcharge_detail_percentage'] = PropTypes.exact({
|
|
4841
|
+
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
4842
|
+
percentage: PropTypes.number.isRequired,
|
|
4843
|
+
});
|
|
4844
|
+
|
|
4845
|
+
T['io.flow.v0.models.label_surcharge_detail_flat'] = PropTypes.exact({
|
|
4846
|
+
discriminator: PropTypes.oneOf(['flat']).isRequired,
|
|
4847
|
+
placeholder: PropTypes.string,
|
|
4848
|
+
});
|
|
4849
|
+
|
|
4850
|
+
T['io.flow.v0.unions.label_surcharge_detail'] = PropTypes.oneOfType([
|
|
4851
|
+
T['io.flow.v0.models.label_surcharge_detail_flat'],
|
|
4852
|
+
T['io.flow.v0.models.label_surcharge_detail_percentage'],
|
|
4853
|
+
T['io.flow.v0.models.label_surcharge_detail_per_weight_unit'],
|
|
4854
|
+
]);
|
|
4855
|
+
|
|
4856
|
+
T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
4857
|
+
'fuel',
|
|
4858
|
+
'remote_area',
|
|
4859
|
+
'oversize',
|
|
4860
|
+
'duties_paid',
|
|
4861
|
+
'emergency',
|
|
4862
|
+
'peak',
|
|
4863
|
+
'address_correction',
|
|
4864
|
+
]);
|
|
4865
|
+
|
|
4866
|
+
T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
4867
|
+
amount: PropTypes.number.isRequired,
|
|
4868
|
+
type: T['io.flow.v0.enums.trueup_surcharge_type'].isRequired,
|
|
4869
|
+
percentage: PropTypes.number,
|
|
4870
|
+
per_weight_unit: PropTypes.number,
|
|
4871
|
+
});
|
|
4872
|
+
|
|
4873
|
+
T['io.flow.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
4874
|
+
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
4875
|
+
units: T['io.flow.v0.models.trueup_label_units'].isRequired,
|
|
4876
|
+
base: T['io.flow.v0.models.trueup_label_base'].isRequired,
|
|
4877
|
+
surcharges: PropTypes.arrayOf(T['io.flow.v0.models.trueup_label_surcharge']).isRequired,
|
|
4878
|
+
total: PropTypes.number.isRequired,
|
|
4879
|
+
dead: T['io.flow.v0.models.dead_weight'],
|
|
4880
|
+
dimensional: T['io.flow.v0.models.dimensional_weight'],
|
|
4881
|
+
});
|
|
4882
|
+
|
|
4883
|
+
T['io.flow.v0.models.label_surcharge'] = PropTypes.exact({
|
|
4884
|
+
amount: PropTypes.number.isRequired,
|
|
4885
|
+
type: T['io.flow.v0.enums.trueup_surcharge_type'].isRequired,
|
|
4886
|
+
detail: T['io.flow.v0.unions.label_surcharge_detail'].isRequired,
|
|
4887
|
+
});
|
|
4888
|
+
|
|
4889
|
+
T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
4890
|
+
units: T['io.flow.v0.models.label_units'].isRequired,
|
|
4891
|
+
base: T['io.flow.v0.models.label_base'].isRequired,
|
|
4892
|
+
surcharges: PropTypes.arrayOf(T['io.flow.v0.models.label_surcharge']).isRequired,
|
|
4893
|
+
});
|
|
4894
|
+
|
|
4959
4895
|
T['io.flow.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
4960
4896
|
|
|
4961
4897
|
T['io.flow.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
@@ -5295,6 +5231,11 @@ T['io.flow.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
|
5295
5231
|
quantities: PropTypes.arrayOf(T['io.flow.v0.models.fulfillment_item_quantity']).isRequired,
|
|
5296
5232
|
});
|
|
5297
5233
|
|
|
5234
|
+
T['io.flow.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
5235
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
5236
|
+
percent: PropTypes.number.isRequired,
|
|
5237
|
+
});
|
|
5238
|
+
|
|
5298
5239
|
T['io.flow.v0.enums.ftp_file_source'] = PropTypes.oneOf(['flow', 'organization']);
|
|
5299
5240
|
|
|
5300
5241
|
T['io.flow.v0.models.ftp_file'] = PropTypes.exact({
|
|
@@ -5896,6 +5837,17 @@ T['io.flow.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
5896
5837
|
'pound',
|
|
5897
5838
|
]);
|
|
5898
5839
|
|
|
5840
|
+
T['io.flow.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
|
|
5841
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
|
|
5842
|
+
amount: PropTypes.number.isRequired,
|
|
5843
|
+
weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
|
|
5844
|
+
});
|
|
5845
|
+
|
|
5846
|
+
T['io.flow.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
5847
|
+
T['io.flow.v0.models.fuel_surcharge_percent'],
|
|
5848
|
+
T['io.flow.v0.models.fuel_surcharge_by_weight'],
|
|
5849
|
+
]);
|
|
5850
|
+
|
|
5899
5851
|
T['io.flow.v0.models.fee_weight'] = PropTypes.exact({
|
|
5900
5852
|
weight: PropTypes.number.isRequired,
|
|
5901
5853
|
unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -6126,6 +6078,7 @@ T['io.flow.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
6126
6078
|
T['io.flow.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
6127
6079
|
id: PropTypes.string,
|
|
6128
6080
|
ratecard: T['io.flow.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
6081
|
+
weight_break: PropTypes.number,
|
|
6129
6082
|
});
|
|
6130
6083
|
|
|
6131
6084
|
T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
|
|
@@ -6831,41 +6784,6 @@ T['io.flow.v0.models.channel_vies_registration'] = PropTypes.exact({
|
|
|
6831
6784
|
company_name: PropTypes.string,
|
|
6832
6785
|
});
|
|
6833
6786
|
|
|
6834
|
-
T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
|
|
6835
|
-
id: PropTypes.string.isRequired,
|
|
6836
|
-
});
|
|
6837
|
-
|
|
6838
|
-
T['io.flow.v0.enums.transaction_payout_pending_reason'] = PropTypes.oneOf([
|
|
6839
|
-
'waiting_for_full_refund',
|
|
6840
|
-
'waiting_for_fulfillment',
|
|
6841
|
-
'waiting_for_in_transit',
|
|
6842
|
-
'waiting_for_next_payout_date',
|
|
6843
|
-
'external_fulfillment_missing_tracking_info',
|
|
6844
|
-
'waiting_for_positive_account_balance',
|
|
6845
|
-
]);
|
|
6846
|
-
|
|
6847
|
-
T['io.flow.v0.models.pending_transaction'] = PropTypes.exact({
|
|
6848
|
-
id: PropTypes.string.isRequired,
|
|
6849
|
-
reason: T['io.flow.v0.enums.transaction_payout_pending_reason'].isRequired,
|
|
6850
|
-
reason_set_at: PropTypes.string.isRequired,
|
|
6851
|
-
});
|
|
6852
|
-
|
|
6853
|
-
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
6854
|
-
id: PropTypes.string.isRequired,
|
|
6855
|
-
});
|
|
6856
|
-
|
|
6857
|
-
T['io.flow.v0.models.organization_transaction_payout'] = PropTypes.exact({
|
|
6858
|
-
transaction: T['io.flow.v0.models.transaction_reference'].isRequired,
|
|
6859
|
-
waiting_for: T['io.flow.v0.enums.transaction_payout_pending_reason'],
|
|
6860
|
-
payout: T['io.flow.v0.models.payout_reference'],
|
|
6861
|
-
});
|
|
6862
|
-
|
|
6863
|
-
T['io.flow.v0.models.channel_transaction_payout'] = PropTypes.exact({
|
|
6864
|
-
transaction: T['io.flow.v0.models.transaction_reference'].isRequired,
|
|
6865
|
-
waiting_for: T['io.flow.v0.enums.transaction_payout_pending_reason'],
|
|
6866
|
-
payout: T['io.flow.v0.models.payout_reference'],
|
|
6867
|
-
});
|
|
6868
|
-
|
|
6869
6787
|
T['io.flow.v0.enums.withholding_deduction_type'] = PropTypes.oneOf(['tax', 'duty', 'freight', 'insurance']);
|
|
6870
6788
|
|
|
6871
6789
|
T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
@@ -6878,8 +6796,14 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
6878
6796
|
'transfer',
|
|
6879
6797
|
]);
|
|
6880
6798
|
|
|
6799
|
+
T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6800
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6801
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6802
|
+
});
|
|
6803
|
+
|
|
6881
6804
|
T['io.flow.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
6882
6805
|
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
6806
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6883
6807
|
estimate: T['io.flow.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
6884
6808
|
actual: T['io.flow.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
6885
6809
|
});
|
|
@@ -6887,6 +6811,7 @@ T['io.flow.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
|
6887
6811
|
T['io.flow.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
6888
6812
|
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
6889
6813
|
request_method: T['io.flow.v0.enums.label_request_method'],
|
|
6814
|
+
carrier: T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
6890
6815
|
});
|
|
6891
6816
|
|
|
6892
6817
|
T['io.flow.v0.models.billing_discount'] = PropTypes.exact({
|
|
@@ -6953,6 +6878,58 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
|
6953
6878
|
placeholder: PropTypes.string,
|
|
6954
6879
|
});
|
|
6955
6880
|
|
|
6881
|
+
T['io.flow.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
|
|
6882
|
+
'waiting_for_full_refund',
|
|
6883
|
+
'waiting_for_fulfillment',
|
|
6884
|
+
'waiting_for_in_transit',
|
|
6885
|
+
'waiting_for_next_payout_date',
|
|
6886
|
+
'waiting_for_tracking_info',
|
|
6887
|
+
'waiting_for_positive_account_balance',
|
|
6888
|
+
]);
|
|
6889
|
+
|
|
6890
|
+
T['io.flow.v0.models.pending_payout_transaction_timeout'] = PropTypes.exact({
|
|
6891
|
+
created_at: PropTypes.string.isRequired,
|
|
6892
|
+
});
|
|
6893
|
+
|
|
6894
|
+
T['io.flow.v0.models.pending_payout_transaction_reason'] = PropTypes.exact({
|
|
6895
|
+
code: T['io.flow.v0.enums.pending_payout_transaction_reason_code'].isRequired,
|
|
6896
|
+
created_at: PropTypes.string.isRequired,
|
|
6897
|
+
});
|
|
6898
|
+
|
|
6899
|
+
T['io.flow.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
|
|
6900
|
+
id: PropTypes.string.isRequired,
|
|
6901
|
+
reason: T['io.flow.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
6902
|
+
timeout: T['io.flow.v0.models.pending_payout_transaction_timeout'],
|
|
6903
|
+
created_at: PropTypes.string.isRequired,
|
|
6904
|
+
updated_at: PropTypes.string.isRequired,
|
|
6905
|
+
deleted_at: PropTypes.string,
|
|
6906
|
+
});
|
|
6907
|
+
|
|
6908
|
+
T['io.flow.v0.models.organization_pending_payout_transaction_upserted'] = PropTypes.exact({
|
|
6909
|
+
discriminator: PropTypes.oneOf(['organization_pending_payout_transaction_upserted']).isRequired,
|
|
6910
|
+
event_id: PropTypes.string.isRequired,
|
|
6911
|
+
timestamp: PropTypes.string.isRequired,
|
|
6912
|
+
organization: PropTypes.string.isRequired,
|
|
6913
|
+
organization_pending_payout_transaction: T['io.flow.v0.models.organization_pending_payout_transaction'].isRequired,
|
|
6914
|
+
});
|
|
6915
|
+
|
|
6916
|
+
T['io.flow.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
|
|
6917
|
+
id: PropTypes.string.isRequired,
|
|
6918
|
+
reason: T['io.flow.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
6919
|
+
timeout: T['io.flow.v0.models.pending_payout_transaction_timeout'],
|
|
6920
|
+
created_at: PropTypes.string.isRequired,
|
|
6921
|
+
updated_at: PropTypes.string.isRequired,
|
|
6922
|
+
deleted_at: PropTypes.string,
|
|
6923
|
+
});
|
|
6924
|
+
|
|
6925
|
+
T['io.flow.v0.models.channel_pending_payout_transaction_upserted'] = PropTypes.exact({
|
|
6926
|
+
discriminator: PropTypes.oneOf(['channel_pending_payout_transaction_upserted']).isRequired,
|
|
6927
|
+
event_id: PropTypes.string.isRequired,
|
|
6928
|
+
timestamp: PropTypes.string.isRequired,
|
|
6929
|
+
channel_id: PropTypes.string.isRequired,
|
|
6930
|
+
channel_pending_payout_transaction: T['io.flow.v0.models.channel_pending_payout_transaction'].isRequired,
|
|
6931
|
+
});
|
|
6932
|
+
|
|
6956
6933
|
T['io.flow.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
|
|
6957
6934
|
|
|
6958
6935
|
T['io.flow.v0.models.payout_status_failed'] = PropTypes.exact({
|
|
@@ -7078,6 +7055,18 @@ T['io.flow.v0.models.channel_default_bank_account'] = PropTypes.exact({
|
|
|
7078
7055
|
bank_account: T['io.flow.v0.models.bank_account_reference'].isRequired,
|
|
7079
7056
|
});
|
|
7080
7057
|
|
|
7058
|
+
T['io.flow.v0.models.channel_currency_rate'] = PropTypes.exact({
|
|
7059
|
+
id: PropTypes.string.isRequired,
|
|
7060
|
+
value: PropTypes.number.isRequired,
|
|
7061
|
+
});
|
|
7062
|
+
|
|
7063
|
+
T['io.flow.v0.models.channel_currency_pair'] = PropTypes.exact({
|
|
7064
|
+
id: PropTypes.string.isRequired,
|
|
7065
|
+
base: PropTypes.string.isRequired,
|
|
7066
|
+
target: PropTypes.string.isRequired,
|
|
7067
|
+
rate: T['io.flow.v0.models.channel_currency_rate'].isRequired,
|
|
7068
|
+
});
|
|
7069
|
+
|
|
7081
7070
|
T['io.flow.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
|
|
7082
7071
|
|
|
7083
7072
|
T['io.flow.v0.models.channel_reference'] = PropTypes.exact({
|
|
@@ -7364,6 +7353,7 @@ T['io.flow.v0.models.payment_processor'] = PropTypes.exact({
|
|
|
7364
7353
|
processor: PropTypes.string.isRequired,
|
|
7365
7354
|
operation_identifier: T['io.flow.v0.models.payment_processor_identifier'],
|
|
7366
7355
|
account: T['io.flow.v0.models.payment_processor_account'],
|
|
7356
|
+
transaction_details: T['io.flow.v0.unions.payment_processor_transaction_details'],
|
|
7367
7357
|
});
|
|
7368
7358
|
|
|
7369
7359
|
T['io.flow.v0.models.payment_payment_request_reference'] = PropTypes.exact({
|
|
@@ -7533,6 +7523,7 @@ T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
7533
7523
|
T['io.flow.v0.models.transaction_metadata_shipping_label'],
|
|
7534
7524
|
T['io.flow.v0.models.transaction_metadata_channel'],
|
|
7535
7525
|
T['io.flow.v0.models.transaction_metadata_trueup'],
|
|
7526
|
+
T['io.flow.v0.models.transaction_metadata_manual'],
|
|
7536
7527
|
]);
|
|
7537
7528
|
|
|
7538
7529
|
T['io.flow.v0.models.transaction_network_details_card'] = PropTypes.exact({
|
|
@@ -9292,6 +9283,7 @@ T['io.flow.v0.models.line_item'] = PropTypes.exact({
|
|
|
9292
9283
|
T['io.flow.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
9293
9284
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
9294
9285
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
9286
|
+
fuel_surcharge_rate: T['io.flow.v0.unions.fuel_surcharge_rate'],
|
|
9295
9287
|
});
|
|
9296
9288
|
|
|
9297
9289
|
T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = PropTypes.exact({
|
|
@@ -11145,7 +11137,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
|
|
|
11145
11137
|
country_code: PropTypes.string,
|
|
11146
11138
|
});
|
|
11147
11139
|
|
|
11148
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', '
|
|
11140
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
|
|
11149
11141
|
|
|
11150
11142
|
T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
11151
11143
|
'amex',
|
|
@@ -11157,12 +11149,12 @@ T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
|
11157
11149
|
'visa',
|
|
11158
11150
|
]);
|
|
11159
11151
|
|
|
11160
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', '
|
|
11152
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'storePickup', 'servicePickup']);
|
|
11161
11153
|
|
|
11162
11154
|
T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
|
|
11163
11155
|
label: PropTypes.string.isRequired,
|
|
11164
11156
|
detail: PropTypes.string.isRequired,
|
|
11165
|
-
amount: PropTypes.
|
|
11157
|
+
amount: PropTypes.string.isRequired,
|
|
11166
11158
|
identifier: PropTypes.string.isRequired,
|
|
11167
11159
|
});
|
|
11168
11160
|
|
|
@@ -11171,7 +11163,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
|
|
|
11171
11163
|
T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
|
|
11172
11164
|
label: PropTypes.string.isRequired,
|
|
11173
11165
|
type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
|
|
11174
|
-
amount: PropTypes.
|
|
11166
|
+
amount: PropTypes.string.isRequired,
|
|
11175
11167
|
});
|
|
11176
11168
|
|
|
11177
11169
|
T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
|
|
@@ -11557,6 +11549,7 @@ T['io.flow.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
|
11557
11549
|
currency: PropTypes.string.isRequired,
|
|
11558
11550
|
amount: PropTypes.number.isRequired,
|
|
11559
11551
|
fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
|
|
11552
|
+
weight_break: PropTypes.number,
|
|
11560
11553
|
total: PropTypes.number.isRequired,
|
|
11561
11554
|
lane: T['io.flow.v0.models.lane_summary'].isRequired,
|
|
11562
11555
|
});
|
|
@@ -12981,6 +12974,10 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
12981
12974
|
T['io.flow.v0.models.channel_payout_deleted'],
|
|
12982
12975
|
T['io.flow.v0.models.organization_payout_upserted'],
|
|
12983
12976
|
T['io.flow.v0.models.organization_payout_deleted'],
|
|
12977
|
+
T['io.flow.v0.models.channel_pending_payout_transaction_upserted'],
|
|
12978
|
+
T['io.flow.v0.models.channel_pending_payout_transaction_deleted'],
|
|
12979
|
+
T['io.flow.v0.models.organization_pending_payout_transaction_upserted'],
|
|
12980
|
+
T['io.flow.v0.models.organization_pending_payout_transaction_deleted'],
|
|
12984
12981
|
T['io.flow.v0.models.attribute_upserted'],
|
|
12985
12982
|
T['io.flow.v0.models.attribute_deleted'],
|
|
12986
12983
|
T['io.flow.v0.models.attribute_upserted_v2'],
|
|
@@ -13359,6 +13356,10 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
13359
13356
|
'channel_payout_deleted',
|
|
13360
13357
|
'organization_payout_upserted',
|
|
13361
13358
|
'organization_payout_deleted',
|
|
13359
|
+
'channel_pending_payout_transaction_upserted',
|
|
13360
|
+
'channel_pending_payout_transaction_deleted',
|
|
13361
|
+
'organization_pending_payout_transaction_upserted',
|
|
13362
|
+
'organization_pending_payout_transaction_deleted',
|
|
13362
13363
|
'attribute_upserted',
|
|
13363
13364
|
'attribute_deleted',
|
|
13364
13365
|
'attribute_upserted_v2',
|
|
@@ -14072,6 +14073,10 @@ T['io.flow.v0.models.payment_reversal_form'] = PropTypes.exact({
|
|
|
14072
14073
|
currency: PropTypes.string,
|
|
14073
14074
|
});
|
|
14074
14075
|
|
|
14076
|
+
T['io.flow.v0.models.payout_reference'] = PropTypes.exact({
|
|
14077
|
+
id: PropTypes.string.isRequired,
|
|
14078
|
+
});
|
|
14079
|
+
|
|
14075
14080
|
T['io.flow.v0.models.pfs_inventory_status'] = PropTypes.exact({
|
|
14076
14081
|
status: PropTypes.string.isRequired,
|
|
14077
14082
|
});
|
|
@@ -14250,6 +14255,10 @@ T['io.flow.v0.models.token_validation_form'] = PropTypes.exact({
|
|
|
14250
14255
|
token: PropTypes.string.isRequired,
|
|
14251
14256
|
});
|
|
14252
14257
|
|
|
14258
|
+
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
14259
|
+
id: PropTypes.string.isRequired,
|
|
14260
|
+
});
|
|
14261
|
+
|
|
14253
14262
|
T['io.flow.v0.models.transit_window'] = PropTypes.exact({
|
|
14254
14263
|
origin_country: PropTypes.string.isRequired,
|
|
14255
14264
|
destination_country: PropTypes.string.isRequired,
|
|
@@ -14363,7 +14372,6 @@ T['io.flow.stripe.v0.models.customer_request'] = PropTypes.exact({
|
|
|
14363
14372
|
description: PropTypes.string,
|
|
14364
14373
|
});
|
|
14365
14374
|
|
|
14366
|
-
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
|
|
14367
14375
|
T['io.flow.shopify.external.v0.enums.discount_status'] = PropTypes.oneOf(['enabled', 'disabled', 'depleted']);
|
|
14368
14376
|
|
|
14369
14377
|
T['io.flow.shopify.external.v0.enums.event'] = PropTypes.oneOf([
|
|
@@ -14473,10 +14481,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
14473
14481
|
paymentData: PropTypes.object.isRequired,
|
|
14474
14482
|
});
|
|
14475
14483
|
|
|
14476
|
-
T['io.flow.billing.true.up.v0.models.label_invoice_response_file_form'] = PropTypes.exact({
|
|
14477
|
-
url: PropTypes.string.isRequired,
|
|
14478
|
-
});
|
|
14479
|
-
|
|
14480
14484
|
export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
|
|
14481
14485
|
export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
|
|
14482
14486
|
export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
|
|
@@ -14715,6 +14719,8 @@ export const channelBankAccount = T['io.flow.v0.models.channel_bank_account'];
|
|
|
14715
14719
|
export const channelCurrency = T['io.flow.v0.models.channel_currency'];
|
|
14716
14720
|
export const channelCurrencyCapability = T['io.flow.v0.enums.channel_currency_capability'];
|
|
14717
14721
|
export const channelCurrencyDeleted = T['io.flow.v0.models.channel_currency_deleted'];
|
|
14722
|
+
export const channelCurrencyPair = T['io.flow.v0.models.channel_currency_pair'];
|
|
14723
|
+
export const channelCurrencyRate = T['io.flow.v0.models.channel_currency_rate'];
|
|
14718
14724
|
export const channelCurrencyUpserted = T['io.flow.v0.models.channel_currency_upserted'];
|
|
14719
14725
|
export const channelDefaultBankAccount = T['io.flow.v0.models.channel_default_bank_account'];
|
|
14720
14726
|
export const channelDeleted = T['io.flow.v0.models.channel_deleted'];
|
|
@@ -14728,6 +14734,9 @@ export const channelOrganizationUpserted = T['io.flow.v0.models.channel_organiza
|
|
|
14728
14734
|
export const channelPayout = T['io.flow.v0.models.channel_payout'];
|
|
14729
14735
|
export const channelPayoutDeleted = T['io.flow.v0.models.channel_payout_deleted'];
|
|
14730
14736
|
export const channelPayoutUpserted = T['io.flow.v0.models.channel_payout_upserted'];
|
|
14737
|
+
export const channelPendingPayoutTransaction = T['io.flow.v0.models.channel_pending_payout_transaction'];
|
|
14738
|
+
export const channelPendingPayoutTransactionDeleted = T['io.flow.v0.models.channel_pending_payout_transaction_deleted'];
|
|
14739
|
+
export const channelPendingPayoutTransactionUpserted = T['io.flow.v0.models.channel_pending_payout_transaction_upserted'];
|
|
14731
14740
|
export const channelRate = T['io.flow.v0.models.channel_rate'];
|
|
14732
14741
|
export const channelReference = T['io.flow.v0.models.channel_reference'];
|
|
14733
14742
|
export const channelStatement = T['io.flow.v0.models.channel_statement'];
|
|
@@ -14739,7 +14748,6 @@ export const channelTokenReference = T['io.flow.v0.models.channel_token_referenc
|
|
|
14739
14748
|
export const channelTransaction = T['io.flow.v0.models.channel_transaction'];
|
|
14740
14749
|
export const channelTransactionDeleted = T['io.flow.v0.models.channel_transaction_deleted'];
|
|
14741
14750
|
export const channelTransactionDeletedV2 = T['io.flow.v0.models.channel_transaction_deleted_v2'];
|
|
14742
|
-
export const channelTransactionPayout = T['io.flow.v0.models.channel_transaction_payout'];
|
|
14743
14751
|
export const channelTransactionUpserted = T['io.flow.v0.models.channel_transaction_upserted'];
|
|
14744
14752
|
export const channelUpserted = T['io.flow.v0.models.channel_upserted'];
|
|
14745
14753
|
export const channelViesRegistration = T['io.flow.v0.models.channel_vies_registration'];
|
|
@@ -14857,6 +14865,7 @@ export const datetimeWithTimezone = T['io.flow.v0.models.datetime_with_timezone'
|
|
|
14857
14865
|
export const dayOfWeek = T['io.flow.v0.enums.day_of_week'];
|
|
14858
14866
|
export const ddpRatecardFee = T['io.flow.v0.models.ddp_ratecard_fee'];
|
|
14859
14867
|
export const deactivationPutForm = T['io.flow.v0.models.deactivation_put_form'];
|
|
14868
|
+
export const deadWeight = T['io.flow.v0.models.dead_weight'];
|
|
14860
14869
|
export const defaultBankAccountForm = T['io.flow.v0.models.default_bank_account_form'];
|
|
14861
14870
|
export const deliveredDuty = T['io.flow.v0.enums.delivered_duty'];
|
|
14862
14871
|
export const deliveredDutyDisplayType = T['io.flow.v0.enums.delivered_duty_display_type'];
|
|
@@ -14896,6 +14905,7 @@ export const dimension = T['io.flow.v0.models.dimension'];
|
|
|
14896
14905
|
export const dimensionEstimate = T['io.flow.v0.models.dimension_estimate'];
|
|
14897
14906
|
export const dimensionEstimateForm = T['io.flow.v0.models.dimension_estimate_form'];
|
|
14898
14907
|
export const dimensionEstimateVersion = T['io.flow.v0.models.dimension_estimate_version'];
|
|
14908
|
+
export const dimensionalWeight = T['io.flow.v0.models.dimensional_weight'];
|
|
14899
14909
|
export const dimensions = T['io.flow.v0.models.dimensions'];
|
|
14900
14910
|
export const directAuthorizationForm = T['io.flow.v0.models.direct_authorization_form'];
|
|
14901
14911
|
export const directDebit = T['io.flow.v0.models.direct_debit'];
|
|
@@ -15069,6 +15079,9 @@ export const ftpOrganizationSettingsForm = T['io.flow.v0.models.ftp_organization
|
|
|
15069
15079
|
export const ftpServer = T['io.flow.v0.models.ftp_server'];
|
|
15070
15080
|
export const ftpUser = T['io.flow.v0.models.ftp_user'];
|
|
15071
15081
|
export const fuelSurchargeAmountByWeightServiceFee = T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'];
|
|
15082
|
+
export const fuelSurchargeByWeight = T['io.flow.v0.models.fuel_surcharge_by_weight'];
|
|
15083
|
+
export const fuelSurchargePercent = T['io.flow.v0.models.fuel_surcharge_percent'];
|
|
15084
|
+
export const fuelSurchargeRate = T['io.flow.v0.unions.fuel_surcharge_rate'];
|
|
15072
15085
|
export const fuelSurchargeRatecardFee = T['io.flow.v0.models.fuel_surcharge_ratecard_fee'];
|
|
15073
15086
|
export const fuelSurchargeServiceFee = T['io.flow.v0.models.fuel_surcharge_service_fee'];
|
|
15074
15087
|
export const fulfillment = T['io.flow.v0.models.fulfillment'];
|
|
@@ -15222,16 +15235,23 @@ export const knowYourBusinessForm = T['io.flow.v0.unions.know_your_business_form
|
|
|
15222
15235
|
export const knowYourBusinessUsa = T['io.flow.v0.models.know_your_business_usa'];
|
|
15223
15236
|
export const knowYourBusinessUsaForm = T['io.flow.v0.models.know_your_business_usa_form'];
|
|
15224
15237
|
export const kubeHealthcheck = T['io.flow.v0.models.kube-healthcheck'];
|
|
15238
|
+
export const labelBase = T['io.flow.v0.models.label_base'];
|
|
15225
15239
|
export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
|
|
15226
15240
|
export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
|
|
15227
15241
|
export const labelFormatUpserted = T['io.flow.v0.models.label_format_upserted'];
|
|
15228
15242
|
export const labelOrderSummary = T['io.flow.v0.models.label_order_summary'];
|
|
15229
15243
|
export const labelReference = T['io.flow.v0.models.label_reference'];
|
|
15230
15244
|
export const labelRequestMethod = T['io.flow.v0.enums.label_request_method'];
|
|
15245
|
+
export const labelSurcharge = T['io.flow.v0.models.label_surcharge'];
|
|
15246
|
+
export const labelSurchargeDetail = T['io.flow.v0.unions.label_surcharge_detail'];
|
|
15247
|
+
export const labelSurchargeDetailFlat = T['io.flow.v0.models.label_surcharge_detail_flat'];
|
|
15248
|
+
export const labelSurchargeDetailPerWeightUnit = T['io.flow.v0.models.label_surcharge_detail_per_weight_unit'];
|
|
15249
|
+
export const labelSurchargeDetailPercentage = T['io.flow.v0.models.label_surcharge_detail_percentage'];
|
|
15231
15250
|
export const labelTrackingCarrierService = T['io.flow.v0.models.label_tracking_carrier_service'];
|
|
15232
15251
|
export const labelTrackingSummary = T['io.flow.v0.models.label_tracking_summary'];
|
|
15233
15252
|
export const labelTrackingSummaryUpdate = T['io.flow.v0.models.label_tracking_summary_update'];
|
|
15234
15253
|
export const labelTriggerMethod = T['io.flow.v0.enums.label_trigger_method'];
|
|
15254
|
+
export const labelUnits = T['io.flow.v0.models.label_units'];
|
|
15235
15255
|
export const labelUpserted = T['io.flow.v0.models.label_upserted'];
|
|
15236
15256
|
export const labelUpsertedV2 = T['io.flow.v0.models.label_upserted_v2'];
|
|
15237
15257
|
export const landedCostItem = T['io.flow.v0.models.landed_cost_item'];
|
|
@@ -15495,6 +15515,9 @@ export const organizationPaymentMethodTag = T['io.flow.v0.enums.organization_pay
|
|
|
15495
15515
|
export const organizationPayout = T['io.flow.v0.models.organization_payout'];
|
|
15496
15516
|
export const organizationPayoutDeleted = T['io.flow.v0.models.organization_payout_deleted'];
|
|
15497
15517
|
export const organizationPayoutUpserted = T['io.flow.v0.models.organization_payout_upserted'];
|
|
15518
|
+
export const organizationPendingPayoutTransaction = T['io.flow.v0.models.organization_pending_payout_transaction'];
|
|
15519
|
+
export const organizationPendingPayoutTransactionDeleted = T['io.flow.v0.models.organization_pending_payout_transaction_deleted'];
|
|
15520
|
+
export const organizationPendingPayoutTransactionUpserted = T['io.flow.v0.models.organization_pending_payout_transaction_upserted'];
|
|
15498
15521
|
export const organizationPutForm = T['io.flow.v0.models.organization_put_form'];
|
|
15499
15522
|
export const organizationRatesData = T['io.flow.v0.models.organization_rates_data'];
|
|
15500
15523
|
export const organizationRatesPublished = T['io.flow.v0.models.organization_rates_published'];
|
|
@@ -15510,7 +15533,6 @@ export const organizationTokenReference = T['io.flow.v0.models.organization_toke
|
|
|
15510
15533
|
export const organizationTokenV2 = T['io.flow.v0.models.organization_token_v2'];
|
|
15511
15534
|
export const organizationTokenV2Reference = T['io.flow.v0.models.organization_token_v2_reference'];
|
|
15512
15535
|
export const organizationTransactionDeleted = T['io.flow.v0.models.organization_transaction_deleted'];
|
|
15513
|
-
export const organizationTransactionPayout = T['io.flow.v0.models.organization_transaction_payout'];
|
|
15514
15536
|
export const organizationTransactionUpserted = T['io.flow.v0.models.organization_transaction_upserted'];
|
|
15515
15537
|
export const organizationType = T['io.flow.v0.enums.organization_type'];
|
|
15516
15538
|
export const organizationUpserted = T['io.flow.v0.models.organization_upserted'];
|
|
@@ -15627,6 +15649,8 @@ export const paymentProcessorAccount = T['io.flow.v0.models.payment_processor_ac
|
|
|
15627
15649
|
export const paymentProcessorAccountReference = T['io.flow.v0.models.payment_processor_account_reference'];
|
|
15628
15650
|
export const paymentProcessorIdentifier = T['io.flow.v0.models.payment_processor_identifier'];
|
|
15629
15651
|
export const paymentProcessorReference = T['io.flow.v0.models.payment_processor_reference'];
|
|
15652
|
+
export const paymentProcessorTransactionDetails = T['io.flow.v0.unions.payment_processor_transaction_details'];
|
|
15653
|
+
export const paymentProcessorTransactionDetailsCard = T['io.flow.v0.models.payment_processor_transaction_details_card'];
|
|
15630
15654
|
export const paymentReference = T['io.flow.v0.models.payment_reference'];
|
|
15631
15655
|
export const paymentRefund = T['io.flow.v0.models.payment_refund'];
|
|
15632
15656
|
export const paymentRefundForm = T['io.flow.v0.models.payment_refund_form'];
|
|
@@ -15671,7 +15695,9 @@ export const paypalAuthorizationForm = T['io.flow.v0.models.paypal_authorization
|
|
|
15671
15695
|
export const peakSurchargeByWeightServiceFee = T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'];
|
|
15672
15696
|
export const peakSurchargeRatecardFee = T['io.flow.v0.models.peak_surcharge_ratecard_fee'];
|
|
15673
15697
|
export const peakSurchargeServiceFee = T['io.flow.v0.models.peak_surcharge_service_fee'];
|
|
15674
|
-
export const
|
|
15698
|
+
export const pendingPayoutTransactionReason = T['io.flow.v0.models.pending_payout_transaction_reason'];
|
|
15699
|
+
export const pendingPayoutTransactionReasonCode = T['io.flow.v0.enums.pending_payout_transaction_reason_code'];
|
|
15700
|
+
export const pendingPayoutTransactionTimeout = T['io.flow.v0.models.pending_payout_transaction_timeout'];
|
|
15675
15701
|
export const percentMargin = T['io.flow.v0.models.percent_margin'];
|
|
15676
15702
|
export const permissionAudit = T['io.flow.v0.models.permission_audit'];
|
|
15677
15703
|
export const permissionCheck = T['io.flow.v0.models.permission_check'];
|
|
@@ -16138,11 +16164,13 @@ export const transactionMetadata = T['io.flow.v0.unions.transaction_metadata'];
|
|
|
16138
16164
|
export const transactionMetadataChannel = T['io.flow.v0.models.transaction_metadata_channel'];
|
|
16139
16165
|
export const transactionMetadataChannelCardMetadata = T['io.flow.v0.models.transaction_metadata_channel_card_metadata'];
|
|
16140
16166
|
export const transactionMetadataChannelCardMetadataIssuerSummary = T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'];
|
|
16167
|
+
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|
|
16168
|
+
export const transactionMetadataOriginalTransaction = T['io.flow.v0.models.transaction_metadata_original_transaction'];
|
|
16141
16169
|
export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
|
|
16170
|
+
export const transactionMetadataShippingLabelCarrier = T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'];
|
|
16142
16171
|
export const transactionMetadataTrueup = T['io.flow.v0.models.transaction_metadata_trueup'];
|
|
16143
16172
|
export const transactionMetadataTrueupData = T['io.flow.v0.models.transaction_metadata_trueup_data'];
|
|
16144
16173
|
export const transactionNetworkDetailsCard = T['io.flow.v0.models.transaction_network_details_card'];
|
|
16145
|
-
export const transactionPayoutPendingReason = T['io.flow.v0.enums.transaction_payout_pending_reason'];
|
|
16146
16174
|
export const transactionReference = T['io.flow.v0.models.transaction_reference'];
|
|
16147
16175
|
export const transactionSource = T['io.flow.v0.enums.transaction_source'];
|
|
16148
16176
|
export const transactionUpserted = T['io.flow.v0.models.transaction_upserted'];
|