@flowio/api-internal-prop-types 9.24.88 → 9.24.90
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 +476 -103
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +476 -103
- package/src/api-internal.js +690 -246
package/src/api-internal.js
CHANGED
|
@@ -95,6 +95,8 @@ T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = P
|
|
|
95
95
|
'merchant_failed_kyb_review',
|
|
96
96
|
]);
|
|
97
97
|
|
|
98
|
+
T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
|
|
99
|
+
|
|
98
100
|
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
99
101
|
continue_shopping: PropTypes.string,
|
|
100
102
|
confirmation: PropTypes.string,
|
|
@@ -708,8 +710,6 @@ T['io.flow.billing.internal.v0.models.carrier_charge_reference'] = PropTypes.exa
|
|
|
708
710
|
id: PropTypes.string.isRequired,
|
|
709
711
|
});
|
|
710
712
|
|
|
711
|
-
T['io.flow.billing.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
|
|
712
|
-
|
|
713
713
|
T['io.flow.billing.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
714
714
|
id: PropTypes.string.isRequired,
|
|
715
715
|
});
|
|
@@ -730,15 +730,7 @@ T['io.flow.billing.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
|
730
730
|
reason: PropTypes.string.isRequired,
|
|
731
731
|
});
|
|
732
732
|
|
|
733
|
-
T['io.flow.billing.internal.v0.
|
|
734
|
-
id: PropTypes.string.isRequired,
|
|
735
|
-
});
|
|
736
|
-
|
|
737
|
-
T['io.flow.billing.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
|
|
738
|
-
id: PropTypes.string.isRequired,
|
|
739
|
-
batch: T['io.flow.billing.internal.v0.models.billing_statement_batch_reference'].isRequired,
|
|
740
|
-
statement: T['io.flow.billing.internal.v0.models.billing_statement_reference'].isRequired,
|
|
741
|
-
});
|
|
733
|
+
T['io.flow.billing.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
|
|
742
734
|
|
|
743
735
|
T['io.flow.billing.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
744
736
|
'invoice',
|
|
@@ -824,10 +816,23 @@ T['io.flow.billing.internal.v0.models.account_processing_rates_form'] = PropType
|
|
|
824
816
|
processing_rates: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.account_processing_rate_form']).isRequired,
|
|
825
817
|
});
|
|
826
818
|
|
|
819
|
+
T['io.flow.billing.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'invalid_bank_account']);
|
|
820
|
+
|
|
821
|
+
T['io.flow.billing.internal.v0.models.account_payment_hold_form'] = PropTypes.exact({
|
|
822
|
+
account_id: PropTypes.string.isRequired,
|
|
823
|
+
reason: T['io.flow.billing.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
824
|
+
});
|
|
825
|
+
|
|
827
826
|
T['io.flow.billing.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
828
827
|
id: PropTypes.string.isRequired,
|
|
829
828
|
});
|
|
830
829
|
|
|
830
|
+
T['io.flow.billing.internal.v0.models.account_payment_hold'] = PropTypes.exact({
|
|
831
|
+
id: PropTypes.string.isRequired,
|
|
832
|
+
account: T['io.flow.billing.internal.v0.models.simple_account_reference'].isRequired,
|
|
833
|
+
reason: T['io.flow.billing.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
834
|
+
});
|
|
835
|
+
|
|
831
836
|
T['io.flow.billing.internal.v0.models.account_contact'] = PropTypes.exact({
|
|
832
837
|
id: PropTypes.string.isRequired,
|
|
833
838
|
email: PropTypes.string.isRequired,
|
|
@@ -2301,7 +2306,7 @@ T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'] = PropTyp
|
|
|
2301
2306
|
account_number: PropTypes.string.isRequired,
|
|
2302
2307
|
});
|
|
2303
2308
|
|
|
2304
|
-
T['io.flow.billing.reporting.v0.enums.revenue_record_type'] = PropTypes.oneOf(['sales', 'refund']);
|
|
2309
|
+
T['io.flow.billing.reporting.v0.enums.revenue_record_type'] = PropTypes.oneOf(['pending', 'sales', 'refund']);
|
|
2305
2310
|
|
|
2306
2311
|
T['io.flow.billing.reporting.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
|
|
2307
2312
|
entity: PropTypes.number.isRequired,
|
|
@@ -5107,6 +5112,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
|
|
|
5107
5112
|
channel_id: PropTypes.string.isRequired,
|
|
5108
5113
|
external_order_reference: PropTypes.string.isRequired,
|
|
5109
5114
|
payment_request_id: PropTypes.string,
|
|
5115
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
5110
5116
|
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
5111
5117
|
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
5112
5118
|
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
@@ -6430,6 +6436,16 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
|
6430
6436
|
type: PropTypes.string,
|
|
6431
6437
|
});
|
|
6432
6438
|
|
|
6439
|
+
T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
|
|
6440
|
+
day: PropTypes.number.isRequired,
|
|
6441
|
+
month: PropTypes.number.isRequired,
|
|
6442
|
+
year: PropTypes.number.isRequired,
|
|
6443
|
+
});
|
|
6444
|
+
|
|
6445
|
+
T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
|
|
6446
|
+
dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
|
|
6447
|
+
});
|
|
6448
|
+
|
|
6433
6449
|
T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
|
|
6434
6450
|
exp_month: PropTypes.string.isRequired,
|
|
6435
6451
|
exp_year: PropTypes.string.isRequired,
|
|
@@ -6453,10 +6469,6 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
|
|
|
6453
6469
|
mcc: PropTypes.string,
|
|
6454
6470
|
});
|
|
6455
6471
|
|
|
6456
|
-
T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
|
|
6457
|
-
card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
|
|
6458
|
-
});
|
|
6459
|
-
|
|
6460
6472
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
6461
6473
|
network: PropTypes.string,
|
|
6462
6474
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -6476,11 +6488,6 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
|
6476
6488
|
]);
|
|
6477
6489
|
|
|
6478
6490
|
T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
|
|
6479
|
-
|
|
6480
|
-
T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
6481
|
-
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
6482
|
-
});
|
|
6483
|
-
|
|
6484
6491
|
T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
6485
6492
|
T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
6486
6493
|
|
|
@@ -6498,6 +6505,40 @@ T['io.flow.stripe.v0.models.payment_intent_cancellation_form'] = PropTypes.exact
|
|
|
6498
6505
|
cancellation_reason: T['io.flow.stripe.v0.enums.cancellation_reason'],
|
|
6499
6506
|
});
|
|
6500
6507
|
|
|
6508
|
+
T['io.flow.stripe.v0.models.marketplace_seller_info'] = PropTypes.exact({
|
|
6509
|
+
name: PropTypes.string.isRequired,
|
|
6510
|
+
id: PropTypes.string,
|
|
6511
|
+
product_category: PropTypes.string,
|
|
6512
|
+
});
|
|
6513
|
+
|
|
6514
|
+
T['io.flow.stripe.v0.models.payment_details'] = PropTypes.exact({
|
|
6515
|
+
marketplace_seller_info: T['io.flow.stripe.v0.models.marketplace_seller_info'],
|
|
6516
|
+
});
|
|
6517
|
+
|
|
6518
|
+
T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exact({
|
|
6519
|
+
capture_method: T['io.flow.stripe.v0.enums.capture_method'],
|
|
6520
|
+
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
6521
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6522
|
+
payment_details: T['io.flow.stripe.v0.models.payment_details'],
|
|
6523
|
+
});
|
|
6524
|
+
|
|
6525
|
+
T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
|
|
6526
|
+
card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
|
|
6527
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
|
|
6528
|
+
});
|
|
6529
|
+
|
|
6530
|
+
T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
6531
|
+
capture_method: T['io.flow.stripe.v0.enums.capture_method'],
|
|
6532
|
+
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
6533
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6534
|
+
payment_details: T['io.flow.stripe.v0.models.payment_details'],
|
|
6535
|
+
});
|
|
6536
|
+
|
|
6537
|
+
T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
6538
|
+
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
6539
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
|
|
6540
|
+
});
|
|
6541
|
+
|
|
6501
6542
|
T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
|
|
6502
6543
|
|
|
6503
6544
|
T['io.flow.stripe.v0.models.order_item_request'] = PropTypes.exact({
|
|
@@ -6561,6 +6602,13 @@ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
|
|
|
6561
6602
|
phone: PropTypes.string,
|
|
6562
6603
|
});
|
|
6563
6604
|
|
|
6605
|
+
T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
|
|
6606
|
+
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
6607
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6608
|
+
metadata: PropTypes.object,
|
|
6609
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
6610
|
+
});
|
|
6611
|
+
|
|
6564
6612
|
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
6565
6613
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
6566
6614
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -6568,7 +6616,17 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
|
6568
6616
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6569
6617
|
});
|
|
6570
6618
|
|
|
6571
|
-
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
|
|
6619
|
+
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
|
|
6620
|
+
T['io.flow.stripe.v0.models.payment_method_form_card'],
|
|
6621
|
+
T['io.flow.stripe.v0.models.payment_method_form_klarna'],
|
|
6622
|
+
]);
|
|
6623
|
+
|
|
6624
|
+
T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
6625
|
+
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
6626
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6627
|
+
metadata: PropTypes.object,
|
|
6628
|
+
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
6629
|
+
});
|
|
6572
6630
|
|
|
6573
6631
|
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
6574
6632
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
@@ -6577,7 +6635,10 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
|
6577
6635
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6578
6636
|
});
|
|
6579
6637
|
|
|
6580
|
-
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
6638
|
+
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
6639
|
+
T['io.flow.stripe.v0.models.payment_method_data_card'],
|
|
6640
|
+
T['io.flow.stripe.v0.models.payment_method_data_klarna'],
|
|
6641
|
+
]);
|
|
6581
6642
|
|
|
6582
6643
|
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
6583
6644
|
off_session: PropTypes.bool,
|
|
@@ -7078,6 +7139,7 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
7078
7139
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
7079
7140
|
card: T['io.flow.stripe.v0.models.payment_method_card_details'],
|
|
7080
7141
|
card_present: PropTypes.object,
|
|
7142
|
+
klarna: PropTypes.object,
|
|
7081
7143
|
created: PropTypes.number.isRequired,
|
|
7082
7144
|
customer: PropTypes.string,
|
|
7083
7145
|
livemode: PropTypes.bool.isRequired,
|
|
@@ -8689,6 +8751,7 @@ T['io.flow.billing.internal.v0.models.billing_organization_settings'] = PropType
|
|
|
8689
8751
|
b2b_tax_remittance_days: PropTypes.number,
|
|
8690
8752
|
mor_fee: PropTypes.number,
|
|
8691
8753
|
duty_guarantee_fee: PropTypes.number,
|
|
8754
|
+
negative_balance_fee: PropTypes.number,
|
|
8692
8755
|
order_service_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
|
|
8693
8756
|
label_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
|
|
8694
8757
|
});
|
|
@@ -8706,7 +8769,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8706
8769
|
merchant_of_record_fee: PropTypes.number,
|
|
8707
8770
|
duty_guarantee_fee: PropTypes.number,
|
|
8708
8771
|
transfer_fee: PropTypes.number,
|
|
8709
|
-
|
|
8772
|
+
negative_balance_fee: PropTypes.number,
|
|
8710
8773
|
order_service_fee: T['io.flow.billing.internal.v0.models.tiered_fee'],
|
|
8711
8774
|
label_fees: T['io.flow.billing.internal.v0.models.account_setting_label_fees'],
|
|
8712
8775
|
charge_label_cost_directly: PropTypes.bool.isRequired,
|
|
@@ -8735,7 +8798,12 @@ T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
|
8735
8798
|
description: PropTypes.string,
|
|
8736
8799
|
});
|
|
8737
8800
|
|
|
8738
|
-
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
8801
|
+
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
8802
|
+
'provided',
|
|
8803
|
+
'item_dimensions_estimated',
|
|
8804
|
+
'dimensions_estimated',
|
|
8805
|
+
'default_item_dimensions_estimated',
|
|
8806
|
+
]);
|
|
8739
8807
|
|
|
8740
8808
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
8741
8809
|
id: PropTypes.string.isRequired,
|
|
@@ -8830,6 +8898,7 @@ T['io.flow.permission.v0.enums.flow_role'] = PropTypes.oneOf([
|
|
|
8830
8898
|
'organization_fulfillment',
|
|
8831
8899
|
'organization_marketing',
|
|
8832
8900
|
'organization_finance',
|
|
8901
|
+
'organization_classification',
|
|
8833
8902
|
'flow_operations',
|
|
8834
8903
|
'channel_admin',
|
|
8835
8904
|
'channel_organization_admin',
|
|
@@ -9782,6 +9851,13 @@ T['io.flow.internal.v0.unions.feature_task_data'] = PropTypes.oneOfType([
|
|
|
9782
9851
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'],
|
|
9783
9852
|
]);
|
|
9784
9853
|
|
|
9854
|
+
T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.exact({
|
|
9855
|
+
discriminator: PropTypes.oneOf(['tracking_processing_error_deleted']).isRequired,
|
|
9856
|
+
event_id: PropTypes.string.isRequired,
|
|
9857
|
+
timestamp: PropTypes.string.isRequired,
|
|
9858
|
+
id: PropTypes.string.isRequired,
|
|
9859
|
+
});
|
|
9860
|
+
|
|
9785
9861
|
T['io.flow.internal.v0.models.tam_item_deleted'] = PropTypes.exact({
|
|
9786
9862
|
discriminator: PropTypes.oneOf(['tam_item_deleted']).isRequired,
|
|
9787
9863
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9796,6 +9872,13 @@ T['io.flow.internal.v0.models.shruti_demo_item_deleted'] = PropTypes.exact({
|
|
|
9796
9872
|
id: PropTypes.string.isRequired,
|
|
9797
9873
|
});
|
|
9798
9874
|
|
|
9875
|
+
T['io.flow.internal.v0.models.matias_item_deleted'] = PropTypes.exact({
|
|
9876
|
+
discriminator: PropTypes.oneOf(['matias_item_deleted']).isRequired,
|
|
9877
|
+
event_id: PropTypes.string.isRequired,
|
|
9878
|
+
timestamp: PropTypes.string.isRequired,
|
|
9879
|
+
id: PropTypes.string.isRequired,
|
|
9880
|
+
});
|
|
9881
|
+
|
|
9799
9882
|
T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
|
|
9800
9883
|
discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
|
|
9801
9884
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10032,6 +10115,22 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
10032
10115
|
id: PropTypes.string.isRequired,
|
|
10033
10116
|
});
|
|
10034
10117
|
|
|
10118
|
+
T['io.flow.internal.v0.models.order_validation_deleted'] = PropTypes.exact({
|
|
10119
|
+
discriminator: PropTypes.oneOf(['order_validation_deleted']).isRequired,
|
|
10120
|
+
event_id: PropTypes.string.isRequired,
|
|
10121
|
+
timestamp: PropTypes.string.isRequired,
|
|
10122
|
+
organization: PropTypes.string.isRequired,
|
|
10123
|
+
id: PropTypes.string.isRequired,
|
|
10124
|
+
});
|
|
10125
|
+
|
|
10126
|
+
T['io.flow.internal.v0.models.order_validation_failure_deleted'] = PropTypes.exact({
|
|
10127
|
+
discriminator: PropTypes.oneOf(['order_validation_failure_deleted']).isRequired,
|
|
10128
|
+
event_id: PropTypes.string.isRequired,
|
|
10129
|
+
timestamp: PropTypes.string.isRequired,
|
|
10130
|
+
organization: PropTypes.string.isRequired,
|
|
10131
|
+
id: PropTypes.string.isRequired,
|
|
10132
|
+
});
|
|
10133
|
+
|
|
10035
10134
|
T['io.flow.internal.v0.models.label_request_error_deleted'] = PropTypes.exact({
|
|
10036
10135
|
discriminator: PropTypes.oneOf(['label_request_error_deleted']).isRequired,
|
|
10037
10136
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10229,20 +10328,6 @@ T['io.flow.internal.v0.models.standalone_attachment_deleted'] = PropTypes.exact(
|
|
|
10229
10328
|
id: PropTypes.string.isRequired,
|
|
10230
10329
|
});
|
|
10231
10330
|
|
|
10232
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'] = PropTypes.exact({
|
|
10233
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_deleted']).isRequired,
|
|
10234
|
-
event_id: PropTypes.string.isRequired,
|
|
10235
|
-
timestamp: PropTypes.string.isRequired,
|
|
10236
|
-
id: PropTypes.string.isRequired,
|
|
10237
|
-
});
|
|
10238
|
-
|
|
10239
|
-
T['io.flow.internal.v0.models.billing_statement_batch_deleted'] = PropTypes.exact({
|
|
10240
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_deleted']).isRequired,
|
|
10241
|
-
event_id: PropTypes.string.isRequired,
|
|
10242
|
-
timestamp: PropTypes.string.isRequired,
|
|
10243
|
-
id: PropTypes.string.isRequired,
|
|
10244
|
-
});
|
|
10245
|
-
|
|
10246
10331
|
T['io.flow.internal.v0.models.billing_organization_settings_deleted'] = PropTypes.exact({
|
|
10247
10332
|
discriminator: PropTypes.oneOf(['billing_organization_settings_deleted']).isRequired,
|
|
10248
10333
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10642,6 +10727,14 @@ T['io.flow.internal.v0.models.merchant_deleted'] = PropTypes.exact({
|
|
|
10642
10727
|
id: PropTypes.string.isRequired,
|
|
10643
10728
|
});
|
|
10644
10729
|
|
|
10730
|
+
T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
|
|
10731
|
+
discriminator: PropTypes.oneOf(['fulfillment_deleted']).isRequired,
|
|
10732
|
+
event_id: PropTypes.string.isRequired,
|
|
10733
|
+
timestamp: PropTypes.string.isRequired,
|
|
10734
|
+
organization: PropTypes.string.isRequired,
|
|
10735
|
+
id: PropTypes.string.isRequired,
|
|
10736
|
+
});
|
|
10737
|
+
|
|
10645
10738
|
T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
10646
10739
|
discriminator: PropTypes.oneOf(['index_assignment_deleted']).isRequired,
|
|
10647
10740
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10745,6 +10838,11 @@ T['io.flow.internal.v0.unions.channel_rate_metadata'] = PropTypes.oneOfType([
|
|
|
10745
10838
|
T['io.flow.internal.v0.models.channel_rate_metadata_rate'],
|
|
10746
10839
|
]);
|
|
10747
10840
|
|
|
10841
|
+
T['io.flow.internal.v0.models.message_stamp'] = PropTypes.exact({
|
|
10842
|
+
discriminator: PropTypes.oneOf(['message_stamp']).isRequired,
|
|
10843
|
+
message: PropTypes.string.isRequired,
|
|
10844
|
+
});
|
|
10845
|
+
|
|
10748
10846
|
T['io.flow.internal.v0.models.blaze_payment_auth_complete_message'] = PropTypes.exact({
|
|
10749
10847
|
discriminator: PropTypes.oneOf(['payment_auth_complete']).isRequired,
|
|
10750
10848
|
});
|
|
@@ -10922,6 +11020,33 @@ T['io.flow.internal.v0.models.tracking_response_upserted'] = PropTypes.exact({
|
|
|
10922
11020
|
tracking_response: T['io.flow.internal.v0.models.tracking_response'].isRequired,
|
|
10923
11021
|
});
|
|
10924
11022
|
|
|
11023
|
+
T['io.flow.internal.v0.enums.tracking_processing_failure_classification'] = PropTypes.oneOf([
|
|
11024
|
+
'tracking_expired',
|
|
11025
|
+
'expired_tracking_number_new_event',
|
|
11026
|
+
'new_tracking_number_expired_event',
|
|
11027
|
+
'origin_mismatch',
|
|
11028
|
+
'destination_mismatch',
|
|
11029
|
+
'other',
|
|
11030
|
+
]);
|
|
11031
|
+
|
|
11032
|
+
T['io.flow.internal.v0.models.tracking_processing_error'] = PropTypes.exact({
|
|
11033
|
+
id: PropTypes.string.isRequired,
|
|
11034
|
+
aftership_webhook_id: PropTypes.string.isRequired,
|
|
11035
|
+
carrier_id: PropTypes.string.isRequired,
|
|
11036
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
11037
|
+
organization_id: PropTypes.string,
|
|
11038
|
+
tracking_label_id: PropTypes.string,
|
|
11039
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11040
|
+
failure_classification: T['io.flow.internal.v0.enums.tracking_processing_failure_classification'].isRequired,
|
|
11041
|
+
});
|
|
11042
|
+
|
|
11043
|
+
T['io.flow.internal.v0.models.tracking_processing_error_upserted'] = PropTypes.exact({
|
|
11044
|
+
discriminator: PropTypes.oneOf(['tracking_processing_error_upserted']).isRequired,
|
|
11045
|
+
event_id: PropTypes.string.isRequired,
|
|
11046
|
+
timestamp: PropTypes.string.isRequired,
|
|
11047
|
+
tracking_processing_error: T['io.flow.internal.v0.models.tracking_processing_error'].isRequired,
|
|
11048
|
+
});
|
|
11049
|
+
|
|
10925
11050
|
T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
|
|
10926
11051
|
country: PropTypes.string.isRequired,
|
|
10927
11052
|
});
|
|
@@ -11291,7 +11416,7 @@ T['io.flow.internal.v0.models.spot_rate_upserted'] = PropTypes.exact({
|
|
|
11291
11416
|
spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
|
|
11292
11417
|
});
|
|
11293
11418
|
|
|
11294
|
-
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['
|
|
11419
|
+
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['task']);
|
|
11295
11420
|
|
|
11296
11421
|
T['io.flow.internal.v0.models.snooze_source'] = PropTypes.exact({
|
|
11297
11422
|
type: T['io.flow.internal.v0.enums.snooze_source_type'].isRequired,
|
|
@@ -11848,6 +11973,7 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
|
|
|
11848
11973
|
'business_street_address_is_blank',
|
|
11849
11974
|
'business_street_address_is_po_box',
|
|
11850
11975
|
'exception_merchant',
|
|
11976
|
+
'application_missing',
|
|
11851
11977
|
]);
|
|
11852
11978
|
|
|
11853
11979
|
T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
@@ -12114,7 +12240,7 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
12114
12240
|
submitted_at: PropTypes.string.isRequired,
|
|
12115
12241
|
});
|
|
12116
12242
|
|
|
12117
|
-
T['io.flow.internal.v0.enums.revenue_record_type'] = PropTypes.oneOf(['sales', 'refund']);
|
|
12243
|
+
T['io.flow.internal.v0.enums.revenue_record_type'] = PropTypes.oneOf(['pending', 'sales', 'refund']);
|
|
12118
12244
|
|
|
12119
12245
|
T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
12120
12246
|
id: PropTypes.string.isRequired,
|
|
@@ -13117,6 +13243,16 @@ T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
|
|
|
13117
13243
|
service_id: PropTypes.string.isRequired,
|
|
13118
13244
|
status: T['io.flow.internal.v0.enums.order_validation_status'].isRequired,
|
|
13119
13245
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
13246
|
+
created_at: PropTypes.string.isRequired,
|
|
13247
|
+
resolved_at: PropTypes.string,
|
|
13248
|
+
});
|
|
13249
|
+
|
|
13250
|
+
T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
13251
|
+
discriminator: PropTypes.oneOf(['order_validation_upserted']).isRequired,
|
|
13252
|
+
event_id: PropTypes.string.isRequired,
|
|
13253
|
+
timestamp: PropTypes.string.isRequired,
|
|
13254
|
+
organization: PropTypes.string.isRequired,
|
|
13255
|
+
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13120
13256
|
});
|
|
13121
13257
|
|
|
13122
13258
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
@@ -13357,6 +13493,11 @@ T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
|
13357
13493
|
id: PropTypes.string.isRequired,
|
|
13358
13494
|
});
|
|
13359
13495
|
|
|
13496
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_disabled'] = PropTypes.exact({
|
|
13497
|
+
discriminator: PropTypes.oneOf(['merchant_disabled']).isRequired,
|
|
13498
|
+
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'].isRequired,
|
|
13499
|
+
});
|
|
13500
|
+
|
|
13360
13501
|
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
|
|
13361
13502
|
discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
|
|
13362
13503
|
reason: PropTypes.string.isRequired,
|
|
@@ -13405,6 +13546,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
|
|
|
13405
13546
|
T['io.flow.organization.onboarding.state.v0.models.setup_completed'],
|
|
13406
13547
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'],
|
|
13407
13548
|
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'],
|
|
13549
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_disabled'],
|
|
13408
13550
|
]);
|
|
13409
13551
|
|
|
13410
13552
|
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
|
|
@@ -13505,6 +13647,8 @@ T['io.flow.internal.v0.models.merchant_upserted'] = PropTypes.exact({
|
|
|
13505
13647
|
merchant: T['io.flow.internal.v0.models.merchant'].isRequired,
|
|
13506
13648
|
});
|
|
13507
13649
|
|
|
13650
|
+
T['io.flow.internal.v0.enums.matias_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13651
|
+
|
|
13508
13652
|
T['io.flow.shopify.markets.v0.models.shopify_order_metafield'] = PropTypes.exact({
|
|
13509
13653
|
id: PropTypes.number.isRequired,
|
|
13510
13654
|
key: PropTypes.string.isRequired,
|
|
@@ -14521,6 +14665,10 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
14521
14665
|
'emergency',
|
|
14522
14666
|
'peak',
|
|
14523
14667
|
'address_correction',
|
|
14668
|
+
'security',
|
|
14669
|
+
'eei_filing',
|
|
14670
|
+
'fixed_ddp',
|
|
14671
|
+
'fixed_currency_conversion',
|
|
14524
14672
|
]);
|
|
14525
14673
|
|
|
14526
14674
|
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -14629,6 +14777,7 @@ T['io.flow.billing.accounting.v0.models.item_summary'] = PropTypes.exact({
|
|
|
14629
14777
|
number: PropTypes.string.isRequired,
|
|
14630
14778
|
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
14631
14779
|
country_of_origin: PropTypes.string,
|
|
14780
|
+
tarriff_code: PropTypes.string,
|
|
14632
14781
|
inferred: PropTypes.bool,
|
|
14633
14782
|
});
|
|
14634
14783
|
|
|
@@ -14661,6 +14810,7 @@ T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
|
14661
14810
|
number: PropTypes.string.isRequired,
|
|
14662
14811
|
fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
|
|
14663
14812
|
country_of_origin: PropTypes.string,
|
|
14813
|
+
tarriff_code: PropTypes.string,
|
|
14664
14814
|
inferred: PropTypes.bool,
|
|
14665
14815
|
});
|
|
14666
14816
|
|
|
@@ -15378,53 +15528,6 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_organization'] = PropTypes.
|
|
|
15378
15528
|
id: PropTypes.string.isRequired,
|
|
15379
15529
|
});
|
|
15380
15530
|
|
|
15381
|
-
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
15382
|
-
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
15383
|
-
id: PropTypes.string.isRequired,
|
|
15384
|
-
carrier_id: PropTypes.string,
|
|
15385
|
-
carrier_service_id: PropTypes.string,
|
|
15386
|
-
carrier_tracking_number: PropTypes.string,
|
|
15387
|
-
label_id: PropTypes.string,
|
|
15388
|
-
created_at: PropTypes.string,
|
|
15389
|
-
});
|
|
15390
|
-
|
|
15391
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
15392
|
-
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
15393
|
-
id: PropTypes.string.isRequired,
|
|
15394
|
-
carrier_id: PropTypes.string,
|
|
15395
|
-
carrier_service_id: PropTypes.string,
|
|
15396
|
-
carrier_tracking_number: PropTypes.string,
|
|
15397
|
-
label_id: PropTypes.string,
|
|
15398
|
-
created_at: PropTypes.string,
|
|
15399
|
-
});
|
|
15400
|
-
|
|
15401
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
15402
|
-
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
15403
|
-
id: PropTypes.string.isRequired,
|
|
15404
|
-
carrier_id: PropTypes.string,
|
|
15405
|
-
carrier_service_id: PropTypes.string,
|
|
15406
|
-
carrier_tracking_number: PropTypes.string,
|
|
15407
|
-
label_id: PropTypes.string,
|
|
15408
|
-
created_at: PropTypes.string,
|
|
15409
|
-
});
|
|
15410
|
-
|
|
15411
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
15412
|
-
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
15413
|
-
id: PropTypes.string.isRequired,
|
|
15414
|
-
carrier_id: PropTypes.string,
|
|
15415
|
-
carrier_service_id: PropTypes.string,
|
|
15416
|
-
carrier_tracking_number: PropTypes.string,
|
|
15417
|
-
label_id: PropTypes.string,
|
|
15418
|
-
created_at: PropTypes.string,
|
|
15419
|
-
});
|
|
15420
|
-
|
|
15421
|
-
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
15422
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
15423
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
15424
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
15425
|
-
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
15426
|
-
]);
|
|
15427
|
-
|
|
15428
15531
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
15429
15532
|
transaction: PropTypes.number.isRequired,
|
|
15430
15533
|
merchant: PropTypes.number.isRequired,
|
|
@@ -15540,11 +15643,6 @@ T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
|
15540
15643
|
placeholder: PropTypes.string,
|
|
15541
15644
|
});
|
|
15542
15645
|
|
|
15543
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
15544
|
-
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
15545
|
-
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
15546
|
-
});
|
|
15547
|
-
|
|
15548
15646
|
T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
15549
15647
|
adjustment: PropTypes.number.isRequired,
|
|
15550
15648
|
reversal: PropTypes.number.isRequired,
|
|
@@ -15605,11 +15703,6 @@ T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
|
15605
15703
|
province_code: PropTypes.string,
|
|
15606
15704
|
});
|
|
15607
15705
|
|
|
15608
|
-
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
15609
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
15610
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
15611
|
-
]);
|
|
15612
|
-
|
|
15613
15706
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
15614
15707
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
15615
15708
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -16501,6 +16594,9 @@ T['io.flow.internal.v0.models.erp_flow_vendor'] = PropTypes.exact({
|
|
|
16501
16594
|
bank_code: PropTypes.string.isRequired,
|
|
16502
16595
|
id: PropTypes.string.isRequired,
|
|
16503
16596
|
tax_code: PropTypes.string,
|
|
16597
|
+
tax_code_2: PropTypes.string,
|
|
16598
|
+
debit_entry_code: PropTypes.string,
|
|
16599
|
+
credit_entry_code: PropTypes.string,
|
|
16504
16600
|
vat_flag: PropTypes.string,
|
|
16505
16601
|
w_tax_percent: PropTypes.string,
|
|
16506
16602
|
iban: PropTypes.string,
|
|
@@ -17013,6 +17109,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
17013
17109
|
'refund_transactions_ignored_previously_processed_count',
|
|
17014
17110
|
'refund_queued_count',
|
|
17015
17111
|
'refund_transactions_total',
|
|
17112
|
+
'refund_transactions_succeeded_then_failed_count',
|
|
17113
|
+
'refund_transactions_succeeded_then_failed_total',
|
|
17016
17114
|
'reversal_order_cancellations_transactions_count',
|
|
17017
17115
|
'reversal_order_cancellations_transactions_total',
|
|
17018
17116
|
'reversal_external_fulfillment_transactions_count',
|
|
@@ -17039,8 +17137,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
17039
17137
|
'queued_refund_unprocessed_count',
|
|
17040
17138
|
'queued_label_invoice_request_unprocessed_count',
|
|
17041
17139
|
'queued_other_unprocessed_count',
|
|
17042
|
-
'
|
|
17043
|
-
'
|
|
17140
|
+
'task_snooze_count',
|
|
17141
|
+
'task_snooze_ending_in_48_hours_count',
|
|
17044
17142
|
'payouts_scheduled_count',
|
|
17045
17143
|
'payouts_scheduled_total',
|
|
17046
17144
|
'payouts_sent_count',
|
|
@@ -17065,6 +17163,13 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
17065
17163
|
'negative_balance_total_with_order_in_past_30_days',
|
|
17066
17164
|
'negative_balance_total_without_order_in_past_30_days',
|
|
17067
17165
|
'negative_balance_single_account_max',
|
|
17166
|
+
'negative_balance_fee_total',
|
|
17167
|
+
'accounts_with_payment_holds_count',
|
|
17168
|
+
'accounts_with_payment_holds_pending_payment_promise_count',
|
|
17169
|
+
'accounts_with_payment_holds_pending_payment_promise_total',
|
|
17170
|
+
'accounts_with_final_statements_count',
|
|
17171
|
+
'accounts_with_final_statements_pending_transaction_count',
|
|
17172
|
+
'accounts_with_final_statements_pending_transaction_total',
|
|
17068
17173
|
]);
|
|
17069
17174
|
|
|
17070
17175
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -17544,6 +17649,12 @@ T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
|
17544
17649
|
export_control_classification_number: PropTypes.string.isRequired,
|
|
17545
17650
|
});
|
|
17546
17651
|
|
|
17652
|
+
T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
|
|
17653
|
+
id: PropTypes.string.isRequired,
|
|
17654
|
+
label_id: PropTypes.string.isRequired,
|
|
17655
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
|
|
17656
|
+
});
|
|
17657
|
+
|
|
17547
17658
|
T['io.flow.internal.v0.enums.colm_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
17548
17659
|
|
|
17549
17660
|
T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
@@ -21295,6 +21406,9 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
21295
21406
|
'incoterm_dap',
|
|
21296
21407
|
'emergency_situation',
|
|
21297
21408
|
'remote_area_delivery',
|
|
21409
|
+
'customs_clearance_surcharge',
|
|
21410
|
+
'security_surcharge',
|
|
21411
|
+
'duties_fx_surcharge',
|
|
21298
21412
|
]);
|
|
21299
21413
|
|
|
21300
21414
|
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
@@ -22214,6 +22328,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
22214
22328
|
channel_id: PropTypes.string.isRequired,
|
|
22215
22329
|
external_order_reference: PropTypes.string.isRequired,
|
|
22216
22330
|
payment_request_id: PropTypes.string,
|
|
22331
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
22217
22332
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
22218
22333
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
22219
22334
|
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
@@ -22394,6 +22509,7 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge
|
|
|
22394
22509
|
label_created_at: PropTypes.string.isRequired,
|
|
22395
22510
|
carrier_id: PropTypes.string.isRequired,
|
|
22396
22511
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22512
|
+
revenue_share_percentage: PropTypes.number.isRequired,
|
|
22397
22513
|
outbound_transaction_id: PropTypes.string,
|
|
22398
22514
|
});
|
|
22399
22515
|
|
|
@@ -22447,6 +22563,10 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
22447
22563
|
emergency: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22448
22564
|
peak: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22449
22565
|
address_correction: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22566
|
+
security: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22567
|
+
eei_filing: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22568
|
+
fixed_ddp: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22569
|
+
fixed_currency_conversion: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
22450
22570
|
});
|
|
22451
22571
|
|
|
22452
22572
|
T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
@@ -22469,6 +22589,7 @@ T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
|
22469
22589
|
T['io.flow.internal.v0.models.carrier_charge_form_other'] = PropTypes.exact({
|
|
22470
22590
|
discriminator: PropTypes.oneOf(['other']).isRequired,
|
|
22471
22591
|
id: PropTypes.string.isRequired,
|
|
22592
|
+
label_invoice_request_id: PropTypes.string,
|
|
22472
22593
|
reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
|
|
22473
22594
|
organization_id: PropTypes.string.isRequired,
|
|
22474
22595
|
order_number: PropTypes.string.isRequired,
|
|
@@ -22732,6 +22853,18 @@ T['io.flow.internal.v0.models.calculator_dtce_post_body'] = PropTypes.exact({
|
|
|
22732
22853
|
provinceCode: PropTypes.string,
|
|
22733
22854
|
});
|
|
22734
22855
|
|
|
22856
|
+
T['io.flow.internal.v0.models.calculation_stamping_shipping_line'] = PropTypes.exact({
|
|
22857
|
+
first_ship_from: PropTypes.string,
|
|
22858
|
+
duty: PropTypes.number,
|
|
22859
|
+
duty_rate: PropTypes.number,
|
|
22860
|
+
tax: PropTypes.number,
|
|
22861
|
+
tax_rate: PropTypes.number,
|
|
22862
|
+
price: PropTypes.number,
|
|
22863
|
+
duty_rate_on_shipping: PropTypes.number,
|
|
22864
|
+
tax_rate_on_shipping: PropTypes.number,
|
|
22865
|
+
import_fee: PropTypes.number,
|
|
22866
|
+
});
|
|
22867
|
+
|
|
22735
22868
|
T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
|
|
22736
22869
|
item_type: PropTypes.string.isRequired,
|
|
22737
22870
|
gender: T['io.flow.internal.v0.models.attribute_label'],
|
|
@@ -23295,6 +23428,33 @@ T['io.flow.internal.v0.models.bitpay_authentication'] = PropTypes.exact({
|
|
|
23295
23428
|
secret_key_reference: PropTypes.string.isRequired,
|
|
23296
23429
|
});
|
|
23297
23430
|
|
|
23431
|
+
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
23432
|
+
id: PropTypes.string.isRequired,
|
|
23433
|
+
});
|
|
23434
|
+
|
|
23435
|
+
T['io.flow.internal.v0.models.transaction_statement'] = PropTypes.exact({
|
|
23436
|
+
id: PropTypes.string.isRequired,
|
|
23437
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23438
|
+
});
|
|
23439
|
+
|
|
23440
|
+
T['io.flow.internal.v0.models.transaction_statement_upserted'] = PropTypes.exact({
|
|
23441
|
+
discriminator: PropTypes.oneOf(['transaction_statement_upserted']).isRequired,
|
|
23442
|
+
event_id: PropTypes.string.isRequired,
|
|
23443
|
+
timestamp: PropTypes.string.isRequired,
|
|
23444
|
+
transaction_statement: T['io.flow.internal.v0.models.transaction_statement'].isRequired,
|
|
23445
|
+
});
|
|
23446
|
+
|
|
23447
|
+
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
23448
|
+
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23449
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23450
|
+
});
|
|
23451
|
+
|
|
23452
|
+
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
23453
|
+
id: PropTypes.string.isRequired,
|
|
23454
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23455
|
+
reason: PropTypes.string.isRequired,
|
|
23456
|
+
});
|
|
23457
|
+
|
|
23298
23458
|
T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
|
|
23299
23459
|
from: PropTypes.string.isRequired,
|
|
23300
23460
|
to: PropTypes.string.isRequired,
|
|
@@ -23390,6 +23550,11 @@ T['io.flow.internal.v0.models.tracking_deleted'] = PropTypes.exact({
|
|
|
23390
23550
|
tracking: T['io.flow.tracking.v0.models.tracking'].isRequired,
|
|
23391
23551
|
});
|
|
23392
23552
|
|
|
23553
|
+
T['io.flow.internal.v0.models.statement_creation_metadata'] = PropTypes.exact({
|
|
23554
|
+
discriminator: PropTypes.oneOf(['statement_creation_metadata']).isRequired,
|
|
23555
|
+
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
23556
|
+
});
|
|
23557
|
+
|
|
23393
23558
|
T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact({
|
|
23394
23559
|
id: PropTypes.string.isRequired,
|
|
23395
23560
|
range: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
@@ -23456,61 +23621,6 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
|
|
|
23456
23621
|
all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
|
|
23457
23622
|
});
|
|
23458
23623
|
|
|
23459
|
-
T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
23460
|
-
id: PropTypes.string.isRequired,
|
|
23461
|
-
});
|
|
23462
|
-
|
|
23463
|
-
T['io.flow.internal.v0.models.billing_statement_batch_upserted'] = PropTypes.exact({
|
|
23464
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_upserted']).isRequired,
|
|
23465
|
-
event_id: PropTypes.string.isRequired,
|
|
23466
|
-
timestamp: PropTypes.string.isRequired,
|
|
23467
|
-
billing_statement_batch: T['io.flow.internal.v0.models.billing_statement_batch'].isRequired,
|
|
23468
|
-
});
|
|
23469
|
-
|
|
23470
|
-
T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
|
|
23471
|
-
id: PropTypes.string.isRequired,
|
|
23472
|
-
});
|
|
23473
|
-
|
|
23474
|
-
T['io.flow.internal.v0.models.transaction_statement'] = PropTypes.exact({
|
|
23475
|
-
id: PropTypes.string.isRequired,
|
|
23476
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23477
|
-
});
|
|
23478
|
-
|
|
23479
|
-
T['io.flow.internal.v0.models.transaction_statement_upserted'] = PropTypes.exact({
|
|
23480
|
-
discriminator: PropTypes.oneOf(['transaction_statement_upserted']).isRequired,
|
|
23481
|
-
event_id: PropTypes.string.isRequired,
|
|
23482
|
-
timestamp: PropTypes.string.isRequired,
|
|
23483
|
-
transaction_statement: T['io.flow.internal.v0.models.transaction_statement'].isRequired,
|
|
23484
|
-
});
|
|
23485
|
-
|
|
23486
|
-
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
23487
|
-
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23488
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23489
|
-
});
|
|
23490
|
-
|
|
23491
|
-
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
23492
|
-
id: PropTypes.string.isRequired,
|
|
23493
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23494
|
-
reason: PropTypes.string.isRequired,
|
|
23495
|
-
});
|
|
23496
|
-
|
|
23497
|
-
T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
|
|
23498
|
-
id: PropTypes.string.isRequired,
|
|
23499
|
-
});
|
|
23500
|
-
|
|
23501
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
|
|
23502
|
-
id: PropTypes.string.isRequired,
|
|
23503
|
-
batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
|
|
23504
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23505
|
-
});
|
|
23506
|
-
|
|
23507
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
|
|
23508
|
-
discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
|
|
23509
|
-
event_id: PropTypes.string.isRequired,
|
|
23510
|
-
timestamp: PropTypes.string.isRequired,
|
|
23511
|
-
billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
|
|
23512
|
-
});
|
|
23513
|
-
|
|
23514
23624
|
T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
23515
23625
|
'invoice',
|
|
23516
23626
|
'statement',
|
|
@@ -23608,6 +23718,7 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'] = PropTypes.exac
|
|
|
23608
23718
|
processing: PropTypes.number.isRequired,
|
|
23609
23719
|
rate_lock: PropTypes.number.isRequired,
|
|
23610
23720
|
transfer: PropTypes.number.isRequired,
|
|
23721
|
+
negative_balance: PropTypes.number.isRequired,
|
|
23611
23722
|
});
|
|
23612
23723
|
|
|
23613
23724
|
T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
@@ -23718,6 +23829,8 @@ T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction'] = PropType
|
|
|
23718
23829
|
fx_fee_description: PropTypes.string,
|
|
23719
23830
|
duty_guarantee_fee: PropTypes.number,
|
|
23720
23831
|
duty_guarantee_fee_description: PropTypes.string,
|
|
23832
|
+
negative_balance_fee: PropTypes.number,
|
|
23833
|
+
negative_balance_fee_description: PropTypes.string,
|
|
23721
23834
|
});
|
|
23722
23835
|
|
|
23723
23836
|
T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.exact({
|
|
@@ -24216,6 +24329,14 @@ T['io.flow.internal.v0.models.order_validation_failure'] = PropTypes.exact({
|
|
|
24216
24329
|
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24217
24330
|
});
|
|
24218
24331
|
|
|
24332
|
+
T['io.flow.internal.v0.models.order_validation_failure_upserted'] = PropTypes.exact({
|
|
24333
|
+
discriminator: PropTypes.oneOf(['order_validation_failure_upserted']).isRequired,
|
|
24334
|
+
event_id: PropTypes.string.isRequired,
|
|
24335
|
+
timestamp: PropTypes.string.isRequired,
|
|
24336
|
+
organization: PropTypes.string.isRequired,
|
|
24337
|
+
order_validation_failure: T['io.flow.internal.v0.models.order_validation_failure'].isRequired,
|
|
24338
|
+
});
|
|
24339
|
+
|
|
24219
24340
|
T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
|
|
24220
24341
|
id: PropTypes.string.isRequired,
|
|
24221
24342
|
key: PropTypes.string.isRequired,
|
|
@@ -25973,6 +26094,21 @@ T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
|
|
|
25973
26094
|
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
25974
26095
|
});
|
|
25975
26096
|
|
|
26097
|
+
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
26098
|
+
|
|
26099
|
+
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
26100
|
+
province_code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
|
|
26101
|
+
});
|
|
26102
|
+
|
|
26103
|
+
T['io.flow.internal.v0.models.address_configuration_province_setting'] = PropTypes.exact({
|
|
26104
|
+
code: T['io.flow.internal.v0.enums.address_configuration_setting_province_code'].isRequired,
|
|
26105
|
+
});
|
|
26106
|
+
|
|
26107
|
+
T['io.flow.internal.v0.models.address_configuration_setting'] = PropTypes.exact({
|
|
26108
|
+
id: PropTypes.string.isRequired,
|
|
26109
|
+
province: T['io.flow.internal.v0.models.address_configuration_province_setting'].isRequired,
|
|
26110
|
+
});
|
|
26111
|
+
|
|
25976
26112
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
25977
26113
|
amount: PropTypes.number.isRequired,
|
|
25978
26114
|
currency: PropTypes.string.isRequired,
|
|
@@ -26230,6 +26366,17 @@ T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
|
26230
26366
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
26231
26367
|
});
|
|
26232
26368
|
|
|
26369
|
+
T['io.flow.ratecard.v0.models.security_service_fee'] = PropTypes.exact({
|
|
26370
|
+
discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
|
|
26371
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26372
|
+
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
26373
|
+
});
|
|
26374
|
+
|
|
26375
|
+
T['io.flow.ratecard.v0.models.security_ratecard_fee'] = PropTypes.exact({
|
|
26376
|
+
discriminator: PropTypes.oneOf(['security_ratecard_fee']).isRequired,
|
|
26377
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26378
|
+
});
|
|
26379
|
+
|
|
26233
26380
|
T['io.flow.ratecard.v0.models.remote_area_service_fee'] = PropTypes.exact({
|
|
26234
26381
|
discriminator: PropTypes.oneOf(['remote_area_service_fee']).isRequired,
|
|
26235
26382
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -26240,6 +26387,12 @@ T['io.flow.ratecard.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
|
|
|
26240
26387
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26241
26388
|
});
|
|
26242
26389
|
|
|
26390
|
+
T['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'] = PropTypes.exact({
|
|
26391
|
+
discriminator: PropTypes.oneOf(['remote_area_by_weight_service_fee']).isRequired,
|
|
26392
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26393
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
26394
|
+
});
|
|
26395
|
+
|
|
26243
26396
|
T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
|
|
26244
26397
|
discriminator: PropTypes.oneOf(['peak_surcharge_service_fee']).isRequired,
|
|
26245
26398
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -26281,6 +26434,15 @@ T['io.flow.ratecard.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropType
|
|
|
26281
26434
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26282
26435
|
});
|
|
26283
26436
|
|
|
26437
|
+
T['io.flow.ratecard.v0.models.large_package_service_fee'] = PropTypes.exact({
|
|
26438
|
+
discriminator: PropTypes.oneOf(['large_package_service_fee']).isRequired,
|
|
26439
|
+
length_girth_threshold: PropTypes.number,
|
|
26440
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
26441
|
+
weight_threshold: PropTypes.number,
|
|
26442
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
26443
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26444
|
+
});
|
|
26445
|
+
|
|
26284
26446
|
T['io.flow.ratecard.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
26285
26447
|
discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
|
|
26286
26448
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -26296,6 +26458,31 @@ T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = Pr
|
|
|
26296
26458
|
ends_at: PropTypes.string,
|
|
26297
26459
|
});
|
|
26298
26460
|
|
|
26461
|
+
T['io.flow.ratecard.v0.models.fixed_ddp_ratecard_fee'] = PropTypes.exact({
|
|
26462
|
+
discriminator: PropTypes.oneOf(['fixed_ddp_ratecard_fee']).isRequired,
|
|
26463
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26464
|
+
});
|
|
26465
|
+
|
|
26466
|
+
T['io.flow.ratecard.v0.models.fixed_fee_condition'] = PropTypes.exact({
|
|
26467
|
+
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
26468
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26469
|
+
});
|
|
26470
|
+
|
|
26471
|
+
T['io.flow.ratecard.v0.models.fixed_ddp_service_fee'] = PropTypes.exact({
|
|
26472
|
+
discriminator: PropTypes.oneOf(['fixed_ddp_service_fee']).isRequired,
|
|
26473
|
+
conditions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.fixed_fee_condition']).isRequired,
|
|
26474
|
+
});
|
|
26475
|
+
|
|
26476
|
+
T['io.flow.ratecard.v0.models.fixed_currency_conversion_service_fee'] = PropTypes.exact({
|
|
26477
|
+
discriminator: PropTypes.oneOf(['fixed_currency_conversion_service_fee']).isRequired,
|
|
26478
|
+
conditions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.fixed_fee_condition']).isRequired,
|
|
26479
|
+
});
|
|
26480
|
+
|
|
26481
|
+
T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'] = PropTypes.exact({
|
|
26482
|
+
discriminator: PropTypes.oneOf(['fixed_currency_conversion_ratecard_fee']).isRequired,
|
|
26483
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26484
|
+
});
|
|
26485
|
+
|
|
26299
26486
|
T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exact({
|
|
26300
26487
|
discriminator: PropTypes.oneOf(['emergency_situation_surcharge_service_fee']).isRequired,
|
|
26301
26488
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -26309,50 +26496,22 @@ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_ratecard_fee'] = Pro
|
|
|
26309
26496
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26310
26497
|
});
|
|
26311
26498
|
|
|
26312
|
-
T['io.flow.ratecard.v0.models.
|
|
26313
|
-
discriminator: PropTypes.oneOf(['
|
|
26499
|
+
T['io.flow.ratecard.v0.models.eei_filing_service_fee'] = PropTypes.exact({
|
|
26500
|
+
discriminator: PropTypes.oneOf(['eei_filing_service_fee']).isRequired,
|
|
26314
26501
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26315
|
-
|
|
26316
|
-
ends_at: PropTypes.string,
|
|
26502
|
+
value_threshold: T['io.flow.common.v0.models.money'].isRequired,
|
|
26317
26503
|
});
|
|
26318
26504
|
|
|
26319
|
-
T['io.flow.ratecard.v0.
|
|
26320
|
-
|
|
26321
|
-
T['io.flow.
|
|
26322
|
-
T['io.flow.ratecard.v0.models.remote_area_service_fee'],
|
|
26323
|
-
T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'],
|
|
26324
|
-
T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
|
|
26325
|
-
T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
26326
|
-
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
26327
|
-
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
|
|
26328
|
-
]);
|
|
26329
|
-
|
|
26330
|
-
T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
|
|
26331
|
-
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
26332
|
-
});
|
|
26333
|
-
|
|
26334
|
-
T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
|
|
26335
|
-
id: PropTypes.string.isRequired,
|
|
26336
|
-
service_id: PropTypes.string.isRequired,
|
|
26337
|
-
created_at: PropTypes.string.isRequired,
|
|
26338
|
-
updated_at: PropTypes.string.isRequired,
|
|
26339
|
-
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
26340
|
-
});
|
|
26341
|
-
|
|
26342
|
-
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'] = PropTypes.exact({
|
|
26343
|
-
discriminator: PropTypes.oneOf(['ratecard_service_fee_upserted']).isRequired,
|
|
26344
|
-
event_id: PropTypes.string.isRequired,
|
|
26345
|
-
timestamp: PropTypes.string.isRequired,
|
|
26346
|
-
organization: PropTypes.string.isRequired,
|
|
26347
|
-
fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
|
|
26505
|
+
T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
|
|
26506
|
+
discriminator: PropTypes.oneOf(['eei_filing_ratecard_fee']).isRequired,
|
|
26507
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26348
26508
|
});
|
|
26349
26509
|
|
|
26350
|
-
T['io.flow.
|
|
26351
|
-
discriminator: PropTypes.oneOf(['
|
|
26352
|
-
|
|
26353
|
-
|
|
26354
|
-
|
|
26355
|
-
fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
|
|
26510
|
+
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
|
|
26511
|
+
discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
|
|
26512
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26513
|
+
starts_at: PropTypes.string,
|
|
26514
|
+
ends_at: PropTypes.string,
|
|
26356
26515
|
});
|
|
26357
26516
|
|
|
26358
26517
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
@@ -26377,6 +26536,10 @@ T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
|
26377
26536
|
T['io.flow.ratecard.v0.models.emergency_situation_surcharge_ratecard_fee'],
|
|
26378
26537
|
T['io.flow.ratecard.v0.models.peak_surcharge_ratecard_fee'],
|
|
26379
26538
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_ratecard_fee'],
|
|
26539
|
+
T['io.flow.ratecard.v0.models.security_ratecard_fee'],
|
|
26540
|
+
T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'],
|
|
26541
|
+
T['io.flow.ratecard.v0.models.fixed_ddp_ratecard_fee'],
|
|
26542
|
+
T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'],
|
|
26380
26543
|
]);
|
|
26381
26544
|
|
|
26382
26545
|
T['io.flow.ratecard.v0.models.ratecard_lane_form'] = PropTypes.exact({
|
|
@@ -26492,6 +26655,63 @@ T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exac
|
|
|
26492
26655
|
ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
|
|
26493
26656
|
});
|
|
26494
26657
|
|
|
26658
|
+
T['io.flow.ratecard.v0.models.additional_handling_service_fee'] = PropTypes.exact({
|
|
26659
|
+
discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
|
|
26660
|
+
length_girth_threshold: PropTypes.number,
|
|
26661
|
+
length_threshold: PropTypes.number,
|
|
26662
|
+
width_threshold: PropTypes.number,
|
|
26663
|
+
dimensional_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
26664
|
+
weight_threshold: PropTypes.number,
|
|
26665
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
26666
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
26667
|
+
});
|
|
26668
|
+
|
|
26669
|
+
T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
26670
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'],
|
|
26671
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_amount_by_weight_service_fee'],
|
|
26672
|
+
T['io.flow.ratecard.v0.models.remote_area_service_fee'],
|
|
26673
|
+
T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'],
|
|
26674
|
+
T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'],
|
|
26675
|
+
T['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
26676
|
+
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
26677
|
+
T['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'],
|
|
26678
|
+
T['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'],
|
|
26679
|
+
T['io.flow.ratecard.v0.models.additional_handling_service_fee'],
|
|
26680
|
+
T['io.flow.ratecard.v0.models.large_package_service_fee'],
|
|
26681
|
+
T['io.flow.ratecard.v0.models.security_service_fee'],
|
|
26682
|
+
T['io.flow.ratecard.v0.models.fixed_ddp_service_fee'],
|
|
26683
|
+
T['io.flow.ratecard.v0.models.fixed_currency_conversion_service_fee'],
|
|
26684
|
+
T['io.flow.ratecard.v0.models.eei_filing_service_fee'],
|
|
26685
|
+
]);
|
|
26686
|
+
|
|
26687
|
+
T['io.flow.internal.v0.models.ratecard_service_fees_override_form'] = PropTypes.exact({
|
|
26688
|
+
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
26689
|
+
});
|
|
26690
|
+
|
|
26691
|
+
T['io.flow.internal.v0.models.ratecard_internal_service_fee'] = PropTypes.exact({
|
|
26692
|
+
id: PropTypes.string.isRequired,
|
|
26693
|
+
service_id: PropTypes.string.isRequired,
|
|
26694
|
+
created_at: PropTypes.string.isRequired,
|
|
26695
|
+
updated_at: PropTypes.string.isRequired,
|
|
26696
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
26697
|
+
});
|
|
26698
|
+
|
|
26699
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'] = PropTypes.exact({
|
|
26700
|
+
discriminator: PropTypes.oneOf(['ratecard_service_fee_upserted']).isRequired,
|
|
26701
|
+
event_id: PropTypes.string.isRequired,
|
|
26702
|
+
timestamp: PropTypes.string.isRequired,
|
|
26703
|
+
organization: PropTypes.string.isRequired,
|
|
26704
|
+
fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
|
|
26705
|
+
});
|
|
26706
|
+
|
|
26707
|
+
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'] = PropTypes.exact({
|
|
26708
|
+
discriminator: PropTypes.oneOf(['ratecard_service_fee_deleted']).isRequired,
|
|
26709
|
+
event_id: PropTypes.string.isRequired,
|
|
26710
|
+
timestamp: PropTypes.string.isRequired,
|
|
26711
|
+
organization: PropTypes.string.isRequired,
|
|
26712
|
+
fee: T['io.flow.internal.v0.models.ratecard_internal_service_fee'].isRequired,
|
|
26713
|
+
});
|
|
26714
|
+
|
|
26495
26715
|
T['io.flow.payment.internal.v0.models.chargeback'] = PropTypes.exact({
|
|
26496
26716
|
id: PropTypes.string.isRequired,
|
|
26497
26717
|
key: PropTypes.string.isRequired,
|
|
@@ -27520,6 +27740,18 @@ T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
|
|
|
27520
27740
|
reference_id: PropTypes.string,
|
|
27521
27741
|
});
|
|
27522
27742
|
|
|
27743
|
+
T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact({
|
|
27744
|
+
id: PropTypes.string,
|
|
27745
|
+
hs_code: PropTypes.string,
|
|
27746
|
+
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
27747
|
+
duty_rate: PropTypes.number.isRequired,
|
|
27748
|
+
sales_tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
27749
|
+
sales_tax_rate: PropTypes.number.isRequired,
|
|
27750
|
+
additional_tax: T['io.flow.common.v0.models.money'],
|
|
27751
|
+
additional_tax_rate: PropTypes.number,
|
|
27752
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
27753
|
+
});
|
|
27754
|
+
|
|
27523
27755
|
T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
|
|
27524
27756
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
27525
27757
|
});
|
|
@@ -27577,21 +27809,38 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
27577
27809
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
27578
27810
|
});
|
|
27579
27811
|
|
|
27580
|
-
T['io.flow.internal.v0.
|
|
27581
|
-
|
|
27582
|
-
T['io.flow.
|
|
27583
|
-
|
|
27812
|
+
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
27813
|
+
name: PropTypes.string,
|
|
27814
|
+
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
27815
|
+
rate: PropTypes.number,
|
|
27584
27816
|
});
|
|
27585
27817
|
|
|
27586
|
-
T['io.flow.internal.v0.models.
|
|
27587
|
-
|
|
27818
|
+
T['io.flow.internal.v0.models.calculation_total'] = PropTypes.exact({
|
|
27819
|
+
customs_value_name: PropTypes.string.isRequired,
|
|
27820
|
+
customs_value_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
27821
|
+
additional_import_included: PropTypes.bool,
|
|
27822
|
+
additional_import_value: T['io.flow.common.v0.models.money'],
|
|
27823
|
+
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
27824
|
+
sales_tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
27825
|
+
additional_tax_import_included: PropTypes.bool.isRequired,
|
|
27826
|
+
additional_tax: T['io.flow.common.v0.models.money'],
|
|
27827
|
+
additional_import_tax: PropTypes.arrayOf(T['io.flow.internal.v0.models.additional_import_tax']),
|
|
27588
27828
|
});
|
|
27589
27829
|
|
|
27590
|
-
T['io.flow.internal.v0.models.
|
|
27591
|
-
|
|
27592
|
-
|
|
27830
|
+
T['io.flow.internal.v0.models.calculation_step'] = PropTypes.exact({
|
|
27831
|
+
discriminator: PropTypes.oneOf(['calculation_step']).isRequired,
|
|
27832
|
+
primary_identifier: PropTypes.string.isRequired,
|
|
27833
|
+
line_item: PropTypes.arrayOf(T['io.flow.internal.v0.models.calculation_stamping_line_item']).isRequired,
|
|
27834
|
+
shipping_line_item: T['io.flow.internal.v0.models.calculation_stamping_shipping_line'].isRequired,
|
|
27835
|
+
total: T['io.flow.internal.v0.models.calculation_total'].isRequired,
|
|
27836
|
+
explanation: PropTypes.string,
|
|
27593
27837
|
});
|
|
27594
27838
|
|
|
27839
|
+
T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
27840
|
+
T['io.flow.internal.v0.models.message_stamp'],
|
|
27841
|
+
T['io.flow.internal.v0.models.calculation_step'],
|
|
27842
|
+
]);
|
|
27843
|
+
|
|
27595
27844
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
27596
27845
|
|
|
27597
27846
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -27627,6 +27876,63 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
27627
27876
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
27628
27877
|
]);
|
|
27629
27878
|
|
|
27879
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
27880
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
27881
|
+
id: PropTypes.string.isRequired,
|
|
27882
|
+
carrier_id: PropTypes.string,
|
|
27883
|
+
carrier_service_id: PropTypes.string,
|
|
27884
|
+
carrier_tracking_number: PropTypes.string,
|
|
27885
|
+
label_id: PropTypes.string,
|
|
27886
|
+
created_at: PropTypes.string,
|
|
27887
|
+
});
|
|
27888
|
+
|
|
27889
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
27890
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
27891
|
+
id: PropTypes.string.isRequired,
|
|
27892
|
+
carrier_id: PropTypes.string,
|
|
27893
|
+
carrier_service_id: PropTypes.string,
|
|
27894
|
+
carrier_tracking_number: PropTypes.string,
|
|
27895
|
+
label_id: PropTypes.string,
|
|
27896
|
+
created_at: PropTypes.string,
|
|
27897
|
+
});
|
|
27898
|
+
|
|
27899
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
27900
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
27901
|
+
id: PropTypes.string.isRequired,
|
|
27902
|
+
carrier_id: PropTypes.string,
|
|
27903
|
+
carrier_service_id: PropTypes.string,
|
|
27904
|
+
carrier_tracking_number: PropTypes.string,
|
|
27905
|
+
label_id: PropTypes.string,
|
|
27906
|
+
created_at: PropTypes.string,
|
|
27907
|
+
});
|
|
27908
|
+
|
|
27909
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
27910
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
27911
|
+
id: PropTypes.string.isRequired,
|
|
27912
|
+
carrier_id: PropTypes.string,
|
|
27913
|
+
carrier_service_id: PropTypes.string,
|
|
27914
|
+
carrier_tracking_number: PropTypes.string,
|
|
27915
|
+
label_id: PropTypes.string,
|
|
27916
|
+
created_at: PropTypes.string,
|
|
27917
|
+
});
|
|
27918
|
+
|
|
27919
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
27920
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
27921
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
27922
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
27923
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
27924
|
+
]);
|
|
27925
|
+
|
|
27926
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
27927
|
+
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
27928
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
27929
|
+
});
|
|
27930
|
+
|
|
27931
|
+
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
27932
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
27933
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
27934
|
+
]);
|
|
27935
|
+
|
|
27630
27936
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
27631
27937
|
id: PropTypes.string.isRequired,
|
|
27632
27938
|
});
|
|
@@ -27882,6 +28188,11 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
|
|
|
27882
28188
|
'export': T['io.flow.export.v0.models.export'].isRequired,
|
|
27883
28189
|
});
|
|
27884
28190
|
|
|
28191
|
+
T['io.flow.billing.accounting.v0.models.order_reference'] = PropTypes.exact({
|
|
28192
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
28193
|
+
number: PropTypes.string.isRequired,
|
|
28194
|
+
});
|
|
28195
|
+
|
|
27885
28196
|
T['io.flow.billing.accounting.v0.models.order_summary'] = PropTypes.exact({
|
|
27886
28197
|
id: PropTypes.string.isRequired,
|
|
27887
28198
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -27896,8 +28207,8 @@ T['io.flow.billing.accounting.v0.models.return'] = PropTypes.exact({
|
|
|
27896
28207
|
id: PropTypes.string.isRequired,
|
|
27897
28208
|
order: T['io.flow.billing.accounting.v0.models.order_summary'].isRequired,
|
|
27898
28209
|
shopper: T['io.flow.billing.accounting.v0.models.shopper_summary'].isRequired,
|
|
27899
|
-
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
27900
28210
|
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
28211
|
+
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
27901
28212
|
sequence_number: PropTypes.number.isRequired,
|
|
27902
28213
|
posting_cutoff: PropTypes.string.isRequired,
|
|
27903
28214
|
trigger: T['io.flow.billing.accounting.v0.unions.return_trigger'].isRequired,
|
|
@@ -27905,6 +28216,16 @@ T['io.flow.billing.accounting.v0.models.return'] = PropTypes.exact({
|
|
|
27905
28216
|
completes_order: PropTypes.bool.isRequired,
|
|
27906
28217
|
});
|
|
27907
28218
|
|
|
28219
|
+
T['io.flow.billing.accounting.v0.models.pending_order'] = PropTypes.exact({
|
|
28220
|
+
id: PropTypes.string.isRequired,
|
|
28221
|
+
order: T['io.flow.billing.accounting.v0.models.order_summary'].isRequired,
|
|
28222
|
+
shopper: T['io.flow.billing.accounting.v0.models.shopper_summary'].isRequired,
|
|
28223
|
+
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
28224
|
+
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
28225
|
+
sequence_number: PropTypes.number.isRequired,
|
|
28226
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
28227
|
+
});
|
|
28228
|
+
|
|
27908
28229
|
T['io.flow.billing.accounting.v0.models.fulfillment'] = PropTypes.exact({
|
|
27909
28230
|
id: PropTypes.string.isRequired,
|
|
27910
28231
|
order: T['io.flow.billing.accounting.v0.models.order_summary'].isRequired,
|
|
@@ -28325,6 +28646,22 @@ T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
|
28325
28646
|
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
28326
28647
|
});
|
|
28327
28648
|
|
|
28649
|
+
T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
|
|
28650
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
28651
|
+
number: PropTypes.string.isRequired,
|
|
28652
|
+
});
|
|
28653
|
+
|
|
28654
|
+
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'] = PropTypes.exact({
|
|
28655
|
+
discriminator: PropTypes.oneOf(['accounting_fulfillment_metadata']).isRequired,
|
|
28656
|
+
order: T['io.flow.internal.v0.models.order_reference'].isRequired,
|
|
28657
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
28658
|
+
});
|
|
28659
|
+
|
|
28660
|
+
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
28661
|
+
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
28662
|
+
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'],
|
|
28663
|
+
]);
|
|
28664
|
+
|
|
28328
28665
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
28329
28666
|
amount: PropTypes.number.isRequired,
|
|
28330
28667
|
currency: PropTypes.string.isRequired,
|
|
@@ -28676,6 +29013,7 @@ T['io.flow.billing.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
28676
29013
|
fx: T['io.flow.billing.internal.v0.models.fee'],
|
|
28677
29014
|
duty_guarantee: T['io.flow.billing.internal.v0.models.fee'],
|
|
28678
29015
|
transfer: T['io.flow.billing.internal.v0.models.fee'],
|
|
29016
|
+
negative_balance: T['io.flow.billing.internal.v0.models.fee'],
|
|
28679
29017
|
});
|
|
28680
29018
|
|
|
28681
29019
|
T['io.flow.billing.internal.v0.models.channel_transaction'] = PropTypes.exact({
|
|
@@ -28772,6 +29110,14 @@ T['io.flow.billing.internal.v0.models.organization_billing_statement'] = PropTyp
|
|
|
28772
29110
|
attachments: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.billing_statement_attachment']).isRequired,
|
|
28773
29111
|
});
|
|
28774
29112
|
|
|
29113
|
+
T['io.flow.billing.internal.v0.models.flow_billing_statement'] = PropTypes.exact({
|
|
29114
|
+
id: PropTypes.string.isRequired,
|
|
29115
|
+
account: T['io.flow.billing.v0.models.account_reference'].isRequired,
|
|
29116
|
+
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
29117
|
+
totals: T['io.flow.billing.internal.v0.models.billing_statement_totals'].isRequired,
|
|
29118
|
+
attachments: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.billing_statement_attachment']).isRequired,
|
|
29119
|
+
});
|
|
29120
|
+
|
|
28775
29121
|
T['io.flow.billing.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
|
|
28776
29122
|
id: PropTypes.string.isRequired,
|
|
28777
29123
|
account: T['io.flow.billing.v0.models.account_reference'].isRequired,
|
|
@@ -29441,6 +29787,30 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
29441
29787
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
29442
29788
|
});
|
|
29443
29789
|
|
|
29790
|
+
T['io.flow.internal.v0.models.matias_item_form'] = PropTypes.exact({
|
|
29791
|
+
number: PropTypes.string.isRequired,
|
|
29792
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
29793
|
+
description: PropTypes.string,
|
|
29794
|
+
type: T['io.flow.internal.v0.enums.matias_item_type'].isRequired,
|
|
29795
|
+
added_on: PropTypes.string.isRequired,
|
|
29796
|
+
});
|
|
29797
|
+
|
|
29798
|
+
T['io.flow.internal.v0.models.matias_item'] = PropTypes.exact({
|
|
29799
|
+
id: PropTypes.string.isRequired,
|
|
29800
|
+
number: PropTypes.string.isRequired,
|
|
29801
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
29802
|
+
description: PropTypes.string,
|
|
29803
|
+
type: T['io.flow.internal.v0.enums.matias_item_type'].isRequired,
|
|
29804
|
+
added_on: PropTypes.string.isRequired,
|
|
29805
|
+
});
|
|
29806
|
+
|
|
29807
|
+
T['io.flow.internal.v0.models.matias_item_upserted'] = PropTypes.exact({
|
|
29808
|
+
discriminator: PropTypes.oneOf(['matias_item_upserted']).isRequired,
|
|
29809
|
+
event_id: PropTypes.string.isRequired,
|
|
29810
|
+
timestamp: PropTypes.string.isRequired,
|
|
29811
|
+
item: T['io.flow.internal.v0.models.matias_item'].isRequired,
|
|
29812
|
+
});
|
|
29813
|
+
|
|
29444
29814
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
29445
29815
|
id: PropTypes.string.isRequired,
|
|
29446
29816
|
description: PropTypes.string.isRequired,
|
|
@@ -29754,6 +30124,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
29754
30124
|
fx: T['io.flow.internal.v0.models.fee'],
|
|
29755
30125
|
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
29756
30126
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
30127
|
+
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
29757
30128
|
});
|
|
29758
30129
|
|
|
29759
30130
|
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
@@ -29847,6 +30218,7 @@ T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
|
29847
30218
|
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
29848
30219
|
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
29849
30220
|
duty_paid: PropTypes.bool.isRequired,
|
|
30221
|
+
shop_id: PropTypes.string,
|
|
29850
30222
|
});
|
|
29851
30223
|
|
|
29852
30224
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
@@ -29890,6 +30262,14 @@ T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact
|
|
|
29890
30262
|
attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
|
|
29891
30263
|
});
|
|
29892
30264
|
|
|
30265
|
+
T['io.flow.internal.v0.models.flow_billing_statement'] = PropTypes.exact({
|
|
30266
|
+
id: PropTypes.string.isRequired,
|
|
30267
|
+
account: T['io.flow.billing.v0.models.account_reference'].isRequired,
|
|
30268
|
+
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
30269
|
+
totals: T['io.flow.internal.v0.models.billing_statement_totals'].isRequired,
|
|
30270
|
+
attachments: PropTypes.arrayOf(T['io.flow.internal.v0.models.billing_statement_attachment']).isRequired,
|
|
30271
|
+
});
|
|
30272
|
+
|
|
29893
30273
|
T['io.flow.internal.v0.models.channel_billing_statement'] = PropTypes.exact({
|
|
29894
30274
|
id: PropTypes.string.isRequired,
|
|
29895
30275
|
account: T['io.flow.billing.v0.models.account_reference'].isRequired,
|
|
@@ -31013,8 +31393,8 @@ T['io.flow.internal.v0.models.return'] = PropTypes.exact({
|
|
|
31013
31393
|
id: PropTypes.string.isRequired,
|
|
31014
31394
|
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
31015
31395
|
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
31016
|
-
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
31017
31396
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
31397
|
+
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
31018
31398
|
sequence_number: PropTypes.number.isRequired,
|
|
31019
31399
|
posting_cutoff: PropTypes.string.isRequired,
|
|
31020
31400
|
trigger: T['io.flow.internal.v0.unions.return_trigger'].isRequired,
|
|
@@ -31071,6 +31451,16 @@ T['io.flow.internal.v0.models.revenue_record_upserted'] = PropTypes.exact({
|
|
|
31071
31451
|
revenue_record: T['io.flow.internal.v0.models.revenue_record'].isRequired,
|
|
31072
31452
|
});
|
|
31073
31453
|
|
|
31454
|
+
T['io.flow.internal.v0.models.pending_order'] = PropTypes.exact({
|
|
31455
|
+
id: PropTypes.string.isRequired,
|
|
31456
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
31457
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
31458
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
31459
|
+
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
31460
|
+
sequence_number: PropTypes.number.isRequired,
|
|
31461
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
31462
|
+
});
|
|
31463
|
+
|
|
31074
31464
|
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
31075
31465
|
id: PropTypes.string.isRequired,
|
|
31076
31466
|
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
@@ -31087,6 +31477,14 @@ T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
31087
31477
|
completes_order: PropTypes.bool.isRequired,
|
|
31088
31478
|
});
|
|
31089
31479
|
|
|
31480
|
+
T['io.flow.internal.v0.models.fulfillment_upserted'] = PropTypes.exact({
|
|
31481
|
+
discriminator: PropTypes.oneOf(['fulfillment_upserted']).isRequired,
|
|
31482
|
+
event_id: PropTypes.string.isRequired,
|
|
31483
|
+
timestamp: PropTypes.string.isRequired,
|
|
31484
|
+
organization: PropTypes.string.isRequired,
|
|
31485
|
+
fulfillment: T['io.flow.internal.v0.models.fulfillment'].isRequired,
|
|
31486
|
+
});
|
|
31487
|
+
|
|
31090
31488
|
T['io.flow.internal.v0.models.external_fulfillment_proof_form'] = PropTypes.exact({
|
|
31091
31489
|
responsible_party: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
31092
31490
|
tracking: PropTypes.arrayOf(T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form']),
|
|
@@ -31121,6 +31519,7 @@ T['io.flow.internal.v0.models.billing_organization_settings'] = PropTypes.exact(
|
|
|
31121
31519
|
b2b_tax_remittance_days: PropTypes.number,
|
|
31122
31520
|
mor_fee: PropTypes.number,
|
|
31123
31521
|
duty_guarantee_fee: PropTypes.number,
|
|
31522
|
+
negative_balance_fee: PropTypes.number,
|
|
31124
31523
|
order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
|
|
31125
31524
|
label_fee: T['io.flow.internal.v0.models.tiered_fee'],
|
|
31126
31525
|
});
|
|
@@ -31151,7 +31550,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
31151
31550
|
merchant_of_record_fee: PropTypes.number,
|
|
31152
31551
|
duty_guarantee_fee: PropTypes.number,
|
|
31153
31552
|
transfer_fee: PropTypes.number,
|
|
31154
|
-
|
|
31553
|
+
negative_balance_fee: PropTypes.number,
|
|
31155
31554
|
order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
|
|
31156
31555
|
label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
|
|
31157
31556
|
charge_label_cost_directly: PropTypes.bool.isRequired,
|
|
@@ -31199,6 +31598,13 @@ T['io.flow.internal.v0.models.account_processing_rates_form'] = PropTypes.exact(
|
|
|
31199
31598
|
processing_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_processing_rate_form']).isRequired,
|
|
31200
31599
|
});
|
|
31201
31600
|
|
|
31601
|
+
T['io.flow.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'invalid_bank_account']);
|
|
31602
|
+
|
|
31603
|
+
T['io.flow.internal.v0.models.account_payment_hold_form'] = PropTypes.exact({
|
|
31604
|
+
account_id: PropTypes.string.isRequired,
|
|
31605
|
+
reason: T['io.flow.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
31606
|
+
});
|
|
31607
|
+
|
|
31202
31608
|
T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending', 'pending_proof', 'posted']);
|
|
31203
31609
|
|
|
31204
31610
|
T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
|
|
@@ -31672,6 +32078,12 @@ T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
|
|
|
31672
32078
|
id: PropTypes.string.isRequired,
|
|
31673
32079
|
});
|
|
31674
32080
|
|
|
32081
|
+
T['io.flow.internal.v0.models.account_payment_hold'] = PropTypes.exact({
|
|
32082
|
+
id: PropTypes.string.isRequired,
|
|
32083
|
+
account: T['io.flow.internal.v0.models.simple_account_reference'].isRequired,
|
|
32084
|
+
reason: T['io.flow.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
32085
|
+
});
|
|
32086
|
+
|
|
31675
32087
|
T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
|
|
31676
32088
|
id: PropTypes.string.isRequired,
|
|
31677
32089
|
email: PropTypes.string.isRequired,
|
|
@@ -31859,6 +32271,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
31859
32271
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
31860
32272
|
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
31861
32273
|
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
32274
|
+
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
32275
|
+
T['io.flow.internal.v0.models.fulfillment_deleted'],
|
|
31862
32276
|
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
31863
32277
|
T['io.flow.internal.v0.models.merchant_deleted'],
|
|
31864
32278
|
T['io.flow.internal.v0.models.account_upserted'],
|
|
@@ -31993,10 +32407,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
31993
32407
|
T['io.flow.internal.v0.models.billing_organization_processing_rates_deleted'],
|
|
31994
32408
|
T['io.flow.internal.v0.models.billing_organization_settings_upserted'],
|
|
31995
32409
|
T['io.flow.internal.v0.models.billing_organization_settings_deleted'],
|
|
31996
|
-
T['io.flow.internal.v0.models.billing_statement_batch_upserted'],
|
|
31997
|
-
T['io.flow.internal.v0.models.billing_statement_batch_deleted'],
|
|
31998
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'],
|
|
31999
|
-
T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'],
|
|
32000
32410
|
T['io.flow.internal.v0.models.standalone_attachment_upserted'],
|
|
32001
32411
|
T['io.flow.internal.v0.models.standalone_attachment_deleted'],
|
|
32002
32412
|
T['io.flow.internal.v0.models.platform_fee_change_upserted'],
|
|
@@ -32057,6 +32467,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
32057
32467
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
32058
32468
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
32059
32469
|
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
32470
|
+
T['io.flow.internal.v0.models.order_validation_failure_upserted'],
|
|
32471
|
+
T['io.flow.internal.v0.models.order_validation_failure_deleted'],
|
|
32472
|
+
T['io.flow.internal.v0.models.order_validation_upserted'],
|
|
32473
|
+
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
32060
32474
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
32061
32475
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
32062
32476
|
T['io.flow.internal.v0.models.localized_item_upserted_v2'],
|
|
@@ -32183,10 +32597,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
32183
32597
|
T['io.flow.internal.v0.models.svitlana_item_deleted'],
|
|
32184
32598
|
T['io.flow.internal.v0.models.colm_item_upserted'],
|
|
32185
32599
|
T['io.flow.internal.v0.models.colm_item_deleted'],
|
|
32600
|
+
T['io.flow.internal.v0.models.matias_item_upserted'],
|
|
32601
|
+
T['io.flow.internal.v0.models.matias_item_deleted'],
|
|
32186
32602
|
T['io.flow.internal.v0.models.shruti_demo_item_upserted'],
|
|
32187
32603
|
T['io.flow.internal.v0.models.shruti_demo_item_deleted'],
|
|
32188
32604
|
T['io.flow.internal.v0.models.tam_item_upserted'],
|
|
32189
32605
|
T['io.flow.internal.v0.models.tam_item_deleted'],
|
|
32606
|
+
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
32607
|
+
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
32190
32608
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
32191
32609
|
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'],
|
|
32192
32610
|
T['io.flow.internal.v0.models.tracking_label_upserted'],
|
|
@@ -32300,8 +32718,6 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
|
32300
32718
|
'remote_area_surcharge',
|
|
32301
32719
|
]);
|
|
32302
32720
|
|
|
32303
|
-
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['summary']);
|
|
32304
|
-
|
|
32305
32721
|
T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
32306
32722
|
'flow_rate_and_rule',
|
|
32307
32723
|
'dtce',
|
|
@@ -32335,6 +32751,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
32335
32751
|
'adyen_refund_upserted',
|
|
32336
32752
|
'index_assignment_upserted',
|
|
32337
32753
|
'index_assignment_deleted',
|
|
32754
|
+
'fulfillment_upserted',
|
|
32755
|
+
'fulfillment_deleted',
|
|
32338
32756
|
'merchant_upserted',
|
|
32339
32757
|
'merchant_deleted',
|
|
32340
32758
|
'account_upserted',
|
|
@@ -32469,10 +32887,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
32469
32887
|
'billing_organization_processing_rates_deleted',
|
|
32470
32888
|
'billing_organization_settings_upserted',
|
|
32471
32889
|
'billing_organization_settings_deleted',
|
|
32472
|
-
'billing_statement_batch_upserted',
|
|
32473
|
-
'billing_statement_batch_deleted',
|
|
32474
|
-
'billing_statement_batch_statement_upserted',
|
|
32475
|
-
'billing_statement_batch_statement_deleted',
|
|
32476
32890
|
'standalone_attachment_upserted',
|
|
32477
32891
|
'standalone_attachment_deleted',
|
|
32478
32892
|
'platform_fee_change_upserted',
|
|
@@ -32533,6 +32947,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
32533
32947
|
'item_form_import_request',
|
|
32534
32948
|
'label_request_error_upserted',
|
|
32535
32949
|
'label_request_error_deleted',
|
|
32950
|
+
'order_validation_failure_upserted',
|
|
32951
|
+
'order_validation_failure_deleted',
|
|
32952
|
+
'order_validation_upserted',
|
|
32953
|
+
'order_validation_deleted',
|
|
32536
32954
|
'label_tracking_summary_upserted',
|
|
32537
32955
|
'label_tracking_summary_deleted',
|
|
32538
32956
|
'localized_item_upserted_v2',
|
|
@@ -32659,10 +33077,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
32659
33077
|
'svitlana_item_deleted',
|
|
32660
33078
|
'colm_item_upserted',
|
|
32661
33079
|
'colm_item_deleted',
|
|
33080
|
+
'matias_item_upserted',
|
|
33081
|
+
'matias_item_deleted',
|
|
32662
33082
|
'shruti_demo_item_upserted',
|
|
32663
33083
|
'shruti_demo_item_deleted',
|
|
32664
33084
|
'tam_item_upserted',
|
|
32665
33085
|
'tam_item_deleted',
|
|
33086
|
+
'tracking_processing_error_upserted',
|
|
33087
|
+
'tracking_processing_error_deleted',
|
|
32666
33088
|
'tracking_label_event_upserted_v2',
|
|
32667
33089
|
'tracking_label_event_deleted_v2',
|
|
32668
33090
|
'tracking_label_upserted',
|
|
@@ -33095,6 +33517,9 @@ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
|
|
|
33095
33517
|
id: PropTypes.string.isRequired,
|
|
33096
33518
|
acc_des: PropTypes.string,
|
|
33097
33519
|
tax_code: PropTypes.string,
|
|
33520
|
+
tax_code_2: PropTypes.string,
|
|
33521
|
+
debit_entry_code: PropTypes.string,
|
|
33522
|
+
credit_entry_code: PropTypes.string,
|
|
33098
33523
|
vat_flag: PropTypes.string,
|
|
33099
33524
|
country_name: PropTypes.string,
|
|
33100
33525
|
w_tax_percent: PropTypes.string,
|
|
@@ -33557,20 +33982,6 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
|
|
|
33557
33982
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
33558
33983
|
});
|
|
33559
33984
|
|
|
33560
|
-
T['io.flow.internal.v0.models.queued_record'] = PropTypes.exact({
|
|
33561
|
-
type: PropTypes.string.isRequired,
|
|
33562
|
-
type_id: PropTypes.string.isRequired,
|
|
33563
|
-
source_type: PropTypes.string,
|
|
33564
|
-
source_id: PropTypes.string,
|
|
33565
|
-
environment: PropTypes.string,
|
|
33566
|
-
created_at: PropTypes.string.isRequired,
|
|
33567
|
-
num_attempts: PropTypes.number.isRequired,
|
|
33568
|
-
next_attempt_at: PropTypes.string.isRequired,
|
|
33569
|
-
errors: PropTypes.arrayOf(PropTypes.string),
|
|
33570
|
-
stacktrace: PropTypes.string,
|
|
33571
|
-
snooze_id: PropTypes.string,
|
|
33572
|
-
});
|
|
33573
|
-
|
|
33574
33985
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
33575
33986
|
base: PropTypes.string.isRequired,
|
|
33576
33987
|
target: PropTypes.string.isRequired,
|
|
@@ -33830,6 +34241,20 @@ T['io.flow.internal.v0.models.svitlana_test'] = PropTypes.exact({
|
|
|
33830
34241
|
name: PropTypes.string.isRequired,
|
|
33831
34242
|
});
|
|
33832
34243
|
|
|
34244
|
+
T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
34245
|
+
type: PropTypes.string.isRequired,
|
|
34246
|
+
type_id: PropTypes.string.isRequired,
|
|
34247
|
+
source_type: PropTypes.string,
|
|
34248
|
+
source_id: PropTypes.string,
|
|
34249
|
+
environment: PropTypes.string,
|
|
34250
|
+
created_at: PropTypes.string.isRequired,
|
|
34251
|
+
num_attempts: PropTypes.number.isRequired,
|
|
34252
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
34253
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
34254
|
+
stacktrace: PropTypes.string,
|
|
34255
|
+
snooze_id: PropTypes.string,
|
|
34256
|
+
});
|
|
34257
|
+
|
|
33833
34258
|
T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
|
|
33834
34259
|
discriminator: PropTypes.string.isRequired,
|
|
33835
34260
|
count: PropTypes.number.isRequired,
|
|
@@ -34029,7 +34454,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
34029
34454
|
'pay_over_time',
|
|
34030
34455
|
]);
|
|
34031
34456
|
|
|
34032
|
-
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
|
|
34457
|
+
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
|
|
34033
34458
|
|
|
34034
34459
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
34035
34460
|
object: PropTypes.string.isRequired,
|
|
@@ -34999,8 +35424,7 @@ T['io.flow.billing.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf(
|
|
|
34999
35424
|
'remote_area_surcharge',
|
|
35000
35425
|
]);
|
|
35001
35426
|
|
|
35002
|
-
T['io.flow.billing.internal.v0.enums.
|
|
35003
|
-
T['io.flow.billing.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge']);
|
|
35427
|
+
T['io.flow.billing.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge', 'revenue_share']);
|
|
35004
35428
|
T['io.flow.billing.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
35005
35429
|
T['io.flow.billing.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
35006
35430
|
T['io.flow.billing.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
@@ -35075,10 +35499,6 @@ T['io.flow.billing.internal.v0.models.billing_organization_processing_rates'] =
|
|
|
35075
35499
|
position: PropTypes.number.isRequired,
|
|
35076
35500
|
});
|
|
35077
35501
|
|
|
35078
|
-
T['io.flow.billing.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
|
|
35079
|
-
id: PropTypes.string.isRequired,
|
|
35080
|
-
});
|
|
35081
|
-
|
|
35082
35502
|
T['io.flow.billing.internal.v0.models.channel_billed_transaction_pair_form'] = PropTypes.exact({
|
|
35083
35503
|
channel_id: PropTypes.string.isRequired,
|
|
35084
35504
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -35304,6 +35724,9 @@ export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_
|
|
|
35304
35724
|
export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_deposit_rule_form'];
|
|
35305
35725
|
export const accountOrdersExportRequest = T['io.flow.internal.v0.models.account_orders_export_request'];
|
|
35306
35726
|
export const accountOrigin = T['io.flow.internal.v0.models.account_origin'];
|
|
35727
|
+
export const accountPaymentHold = T['io.flow.internal.v0.models.account_payment_hold'];
|
|
35728
|
+
export const accountPaymentHoldForm = T['io.flow.internal.v0.models.account_payment_hold_form'];
|
|
35729
|
+
export const accountPaymentHoldReason = T['io.flow.internal.v0.enums.account_payment_hold_reason'];
|
|
35307
35730
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
35308
35731
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
35309
35732
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -35322,7 +35745,9 @@ export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.ac
|
|
|
35322
35745
|
export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
35323
35746
|
export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
|
|
35324
35747
|
export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
|
|
35748
|
+
export const accountingFulfillmentMetadata = T['io.flow.internal.v0.models.accounting_fulfillment_metadata'];
|
|
35325
35749
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
35750
|
+
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
35326
35751
|
export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models.address_configuration_province_setting'];
|
|
35327
35752
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
35328
35753
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
@@ -35444,14 +35869,6 @@ export const billingOrganizationSettingsDeleted = T['io.flow.internal.v0.models.
|
|
|
35444
35869
|
export const billingOrganizationSettingsUpserted = T['io.flow.internal.v0.models.billing_organization_settings_upserted'];
|
|
35445
35870
|
export const billingStatementAttachment = T['io.flow.internal.v0.models.billing_statement_attachment'];
|
|
35446
35871
|
export const billingStatementAttachmentKey = T['io.flow.internal.v0.enums.billing_statement_attachment_key'];
|
|
35447
|
-
export const billingStatementBatch = T['io.flow.internal.v0.models.billing_statement_batch'];
|
|
35448
|
-
export const billingStatementBatchDeleted = T['io.flow.internal.v0.models.billing_statement_batch_deleted'];
|
|
35449
|
-
export const billingStatementBatchFileKey = T['io.flow.internal.v0.enums.billing_statement_batch_file_key'];
|
|
35450
|
-
export const billingStatementBatchReference = T['io.flow.internal.v0.models.billing_statement_batch_reference'];
|
|
35451
|
-
export const billingStatementBatchStatement = T['io.flow.internal.v0.models.billing_statement_batch_statement'];
|
|
35452
|
-
export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'];
|
|
35453
|
-
export const billingStatementBatchStatementUpserted = T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'];
|
|
35454
|
-
export const billingStatementBatchUpserted = T['io.flow.internal.v0.models.billing_statement_batch_upserted'];
|
|
35455
35872
|
export const billingStatementDeleted = T['io.flow.internal.v0.models.billing_statement_deleted'];
|
|
35456
35873
|
export const billingStatementReference = T['io.flow.internal.v0.models.billing_statement_reference'];
|
|
35457
35874
|
export const billingStatementSummary = T['io.flow.internal.v0.models.billing_statement_summary'];
|
|
@@ -35513,6 +35930,10 @@ export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser
|
|
|
35513
35930
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
35514
35931
|
export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
|
|
35515
35932
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
35933
|
+
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
35934
|
+
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
35935
|
+
export const calculationStep = T['io.flow.internal.v0.models.calculation_step'];
|
|
35936
|
+
export const calculationTotal = T['io.flow.internal.v0.models.calculation_total'];
|
|
35516
35937
|
export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_dtce_post_body'];
|
|
35517
35938
|
export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
|
|
35518
35939
|
export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
|
|
@@ -35520,6 +35941,7 @@ export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calc
|
|
|
35520
35941
|
export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
|
|
35521
35942
|
export const calculatorOrganizationSettingsForm = T['io.flow.internal.v0.models.calculator_organization_settings_form'];
|
|
35522
35943
|
export const calculatorOrganizationSettingsUpserted = T['io.flow.internal.v0.models.calculator_organization_settings_upserted'];
|
|
35944
|
+
export const calculatorStamp = T['io.flow.internal.v0.unions.calculator_stamp'];
|
|
35523
35945
|
export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
|
|
35524
35946
|
export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
|
|
35525
35947
|
export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
|
|
@@ -36188,6 +36610,7 @@ export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commerc
|
|
|
36188
36610
|
export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercial_invoice_internal'];
|
|
36189
36611
|
export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
|
|
36190
36612
|
export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
|
|
36613
|
+
export const commercialInvoiceSummary = T['io.flow.internal.v0.models.commercial_invoice_summary'];
|
|
36191
36614
|
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
36192
36615
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
36193
36616
|
export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
@@ -36467,6 +36890,7 @@ export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fise
|
|
|
36467
36890
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
36468
36891
|
export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
|
|
36469
36892
|
export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
|
|
36893
|
+
export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
|
|
36470
36894
|
export const flowChannelOrganization = T['io.flow.internal.v0.models.flow_channel_organization'];
|
|
36471
36895
|
export const flowLabProject = T['io.flow.internal.v0.models.flow_lab_project'];
|
|
36472
36896
|
export const flowLabProjectPostForm = T['io.flow.internal.v0.models.flow_lab_project_post_form'];
|
|
@@ -36513,6 +36937,7 @@ export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
|
36513
36937
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
36514
36938
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
36515
36939
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
36940
|
+
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
36516
36941
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
36517
36942
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
36518
36943
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
@@ -36528,6 +36953,7 @@ export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfill
|
|
|
36528
36953
|
export const fulfillmentTrigger = T['io.flow.internal.v0.unions.fulfillment_trigger'];
|
|
36529
36954
|
export const fulfillmentTriggerProof = T['io.flow.internal.v0.models.fulfillment_trigger_proof'];
|
|
36530
36955
|
export const fulfillmentTriggerTime = T['io.flow.internal.v0.models.fulfillment_trigger_time'];
|
|
36956
|
+
export const fulfillmentUpserted = T['io.flow.internal.v0.models.fulfillment_upserted'];
|
|
36531
36957
|
export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
|
|
36532
36958
|
export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
|
|
36533
36959
|
export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
|
|
@@ -36860,6 +37286,11 @@ export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marke
|
|
|
36860
37286
|
export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
|
|
36861
37287
|
export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
|
|
36862
37288
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
37289
|
+
export const matiasItem = T['io.flow.internal.v0.models.matias_item'];
|
|
37290
|
+
export const matiasItemDeleted = T['io.flow.internal.v0.models.matias_item_deleted'];
|
|
37291
|
+
export const matiasItemForm = T['io.flow.internal.v0.models.matias_item_form'];
|
|
37292
|
+
export const matiasItemType = T['io.flow.internal.v0.enums.matias_item_type'];
|
|
37293
|
+
export const matiasItemUpserted = T['io.flow.internal.v0.models.matias_item_upserted'];
|
|
36863
37294
|
export const merchant = T['io.flow.internal.v0.models.merchant'];
|
|
36864
37295
|
export const merchantApplicationSummaries = T['io.flow.internal.v0.models.merchant_application_summaries'];
|
|
36865
37296
|
export const merchantApplicationSummary = T['io.flow.internal.v0.models.merchant_application_summary'];
|
|
@@ -36875,6 +37306,7 @@ export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidie
|
|
|
36875
37306
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
36876
37307
|
export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
|
|
36877
37308
|
export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
|
|
37309
|
+
export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
|
|
36878
37310
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
36879
37311
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
36880
37312
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
@@ -36942,6 +37374,7 @@ export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_pay
|
|
|
36942
37374
|
export const orderPlaced = T['io.flow.internal.v0.models.order_placed'];
|
|
36943
37375
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
36944
37376
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
37377
|
+
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
36945
37378
|
export const orderRevenueRegionChart = T['io.flow.internal.v0.models.order_revenue_region_chart'];
|
|
36946
37379
|
export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_revenue_region_data_point'];
|
|
36947
37380
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
@@ -36955,10 +37388,14 @@ export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_trans
|
|
|
36955
37388
|
export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
|
|
36956
37389
|
export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
|
|
36957
37390
|
export const orderValidation = T['io.flow.internal.v0.models.order_validation'];
|
|
37391
|
+
export const orderValidationDeleted = T['io.flow.internal.v0.models.order_validation_deleted'];
|
|
36958
37392
|
export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
|
|
36959
37393
|
export const orderValidationFailure = T['io.flow.internal.v0.models.order_validation_failure'];
|
|
37394
|
+
export const orderValidationFailureDeleted = T['io.flow.internal.v0.models.order_validation_failure_deleted'];
|
|
36960
37395
|
export const orderValidationFailureSummary = T['io.flow.internal.v0.models.order_validation_failure_summary'];
|
|
37396
|
+
export const orderValidationFailureUpserted = T['io.flow.internal.v0.models.order_validation_failure_upserted'];
|
|
36961
37397
|
export const orderValidationStatus = T['io.flow.internal.v0.enums.order_validation_status'];
|
|
37398
|
+
export const orderValidationUpserted = T['io.flow.internal.v0.models.order_validation_upserted'];
|
|
36962
37399
|
export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
|
|
36963
37400
|
export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
|
|
36964
37401
|
export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
|
|
@@ -37070,6 +37507,7 @@ export const paypalRefundDeleted = T['io.flow.internal.v0.models.paypal_refund_d
|
|
|
37070
37507
|
export const paypalRefundUpserted = T['io.flow.internal.v0.models.paypal_refund_upserted'];
|
|
37071
37508
|
export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_payment'];
|
|
37072
37509
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
37510
|
+
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
37073
37511
|
export const phraseClassified = T['io.flow.internal.v0.models.phrase_classified'];
|
|
37074
37512
|
export const phrasePropagated = T['io.flow.internal.v0.models.phrase_propagated'];
|
|
37075
37513
|
export const pingRequestForm = T['io.flow.internal.v0.models.ping_request_form'];
|
|
@@ -37135,7 +37573,6 @@ export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_po
|
|
|
37135
37573
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
37136
37574
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
37137
37575
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
37138
|
-
export const queuedRecord = T['io.flow.internal.v0.models.queued_record'];
|
|
37139
37576
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
37140
37577
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
37141
37578
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
@@ -37486,6 +37923,7 @@ export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version']
|
|
|
37486
37923
|
export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
|
|
37487
37924
|
export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
|
|
37488
37925
|
export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
|
|
37926
|
+
export const statementCreationMetadata = T['io.flow.internal.v0.models.statement_creation_metadata'];
|
|
37489
37927
|
export const statementStatus = T['io.flow.internal.v0.enums.statement_status'];
|
|
37490
37928
|
export const statementTransferTransactionLocation = T['io.flow.internal.v0.enums.statement_transfer_transaction_location'];
|
|
37491
37929
|
export const statisticType = T['io.flow.internal.v0.enums.statistic_type'];
|
|
@@ -37545,10 +37983,12 @@ export const tariffEligibility = T['io.flow.internal.v0.models.tariff_eligibilit
|
|
|
37545
37983
|
export const tariffEligibilityData = T['io.flow.internal.v0.unions.tariff_eligibility_data'];
|
|
37546
37984
|
export const tariffEligibilityForm = T['io.flow.internal.v0.unions.tariff_eligibility_form'];
|
|
37547
37985
|
export const tariffEligibilityType = T['io.flow.internal.v0.enums.tariff_eligibility_type'];
|
|
37986
|
+
export const task = T['io.flow.internal.v0.models.task'];
|
|
37548
37987
|
export const taskCount = T['io.flow.internal.v0.models.task_count'];
|
|
37549
37988
|
export const taskData = T['io.flow.internal.v0.unions.task_data'];
|
|
37550
37989
|
export const taskImport = T['io.flow.internal.v0.models.task_import'];
|
|
37551
37990
|
export const taskItemUpserted = T['io.flow.internal.v0.models.task_item_upserted'];
|
|
37991
|
+
export const taskMetadata = T['io.flow.internal.v0.unions.task_metadata'];
|
|
37552
37992
|
export const taskProcessQueuedEvent = T['io.flow.internal.v0.models.task_process_queued_event'];
|
|
37553
37993
|
export const taskProcessorKey = T['io.flow.internal.v0.enums.task_processor_key'];
|
|
37554
37994
|
export const taskSummarizeCode = T['io.flow.internal.v0.models.task_summarize_code'];
|
|
@@ -37595,6 +38035,10 @@ export const trackingLabelDeleted = T['io.flow.internal.v0.models.tracking_label
|
|
|
37595
38035
|
export const trackingLabelEventDeletedV2 = T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'];
|
|
37596
38036
|
export const trackingLabelEventUpsertedV2 = T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'];
|
|
37597
38037
|
export const trackingLabelUpserted = T['io.flow.internal.v0.models.tracking_label_upserted'];
|
|
38038
|
+
export const trackingProcessingError = T['io.flow.internal.v0.models.tracking_processing_error'];
|
|
38039
|
+
export const trackingProcessingErrorDeleted = T['io.flow.internal.v0.models.tracking_processing_error_deleted'];
|
|
38040
|
+
export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tracking_processing_error_upserted'];
|
|
38041
|
+
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
37598
38042
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
37599
38043
|
export const trackingRequestUpserted = T['io.flow.internal.v0.models.tracking_request_upserted'];
|
|
37600
38044
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|