@flowio/api-internal-prop-types 9.24.76 → 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 +70 -33
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +70 -33
- package/src/api-internal.js +508 -411
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,6 +8387,11 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
8377
8387
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8378
8388
|
});
|
|
8379
8389
|
|
|
8390
|
+
T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
8391
|
+
name: PropTypes.string.isRequired,
|
|
8392
|
+
description: PropTypes.string,
|
|
8393
|
+
});
|
|
8394
|
+
|
|
8380
8395
|
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
|
|
8381
8396
|
|
|
8382
8397
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
@@ -11582,6 +11597,19 @@ T['io.flow.internal.v0.models.sales_record_upserted'] = PropTypes.exact({
|
|
|
11582
11597
|
sales_record: T['io.flow.billing.reporting.csv.v0.models.sales_record'].isRequired,
|
|
11583
11598
|
});
|
|
11584
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
|
+
|
|
11585
11613
|
T['io.flow.return.v0.models.return_reason'] = PropTypes.exact({
|
|
11586
11614
|
name: PropTypes.string.isRequired,
|
|
11587
11615
|
});
|
|
@@ -11617,6 +11645,12 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
11617
11645
|
result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
|
|
11618
11646
|
});
|
|
11619
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']]);
|
|
11620
11654
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11621
11655
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
11622
11656
|
|
|
@@ -11901,6 +11935,8 @@ T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
|
11901
11935
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11902
11936
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11903
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,
|
|
11904
11940
|
});
|
|
11905
11941
|
|
|
11906
11942
|
T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
|
|
@@ -14785,6 +14821,13 @@ T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
|
14785
14821
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14786
14822
|
});
|
|
14787
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
|
+
|
|
14788
14831
|
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
14789
14832
|
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
14790
14833
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
@@ -14798,20 +14841,13 @@ T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
|
14798
14841
|
});
|
|
14799
14842
|
|
|
14800
14843
|
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
14801
|
-
|
|
14844
|
+
product: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
|
|
14802
14845
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
14803
14846
|
freight: T['io.flow.internal.v0.models.shopper_freight'].isRequired,
|
|
14804
14847
|
order_discount: PropTypes.number.isRequired,
|
|
14805
14848
|
total: PropTypes.number.isRequired,
|
|
14806
14849
|
});
|
|
14807
14850
|
|
|
14808
|
-
T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
14809
|
-
country: PropTypes.string.isRequired,
|
|
14810
|
-
province_code: PropTypes.string,
|
|
14811
|
-
});
|
|
14812
|
-
|
|
14813
|
-
T['io.flow.internal.v0.enums.logistics_responsibility'] = PropTypes.oneOf(['organization', 'flow']);
|
|
14814
|
-
|
|
14815
14851
|
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
14816
14852
|
'millimeter',
|
|
14817
14853
|
'centimeter',
|
|
@@ -15342,74 +15378,6 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.
|
|
|
15342
15378
|
fulfilled_via_replacement_order: PropTypes.bool,
|
|
15343
15379
|
});
|
|
15344
15380
|
|
|
15345
|
-
T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
15346
|
-
'label_created',
|
|
15347
|
-
'pending',
|
|
15348
|
-
'info_received',
|
|
15349
|
-
'picked_up',
|
|
15350
|
-
'in_transit',
|
|
15351
|
-
'out_for_delivery',
|
|
15352
|
-
'attempt_fail',
|
|
15353
|
-
'delivered',
|
|
15354
|
-
'exception',
|
|
15355
|
-
'returned',
|
|
15356
|
-
'expired',
|
|
15357
|
-
]);
|
|
15358
|
-
|
|
15359
|
-
T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
|
|
15360
|
-
id: PropTypes.string.isRequired,
|
|
15361
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15362
|
-
order_number: PropTypes.string,
|
|
15363
|
-
});
|
|
15364
|
-
|
|
15365
|
-
T['io.flow.tracking.v0.models.tracking_label_summary'] = PropTypes.exact({
|
|
15366
|
-
id: PropTypes.string.isRequired,
|
|
15367
|
-
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
15368
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15369
|
-
carrier: PropTypes.string.isRequired,
|
|
15370
|
-
tracking_number: PropTypes.string.isRequired,
|
|
15371
|
-
});
|
|
15372
|
-
|
|
15373
|
-
T['io.flow.tracking.v0.models.tracking_event_summary'] = PropTypes.exact({
|
|
15374
|
-
id: PropTypes.string.isRequired,
|
|
15375
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15376
|
-
timestamp: PropTypes.string.isRequired,
|
|
15377
|
-
});
|
|
15378
|
-
|
|
15379
|
-
T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
|
|
15380
|
-
tracking_label_id: PropTypes.string.isRequired,
|
|
15381
|
-
timestamp: PropTypes.string.isRequired,
|
|
15382
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15383
|
-
description: PropTypes.string,
|
|
15384
|
-
address: PropTypes.string,
|
|
15385
|
-
});
|
|
15386
|
-
|
|
15387
|
-
T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
|
|
15388
|
-
id: PropTypes.string.isRequired,
|
|
15389
|
-
carrier: PropTypes.string.isRequired,
|
|
15390
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
15391
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
15392
|
-
created_at: PropTypes.string.isRequired,
|
|
15393
|
-
delivery_estimate: PropTypes.string,
|
|
15394
|
-
description: PropTypes.string,
|
|
15395
|
-
});
|
|
15396
|
-
|
|
15397
|
-
T['io.flow.internal.v0.models.tracking_label_upserted'] = PropTypes.exact({
|
|
15398
|
-
discriminator: PropTypes.oneOf(['tracking_label_upserted']).isRequired,
|
|
15399
|
-
event_id: PropTypes.string.isRequired,
|
|
15400
|
-
timestamp: PropTypes.string.isRequired,
|
|
15401
|
-
organization: PropTypes.string.isRequired,
|
|
15402
|
-
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
15403
|
-
});
|
|
15404
|
-
|
|
15405
|
-
T['io.flow.internal.v0.models.tracking_label_deleted'] = PropTypes.exact({
|
|
15406
|
-
discriminator: PropTypes.oneOf(['tracking_label_deleted']).isRequired,
|
|
15407
|
-
event_id: PropTypes.string.isRequired,
|
|
15408
|
-
timestamp: PropTypes.string.isRequired,
|
|
15409
|
-
organization: PropTypes.string.isRequired,
|
|
15410
|
-
tracking_label: T['io.flow.internal.v0.models.export_tracking_label'].isRequired,
|
|
15411
|
-
});
|
|
15412
|
-
|
|
15413
15381
|
T['io.flow.internal.v0.models.time_with_timezone'] = PropTypes.exact({
|
|
15414
15382
|
time: PropTypes.string.isRequired,
|
|
15415
15383
|
timezone: PropTypes.string.isRequired,
|
|
@@ -16112,6 +16080,15 @@ T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
|
|
|
16112
16080
|
value: PropTypes.number.isRequired,
|
|
16113
16081
|
});
|
|
16114
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
|
+
|
|
16115
16092
|
T['io.flow.internal.v0.enums.main_transaction_status'] = PropTypes.oneOf(['scheduled', 'pending_proof']);
|
|
16116
16093
|
|
|
16117
16094
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
@@ -16170,6 +16147,13 @@ T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
|
16170
16147
|
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
16171
16148
|
});
|
|
16172
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
|
+
|
|
16173
16157
|
T['io.flow.internal.v0.models.debug_label_transaction_summary'] = PropTypes.exact({
|
|
16174
16158
|
id: PropTypes.string.isRequired,
|
|
16175
16159
|
type: PropTypes.string.isRequired,
|
|
@@ -16590,25 +16574,6 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
16590
16574
|
longitude: PropTypes.string,
|
|
16591
16575
|
});
|
|
16592
16576
|
|
|
16593
|
-
T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
|
|
16594
|
-
id: PropTypes.string.isRequired,
|
|
16595
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16596
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16597
|
-
timestamp: PropTypes.string.isRequired,
|
|
16598
|
-
description: PropTypes.string,
|
|
16599
|
-
});
|
|
16600
|
-
|
|
16601
|
-
T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
16602
|
-
id: PropTypes.string.isRequired,
|
|
16603
|
-
carrier: PropTypes.string.isRequired,
|
|
16604
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16605
|
-
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
16606
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16607
|
-
timestamp: PropTypes.string.isRequired,
|
|
16608
|
-
delivery_estimate: PropTypes.string,
|
|
16609
|
-
description: PropTypes.string,
|
|
16610
|
-
});
|
|
16611
|
-
|
|
16612
16577
|
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
16613
16578
|
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
16614
16579
|
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
@@ -16759,35 +16724,6 @@ T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exa
|
|
|
16759
16724
|
source_address: T['io.flow.common.v0.models.address'],
|
|
16760
16725
|
});
|
|
16761
16726
|
|
|
16762
|
-
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
16763
|
-
id: PropTypes.string.isRequired,
|
|
16764
|
-
address: T['io.flow.common.v0.models.address'],
|
|
16765
|
-
carrier: PropTypes.string.isRequired,
|
|
16766
|
-
carrier_timestamp: PropTypes.string.isRequired,
|
|
16767
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16768
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
16769
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
16770
|
-
delivery_estimate: PropTypes.string,
|
|
16771
|
-
description: PropTypes.string,
|
|
16772
|
-
order_number: PropTypes.string,
|
|
16773
|
-
});
|
|
16774
|
-
|
|
16775
|
-
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
16776
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
|
|
16777
|
-
event_id: PropTypes.string.isRequired,
|
|
16778
|
-
timestamp: PropTypes.string.isRequired,
|
|
16779
|
-
organization: PropTypes.string.isRequired,
|
|
16780
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
16781
|
-
});
|
|
16782
|
-
|
|
16783
|
-
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
|
|
16784
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
|
|
16785
|
-
event_id: PropTypes.string.isRequired,
|
|
16786
|
-
timestamp: PropTypes.string.isRequired,
|
|
16787
|
-
organization: PropTypes.string.isRequired,
|
|
16788
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
16789
|
-
});
|
|
16790
|
-
|
|
16791
16727
|
T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
16792
16728
|
id: PropTypes.string.isRequired,
|
|
16793
16729
|
failed_at: PropTypes.string.isRequired,
|
|
@@ -20451,27 +20387,6 @@ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
|
|
|
20451
20387
|
attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
|
|
20452
20388
|
});
|
|
20453
20389
|
|
|
20454
|
-
T['io.flow.tracking.v0.models.tracking_version'] = PropTypes.exact({
|
|
20455
|
-
id: PropTypes.string.isRequired,
|
|
20456
|
-
timestamp: PropTypes.string.isRequired,
|
|
20457
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20458
|
-
tracking: T['io.flow.tracking.v0.models.tracking_summary'].isRequired,
|
|
20459
|
-
});
|
|
20460
|
-
|
|
20461
|
-
T['io.flow.tracking.v0.models.tracking_label_version'] = PropTypes.exact({
|
|
20462
|
-
id: PropTypes.string.isRequired,
|
|
20463
|
-
timestamp: PropTypes.string.isRequired,
|
|
20464
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20465
|
-
tracking_label: T['io.flow.tracking.v0.models.tracking_label_summary'].isRequired,
|
|
20466
|
-
});
|
|
20467
|
-
|
|
20468
|
-
T['io.flow.tracking.v0.models.tracking_event_version'] = PropTypes.exact({
|
|
20469
|
-
id: PropTypes.string.isRequired,
|
|
20470
|
-
timestamp: PropTypes.string.isRequired,
|
|
20471
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
20472
|
-
tracking_event: T['io.flow.tracking.v0.models.tracking_event_summary'].isRequired,
|
|
20473
|
-
});
|
|
20474
|
-
|
|
20475
20390
|
T['io.flow.ratecard.v0.models.ratecard_version'] = PropTypes.exact({
|
|
20476
20391
|
id: PropTypes.string.isRequired,
|
|
20477
20392
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20698,6 +20613,143 @@ T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
|
|
|
20698
20613
|
to: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
20699
20614
|
});
|
|
20700
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
|
+
|
|
20701
20753
|
T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
|
|
20702
20754
|
|
|
20703
20755
|
T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
|
|
@@ -20916,45 +20968,37 @@ T['io.flow.internal.v0.models.debug_transaction_fx'] = PropTypes.exact({
|
|
|
20916
20968
|
transaction_effective_rate: T['io.flow.internal.v0.models.debug_transaction_fx_rate'],
|
|
20917
20969
|
});
|
|
20918
20970
|
|
|
20919
|
-
T['io.flow.
|
|
20920
|
-
|
|
20921
|
-
|
|
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,
|
|
20922
20974
|
});
|
|
20923
20975
|
|
|
20924
|
-
T['io.flow.
|
|
20976
|
+
T['io.flow.billing.v0.models.organization_pending_payout_transaction'] = PropTypes.exact({
|
|
20925
20977
|
id: PropTypes.string.isRequired,
|
|
20926
|
-
|
|
20927
|
-
|
|
20928
|
-
|
|
20929
|
-
|
|
20930
|
-
|
|
20931
|
-
number: PropTypes.string.isRequired,
|
|
20932
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
20933
|
-
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,
|
|
20934
20983
|
});
|
|
20935
20984
|
|
|
20936
|
-
T['io.flow.
|
|
20985
|
+
T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.exact({
|
|
20937
20986
|
id: PropTypes.string.isRequired,
|
|
20938
|
-
|
|
20939
|
-
|
|
20940
|
-
|
|
20941
|
-
|
|
20942
|
-
|
|
20943
|
-
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
20944
|
-
order: T['io.flow.internal.v0.models.debug_order'],
|
|
20945
|
-
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,
|
|
20946
20992
|
});
|
|
20947
20993
|
|
|
20948
|
-
T['io.flow.internal.v0.models.
|
|
20949
|
-
|
|
20950
|
-
|
|
20951
|
-
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,
|
|
20952
20997
|
});
|
|
20953
20998
|
|
|
20954
|
-
T['io.flow.internal.v0.models.
|
|
20955
|
-
|
|
20956
|
-
|
|
20957
|
-
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,
|
|
20958
21002
|
});
|
|
20959
21003
|
|
|
20960
21004
|
T['io.flow.common.v0.enums.unit_of_time'] = PropTypes.oneOf(['year', 'month', 'week', 'day', 'hour', 'minute']);
|
|
@@ -24901,6 +24945,28 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
24901
24945
|
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
24902
24946
|
});
|
|
24903
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
|
+
|
|
24904
24970
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
24905
24971
|
amount: PropTypes.number.isRequired,
|
|
24906
24972
|
currency: PropTypes.string.isRequired,
|
|
@@ -27026,22 +27092,36 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
|
27026
27092
|
id: PropTypes.string.isRequired,
|
|
27027
27093
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
27028
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,
|
|
27029
27110
|
});
|
|
27030
27111
|
|
|
27031
27112
|
T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
27032
27113
|
id: PropTypes.string.isRequired,
|
|
27033
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
27034
|
-
owner: T['io.flow.internal.v0.enums.logistics_responsibility'].isRequired,
|
|
27035
|
-
currency: PropTypes.string.isRequired,
|
|
27036
27114
|
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
27037
|
-
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
27038
27115
|
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27039
27116
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27040
|
-
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'].isRequired,
|
|
27041
|
-
completes_order: PropTypes.bool.isRequired,
|
|
27042
27117
|
sequence_number: PropTypes.number.isRequired,
|
|
27043
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'],
|
|
27044
27123
|
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
27124
|
+
completes_order: PropTypes.bool.isRequired,
|
|
27045
27125
|
});
|
|
27046
27126
|
|
|
27047
27127
|
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
@@ -28152,6 +28232,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
28152
28232
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
28153
28233
|
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
28154
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']),
|
|
28155
28236
|
created_at: PropTypes.string,
|
|
28156
28237
|
updated_at: PropTypes.string,
|
|
28157
28238
|
});
|
|
@@ -29172,6 +29253,100 @@ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
|
29172
29253
|
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
29173
29254
|
});
|
|
29174
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
|
+
|
|
29175
29350
|
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
29176
29351
|
id: PropTypes.string,
|
|
29177
29352
|
number: PropTypes.string.isRequired,
|
|
@@ -29442,115 +29617,6 @@ T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
|
29442
29617
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
29443
29618
|
});
|
|
29444
29619
|
|
|
29445
|
-
T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
|
|
29446
|
-
builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
|
|
29447
|
-
action: T['io.flow.payment.v0.unions.authorization_result_action'],
|
|
29448
|
-
});
|
|
29449
|
-
|
|
29450
|
-
T['io.flow.internal.v0.models.checkout_order_views'] = PropTypes.exact({
|
|
29451
|
-
checkout: T['io.flow.internal.v0.unions.checkout_order'].isRequired,
|
|
29452
|
-
experience: T['io.flow.experience.v0.models.order'].isRequired,
|
|
29453
|
-
});
|
|
29454
|
-
|
|
29455
|
-
T['io.flow.internal.v0.models.checkout_order_views_response'] = PropTypes.exact({
|
|
29456
|
-
checkout: T['io.flow.internal.v0.models.v2_checkout'].isRequired,
|
|
29457
|
-
views: T['io.flow.internal.v0.models.checkout_order_views'].isRequired,
|
|
29458
|
-
});
|
|
29459
|
-
|
|
29460
|
-
T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
|
|
29461
|
-
id: PropTypes.string.isRequired,
|
|
29462
|
-
item_id: PropTypes.string.isRequired,
|
|
29463
|
-
item_number: PropTypes.string.isRequired,
|
|
29464
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29465
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
29466
|
-
price_book_item_id: PropTypes.string.isRequired,
|
|
29467
|
-
price_book_key: PropTypes.string.isRequired,
|
|
29468
|
-
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29469
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
29470
|
-
});
|
|
29471
|
-
|
|
29472
|
-
T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
|
|
29473
|
-
discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
|
|
29474
|
-
event_id: PropTypes.string.isRequired,
|
|
29475
|
-
timestamp: PropTypes.string.isRequired,
|
|
29476
|
-
organization: PropTypes.string.isRequired,
|
|
29477
|
-
item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
|
|
29478
|
-
});
|
|
29479
|
-
|
|
29480
|
-
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
29481
|
-
id: PropTypes.string.isRequired,
|
|
29482
|
-
number: PropTypes.string.isRequired,
|
|
29483
|
-
locale: PropTypes.string.isRequired,
|
|
29484
|
-
name: PropTypes.string.isRequired,
|
|
29485
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
29486
|
-
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29487
|
-
description: PropTypes.string,
|
|
29488
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
29489
|
-
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
29490
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
29491
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
29492
|
-
created_at: PropTypes.string,
|
|
29493
|
-
updated_at: PropTypes.string,
|
|
29494
|
-
});
|
|
29495
|
-
|
|
29496
|
-
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
29497
|
-
id: PropTypes.string.isRequired,
|
|
29498
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29499
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
29500
|
-
});
|
|
29501
|
-
|
|
29502
|
-
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
29503
|
-
id: PropTypes.string.isRequired,
|
|
29504
|
-
timestamp: PropTypes.string.isRequired,
|
|
29505
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29506
|
-
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
29507
|
-
});
|
|
29508
|
-
|
|
29509
|
-
T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
29510
|
-
id: PropTypes.string.isRequired,
|
|
29511
|
-
timestamp: PropTypes.string.isRequired,
|
|
29512
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
29513
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29514
|
-
});
|
|
29515
|
-
|
|
29516
|
-
T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
|
|
29517
|
-
discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
|
|
29518
|
-
event_id: PropTypes.string.isRequired,
|
|
29519
|
-
timestamp: PropTypes.string.isRequired,
|
|
29520
|
-
organization: PropTypes.string.isRequired,
|
|
29521
|
-
id: PropTypes.string.isRequired,
|
|
29522
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29523
|
-
item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
29524
|
-
});
|
|
29525
|
-
|
|
29526
|
-
T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
|
|
29527
|
-
q: PropTypes.string.isRequired,
|
|
29528
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29529
|
-
});
|
|
29530
|
-
|
|
29531
|
-
T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
29532
|
-
value: PropTypes.string.isRequired,
|
|
29533
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
29534
|
-
});
|
|
29535
|
-
|
|
29536
|
-
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
29537
|
-
filter: PropTypes.string.isRequired,
|
|
29538
|
-
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
29539
|
-
});
|
|
29540
|
-
|
|
29541
|
-
T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
29542
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
29543
|
-
name: PropTypes.string.isRequired,
|
|
29544
|
-
description: PropTypes.string,
|
|
29545
|
-
attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
|
|
29546
|
-
image: T['io.flow.catalog.v0.models.image'],
|
|
29547
|
-
});
|
|
29548
|
-
|
|
29549
|
-
T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
|
|
29550
|
-
global: T['io.flow.internal.v0.models.checkout_content_summary'],
|
|
29551
|
-
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
29552
|
-
});
|
|
29553
|
-
|
|
29554
29620
|
T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
|
|
29555
29621
|
id: PropTypes.string.isRequired,
|
|
29556
29622
|
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
@@ -29571,6 +29637,21 @@ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
|
|
|
29571
29637
|
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
29572
29638
|
});
|
|
29573
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
|
+
|
|
29574
29655
|
T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
|
|
29575
29656
|
cart: T['io.flow.shopify.v0.models.shopify_cart'],
|
|
29576
29657
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
@@ -29590,6 +29671,17 @@ T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
|
|
|
29590
29671
|
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
29591
29672
|
});
|
|
29592
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
|
+
|
|
29593
29685
|
T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
|
|
29594
29686
|
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
29595
29687
|
taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
@@ -29865,6 +29957,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
29865
29957
|
round_individual_transactions: PropTypes.bool.isRequired,
|
|
29866
29958
|
liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
|
|
29867
29959
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
29960
|
+
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
29868
29961
|
});
|
|
29869
29962
|
|
|
29870
29963
|
T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
|
|
@@ -30936,7 +31029,7 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
|
30936
31029
|
'prr-599c6246a1a24752aeb85e8f79030781',
|
|
30937
31030
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
30938
31031
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
30939
|
-
'prr-
|
|
31032
|
+
'prr-b186129720f0446eb452a68518437c95',
|
|
30940
31033
|
]);
|
|
30941
31034
|
|
|
30942
31035
|
T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
@@ -34290,6 +34383,7 @@ export const channelCurrencySettingForm = T['io.flow.internal.v0.models.channel_
|
|
|
34290
34383
|
export const channelCurrencySettingUpserted = T['io.flow.internal.v0.models.channel_currency_setting_upserted'];
|
|
34291
34384
|
export const channelDebugTransaction = T['io.flow.internal.v0.models.channel_debug_transaction'];
|
|
34292
34385
|
export const channelForm = T['io.flow.internal.v0.models.channel_form'];
|
|
34386
|
+
export const channelFulfillment = T['io.flow.internal.v0.models.channel_fulfillment'];
|
|
34293
34387
|
export const channelMembership = T['io.flow.internal.v0.models.channel_membership'];
|
|
34294
34388
|
export const channelMembershipForm = T['io.flow.internal.v0.models.channel_membership_form'];
|
|
34295
34389
|
export const channelMembershipPutForm = T['io.flow.internal.v0.models.channel_membership_put_form'];
|
|
@@ -35942,11 +36036,14 @@ export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_ori
|
|
|
35942
36036
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
35943
36037
|
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
35944
36038
|
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
36039
|
+
export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
|
|
35945
36040
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
35946
36041
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
35947
36042
|
export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.return_policy_item_result_upserted'];
|
|
35948
36043
|
export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_upserted'];
|
|
35949
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'];
|
|
35950
36047
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
35951
36048
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
35952
36049
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|