@flowio/api-internal-prop-types 9.24.75 → 9.24.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +148 -35
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +148 -35
- package/src/api-internal.js +869 -692
package/src/api-internal.js
CHANGED
|
@@ -394,42 +394,10 @@ T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
|
394
394
|
placeholder: PropTypes.string,
|
|
395
395
|
});
|
|
396
396
|
|
|
397
|
-
T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
|
|
398
|
-
'waiting_for_full_refund',
|
|
399
|
-
'waiting_for_fulfillment',
|
|
400
|
-
'waiting_for_in_transit',
|
|
401
|
-
'waiting_for_next_payout_date',
|
|
402
|
-
'waiting_for_tracking_info',
|
|
403
|
-
'waiting_for_positive_account_balance',
|
|
404
|
-
]);
|
|
405
|
-
|
|
406
397
|
T['io.flow.billing.v0.models.pending_payout_transaction_timeout'] = PropTypes.exact({
|
|
407
398
|
created_at: PropTypes.string.isRequired,
|
|
408
399
|
});
|
|
409
400
|
|
|
410
|
-
T['io.flow.billing.v0.models.pending_payout_transaction_reason'] = PropTypes.exact({
|
|
411
|
-
code: T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'].isRequired,
|
|
412
|
-
created_at: PropTypes.string.isRequired,
|
|
413
|
-
});
|
|
414
|
-
|
|
415
|
-
T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
|
|
416
|
-
id: PropTypes.string.isRequired,
|
|
417
|
-
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
418
|
-
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
419
|
-
created_at: PropTypes.string.isRequired,
|
|
420
|
-
updated_at: PropTypes.string.isRequired,
|
|
421
|
-
deleted_at: PropTypes.string,
|
|
422
|
-
});
|
|
423
|
-
|
|
424
|
-
T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
|
|
425
|
-
id: PropTypes.string.isRequired,
|
|
426
|
-
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
427
|
-
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
428
|
-
created_at: PropTypes.string.isRequired,
|
|
429
|
-
updated_at: PropTypes.string.isRequired,
|
|
430
|
-
deleted_at: PropTypes.string,
|
|
431
|
-
});
|
|
432
|
-
|
|
433
401
|
T['io.flow.billing.v0.enums.payout_attachment_type'] = PropTypes.oneOf(['transactions']);
|
|
434
402
|
|
|
435
403
|
T['io.flow.billing.v0.models.payout_attachment'] = PropTypes.exact({
|
|
@@ -6324,9 +6292,12 @@ T['io.flow.stripe.v0.enums.three_ds_authentication_flow'] = PropTypes.oneOf(['ch
|
|
|
6324
6292
|
T['io.flow.stripe.v0.models.three_d_secure_charge'] = PropTypes.exact({
|
|
6325
6293
|
authenticated: PropTypes.bool,
|
|
6326
6294
|
authentication_flow: T['io.flow.stripe.v0.enums.three_ds_authentication_flow'],
|
|
6295
|
+
electronic_commerce_indicator: PropTypes.string,
|
|
6296
|
+
exemption_indicator: PropTypes.string,
|
|
6327
6297
|
result: T['io.flow.stripe.v0.enums.three_ds_result'],
|
|
6328
6298
|
result_reason: T['io.flow.stripe.v0.enums.three_ds_result_reason'],
|
|
6329
6299
|
succeeded: PropTypes.bool,
|
|
6300
|
+
transaction_id: PropTypes.string,
|
|
6330
6301
|
version: PropTypes.string,
|
|
6331
6302
|
});
|
|
6332
6303
|
|
|
@@ -6466,6 +6437,42 @@ T['io.flow.stripe.v0.models.visa_checkout'] = PropTypes.exact({
|
|
|
6466
6437
|
dynamic_last4: PropTypes.string,
|
|
6467
6438
|
});
|
|
6468
6439
|
|
|
6440
|
+
T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
|
|
6441
|
+
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
6442
|
+
email: PropTypes.string,
|
|
6443
|
+
name: PropTypes.string,
|
|
6444
|
+
phone: PropTypes.string,
|
|
6445
|
+
});
|
|
6446
|
+
|
|
6447
|
+
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
6448
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
6449
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6450
|
+
metadata: PropTypes.object,
|
|
6451
|
+
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6452
|
+
});
|
|
6453
|
+
|
|
6454
|
+
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
|
|
6455
|
+
|
|
6456
|
+
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
6457
|
+
type: PropTypes.oneOf(['card']).isRequired,
|
|
6458
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6459
|
+
metadata: PropTypes.object,
|
|
6460
|
+
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6461
|
+
});
|
|
6462
|
+
|
|
6463
|
+
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
|
|
6464
|
+
|
|
6465
|
+
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
6466
|
+
off_session: PropTypes.bool,
|
|
6467
|
+
payment_method: PropTypes.string,
|
|
6468
|
+
payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
|
|
6469
|
+
payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
|
|
6470
|
+
payment_method_types: PropTypes.arrayOf(PropTypes.string),
|
|
6471
|
+
receipt_email: PropTypes.string,
|
|
6472
|
+
save_payment_method: PropTypes.bool,
|
|
6473
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6474
|
+
});
|
|
6475
|
+
|
|
6469
6476
|
T['io.flow.stripe.v0.models.payment_intent_shipping'] = PropTypes.exact({
|
|
6470
6477
|
address: T['io.flow.stripe.v0.models.address'].isRequired,
|
|
6471
6478
|
name: PropTypes.string.isRequired,
|
|
@@ -6514,40 +6521,13 @@ T['io.flow.stripe.v0.models.masterpass'] = PropTypes.exact({
|
|
|
6514
6521
|
dynamic_last4: PropTypes.string,
|
|
6515
6522
|
});
|
|
6516
6523
|
|
|
6517
|
-
T['io.flow.stripe.v0.models.
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
name: PropTypes.string,
|
|
6521
|
-
phone: PropTypes.string,
|
|
6522
|
-
});
|
|
6523
|
-
|
|
6524
|
-
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
6525
|
-
type: PropTypes.oneOf(['card']).isRequired,
|
|
6526
|
-
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6527
|
-
metadata: PropTypes.object,
|
|
6528
|
-
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6529
|
-
});
|
|
6530
|
-
|
|
6531
|
-
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
|
|
6532
|
-
|
|
6533
|
-
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
6534
|
-
type: PropTypes.oneOf(['card']).isRequired,
|
|
6535
|
-
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6536
|
-
metadata: PropTypes.object,
|
|
6537
|
-
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6524
|
+
T['io.flow.stripe.v0.models.klarna_marketplace_seller_info'] = PropTypes.exact({
|
|
6525
|
+
sub_merchant_id: PropTypes.string,
|
|
6526
|
+
product_category: PropTypes.string,
|
|
6538
6527
|
});
|
|
6539
6528
|
|
|
6540
|
-
T['io.flow.stripe.v0.
|
|
6541
|
-
|
|
6542
|
-
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
6543
|
-
off_session: PropTypes.bool,
|
|
6544
|
-
payment_method: PropTypes.string,
|
|
6545
|
-
payment_method_data: T['io.flow.stripe.v0.unions.payment_method_data'],
|
|
6546
|
-
payment_method_options: T['io.flow.stripe.v0.models.payment_method_options'],
|
|
6547
|
-
payment_method_types: PropTypes.arrayOf(PropTypes.string),
|
|
6548
|
-
receipt_email: PropTypes.string,
|
|
6549
|
-
save_payment_method: PropTypes.bool,
|
|
6550
|
-
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6529
|
+
T['io.flow.stripe.v0.models.klarna_attachment'] = PropTypes.exact({
|
|
6530
|
+
marketplace_seller_info: PropTypes.arrayOf(T['io.flow.stripe.v0.models.klarna_marketplace_seller_info']),
|
|
6551
6531
|
});
|
|
6552
6532
|
|
|
6553
6533
|
T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
|
|
@@ -6570,6 +6550,7 @@ T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
|
|
|
6570
6550
|
'invalid_account',
|
|
6571
6551
|
'invalid_amount',
|
|
6572
6552
|
'invalid_cvc',
|
|
6553
|
+
'invalid_expiry_month',
|
|
6573
6554
|
'invalid_expiry_year',
|
|
6574
6555
|
'invalid_number',
|
|
6575
6556
|
'invalid_pin',
|
|
@@ -6595,30 +6576,6 @@ T['io.flow.stripe.v0.enums.decline_code'] = PropTypes.oneOf([
|
|
|
6595
6576
|
'withdrawal_count_limit_exceeded',
|
|
6596
6577
|
]);
|
|
6597
6578
|
|
|
6598
|
-
T['io.flow.stripe.v0.models.klarna_marketplace_seller_info'] = PropTypes.exact({
|
|
6599
|
-
sub_merchant_id: PropTypes.string,
|
|
6600
|
-
product_category: PropTypes.string,
|
|
6601
|
-
});
|
|
6602
|
-
|
|
6603
|
-
T['io.flow.stripe.v0.models.klarna_attachment'] = PropTypes.exact({
|
|
6604
|
-
marketplace_seller_info: PropTypes.arrayOf(T['io.flow.stripe.v0.models.klarna_marketplace_seller_info']),
|
|
6605
|
-
});
|
|
6606
|
-
|
|
6607
|
-
T['io.flow.stripe.v0.enums.card_error_code'] = PropTypes.oneOf([
|
|
6608
|
-
'invalid_number',
|
|
6609
|
-
'invalid_expiry_month',
|
|
6610
|
-
'invalid_expiry_year',
|
|
6611
|
-
'invalid_cvc',
|
|
6612
|
-
'invalid_swipe_data',
|
|
6613
|
-
'incorrect_number',
|
|
6614
|
-
'expired_card',
|
|
6615
|
-
'incorrect_cvc',
|
|
6616
|
-
'incorrect_zip',
|
|
6617
|
-
'card_declined',
|
|
6618
|
-
'missing',
|
|
6619
|
-
'processing_error',
|
|
6620
|
-
]);
|
|
6621
|
-
|
|
6622
6579
|
T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
|
|
6623
6580
|
'api_connection_error',
|
|
6624
6581
|
'api_error',
|
|
@@ -6833,6 +6790,80 @@ T['io.flow.stripe.v0.enums.network_status'] = PropTypes.oneOf([
|
|
|
6833
6790
|
'reversed_after_approval',
|
|
6834
6791
|
]);
|
|
6835
6792
|
|
|
6793
|
+
T['io.flow.stripe.v0.enums.error_code'] = PropTypes.oneOf([
|
|
6794
|
+
'invalid_number',
|
|
6795
|
+
'invalid_expiry_month',
|
|
6796
|
+
'invalid_expiry_year',
|
|
6797
|
+
'invalid_cvc',
|
|
6798
|
+
'invalid_swipe_data',
|
|
6799
|
+
'country_code_invalid',
|
|
6800
|
+
'email_invalid',
|
|
6801
|
+
'postal_code_invalid',
|
|
6802
|
+
'invalid_characters',
|
|
6803
|
+
'url_invalid',
|
|
6804
|
+
'invalid_charge_amount',
|
|
6805
|
+
'incorrect_number',
|
|
6806
|
+
'incorrect_address',
|
|
6807
|
+
'incorrect_cvc',
|
|
6808
|
+
'incorrect_zip',
|
|
6809
|
+
'card_declined',
|
|
6810
|
+
'expired_card',
|
|
6811
|
+
'missing',
|
|
6812
|
+
'processing_error',
|
|
6813
|
+
'account_closed',
|
|
6814
|
+
'amount_too_small',
|
|
6815
|
+
'amount_too_large',
|
|
6816
|
+
'api_key_expired',
|
|
6817
|
+
'authentication_required',
|
|
6818
|
+
'capture_charge_authorization_expired',
|
|
6819
|
+
'capture_unauthorized_payment',
|
|
6820
|
+
'card_decline_rate_limit_exceeded',
|
|
6821
|
+
'charge_already_captured',
|
|
6822
|
+
'charge_already_refunded',
|
|
6823
|
+
'charge_disputed',
|
|
6824
|
+
'charge_exceeds_source_limit',
|
|
6825
|
+
'charge_expired_for_capture',
|
|
6826
|
+
'charge_invalid_parameter',
|
|
6827
|
+
'charge_not_refundable',
|
|
6828
|
+
'insufficient_funds',
|
|
6829
|
+
'intent_invalid_state',
|
|
6830
|
+
'livemode_mismatch',
|
|
6831
|
+
'parameter_invalid_empty',
|
|
6832
|
+
'parameter_invalid_integer',
|
|
6833
|
+
'parameter_invalid_string_blank',
|
|
6834
|
+
'parameter_invalid_string_empty',
|
|
6835
|
+
'parameter_missing',
|
|
6836
|
+
'parameter_unknown',
|
|
6837
|
+
'parameters_exclusive',
|
|
6838
|
+
'payment_intent_action_required',
|
|
6839
|
+
'payment_intent_authentication_failure',
|
|
6840
|
+
'payment_intent_incompatible_payment_method',
|
|
6841
|
+
'payment_intent_payment_attempt_expired',
|
|
6842
|
+
'payment_intent_payment_attempt_failed',
|
|
6843
|
+
'payment_intent_unexpected_state',
|
|
6844
|
+
'payment_intent_invalid_parameter',
|
|
6845
|
+
'payment_method_billing_details_address_missing',
|
|
6846
|
+
'payment_method_customer_decline',
|
|
6847
|
+
'payment_method_currency_mismatch',
|
|
6848
|
+
'payment_method_invalid_parameter',
|
|
6849
|
+
'payment_method_invalid_parameter_testmode',
|
|
6850
|
+
'payment_method_not_available',
|
|
6851
|
+
'payment_method_provider_decline',
|
|
6852
|
+
'payment_method_provider_timeout',
|
|
6853
|
+
'payment_method_unactivated',
|
|
6854
|
+
'payment_method_unexpected_state',
|
|
6855
|
+
'payment_method_unsupported_type',
|
|
6856
|
+
'platform_api_key_expired',
|
|
6857
|
+
'refund_disputed_payment',
|
|
6858
|
+
'testmode_charges_only',
|
|
6859
|
+
'tls_version_unsupported',
|
|
6860
|
+
'setup_attempt_failed',
|
|
6861
|
+
'setup_intent_authentication_failure',
|
|
6862
|
+
'setup_intent_invalid_parameter',
|
|
6863
|
+
'setup_intent_setup_attempt_expired',
|
|
6864
|
+
'setup_intent_unexpected_state',
|
|
6865
|
+
]);
|
|
6866
|
+
|
|
6836
6867
|
T['io.flow.stripe.v0.enums.payment_status'] = PropTypes.oneOf(['succeeded', 'pending', 'failed']);
|
|
6837
6868
|
|
|
6838
6869
|
T['io.flow.stripe.v0.models.refunds'] = PropTypes.exact({
|
|
@@ -6844,9 +6875,9 @@ T['io.flow.stripe.v0.models.refunds'] = PropTypes.exact({
|
|
|
6844
6875
|
});
|
|
6845
6876
|
|
|
6846
6877
|
T['io.flow.stripe.v0.models.payment_outcome'] = PropTypes.exact({
|
|
6847
|
-
network_status: T['io.flow.stripe.v0.enums.network_status']
|
|
6848
|
-
risk_level: PropTypes.string
|
|
6849
|
-
seller_message: PropTypes.string
|
|
6878
|
+
network_status: T['io.flow.stripe.v0.enums.network_status'],
|
|
6879
|
+
risk_level: PropTypes.string,
|
|
6880
|
+
seller_message: PropTypes.string,
|
|
6850
6881
|
reason: PropTypes.string,
|
|
6851
6882
|
type: T['io.flow.stripe.v0.enums.payment_outcome_type'],
|
|
6852
6883
|
});
|
|
@@ -6912,17 +6943,6 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
6912
6943
|
type: PropTypes.string,
|
|
6913
6944
|
});
|
|
6914
6945
|
|
|
6915
|
-
T['io.flow.stripe.v0.models.last_payment_error'] = PropTypes.exact({
|
|
6916
|
-
charge: PropTypes.string,
|
|
6917
|
-
code: PropTypes.string,
|
|
6918
|
-
decline_code: T['io.flow.stripe.v0.enums.decline_code'],
|
|
6919
|
-
doc_url: PropTypes.string,
|
|
6920
|
-
message: PropTypes.string,
|
|
6921
|
-
param: PropTypes.string,
|
|
6922
|
-
payment_method: T['io.flow.stripe.v0.models.payment_method'].isRequired,
|
|
6923
|
-
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
6924
|
-
});
|
|
6925
|
-
|
|
6926
6946
|
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
6927
6947
|
|
|
6928
6948
|
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
@@ -7045,7 +7065,7 @@ T['io.flow.stripe.v0.models.charge_source_optional'] = PropTypes.exact({
|
|
|
7045
7065
|
balance_transaction: PropTypes.string,
|
|
7046
7066
|
destination: PropTypes.string,
|
|
7047
7067
|
dispute: PropTypes.string,
|
|
7048
|
-
failure_code:
|
|
7068
|
+
failure_code: T['io.flow.stripe.v0.enums.error_code'],
|
|
7049
7069
|
failure_message: PropTypes.string,
|
|
7050
7070
|
on_behalf_of: PropTypes.string,
|
|
7051
7071
|
review: PropTypes.string,
|
|
@@ -7084,7 +7104,7 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
|
|
|
7084
7104
|
customer: PropTypes.string,
|
|
7085
7105
|
description: PropTypes.string,
|
|
7086
7106
|
invoice: PropTypes.string,
|
|
7087
|
-
last_payment_error:
|
|
7107
|
+
last_payment_error: PropTypes.any,
|
|
7088
7108
|
livemode: PropTypes.bool.isRequired,
|
|
7089
7109
|
metadata: T['io.flow.stripe.v0.models.metadata'],
|
|
7090
7110
|
next_action: T['io.flow.stripe.v0.models.next_action'],
|
|
@@ -7108,14 +7128,15 @@ T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
|
|
|
7108
7128
|
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
7109
7129
|
charge: PropTypes.string,
|
|
7110
7130
|
message: PropTypes.string,
|
|
7111
|
-
code: T['io.flow.stripe.v0.enums.
|
|
7112
|
-
decline_code:
|
|
7131
|
+
code: T['io.flow.stripe.v0.enums.error_code'],
|
|
7132
|
+
decline_code: T['io.flow.stripe.v0.enums.decline_code'],
|
|
7113
7133
|
param: PropTypes.string,
|
|
7114
7134
|
payment_intent: T['io.flow.stripe.v0.models.payment_intent'],
|
|
7135
|
+
payment_method: T['io.flow.stripe.v0.models.payment_method'],
|
|
7115
7136
|
});
|
|
7116
7137
|
|
|
7117
7138
|
T['io.flow.stripe.v0.models.error'] = PropTypes.exact({
|
|
7118
|
-
error:
|
|
7139
|
+
error: PropTypes.any.isRequired,
|
|
7119
7140
|
});
|
|
7120
7141
|
|
|
7121
7142
|
T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
@@ -7136,7 +7157,7 @@ T['io.flow.stripe.v0.models.charge'] = PropTypes.exact({
|
|
|
7136
7157
|
balance_transaction: PropTypes.string,
|
|
7137
7158
|
destination: PropTypes.string,
|
|
7138
7159
|
dispute: PropTypes.string,
|
|
7139
|
-
failure_code:
|
|
7160
|
+
failure_code: T['io.flow.stripe.v0.enums.error_code'],
|
|
7140
7161
|
failure_message: PropTypes.string,
|
|
7141
7162
|
on_behalf_of: PropTypes.string,
|
|
7142
7163
|
review: PropTypes.string,
|
|
@@ -7198,6 +7219,7 @@ T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropT
|
|
|
7198
7219
|
|
|
7199
7220
|
T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
7200
7221
|
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
7222
|
+
description: PropTypes.string.isRequired,
|
|
7201
7223
|
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
7202
7224
|
url: PropTypes.string,
|
|
7203
7225
|
});
|
|
@@ -7665,19 +7687,6 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
|
|
|
7665
7687
|
amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
|
|
7666
7688
|
});
|
|
7667
7689
|
|
|
7668
|
-
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
7669
|
-
id: PropTypes.string.isRequired,
|
|
7670
|
-
key: PropTypes.string.isRequired,
|
|
7671
|
-
});
|
|
7672
|
-
|
|
7673
|
-
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
7674
|
-
id: PropTypes.string.isRequired,
|
|
7675
|
-
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
7676
|
-
name: PropTypes.string.isRequired,
|
|
7677
|
-
identifier: PropTypes.string.isRequired,
|
|
7678
|
-
primary: PropTypes.bool.isRequired,
|
|
7679
|
-
});
|
|
7680
|
-
|
|
7681
7690
|
T['io.flow.payment.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
7682
7691
|
T['io.flow.payment.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
|
|
7683
7692
|
|
|
@@ -8365,6 +8374,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8365
8374
|
round_individual_transactions: PropTypes.bool.isRequired,
|
|
8366
8375
|
liabilities_method: T['io.flow.billing.internal.v0.enums.account_setting_liabilities_method'].isRequired,
|
|
8367
8376
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
8377
|
+
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
8368
8378
|
});
|
|
8369
8379
|
|
|
8370
8380
|
T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
|
|
@@ -8377,10 +8387,9 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
8377
8387
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8378
8388
|
});
|
|
8379
8389
|
|
|
8380
|
-
T['io.flow.
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
center_key: PropTypes.string.isRequired,
|
|
8390
|
+
T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
8391
|
+
name: PropTypes.string.isRequired,
|
|
8392
|
+
description: PropTypes.string,
|
|
8384
8393
|
});
|
|
8385
8394
|
|
|
8386
8395
|
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
|
|
@@ -10057,6 +10066,13 @@ T['io.flow.internal.v0.models.localized_content_upserted'] = PropTypes.exact({
|
|
|
10057
10066
|
source_localization_id: PropTypes.string.isRequired,
|
|
10058
10067
|
});
|
|
10059
10068
|
|
|
10069
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'] = PropTypes.exact({
|
|
10070
|
+
discriminator: PropTypes.oneOf(['commercial_invoice_internal_deleted']).isRequired,
|
|
10071
|
+
event_id: PropTypes.string.isRequired,
|
|
10072
|
+
timestamp: PropTypes.string.isRequired,
|
|
10073
|
+
id: PropTypes.string.isRequired,
|
|
10074
|
+
});
|
|
10075
|
+
|
|
10060
10076
|
T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
|
|
10061
10077
|
discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
|
|
10062
10078
|
event_id: PropTypes.string.isRequired,
|
|
@@ -11581,6 +11597,19 @@ T['io.flow.internal.v0.models.sales_record_upserted'] = PropTypes.exact({
|
|
|
11581
11597
|
sales_record: T['io.flow.billing.reporting.csv.v0.models.sales_record'].isRequired,
|
|
11582
11598
|
});
|
|
11583
11599
|
|
|
11600
|
+
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
11601
|
+
id: PropTypes.string.isRequired,
|
|
11602
|
+
key: PropTypes.string.isRequired,
|
|
11603
|
+
});
|
|
11604
|
+
|
|
11605
|
+
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
11606
|
+
id: PropTypes.string.isRequired,
|
|
11607
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
11608
|
+
name: PropTypes.string.isRequired,
|
|
11609
|
+
identifier: PropTypes.string.isRequired,
|
|
11610
|
+
primary: PropTypes.bool.isRequired,
|
|
11611
|
+
});
|
|
11612
|
+
|
|
11584
11613
|
T['io.flow.return.v0.models.return_reason'] = PropTypes.exact({
|
|
11585
11614
|
name: PropTypes.string.isRequired,
|
|
11586
11615
|
});
|
|
@@ -11616,6 +11645,12 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
11616
11645
|
result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
|
|
11617
11646
|
});
|
|
11618
11647
|
|
|
11648
|
+
T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
|
|
11649
|
+
discriminator: PropTypes.oneOf(['by_refund']).isRequired,
|
|
11650
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
11651
|
+
});
|
|
11652
|
+
|
|
11653
|
+
T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.return_trigger_refund']]);
|
|
11619
11654
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11620
11655
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
11621
11656
|
|
|
@@ -11900,6 +11935,8 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
|
11900
11935
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11901
11936
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11902
11937
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11938
|
+
positive_search_matches: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11939
|
+
negative_search_matches: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11903
11940
|
});
|
|
11904
11941
|
|
|
11905
11942
|
T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
|
|
@@ -13553,33 +13590,6 @@ T['io.flow.internal.v0.enums.no_liability_reason_code'] = PropTypes.oneOf([
|
|
|
13553
13590
|
'duty_free_by_trade_agreement',
|
|
13554
13591
|
]);
|
|
13555
13592
|
|
|
13556
|
-
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
13557
|
-
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
13558
|
-
number: PropTypes.string.isRequired,
|
|
13559
|
-
issuing_country: PropTypes.string,
|
|
13560
|
-
});
|
|
13561
|
-
|
|
13562
|
-
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
13563
|
-
number: PropTypes.string.isRequired,
|
|
13564
|
-
country: PropTypes.string.isRequired,
|
|
13565
|
-
});
|
|
13566
|
-
|
|
13567
|
-
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
13568
|
-
name: PropTypes.string.isRequired,
|
|
13569
|
-
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
13570
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13571
|
-
city: PropTypes.string.isRequired,
|
|
13572
|
-
province: PropTypes.string,
|
|
13573
|
-
postal: PropTypes.string,
|
|
13574
|
-
country: PropTypes.string.isRequired,
|
|
13575
|
-
phone: PropTypes.string,
|
|
13576
|
-
email: PropTypes.string,
|
|
13577
|
-
starts_at: PropTypes.string.isRequired,
|
|
13578
|
-
ends_at: PropTypes.string,
|
|
13579
|
-
center: PropTypes.string,
|
|
13580
|
-
currency: PropTypes.string,
|
|
13581
|
-
});
|
|
13582
|
-
|
|
13583
13593
|
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13584
13594
|
eori_number: PropTypes.string,
|
|
13585
13595
|
});
|
|
@@ -14811,6 +14821,13 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
|
14811
14821
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14812
14822
|
});
|
|
14813
14823
|
|
|
14824
|
+
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
14825
|
+
country: PropTypes.string.isRequired,
|
|
14826
|
+
province_code: PropTypes.string,
|
|
14827
|
+
});
|
|
14828
|
+
|
|
14829
|
+
T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
|
|
14830
|
+
|
|
14814
14831
|
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
14815
14832
|
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
14816
14833
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
@@ -14824,20 +14841,13 @@ T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
|
14824
14841
|
});
|
|
14825
14842
|
|
|
14826
14843
|
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
14827
|
-
|
|
14844
|
+
product: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
|
|
14828
14845
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14829
14846
|
freight: T['io.flow.internal.v0.models.shopper_freight'].isRequired,
|
|
14830
14847
|
order_discount: PropTypes.number.isRequired,
|
|
14831
14848
|
total: PropTypes.number.isRequired,
|
|
14832
14849
|
});
|
|
14833
14850
|
|
|
14834
|
-
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
14835
|
-
country: PropTypes.string.isRequired,
|
|
14836
|
-
province_code: PropTypes.string,
|
|
14837
|
-
});
|
|
14838
|
-
|
|
14839
|
-
T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
|
|
14840
|
-
|
|
14841
14851
|
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
14842
14852
|
'millimeter',
|
|
14843
14853
|
'centimeter',
|
|
@@ -15368,74 +15378,6 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.
|
|
|
15368
15378
|
fulfilled_via_replacement_order: PropTypes.bool,
|
|
15369
15379
|
});
|
|
15370
15380
|
|
|
15371
|
-
T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
15372
|
-
'label_created',
|
|
15373
|
-
'pending',
|
|
15374
|
-
'info_received',
|
|
15375
|
-
'picked_up',
|
|
15376
|
-
'in_transit',
|
|
15377
|
-
'out_for_delivery',
|
|
15378
|
-
'attempt_fail',
|
|
15379
|
-
'delivered',
|
|
15380
|
-
'exception',
|
|
15381
|
-
'returned',
|
|
15382
|
-
'expired',
|
|
15383
|
-
]);
|
|
15384
|
-
|
|
15385
|
-
T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
|
|
15386
|
-
id: PropTypes.string.isRequired,
|
|
15387
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15388
|
-
order_number: PropTypes.string,
|
|
15389
|
-
});
|
|
15390
|
-
|
|
15391
|
-
T['io.flow.tracking.v0.models.tracking_label_summary'] = PropTypes.exact({
|
|
15392
|
-
id: PropTypes.string.isRequired,
|
|
15393
|
-
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
15394
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15395
|
-
carrier: PropTypes.string.isRequired,
|
|
15396
|
-
tracking_number: PropTypes.string.isRequired,
|
|
15397
|
-
});
|
|
15398
|
-
|
|
15399
|
-
T['io.flow.tracking.v0.models.tracking_event_summary'] = PropTypes.exact({
|
|
15400
|
-
id: PropTypes.string.isRequired,
|
|
15401
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15402
|
-
timestamp: PropTypes.string.isRequired,
|
|
15403
|
-
});
|
|
15404
|
-
|
|
15405
|
-
T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
|
|
15406
|
-
tracking_label_id: PropTypes.string.isRequired,
|
|
15407
|
-
timestamp: PropTypes.string.isRequired,
|
|
15408
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15409
|
-
description: PropTypes.string,
|
|
15410
|
-
address: PropTypes.string,
|
|
15411
|
-
});
|
|
15412
|
-
|
|
15413
|
-
T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
|
|
15414
|
-
id: PropTypes.string.isRequired,
|
|
15415
|
-
carrier: PropTypes.string.isRequired,
|
|
15416
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
15417
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15418
|
-
created_at: PropTypes.string.isRequired,
|
|
15419
|
-
delivery_estimate: PropTypes.string,
|
|
15420
|
-
description: PropTypes.string,
|
|
15421
|
-
});
|
|
15422
|
-
|
|
15423
|
-
T['io.flow.internal.v0.models.tracking_label_upserted'] = PropTypes.exact({
|
|
15424
|
-
discriminator: PropTypes.oneOf(['tracking_label_upserted']).isRequired,
|
|
15425
|
-
event_id: PropTypes.string.isRequired,
|
|
15426
|
-
timestamp: PropTypes.string.isRequired,
|
|
15427
|
-
organization: PropTypes.string.isRequired,
|
|
15428
|
-
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
15429
|
-
});
|
|
15430
|
-
|
|
15431
|
-
T['io.flow.internal.v0.models.tracking_label_deleted'] = PropTypes.exact({
|
|
15432
|
-
discriminator: PropTypes.oneOf(['tracking_label_deleted']).isRequired,
|
|
15433
|
-
event_id: PropTypes.string.isRequired,
|
|
15434
|
-
timestamp: PropTypes.string.isRequired,
|
|
15435
|
-
organization: PropTypes.string.isRequired,
|
|
15436
|
-
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
15437
|
-
});
|
|
15438
|
-
|
|
15439
15381
|
T['io.flow.internal.v0.models.time_with_timezone'] = PropTypes.exact({
|
|
15440
15382
|
time: PropTypes.string.isRequired,
|
|
15441
15383
|
timezone: PropTypes.string.isRequired,
|
|
@@ -16138,6 +16080,15 @@ T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
|
|
|
16138
16080
|
value: PropTypes.number.isRequired,
|
|
16139
16081
|
});
|
|
16140
16082
|
|
|
16083
|
+
T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
|
|
16084
|
+
'waiting_for_full_refund',
|
|
16085
|
+
'waiting_for_fulfillment',
|
|
16086
|
+
'waiting_for_in_transit',
|
|
16087
|
+
'waiting_for_next_payout_date',
|
|
16088
|
+
'waiting_for_tracking_info',
|
|
16089
|
+
'waiting_for_positive_account_balance',
|
|
16090
|
+
]);
|
|
16091
|
+
|
|
16141
16092
|
T['io.flow.internal.v0.enums.main_transaction_status'] = PropTypes.oneOf(['scheduled', 'pending_proof']);
|
|
16142
16093
|
|
|
16143
16094
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
@@ -16196,6 +16147,13 @@ T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
|
16196
16147
|
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
16197
16148
|
});
|
|
16198
16149
|
|
|
16150
|
+
T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
16151
|
+
organization_id: PropTypes.string.isRequired,
|
|
16152
|
+
number: PropTypes.string.isRequired,
|
|
16153
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
16154
|
+
submitted_at: PropTypes.string,
|
|
16155
|
+
});
|
|
16156
|
+
|
|
16199
16157
|
T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
|
|
16200
16158
|
id: PropTypes.string.isRequired,
|
|
16201
16159
|
type: PropTypes.string.isRequired,
|
|
@@ -16371,211 +16329,6 @@ T['io.flow.internal.v0.models.customs_product_attribute_label'] = PropTypes.exac
|
|
|
16371
16329
|
value: PropTypes.string.isRequired,
|
|
16372
16330
|
});
|
|
16373
16331
|
|
|
16374
|
-
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
16375
|
-
text: PropTypes.string,
|
|
16376
|
-
streets: PropTypes.arrayOf(PropTypes.string),
|
|
16377
|
-
street_number: PropTypes.string,
|
|
16378
|
-
city: PropTypes.string,
|
|
16379
|
-
province: PropTypes.string,
|
|
16380
|
-
postal: PropTypes.string,
|
|
16381
|
-
country: PropTypes.string,
|
|
16382
|
-
latitude: PropTypes.string,
|
|
16383
|
-
longitude: PropTypes.string,
|
|
16384
|
-
});
|
|
16385
|
-
|
|
16386
|
-
T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
|
|
16387
|
-
id: PropTypes.string.isRequired,
|
|
16388
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16389
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16390
|
-
timestamp: PropTypes.string.isRequired,
|
|
16391
|
-
description: PropTypes.string,
|
|
16392
|
-
});
|
|
16393
|
-
|
|
16394
|
-
T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
16395
|
-
id: PropTypes.string.isRequired,
|
|
16396
|
-
carrier: PropTypes.string.isRequired,
|
|
16397
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16398
|
-
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
16399
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16400
|
-
timestamp: PropTypes.string.isRequired,
|
|
16401
|
-
delivery_estimate: PropTypes.string,
|
|
16402
|
-
description: PropTypes.string,
|
|
16403
|
-
});
|
|
16404
|
-
|
|
16405
|
-
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
16406
|
-
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
16407
|
-
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16408
|
-
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16409
|
-
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16410
|
-
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16411
|
-
business_url: PropTypes.string.isRequired,
|
|
16412
|
-
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16413
|
-
});
|
|
16414
|
-
|
|
16415
|
-
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
16416
|
-
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
16417
|
-
);
|
|
16418
|
-
|
|
16419
|
-
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
16420
|
-
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
16421
|
-
id: PropTypes.string.isRequired,
|
|
16422
|
-
organization_id: PropTypes.string.isRequired,
|
|
16423
|
-
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
16424
|
-
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16425
|
-
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16426
|
-
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16427
|
-
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16428
|
-
business_url: PropTypes.string.isRequired,
|
|
16429
|
-
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16430
|
-
});
|
|
16431
|
-
|
|
16432
|
-
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
16433
|
-
|
|
16434
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
|
|
16435
|
-
id: PropTypes.string.isRequired,
|
|
16436
|
-
key: PropTypes.string.isRequired,
|
|
16437
|
-
name: PropTypes.string.isRequired,
|
|
16438
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16439
|
-
});
|
|
16440
|
-
|
|
16441
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16442
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16443
|
-
});
|
|
16444
|
-
|
|
16445
|
-
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
16446
|
-
line_number: PropTypes.string.isRequired,
|
|
16447
|
-
item_number: PropTypes.string.isRequired,
|
|
16448
|
-
ship_from: T['io.flow.common.v0.models.address'],
|
|
16449
|
-
quantity: PropTypes.number.isRequired,
|
|
16450
|
-
amount: PropTypes.number.isRequired,
|
|
16451
|
-
tax_code: PropTypes.string,
|
|
16452
|
-
sku: PropTypes.string,
|
|
16453
|
-
description: PropTypes.string,
|
|
16454
|
-
category_code: PropTypes.string,
|
|
16455
|
-
});
|
|
16456
|
-
|
|
16457
|
-
T['io.flow.internal.v0.models.tax_calculation_form'] = PropTypes.exact({
|
|
16458
|
-
order_number: PropTypes.string.isRequired,
|
|
16459
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16460
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16461
|
-
order_date: PropTypes.string.isRequired,
|
|
16462
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16463
|
-
shipping_amount: PropTypes.number.isRequired,
|
|
16464
|
-
customer_code: PropTypes.string,
|
|
16465
|
-
});
|
|
16466
|
-
|
|
16467
|
-
T['io.flow.internal.v0.models.smp_tax_calculation_form'] = PropTypes.exact({
|
|
16468
|
-
quote_reference: PropTypes.string.isRequired,
|
|
16469
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16470
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16471
|
-
order_date: PropTypes.string.isRequired,
|
|
16472
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16473
|
-
shipping_amount: PropTypes.number.isRequired,
|
|
16474
|
-
customer_code: PropTypes.string,
|
|
16475
|
-
});
|
|
16476
|
-
|
|
16477
|
-
T['io.flow.internal.v0.models.tax_calculation_line_item'] = PropTypes.exact({
|
|
16478
|
-
line_number: PropTypes.string.isRequired,
|
|
16479
|
-
item_number: PropTypes.string.isRequired,
|
|
16480
|
-
ship_from: T['io.flow.common.v0.models.address'],
|
|
16481
|
-
quantity: PropTypes.number.isRequired,
|
|
16482
|
-
total: PropTypes.number.isRequired,
|
|
16483
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16484
|
-
sku: PropTypes.string,
|
|
16485
|
-
description: PropTypes.string,
|
|
16486
|
-
});
|
|
16487
|
-
|
|
16488
|
-
T['io.flow.internal.v0.models.tax_calculation'] = PropTypes.exact({
|
|
16489
|
-
order_number: PropTypes.string.isRequired,
|
|
16490
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16491
|
-
total: PropTypes.number.isRequired,
|
|
16492
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16493
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16494
|
-
shipping_total: PropTypes.number.isRequired,
|
|
16495
|
-
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16496
|
-
customer_code: PropTypes.string,
|
|
16497
|
-
});
|
|
16498
|
-
|
|
16499
|
-
T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
|
|
16500
|
-
quote_reference: PropTypes.string.isRequired,
|
|
16501
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16502
|
-
total: PropTypes.number.isRequired,
|
|
16503
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16504
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16505
|
-
shipping_total: PropTypes.number.isRequired,
|
|
16506
|
-
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16507
|
-
customer_code: PropTypes.string,
|
|
16508
|
-
});
|
|
16509
|
-
|
|
16510
|
-
T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16511
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16512
|
-
});
|
|
16513
|
-
|
|
16514
|
-
T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
|
|
16515
|
-
item_reference: PropTypes.string.isRequired,
|
|
16516
|
-
hs_code: PropTypes.string.isRequired,
|
|
16517
|
-
origin: PropTypes.string.isRequired,
|
|
16518
|
-
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16519
|
-
});
|
|
16520
|
-
|
|
16521
|
-
T['io.flow.internal.v0.models.rate_and_rule_lookup_form'] = PropTypes.exact({
|
|
16522
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16523
|
-
effective_date: PropTypes.string.isRequired,
|
|
16524
|
-
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item_form']).isRequired,
|
|
16525
|
-
});
|
|
16526
|
-
|
|
16527
|
-
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
16528
|
-
id: PropTypes.string.isRequired,
|
|
16529
|
-
address: T['io.flow.common.v0.models.address'],
|
|
16530
|
-
carrier: PropTypes.string.isRequired,
|
|
16531
|
-
carrier_timestamp: PropTypes.string.isRequired,
|
|
16532
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16533
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
16534
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16535
|
-
delivery_estimate: PropTypes.string,
|
|
16536
|
-
description: PropTypes.string,
|
|
16537
|
-
order_number: PropTypes.string,
|
|
16538
|
-
});
|
|
16539
|
-
|
|
16540
|
-
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
16541
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
|
|
16542
|
-
event_id: PropTypes.string.isRequired,
|
|
16543
|
-
timestamp: PropTypes.string.isRequired,
|
|
16544
|
-
organization: PropTypes.string.isRequired,
|
|
16545
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
16546
|
-
});
|
|
16547
|
-
|
|
16548
|
-
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
|
|
16549
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
|
|
16550
|
-
event_id: PropTypes.string.isRequired,
|
|
16551
|
-
timestamp: PropTypes.string.isRequired,
|
|
16552
|
-
organization: PropTypes.string.isRequired,
|
|
16553
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
16554
|
-
});
|
|
16555
|
-
|
|
16556
|
-
T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
16557
|
-
id: PropTypes.string.isRequired,
|
|
16558
|
-
failed_at: PropTypes.string.isRequired,
|
|
16559
|
-
error: PropTypes.string.isRequired,
|
|
16560
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16561
|
-
});
|
|
16562
|
-
|
|
16563
|
-
T['io.flow.internal.v0.models.label_generation_address_failures'] = PropTypes.exact({
|
|
16564
|
-
id: PropTypes.string.isRequired,
|
|
16565
|
-
organization_id: PropTypes.string.isRequired,
|
|
16566
|
-
status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
|
|
16567
|
-
order_number: PropTypes.string.isRequired,
|
|
16568
|
-
order_submitted_at: PropTypes.string.isRequired,
|
|
16569
|
-
carrier_id: PropTypes.string.isRequired,
|
|
16570
|
-
destination_errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_error']).isRequired,
|
|
16571
|
-
});
|
|
16572
|
-
|
|
16573
|
-
T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
|
|
16574
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16575
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16576
|
-
ship_from: T['io.flow.common.v0.models.address'].isRequired,
|
|
16577
|
-
});
|
|
16578
|
-
|
|
16579
16332
|
T['io.flow.internal.v0.models.customs_product_labels'] = PropTypes.exact({
|
|
16580
16333
|
item_type: PropTypes.string.isRequired,
|
|
16581
16334
|
gender: T['io.flow.internal.v0.models.customs_product_attribute_label'],
|
|
@@ -16613,34 +16366,6 @@ T['io.flow.price.v0.models.price_equation'] = PropTypes.exact({
|
|
|
16613
16366
|
percent_sales_margin: PropTypes.number.isRequired,
|
|
16614
16367
|
});
|
|
16615
16368
|
|
|
16616
|
-
T['io.flow.internal.v0.models.rate_and_rule_item'] = PropTypes.exact({
|
|
16617
|
-
item_reference: PropTypes.string.isRequired,
|
|
16618
|
-
hs_code: PropTypes.string.isRequired,
|
|
16619
|
-
origin: PropTypes.string.isRequired,
|
|
16620
|
-
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16621
|
-
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16622
|
-
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16623
|
-
duty_selection_rule: T['io.flow.internal.v0.enums.duty_selection_rule'].isRequired,
|
|
16624
|
-
});
|
|
16625
|
-
|
|
16626
|
-
T['io.flow.internal.v0.models.rate_and_rule_lookup'] = PropTypes.exact({
|
|
16627
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16628
|
-
effective_date: PropTypes.string.isRequired,
|
|
16629
|
-
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item']).isRequired,
|
|
16630
|
-
});
|
|
16631
|
-
|
|
16632
|
-
T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
|
|
16633
|
-
item: T['io.flow.harmonization.v0.models.harmonized_item_reference'].isRequired,
|
|
16634
|
-
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16635
|
-
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16636
|
-
tax_applicability: T['io.flow.harmonization.v0.enums.tax_applicability'],
|
|
16637
|
-
origin: PropTypes.string,
|
|
16638
|
-
hs_code: PropTypes.string,
|
|
16639
|
-
tariff_code: PropTypes.string,
|
|
16640
|
-
customs_description: PropTypes.string,
|
|
16641
|
-
source_address: T['io.flow.common.v0.models.address'],
|
|
16642
|
-
});
|
|
16643
|
-
|
|
16644
16369
|
T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'] = PropTypes.exact({
|
|
16645
16370
|
discriminator: PropTypes.oneOf(['rex']).isRequired,
|
|
16646
16371
|
number: PropTypes.string.isRequired,
|
|
@@ -16804,6 +16529,237 @@ T['io.flow.internal.v0.models.compliance'] = PropTypes.exact({
|
|
|
16804
16529
|
data: T['io.flow.internal.v0.unions.compliance_data'].isRequired,
|
|
16805
16530
|
});
|
|
16806
16531
|
|
|
16532
|
+
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
16533
|
+
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
16534
|
+
number: PropTypes.string.isRequired,
|
|
16535
|
+
issuing_country: PropTypes.string,
|
|
16536
|
+
});
|
|
16537
|
+
|
|
16538
|
+
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
16539
|
+
number: PropTypes.string.isRequired,
|
|
16540
|
+
country: PropTypes.string.isRequired,
|
|
16541
|
+
});
|
|
16542
|
+
|
|
16543
|
+
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
16544
|
+
name: PropTypes.string.isRequired,
|
|
16545
|
+
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
16546
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16547
|
+
city: PropTypes.string.isRequired,
|
|
16548
|
+
province: PropTypes.string,
|
|
16549
|
+
postal: PropTypes.string,
|
|
16550
|
+
country: PropTypes.string.isRequired,
|
|
16551
|
+
phone: PropTypes.string,
|
|
16552
|
+
email: PropTypes.string,
|
|
16553
|
+
starts_at: PropTypes.string.isRequired,
|
|
16554
|
+
ends_at: PropTypes.string,
|
|
16555
|
+
center: PropTypes.string,
|
|
16556
|
+
currency: PropTypes.string,
|
|
16557
|
+
});
|
|
16558
|
+
|
|
16559
|
+
T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
16560
|
+
discriminator: PropTypes.oneOf(['center_reference']).isRequired,
|
|
16561
|
+
organization_id: PropTypes.string.isRequired,
|
|
16562
|
+
center_key: PropTypes.string.isRequired,
|
|
16563
|
+
});
|
|
16564
|
+
|
|
16565
|
+
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
16566
|
+
text: PropTypes.string,
|
|
16567
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
16568
|
+
street_number: PropTypes.string,
|
|
16569
|
+
city: PropTypes.string,
|
|
16570
|
+
province: PropTypes.string,
|
|
16571
|
+
postal: PropTypes.string,
|
|
16572
|
+
country: PropTypes.string,
|
|
16573
|
+
latitude: PropTypes.string,
|
|
16574
|
+
longitude: PropTypes.string,
|
|
16575
|
+
});
|
|
16576
|
+
|
|
16577
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
16578
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
16579
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16580
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16581
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16582
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16583
|
+
business_url: PropTypes.string.isRequired,
|
|
16584
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16585
|
+
});
|
|
16586
|
+
|
|
16587
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
16588
|
+
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
16589
|
+
);
|
|
16590
|
+
|
|
16591
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
16592
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
16593
|
+
id: PropTypes.string.isRequired,
|
|
16594
|
+
organization_id: PropTypes.string.isRequired,
|
|
16595
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
16596
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16597
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16598
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16599
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16600
|
+
business_url: PropTypes.string.isRequired,
|
|
16601
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16602
|
+
});
|
|
16603
|
+
|
|
16604
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
16605
|
+
|
|
16606
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
|
|
16607
|
+
id: PropTypes.string.isRequired,
|
|
16608
|
+
key: PropTypes.string.isRequired,
|
|
16609
|
+
name: PropTypes.string.isRequired,
|
|
16610
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16611
|
+
});
|
|
16612
|
+
|
|
16613
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16614
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16615
|
+
});
|
|
16616
|
+
|
|
16617
|
+
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
16618
|
+
line_number: PropTypes.string.isRequired,
|
|
16619
|
+
item_number: PropTypes.string.isRequired,
|
|
16620
|
+
ship_from: T['io.flow.common.v0.models.address'],
|
|
16621
|
+
quantity: PropTypes.number.isRequired,
|
|
16622
|
+
amount: PropTypes.number.isRequired,
|
|
16623
|
+
tax_code: PropTypes.string,
|
|
16624
|
+
sku: PropTypes.string,
|
|
16625
|
+
description: PropTypes.string,
|
|
16626
|
+
category_code: PropTypes.string,
|
|
16627
|
+
});
|
|
16628
|
+
|
|
16629
|
+
T['io.flow.internal.v0.models.tax_calculation_form'] = PropTypes.exact({
|
|
16630
|
+
order_number: PropTypes.string.isRequired,
|
|
16631
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
16632
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16633
|
+
order_date: PropTypes.string.isRequired,
|
|
16634
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16635
|
+
shipping_amount: PropTypes.number.isRequired,
|
|
16636
|
+
customer_code: PropTypes.string,
|
|
16637
|
+
});
|
|
16638
|
+
|
|
16639
|
+
T['io.flow.internal.v0.models.smp_tax_calculation_form'] = PropTypes.exact({
|
|
16640
|
+
quote_reference: PropTypes.string.isRequired,
|
|
16641
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
16642
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16643
|
+
order_date: PropTypes.string.isRequired,
|
|
16644
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16645
|
+
shipping_amount: PropTypes.number.isRequired,
|
|
16646
|
+
customer_code: PropTypes.string,
|
|
16647
|
+
});
|
|
16648
|
+
|
|
16649
|
+
T['io.flow.internal.v0.models.tax_calculation_line_item'] = PropTypes.exact({
|
|
16650
|
+
line_number: PropTypes.string.isRequired,
|
|
16651
|
+
item_number: PropTypes.string.isRequired,
|
|
16652
|
+
ship_from: T['io.flow.common.v0.models.address'],
|
|
16653
|
+
quantity: PropTypes.number.isRequired,
|
|
16654
|
+
total: PropTypes.number.isRequired,
|
|
16655
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16656
|
+
sku: PropTypes.string,
|
|
16657
|
+
description: PropTypes.string,
|
|
16658
|
+
});
|
|
16659
|
+
|
|
16660
|
+
T['io.flow.internal.v0.models.tax_calculation'] = PropTypes.exact({
|
|
16661
|
+
order_number: PropTypes.string.isRequired,
|
|
16662
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
16663
|
+
total: PropTypes.number.isRequired,
|
|
16664
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16665
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16666
|
+
shipping_total: PropTypes.number.isRequired,
|
|
16667
|
+
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16668
|
+
customer_code: PropTypes.string,
|
|
16669
|
+
});
|
|
16670
|
+
|
|
16671
|
+
T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
|
|
16672
|
+
quote_reference: PropTypes.string.isRequired,
|
|
16673
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
16674
|
+
total: PropTypes.number.isRequired,
|
|
16675
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16676
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16677
|
+
shipping_total: PropTypes.number.isRequired,
|
|
16678
|
+
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16679
|
+
customer_code: PropTypes.string,
|
|
16680
|
+
});
|
|
16681
|
+
|
|
16682
|
+
T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16683
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16684
|
+
});
|
|
16685
|
+
|
|
16686
|
+
T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
|
|
16687
|
+
item_reference: PropTypes.string.isRequired,
|
|
16688
|
+
hs_code: PropTypes.string.isRequired,
|
|
16689
|
+
origin: PropTypes.string.isRequired,
|
|
16690
|
+
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16691
|
+
});
|
|
16692
|
+
|
|
16693
|
+
T['io.flow.internal.v0.models.rate_and_rule_lookup_form'] = PropTypes.exact({
|
|
16694
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16695
|
+
effective_date: PropTypes.string.isRequired,
|
|
16696
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item_form']).isRequired,
|
|
16697
|
+
});
|
|
16698
|
+
|
|
16699
|
+
T['io.flow.internal.v0.models.rate_and_rule_item'] = PropTypes.exact({
|
|
16700
|
+
item_reference: PropTypes.string.isRequired,
|
|
16701
|
+
hs_code: PropTypes.string.isRequired,
|
|
16702
|
+
origin: PropTypes.string.isRequired,
|
|
16703
|
+
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16704
|
+
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16705
|
+
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16706
|
+
duty_selection_rule: T['io.flow.internal.v0.enums.duty_selection_rule'].isRequired,
|
|
16707
|
+
});
|
|
16708
|
+
|
|
16709
|
+
T['io.flow.internal.v0.models.rate_and_rule_lookup'] = PropTypes.exact({
|
|
16710
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16711
|
+
effective_date: PropTypes.string.isRequired,
|
|
16712
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item']).isRequired,
|
|
16713
|
+
});
|
|
16714
|
+
|
|
16715
|
+
T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
|
|
16716
|
+
item: T['io.flow.harmonization.v0.models.harmonized_item_reference'].isRequired,
|
|
16717
|
+
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16718
|
+
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16719
|
+
tax_applicability: T['io.flow.harmonization.v0.enums.tax_applicability'],
|
|
16720
|
+
origin: PropTypes.string,
|
|
16721
|
+
hs_code: PropTypes.string,
|
|
16722
|
+
tariff_code: PropTypes.string,
|
|
16723
|
+
customs_description: PropTypes.string,
|
|
16724
|
+
source_address: T['io.flow.common.v0.models.address'],
|
|
16725
|
+
});
|
|
16726
|
+
|
|
16727
|
+
T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
16728
|
+
id: PropTypes.string.isRequired,
|
|
16729
|
+
failed_at: PropTypes.string.isRequired,
|
|
16730
|
+
error: PropTypes.string.isRequired,
|
|
16731
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16732
|
+
});
|
|
16733
|
+
|
|
16734
|
+
T['io.flow.internal.v0.models.label_generation_address_failures'] = PropTypes.exact({
|
|
16735
|
+
id: PropTypes.string.isRequired,
|
|
16736
|
+
organization_id: PropTypes.string.isRequired,
|
|
16737
|
+
status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
|
|
16738
|
+
order_number: PropTypes.string.isRequired,
|
|
16739
|
+
order_submitted_at: PropTypes.string.isRequired,
|
|
16740
|
+
carrier_id: PropTypes.string.isRequired,
|
|
16741
|
+
destination_errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_error']).isRequired,
|
|
16742
|
+
});
|
|
16743
|
+
|
|
16744
|
+
T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
|
|
16745
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16746
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16747
|
+
ship_from: T['io.flow.common.v0.models.address'].isRequired,
|
|
16748
|
+
});
|
|
16749
|
+
|
|
16750
|
+
T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
16751
|
+
number: PropTypes.string.isRequired,
|
|
16752
|
+
description: PropTypes.string.isRequired,
|
|
16753
|
+
quantity: PropTypes.number.isRequired,
|
|
16754
|
+
tariff_code: PropTypes.string.isRequired,
|
|
16755
|
+
gst_exemption_code: PropTypes.string.isRequired,
|
|
16756
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
16757
|
+
unit_price: PropTypes.number.isRequired,
|
|
16758
|
+
total_price: PropTypes.number.isRequired,
|
|
16759
|
+
manufacturer_id: PropTypes.string,
|
|
16760
|
+
export_control_classification_number: PropTypes.string.isRequired,
|
|
16761
|
+
});
|
|
16762
|
+
|
|
16807
16763
|
T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
16808
16764
|
'unknown',
|
|
16809
16765
|
'manual',
|
|
@@ -20431,27 +20387,6 @@ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
|
|
|
20431
20387
|
attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
|
|
20432
20388
|
});
|
|
20433
20389
|
|
|
20434
|
-
T['io.flow.tracking.v0.models.tracking_version'] = PropTypes.exact({
|
|
20435
|
-
id: PropTypes.string.isRequired,
|
|
20436
|
-
timestamp: PropTypes.string.isRequired,
|
|
20437
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20438
|
-
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
20439
|
-
});
|
|
20440
|
-
|
|
20441
|
-
T['io.flow.tracking.v0.models.tracking_label_version'] = PropTypes.exact({
|
|
20442
|
-
id: PropTypes.string.isRequired,
|
|
20443
|
-
timestamp: PropTypes.string.isRequired,
|
|
20444
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20445
|
-
tracking_label: T['io.flow.tracking.v0.models.tracking_label_summary'].isRequired,
|
|
20446
|
-
});
|
|
20447
|
-
|
|
20448
|
-
T['io.flow.tracking.v0.models.tracking_event_version'] = PropTypes.exact({
|
|
20449
|
-
id: PropTypes.string.isRequired,
|
|
20450
|
-
timestamp: PropTypes.string.isRequired,
|
|
20451
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20452
|
-
tracking_event: T['io.flow.tracking.v0.models.tracking_event_summary'].isRequired,
|
|
20453
|
-
});
|
|
20454
|
-
|
|
20455
20390
|
T['io.flow.ratecard.v0.models.ratecard_version'] = PropTypes.exact({
|
|
20456
20391
|
id: PropTypes.string.isRequired,
|
|
20457
20392
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20678,6 +20613,143 @@ T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
|
|
|
20678
20613
|
to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20679
20614
|
});
|
|
20680
20615
|
|
|
20616
|
+
T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
20617
|
+
'label_created',
|
|
20618
|
+
'pending',
|
|
20619
|
+
'info_received',
|
|
20620
|
+
'picked_up',
|
|
20621
|
+
'in_transit',
|
|
20622
|
+
'out_for_delivery',
|
|
20623
|
+
'attempt_fail',
|
|
20624
|
+
'delivered',
|
|
20625
|
+
'exception',
|
|
20626
|
+
'returned',
|
|
20627
|
+
'expired',
|
|
20628
|
+
]);
|
|
20629
|
+
|
|
20630
|
+
T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
|
|
20631
|
+
id: PropTypes.string.isRequired,
|
|
20632
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20633
|
+
order_number: PropTypes.string,
|
|
20634
|
+
});
|
|
20635
|
+
|
|
20636
|
+
T['io.flow.tracking.v0.models.tracking_version'] = PropTypes.exact({
|
|
20637
|
+
id: PropTypes.string.isRequired,
|
|
20638
|
+
timestamp: PropTypes.string.isRequired,
|
|
20639
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20640
|
+
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
20641
|
+
});
|
|
20642
|
+
|
|
20643
|
+
T['io.flow.tracking.v0.models.tracking_label_summary'] = PropTypes.exact({
|
|
20644
|
+
id: PropTypes.string.isRequired,
|
|
20645
|
+
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
20646
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20647
|
+
carrier: PropTypes.string.isRequired,
|
|
20648
|
+
tracking_number: PropTypes.string.isRequired,
|
|
20649
|
+
});
|
|
20650
|
+
|
|
20651
|
+
T['io.flow.tracking.v0.models.tracking_label_version'] = PropTypes.exact({
|
|
20652
|
+
id: PropTypes.string.isRequired,
|
|
20653
|
+
timestamp: PropTypes.string.isRequired,
|
|
20654
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20655
|
+
tracking_label: T['io.flow.tracking.v0.models.tracking_label_summary'].isRequired,
|
|
20656
|
+
});
|
|
20657
|
+
|
|
20658
|
+
T['io.flow.tracking.v0.models.tracking_event_summary'] = PropTypes.exact({
|
|
20659
|
+
id: PropTypes.string.isRequired,
|
|
20660
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20661
|
+
timestamp: PropTypes.string.isRequired,
|
|
20662
|
+
});
|
|
20663
|
+
|
|
20664
|
+
T['io.flow.tracking.v0.models.tracking_event_version'] = PropTypes.exact({
|
|
20665
|
+
id: PropTypes.string.isRequired,
|
|
20666
|
+
timestamp: PropTypes.string.isRequired,
|
|
20667
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20668
|
+
tracking_event: T['io.flow.tracking.v0.models.tracking_event_summary'].isRequired,
|
|
20669
|
+
});
|
|
20670
|
+
|
|
20671
|
+
T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
|
|
20672
|
+
tracking_label_id: PropTypes.string.isRequired,
|
|
20673
|
+
timestamp: PropTypes.string.isRequired,
|
|
20674
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20675
|
+
description: PropTypes.string,
|
|
20676
|
+
address: PropTypes.string,
|
|
20677
|
+
});
|
|
20678
|
+
|
|
20679
|
+
T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
|
|
20680
|
+
id: PropTypes.string.isRequired,
|
|
20681
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
20682
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20683
|
+
timestamp: PropTypes.string.isRequired,
|
|
20684
|
+
description: PropTypes.string,
|
|
20685
|
+
});
|
|
20686
|
+
|
|
20687
|
+
T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
20688
|
+
id: PropTypes.string.isRequired,
|
|
20689
|
+
carrier: PropTypes.string.isRequired,
|
|
20690
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
20691
|
+
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
20692
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20693
|
+
timestamp: PropTypes.string.isRequired,
|
|
20694
|
+
delivery_estimate: PropTypes.string,
|
|
20695
|
+
description: PropTypes.string,
|
|
20696
|
+
});
|
|
20697
|
+
|
|
20698
|
+
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
20699
|
+
id: PropTypes.string.isRequired,
|
|
20700
|
+
address: T['io.flow.common.v0.models.address'],
|
|
20701
|
+
carrier: PropTypes.string.isRequired,
|
|
20702
|
+
carrier_timestamp: PropTypes.string.isRequired,
|
|
20703
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
20704
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
20705
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20706
|
+
delivery_estimate: PropTypes.string,
|
|
20707
|
+
description: PropTypes.string,
|
|
20708
|
+
order_number: PropTypes.string,
|
|
20709
|
+
});
|
|
20710
|
+
|
|
20711
|
+
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
20712
|
+
discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
|
|
20713
|
+
event_id: PropTypes.string.isRequired,
|
|
20714
|
+
timestamp: PropTypes.string.isRequired,
|
|
20715
|
+
organization: PropTypes.string.isRequired,
|
|
20716
|
+
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
20717
|
+
});
|
|
20718
|
+
|
|
20719
|
+
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
|
|
20720
|
+
discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
|
|
20721
|
+
event_id: PropTypes.string.isRequired,
|
|
20722
|
+
timestamp: PropTypes.string.isRequired,
|
|
20723
|
+
organization: PropTypes.string.isRequired,
|
|
20724
|
+
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
20725
|
+
});
|
|
20726
|
+
|
|
20727
|
+
T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
|
|
20728
|
+
id: PropTypes.string.isRequired,
|
|
20729
|
+
carrier: PropTypes.string.isRequired,
|
|
20730
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
20731
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20732
|
+
created_at: PropTypes.string.isRequired,
|
|
20733
|
+
delivery_estimate: PropTypes.string,
|
|
20734
|
+
description: PropTypes.string,
|
|
20735
|
+
});
|
|
20736
|
+
|
|
20737
|
+
T['io.flow.internal.v0.models.tracking_label_upserted'] = PropTypes.exact({
|
|
20738
|
+
discriminator: PropTypes.oneOf(['tracking_label_upserted']).isRequired,
|
|
20739
|
+
event_id: PropTypes.string.isRequired,
|
|
20740
|
+
timestamp: PropTypes.string.isRequired,
|
|
20741
|
+
organization: PropTypes.string.isRequired,
|
|
20742
|
+
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
20743
|
+
});
|
|
20744
|
+
|
|
20745
|
+
T['io.flow.internal.v0.models.tracking_label_deleted'] = PropTypes.exact({
|
|
20746
|
+
discriminator: PropTypes.oneOf(['tracking_label_deleted']).isRequired,
|
|
20747
|
+
event_id: PropTypes.string.isRequired,
|
|
20748
|
+
timestamp: PropTypes.string.isRequired,
|
|
20749
|
+
organization: PropTypes.string.isRequired,
|
|
20750
|
+
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
20751
|
+
});
|
|
20752
|
+
|
|
20681
20753
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
20682
20754
|
|
|
20683
20755
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -20896,45 +20968,37 @@ T['io.flow.internal.v0.models.debug_transaction_fx'] = PropTypes.exact({
|
|
|
20896
20968
|
transaction_effective_rate: T['io.flow.internal.v0.models.debug_transaction_fx_rate'],
|
|
20897
20969
|
});
|
|
20898
20970
|
|
|
20899
|
-
T['io.flow.
|
|
20900
|
-
|
|
20901
|
-
|
|
20971
|
+
T['io.flow.billing.v0.models.pending_payout_transaction_reason'] = PropTypes.exact({
|
|
20972
|
+
code: T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'].isRequired,
|
|
20973
|
+
created_at: PropTypes.string.isRequired,
|
|
20902
20974
|
});
|
|
20903
20975
|
|
|
20904
|
-
T['io.flow.
|
|
20976
|
+
T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
|
|
20905
20977
|
id: PropTypes.string.isRequired,
|
|
20906
|
-
|
|
20907
|
-
|
|
20908
|
-
|
|
20909
|
-
|
|
20910
|
-
|
|
20911
|
-
number: PropTypes.string.isRequired,
|
|
20912
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
20913
|
-
submitted_at: PropTypes.string,
|
|
20978
|
+
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
20979
|
+
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
20980
|
+
created_at: PropTypes.string.isRequired,
|
|
20981
|
+
updated_at: PropTypes.string.isRequired,
|
|
20982
|
+
deleted_at: PropTypes.string,
|
|
20914
20983
|
});
|
|
20915
20984
|
|
|
20916
|
-
T['io.flow.
|
|
20985
|
+
T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
|
|
20917
20986
|
id: PropTypes.string.isRequired,
|
|
20918
|
-
|
|
20919
|
-
|
|
20920
|
-
|
|
20921
|
-
|
|
20922
|
-
|
|
20923
|
-
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
20924
|
-
order: T['io.flow.internal.v0.models.debug_order'],
|
|
20925
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
20987
|
+
reason: T['io.flow.billing.v0.models.pending_payout_transaction_reason'].isRequired,
|
|
20988
|
+
timeout: T['io.flow.billing.v0.models.pending_payout_transaction_timeout'],
|
|
20989
|
+
created_at: PropTypes.string.isRequired,
|
|
20990
|
+
updated_at: PropTypes.string.isRequired,
|
|
20991
|
+
deleted_at: PropTypes.string,
|
|
20926
20992
|
});
|
|
20927
20993
|
|
|
20928
|
-
T['io.flow.internal.v0.models.
|
|
20929
|
-
|
|
20930
|
-
|
|
20931
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
20994
|
+
T['io.flow.internal.v0.models.debug_transaction_details_status'] = PropTypes.exact({
|
|
20995
|
+
status: T['io.flow.internal.v0.enums.main_transaction_status'].isRequired,
|
|
20996
|
+
description: PropTypes.string.isRequired,
|
|
20932
20997
|
});
|
|
20933
20998
|
|
|
20934
|
-
T['io.flow.internal.v0.models.
|
|
20935
|
-
|
|
20936
|
-
|
|
20937
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
20999
|
+
T['io.flow.internal.v0.models.debug_transaction_queued'] = PropTypes.exact({
|
|
21000
|
+
id: PropTypes.string.isRequired,
|
|
21001
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20938
21002
|
});
|
|
20939
21003
|
|
|
20940
21004
|
T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
|
|
@@ -23139,6 +23203,32 @@ T['io.flow.customer.v0.models.customer_address_book'] = PropTypes.exact({
|
|
|
23139
23203
|
contacts: PropTypes.arrayOf(T['io.flow.customer.v0.models.customer_address_book_contact']).isRequired,
|
|
23140
23204
|
});
|
|
23141
23205
|
|
|
23206
|
+
T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
23207
|
+
description: PropTypes.string.isRequired,
|
|
23208
|
+
address: T['io.flow.common.v0.models.address'],
|
|
23209
|
+
contact: T['io.flow.common.v0.models.contact'],
|
|
23210
|
+
});
|
|
23211
|
+
|
|
23212
|
+
T['io.flow.experience.v0.models.order_address'] = PropTypes.exact({
|
|
23213
|
+
text: PropTypes.string,
|
|
23214
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
23215
|
+
city: PropTypes.string,
|
|
23216
|
+
province: PropTypes.string,
|
|
23217
|
+
postal: PropTypes.string,
|
|
23218
|
+
country: PropTypes.string,
|
|
23219
|
+
latitude: PropTypes.string,
|
|
23220
|
+
longitude: PropTypes.string,
|
|
23221
|
+
contact: T['io.flow.common.v0.models.contact'],
|
|
23222
|
+
});
|
|
23223
|
+
|
|
23224
|
+
T['io.flow.experience.v0.models.order_destination_put_form'] = PropTypes.exact({
|
|
23225
|
+
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23226
|
+
});
|
|
23227
|
+
|
|
23228
|
+
T['io.flow.experience.v0.models.order_builder_destination_form'] = PropTypes.exact({
|
|
23229
|
+
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23230
|
+
});
|
|
23231
|
+
|
|
23142
23232
|
T['io.flow.fulfillment.v0.models.shipping_address'] = PropTypes.exact({
|
|
23143
23233
|
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
23144
23234
|
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
@@ -23212,32 +23302,6 @@ T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
23212
23302
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
23213
23303
|
});
|
|
23214
23304
|
|
|
23215
|
-
T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
23216
|
-
description: PropTypes.string.isRequired,
|
|
23217
|
-
address: T['io.flow.common.v0.models.address'],
|
|
23218
|
-
contact: T['io.flow.common.v0.models.contact'],
|
|
23219
|
-
});
|
|
23220
|
-
|
|
23221
|
-
T['io.flow.experience.v0.models.order_address'] = PropTypes.exact({
|
|
23222
|
-
text: PropTypes.string,
|
|
23223
|
-
streets: PropTypes.arrayOf(PropTypes.string),
|
|
23224
|
-
city: PropTypes.string,
|
|
23225
|
-
province: PropTypes.string,
|
|
23226
|
-
postal: PropTypes.string,
|
|
23227
|
-
country: PropTypes.string,
|
|
23228
|
-
latitude: PropTypes.string,
|
|
23229
|
-
longitude: PropTypes.string,
|
|
23230
|
-
contact: T['io.flow.common.v0.models.contact'],
|
|
23231
|
-
});
|
|
23232
|
-
|
|
23233
|
-
T['io.flow.experience.v0.models.order_destination_put_form'] = PropTypes.exact({
|
|
23234
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23235
|
-
});
|
|
23236
|
-
|
|
23237
|
-
T['io.flow.experience.v0.models.order_builder_destination_form'] = PropTypes.exact({
|
|
23238
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
23239
|
-
});
|
|
23240
|
-
|
|
23241
23305
|
T['io.flow.internal.v0.models.center_defaults_form'] = PropTypes.exact({
|
|
23242
23306
|
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
23243
23307
|
shipping_address_contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
@@ -24881,6 +24945,28 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
24881
24945
|
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
24882
24946
|
});
|
|
24883
24947
|
|
|
24948
|
+
T['io.flow.internal.v0.models.debug_transaction_details'] = PropTypes.exact({
|
|
24949
|
+
transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
|
|
24950
|
+
status: T['io.flow.internal.v0.models.debug_transaction_details_status'].isRequired,
|
|
24951
|
+
payout: T['io.flow.billing.v0.models.pending_payout_transaction_reason'],
|
|
24952
|
+
fx: T['io.flow.internal.v0.models.debug_transaction_fx'],
|
|
24953
|
+
});
|
|
24954
|
+
|
|
24955
|
+
T['io.flow.internal.v0.models.organization_debug_transaction'] = PropTypes.exact({
|
|
24956
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
24957
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
24958
|
+
});
|
|
24959
|
+
|
|
24960
|
+
T['io.flow.internal.v0.models.internal_debug_transaction'] = PropTypes.exact({
|
|
24961
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
24962
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
24963
|
+
});
|
|
24964
|
+
|
|
24965
|
+
T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
|
|
24966
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
24967
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
24968
|
+
});
|
|
24969
|
+
|
|
24884
24970
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
24885
24971
|
amount: PropTypes.number.isRequired,
|
|
24886
24972
|
currency: PropTypes.string.isRequired,
|
|
@@ -26970,6 +27056,74 @@ T['io.flow.internal.v0.models.merchant_application_summaries'] = PropTypes.exact
|
|
|
26970
27056
|
total: PropTypes.number.isRequired,
|
|
26971
27057
|
});
|
|
26972
27058
|
|
|
27059
|
+
T['io.flow.internal.v0.models.trueup_label_summary'] = PropTypes.exact({
|
|
27060
|
+
id: PropTypes.string.isRequired,
|
|
27061
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27062
|
+
order_number: PropTypes.string.isRequired,
|
|
27063
|
+
carrier_id: PropTypes.string.isRequired,
|
|
27064
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
27065
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
27066
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
27067
|
+
source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
27068
|
+
created_at: PropTypes.string.isRequired,
|
|
27069
|
+
});
|
|
27070
|
+
|
|
27071
|
+
T['io.flow.internal.v0.models.label_invoice_request'] = PropTypes.exact({
|
|
27072
|
+
id: PropTypes.string.isRequired,
|
|
27073
|
+
label: T['io.flow.internal.v0.models.trueup_label_summary'].isRequired,
|
|
27074
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
27075
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
27076
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
27077
|
+
total: PropTypes.number.isRequired,
|
|
27078
|
+
destination: T['io.flow.internal.v0.models.label_destination'].isRequired,
|
|
27079
|
+
metadata: T['io.flow.internal.v0.models.label_metadata'].isRequired,
|
|
27080
|
+
created_at: PropTypes.string.isRequired,
|
|
27081
|
+
});
|
|
27082
|
+
|
|
27083
|
+
T['io.flow.internal.v0.models.label_invoice_request_upserted'] = PropTypes.exact({
|
|
27084
|
+
discriminator: PropTypes.oneOf(['label_invoice_request_upserted']).isRequired,
|
|
27085
|
+
event_id: PropTypes.string.isRequired,
|
|
27086
|
+
timestamp: PropTypes.string.isRequired,
|
|
27087
|
+
organization: PropTypes.string.isRequired,
|
|
27088
|
+
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
27089
|
+
});
|
|
27090
|
+
|
|
27091
|
+
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
27092
|
+
id: PropTypes.string.isRequired,
|
|
27093
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27094
|
+
number: PropTypes.string.isRequired,
|
|
27095
|
+
type: T['io.flow.experience.v0.enums.order_type'].isRequired,
|
|
27096
|
+
submitted_at: PropTypes.string.isRequired,
|
|
27097
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
27098
|
+
currency: PropTypes.string.isRequired,
|
|
27099
|
+
});
|
|
27100
|
+
|
|
27101
|
+
T['io.flow.internal.v0.models.return'] = PropTypes.exact({
|
|
27102
|
+
id: PropTypes.string.isRequired,
|
|
27103
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
27104
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27105
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27106
|
+
sequence_number: PropTypes.number.isRequired,
|
|
27107
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
27108
|
+
trigger: T['io.flow.internal.v0.unions.return_trigger'].isRequired,
|
|
27109
|
+
returned_at: PropTypes.string.isRequired,
|
|
27110
|
+
});
|
|
27111
|
+
|
|
27112
|
+
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
27113
|
+
id: PropTypes.string.isRequired,
|
|
27114
|
+
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
27115
|
+
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27116
|
+
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27117
|
+
sequence_number: PropTypes.number.isRequired,
|
|
27118
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
27119
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
|
|
27120
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
27121
|
+
owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
|
|
27122
|
+
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
27123
|
+
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
27124
|
+
completes_order: PropTypes.bool.isRequired,
|
|
27125
|
+
});
|
|
27126
|
+
|
|
26973
27127
|
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
26974
27128
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
26975
27129
|
name: PropTypes.string.isRequired,
|
|
@@ -27041,58 +27195,55 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
27041
27195
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
27042
27196
|
});
|
|
27043
27197
|
|
|
27044
|
-
T['io.flow.internal.v0.models.
|
|
27198
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
27045
27199
|
id: PropTypes.string.isRequired,
|
|
27046
|
-
|
|
27200
|
+
label_id: PropTypes.string.isRequired,
|
|
27201
|
+
organization_id: PropTypes.string.isRequired,
|
|
27047
27202
|
order_number: PropTypes.string.isRequired,
|
|
27048
|
-
|
|
27049
|
-
|
|
27050
|
-
|
|
27203
|
+
invoice_reference: PropTypes.string.isRequired,
|
|
27204
|
+
signature_url: PropTypes.string.isRequired,
|
|
27205
|
+
signature_date: PropTypes.string.isRequired,
|
|
27206
|
+
signature_name: PropTypes.string.isRequired,
|
|
27207
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
|
|
27208
|
+
currency: PropTypes.string.isRequired,
|
|
27209
|
+
delivered_duty: PropTypes.string.isRequired,
|
|
27210
|
+
transaction_date: PropTypes.string.isRequired,
|
|
27211
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
27212
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
27213
|
+
service: PropTypes.string.isRequired,
|
|
27051
27214
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
27052
|
-
|
|
27053
|
-
|
|
27054
|
-
|
|
27055
|
-
|
|
27056
|
-
|
|
27057
|
-
|
|
27058
|
-
|
|
27059
|
-
|
|
27060
|
-
|
|
27061
|
-
|
|
27062
|
-
|
|
27063
|
-
|
|
27064
|
-
|
|
27065
|
-
|
|
27215
|
+
rex_number: PropTypes.string,
|
|
27216
|
+
wee_number: PropTypes.string,
|
|
27217
|
+
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
27218
|
+
vat_name: PropTypes.string.isRequired,
|
|
27219
|
+
shipping_price: PropTypes.string.isRequired,
|
|
27220
|
+
shipment_recipient: PropTypes.string,
|
|
27221
|
+
eu_preferential_origin: PropTypes.string,
|
|
27222
|
+
customs_master_file_number: PropTypes.string,
|
|
27223
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
27224
|
+
notes_export_declaration: PropTypes.string,
|
|
27225
|
+
notes_import_duty_taxes_due: PropTypes.string,
|
|
27226
|
+
invoice_date: PropTypes.string.isRequired,
|
|
27227
|
+
goods_value: PropTypes.number.isRequired,
|
|
27228
|
+
total_taxes: PropTypes.number.isRequired,
|
|
27229
|
+
total_duties: PropTypes.number.isRequired,
|
|
27230
|
+
customs_value: PropTypes.number.isRequired,
|
|
27231
|
+
total_value: PropTypes.number.isRequired,
|
|
27232
|
+
show_gst_exemption_column: PropTypes.bool.isRequired,
|
|
27233
|
+
show_eccn: PropTypes.bool.isRequired,
|
|
27234
|
+
show_manufacturer_id: PropTypes.bool.isRequired,
|
|
27235
|
+
show_us_out_verbiage: PropTypes.bool.isRequired,
|
|
27236
|
+
commercial_invoice_mode: PropTypes.string.isRequired,
|
|
27237
|
+
show_us_outbound_signature: PropTypes.bool.isRequired,
|
|
27238
|
+
show_us_outbound_stamp: PropTypes.bool.isRequired,
|
|
27239
|
+
invoice_url: PropTypes.string,
|
|
27066
27240
|
});
|
|
27067
27241
|
|
|
27068
|
-
T['io.flow.internal.v0.models.
|
|
27069
|
-
discriminator: PropTypes.oneOf(['
|
|
27242
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
|
|
27243
|
+
discriminator: PropTypes.oneOf(['commercial_invoice_internal_upserted']).isRequired,
|
|
27070
27244
|
event_id: PropTypes.string.isRequired,
|
|
27071
27245
|
timestamp: PropTypes.string.isRequired,
|
|
27072
|
-
|
|
27073
|
-
label_invoice_request: T['io.flow.internal.v0.models.label_invoice_request'].isRequired,
|
|
27074
|
-
});
|
|
27075
|
-
|
|
27076
|
-
T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
27077
|
-
id: PropTypes.string.isRequired,
|
|
27078
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27079
|
-
number: PropTypes.string.isRequired,
|
|
27080
|
-
});
|
|
27081
|
-
|
|
27082
|
-
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
27083
|
-
id: PropTypes.string.isRequired,
|
|
27084
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
27085
|
-
owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
|
|
27086
|
-
currency: PropTypes.string.isRequired,
|
|
27087
|
-
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
27088
|
-
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
27089
|
-
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27090
|
-
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27091
|
-
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
|
|
27092
|
-
completes_order: PropTypes.bool.isRequired,
|
|
27093
|
-
sequence_number: PropTypes.number.isRequired,
|
|
27094
|
-
posting_cutoff: PropTypes.string.isRequired,
|
|
27095
|
-
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
27246
|
+
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
27096
27247
|
});
|
|
27097
27248
|
|
|
27098
27249
|
T['io.flow.internal.v0.models.checkout_error'] = PropTypes.exact({
|
|
@@ -28081,6 +28232,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
28081
28232
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
28082
28233
|
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
28083
28234
|
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
28235
|
+
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
28084
28236
|
created_at: PropTypes.string,
|
|
28085
28237
|
updated_at: PropTypes.string,
|
|
28086
28238
|
});
|
|
@@ -29101,6 +29253,100 @@ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
|
29101
29253
|
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
29102
29254
|
});
|
|
29103
29255
|
|
|
29256
|
+
T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
|
|
29257
|
+
id: PropTypes.string.isRequired,
|
|
29258
|
+
item_id: PropTypes.string.isRequired,
|
|
29259
|
+
item_number: PropTypes.string.isRequired,
|
|
29260
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29261
|
+
local: T['io.flow.catalog.v0.models.local'],
|
|
29262
|
+
price_book_item_id: PropTypes.string.isRequired,
|
|
29263
|
+
price_book_key: PropTypes.string.isRequired,
|
|
29264
|
+
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29265
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
29266
|
+
});
|
|
29267
|
+
|
|
29268
|
+
T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
|
|
29269
|
+
discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
|
|
29270
|
+
event_id: PropTypes.string.isRequired,
|
|
29271
|
+
timestamp: PropTypes.string.isRequired,
|
|
29272
|
+
organization: PropTypes.string.isRequired,
|
|
29273
|
+
item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
|
|
29274
|
+
});
|
|
29275
|
+
|
|
29276
|
+
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
29277
|
+
id: PropTypes.string.isRequired,
|
|
29278
|
+
number: PropTypes.string.isRequired,
|
|
29279
|
+
locale: PropTypes.string.isRequired,
|
|
29280
|
+
name: PropTypes.string.isRequired,
|
|
29281
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29282
|
+
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29283
|
+
description: PropTypes.string,
|
|
29284
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29285
|
+
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
29286
|
+
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
29287
|
+
local: T['io.flow.catalog.v0.models.local'],
|
|
29288
|
+
created_at: PropTypes.string,
|
|
29289
|
+
updated_at: PropTypes.string,
|
|
29290
|
+
});
|
|
29291
|
+
|
|
29292
|
+
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
29293
|
+
id: PropTypes.string.isRequired,
|
|
29294
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29295
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
29296
|
+
});
|
|
29297
|
+
|
|
29298
|
+
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
29299
|
+
id: PropTypes.string.isRequired,
|
|
29300
|
+
timestamp: PropTypes.string.isRequired,
|
|
29301
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29302
|
+
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
29303
|
+
});
|
|
29304
|
+
|
|
29305
|
+
T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
29306
|
+
id: PropTypes.string.isRequired,
|
|
29307
|
+
timestamp: PropTypes.string.isRequired,
|
|
29308
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29309
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29310
|
+
});
|
|
29311
|
+
|
|
29312
|
+
T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
|
|
29313
|
+
discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
|
|
29314
|
+
event_id: PropTypes.string.isRequired,
|
|
29315
|
+
timestamp: PropTypes.string.isRequired,
|
|
29316
|
+
organization: PropTypes.string.isRequired,
|
|
29317
|
+
id: PropTypes.string.isRequired,
|
|
29318
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29319
|
+
item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
29320
|
+
});
|
|
29321
|
+
|
|
29322
|
+
T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
|
|
29323
|
+
q: PropTypes.string.isRequired,
|
|
29324
|
+
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29325
|
+
});
|
|
29326
|
+
|
|
29327
|
+
T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
29328
|
+
value: PropTypes.string.isRequired,
|
|
29329
|
+
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29330
|
+
});
|
|
29331
|
+
|
|
29332
|
+
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
29333
|
+
filter: PropTypes.string.isRequired,
|
|
29334
|
+
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
29335
|
+
});
|
|
29336
|
+
|
|
29337
|
+
T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
29338
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29339
|
+
name: PropTypes.string.isRequired,
|
|
29340
|
+
description: PropTypes.string,
|
|
29341
|
+
attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
|
|
29342
|
+
image: T['io.flow.catalog.v0.models.image'],
|
|
29343
|
+
});
|
|
29344
|
+
|
|
29345
|
+
T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
|
|
29346
|
+
global: T['io.flow.internal.v0.models.checkout_content_summary'],
|
|
29347
|
+
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
29348
|
+
});
|
|
29349
|
+
|
|
29104
29350
|
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
29105
29351
|
id: PropTypes.string,
|
|
29106
29352
|
number: PropTypes.string.isRequired,
|
|
@@ -29371,115 +29617,6 @@ T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
|
29371
29617
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
29372
29618
|
});
|
|
29373
29619
|
|
|
29374
|
-
T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
|
|
29375
|
-
builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
|
|
29376
|
-
action: T['io.flow.payment.v0.unions.authorization_result_action'],
|
|
29377
|
-
});
|
|
29378
|
-
|
|
29379
|
-
T['io.flow.internal.v0.models.checkout_order_views'] = PropTypes.exact({
|
|
29380
|
-
checkout: T['io.flow.internal.v0.unions.checkout_order'].isRequired,
|
|
29381
|
-
experience: T['io.flow.experience.v0.models.order'].isRequired,
|
|
29382
|
-
});
|
|
29383
|
-
|
|
29384
|
-
T['io.flow.internal.v0.models.checkout_order_views_response'] = PropTypes.exact({
|
|
29385
|
-
checkout: T['io.flow.internal.v0.models.v2_checkout'].isRequired,
|
|
29386
|
-
views: T['io.flow.internal.v0.models.checkout_order_views'].isRequired,
|
|
29387
|
-
});
|
|
29388
|
-
|
|
29389
|
-
T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
|
|
29390
|
-
id: PropTypes.string.isRequired,
|
|
29391
|
-
item_id: PropTypes.string.isRequired,
|
|
29392
|
-
item_number: PropTypes.string.isRequired,
|
|
29393
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29394
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
29395
|
-
price_book_item_id: PropTypes.string.isRequired,
|
|
29396
|
-
price_book_key: PropTypes.string.isRequired,
|
|
29397
|
-
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29398
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
29399
|
-
});
|
|
29400
|
-
|
|
29401
|
-
T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
|
|
29402
|
-
discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
|
|
29403
|
-
event_id: PropTypes.string.isRequired,
|
|
29404
|
-
timestamp: PropTypes.string.isRequired,
|
|
29405
|
-
organization: PropTypes.string.isRequired,
|
|
29406
|
-
item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
|
|
29407
|
-
});
|
|
29408
|
-
|
|
29409
|
-
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
29410
|
-
id: PropTypes.string.isRequired,
|
|
29411
|
-
number: PropTypes.string.isRequired,
|
|
29412
|
-
locale: PropTypes.string.isRequired,
|
|
29413
|
-
name: PropTypes.string.isRequired,
|
|
29414
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29415
|
-
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29416
|
-
description: PropTypes.string,
|
|
29417
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29418
|
-
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
29419
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
29420
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
29421
|
-
created_at: PropTypes.string,
|
|
29422
|
-
updated_at: PropTypes.string,
|
|
29423
|
-
});
|
|
29424
|
-
|
|
29425
|
-
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
29426
|
-
id: PropTypes.string.isRequired,
|
|
29427
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29428
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
29429
|
-
});
|
|
29430
|
-
|
|
29431
|
-
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
29432
|
-
id: PropTypes.string.isRequired,
|
|
29433
|
-
timestamp: PropTypes.string.isRequired,
|
|
29434
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29435
|
-
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
29436
|
-
});
|
|
29437
|
-
|
|
29438
|
-
T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
29439
|
-
id: PropTypes.string.isRequired,
|
|
29440
|
-
timestamp: PropTypes.string.isRequired,
|
|
29441
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29442
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29443
|
-
});
|
|
29444
|
-
|
|
29445
|
-
T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
|
|
29446
|
-
discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
|
|
29447
|
-
event_id: PropTypes.string.isRequired,
|
|
29448
|
-
timestamp: PropTypes.string.isRequired,
|
|
29449
|
-
organization: PropTypes.string.isRequired,
|
|
29450
|
-
id: PropTypes.string.isRequired,
|
|
29451
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29452
|
-
item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
29453
|
-
});
|
|
29454
|
-
|
|
29455
|
-
T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
|
|
29456
|
-
q: PropTypes.string.isRequired,
|
|
29457
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29458
|
-
});
|
|
29459
|
-
|
|
29460
|
-
T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
29461
|
-
value: PropTypes.string.isRequired,
|
|
29462
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29463
|
-
});
|
|
29464
|
-
|
|
29465
|
-
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
29466
|
-
filter: PropTypes.string.isRequired,
|
|
29467
|
-
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
29468
|
-
});
|
|
29469
|
-
|
|
29470
|
-
T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
29471
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29472
|
-
name: PropTypes.string.isRequired,
|
|
29473
|
-
description: PropTypes.string,
|
|
29474
|
-
attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
|
|
29475
|
-
image: T['io.flow.catalog.v0.models.image'],
|
|
29476
|
-
});
|
|
29477
|
-
|
|
29478
|
-
T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
|
|
29479
|
-
global: T['io.flow.internal.v0.models.checkout_content_summary'],
|
|
29480
|
-
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
29481
|
-
});
|
|
29482
|
-
|
|
29483
29620
|
T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
|
|
29484
29621
|
id: PropTypes.string.isRequired,
|
|
29485
29622
|
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
@@ -29500,6 +29637,21 @@ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
|
|
|
29500
29637
|
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
29501
29638
|
});
|
|
29502
29639
|
|
|
29640
|
+
T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
|
|
29641
|
+
builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
|
|
29642
|
+
action: T['io.flow.payment.v0.unions.authorization_result_action'],
|
|
29643
|
+
});
|
|
29644
|
+
|
|
29645
|
+
T['io.flow.internal.v0.models.checkout_order_views'] = PropTypes.exact({
|
|
29646
|
+
checkout: T['io.flow.internal.v0.unions.checkout_order'].isRequired,
|
|
29647
|
+
experience: T['io.flow.experience.v0.models.order'].isRequired,
|
|
29648
|
+
});
|
|
29649
|
+
|
|
29650
|
+
T['io.flow.internal.v0.models.checkout_order_views_response'] = PropTypes.exact({
|
|
29651
|
+
checkout: T['io.flow.internal.v0.models.v2_checkout'].isRequired,
|
|
29652
|
+
views: T['io.flow.internal.v0.models.checkout_order_views'].isRequired,
|
|
29653
|
+
});
|
|
29654
|
+
|
|
29503
29655
|
T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
|
|
29504
29656
|
cart: T['io.flow.shopify.v0.models.shopify_cart'],
|
|
29505
29657
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
@@ -29519,6 +29671,17 @@ T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
|
|
|
29519
29671
|
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
29520
29672
|
});
|
|
29521
29673
|
|
|
29674
|
+
T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
|
|
29675
|
+
org_id: PropTypes.string.isRequired,
|
|
29676
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
29677
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
29678
|
+
legal_name: PropTypes.string,
|
|
29679
|
+
flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
|
|
29680
|
+
order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
29681
|
+
label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
29682
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
29683
|
+
});
|
|
29684
|
+
|
|
29522
29685
|
T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
|
|
29523
29686
|
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
29524
29687
|
taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
@@ -29794,6 +29957,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
29794
29957
|
round_individual_transactions: PropTypes.bool.isRequired,
|
|
29795
29958
|
liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
|
|
29796
29959
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
29960
|
+
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
29797
29961
|
});
|
|
29798
29962
|
|
|
29799
29963
|
T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
|
|
@@ -30450,6 +30614,7 @@ T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
|
30450
30614
|
submitted_at: PropTypes.string,
|
|
30451
30615
|
created_at: PropTypes.string.isRequired,
|
|
30452
30616
|
updated_at: PropTypes.string.isRequired,
|
|
30617
|
+
shopify_order_id: PropTypes.string,
|
|
30453
30618
|
});
|
|
30454
30619
|
|
|
30455
30620
|
T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
|
|
@@ -30542,6 +30707,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
30542
30707
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
30543
30708
|
T['io.flow.internal.v0.models.checkout_configuration_upserted'],
|
|
30544
30709
|
T['io.flow.internal.v0.models.checkout_configuration_deleted'],
|
|
30710
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
30711
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'],
|
|
30545
30712
|
T['io.flow.internal.v0.models.localized_content_upserted'],
|
|
30546
30713
|
T['io.flow.internal.v0.models.localization_upserted'],
|
|
30547
30714
|
T['io.flow.internal.v0.models.internal_channel_rate_deleted'],
|
|
@@ -30862,7 +31029,7 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
|
30862
31029
|
'prr-599c6246a1a24752aeb85e8f79030781',
|
|
30863
31030
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
30864
31031
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
30865
|
-
'prr-
|
|
31032
|
+
'prr-b186129720f0446eb452a68518437c95',
|
|
30866
31033
|
]);
|
|
30867
31034
|
|
|
30868
31035
|
T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
@@ -30997,6 +31164,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30997
31164
|
'channel_order_acceptance_deleted',
|
|
30998
31165
|
'checkout_configuration_upserted',
|
|
30999
31166
|
'checkout_configuration_deleted',
|
|
31167
|
+
'commercial_invoice_internal_upserted',
|
|
31168
|
+
'commercial_invoice_internal_deleted',
|
|
31000
31169
|
'localized_content_upserted',
|
|
31001
31170
|
'localization_upserted',
|
|
31002
31171
|
'internal_channel_rate_deleted',
|
|
@@ -34214,6 +34383,7 @@ export const channelCurrencySettingForm = T['io.flow.internal.v0.models.channel_
|
|
|
34214
34383
|
export const channelCurrencySettingUpserted = T['io.flow.internal.v0.models.channel_currency_setting_upserted'];
|
|
34215
34384
|
export const channelDebugTransaction = T['io.flow.internal.v0.models.channel_debug_transaction'];
|
|
34216
34385
|
export const channelForm = T['io.flow.internal.v0.models.channel_form'];
|
|
34386
|
+
export const channelFulfillment = T['io.flow.internal.v0.models.channel_fulfillment'];
|
|
34217
34387
|
export const channelMembership = T['io.flow.internal.v0.models.channel_membership'];
|
|
34218
34388
|
export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membership_form'];
|
|
34219
34389
|
export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
|
|
@@ -34809,6 +34979,9 @@ export const classificationWrapper = T['io.flow.internal.v0.models.classificatio
|
|
|
34809
34979
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
34810
34980
|
export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
|
|
34811
34981
|
export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
|
|
34982
|
+
export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercial_invoice_internal'];
|
|
34983
|
+
export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
|
|
34984
|
+
export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
|
|
34812
34985
|
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
34813
34986
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
34814
34987
|
export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
@@ -35282,6 +35455,7 @@ export const inventoryReservation = T['io.flow.internal.v0.enums.inventory_reser
|
|
|
35282
35455
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
35283
35456
|
export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form'];
|
|
35284
35457
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
35458
|
+
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
35285
35459
|
export const invoiceTransaction = T['io.flow.internal.v0.models.invoice_transaction'];
|
|
35286
35460
|
export const issuer = T['io.flow.internal.v0.models.issuer'];
|
|
35287
35461
|
export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
|
|
@@ -35862,11 +36036,14 @@ export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_ori
|
|
|
35862
36036
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
35863
36037
|
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
35864
36038
|
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
36039
|
+
export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
|
|
35865
36040
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
35866
36041
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
35867
36042
|
export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
|
|
35868
36043
|
export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_upserted'];
|
|
35869
36044
|
export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
|
|
36045
|
+
export const returnTrigger = T['io.flow.internal.v0.unions.return_trigger'];
|
|
36046
|
+
export const returnTriggerRefund = T['io.flow.internal.v0.models.return_trigger_refund'];
|
|
35870
36047
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
35871
36048
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
35872
36049
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|