@flowio/api-internal-prop-types 9.24.58 → 9.24.60
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 +117 -52
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +117 -52
- package/src/api-internal.js +151 -72
package/src/api-internal.js
CHANGED
|
@@ -89,13 +89,6 @@ T['io.flow.fraud.v0.models.fraud_email_rule_form'] = PropTypes.exact({
|
|
|
89
89
|
rule: T['io.flow.fraud.v0.models.fraud_email_rule'].isRequired,
|
|
90
90
|
});
|
|
91
91
|
|
|
92
|
-
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
93
|
-
'street_address_is_blank_3pl',
|
|
94
|
-
'street_address_is_po_box_3pl',
|
|
95
|
-
'business_street_address_is_blank',
|
|
96
|
-
'business_street_address_is_po_box',
|
|
97
|
-
]);
|
|
98
|
-
|
|
99
92
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
100
93
|
'merchant_ubo_is_pep',
|
|
101
94
|
'merchant_catalog_is_unsupportable',
|
|
@@ -619,6 +612,7 @@ T['io.flow.inventory.v0.models.inventory_check_response'] = PropTypes.exact({
|
|
|
619
612
|
});
|
|
620
613
|
|
|
621
614
|
T['io.flow.catalog.v0.models.catalog_statistics'] = PropTypes.exact({
|
|
615
|
+
id: PropTypes.string.isRequired,
|
|
622
616
|
items: PropTypes.number.isRequired,
|
|
623
617
|
categories: PropTypes.number.isRequired,
|
|
624
618
|
});
|
|
@@ -3164,6 +3158,7 @@ T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact(
|
|
|
3164
3158
|
threeDOfferedResponse: PropTypes.string,
|
|
3165
3159
|
threeDSVersion: PropTypes.string,
|
|
3166
3160
|
eci: PropTypes.string,
|
|
3161
|
+
cavv: PropTypes.string,
|
|
3167
3162
|
scaExemptionRequested: PropTypes.string,
|
|
3168
3163
|
paymentMethod: PropTypes.string,
|
|
3169
3164
|
paymentMethodVariant: PropTypes.string,
|
|
@@ -3179,6 +3174,9 @@ T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact(
|
|
|
3179
3174
|
issuerBin: PropTypes.string,
|
|
3180
3175
|
cardSummary: PropTypes.string,
|
|
3181
3176
|
untokenisedCardSummary: PropTypes.string,
|
|
3177
|
+
expiryDate: PropTypes.string,
|
|
3178
|
+
cardHolderName: PropTypes.string,
|
|
3179
|
+
fundingSource: PropTypes.string,
|
|
3182
3180
|
ownerName: PropTypes.string,
|
|
3183
3181
|
bankName: PropTypes.string,
|
|
3184
3182
|
issuerCountry: PropTypes.string,
|
|
@@ -5494,8 +5492,6 @@ T['io.flow.payment.v0.models.direct_debit'] = PropTypes.exact({
|
|
|
5494
5492
|
account_holder_name: PropTypes.string,
|
|
5495
5493
|
});
|
|
5496
5494
|
|
|
5497
|
-
T['io.flow.payment.v0.unions.confirmation_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.direct_debit']]);
|
|
5498
|
-
|
|
5499
5495
|
T['io.flow.payment.v0.models.klarna_payment_method_category'] = PropTypes.exact({
|
|
5500
5496
|
id: PropTypes.string.isRequired,
|
|
5501
5497
|
name: PropTypes.string,
|
|
@@ -7397,6 +7393,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
7397
7393
|
id: PropTypes.string.isRequired,
|
|
7398
7394
|
});
|
|
7399
7395
|
|
|
7396
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'] = PropTypes.exact({
|
|
7397
|
+
discriminator: PropTypes.oneOf(['shopify_markets_webhook_registration_deleted']).isRequired,
|
|
7398
|
+
event_id: PropTypes.string.isRequired,
|
|
7399
|
+
timestamp: PropTypes.string.isRequired,
|
|
7400
|
+
organization: PropTypes.string.isRequired,
|
|
7401
|
+
id: PropTypes.string.isRequired,
|
|
7402
|
+
});
|
|
7403
|
+
|
|
7400
7404
|
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'] = PropTypes.exact({
|
|
7401
7405
|
discriminator: PropTypes.oneOf(['shopify_markets_shop_deleted']).isRequired,
|
|
7402
7406
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7412,6 +7416,13 @@ T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
|
7412
7416
|
id: PropTypes.string.isRequired,
|
|
7413
7417
|
});
|
|
7414
7418
|
|
|
7419
|
+
T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTypes.exact({
|
|
7420
|
+
discriminator: PropTypes.oneOf(['organization_restriction_status_deleted']).isRequired,
|
|
7421
|
+
event_id: PropTypes.string.isRequired,
|
|
7422
|
+
timestamp: PropTypes.string.isRequired,
|
|
7423
|
+
id: PropTypes.string.isRequired,
|
|
7424
|
+
});
|
|
7425
|
+
|
|
7415
7426
|
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'] = PropTypes.exact({
|
|
7416
7427
|
discriminator: PropTypes.oneOf(['ratecard_standard_configuration_deleted']).isRequired,
|
|
7417
7428
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7436,6 +7447,14 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
7436
7447
|
id: PropTypes.string.isRequired,
|
|
7437
7448
|
});
|
|
7438
7449
|
|
|
7450
|
+
T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropTypes.exact({
|
|
7451
|
+
discriminator: PropTypes.oneOf(['partner_organization_settings_deleted']).isRequired,
|
|
7452
|
+
event_id: PropTypes.string.isRequired,
|
|
7453
|
+
timestamp: PropTypes.string.isRequired,
|
|
7454
|
+
organization: PropTypes.string.isRequired,
|
|
7455
|
+
id: PropTypes.string.isRequired,
|
|
7456
|
+
});
|
|
7457
|
+
|
|
7439
7458
|
T['io.flow.internal.v0.models.organization_status_change_deleted'] = PropTypes.exact({
|
|
7440
7459
|
discriminator: PropTypes.oneOf(['organization_status_change_deleted']).isRequired,
|
|
7441
7460
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8389,7 +8408,7 @@ T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'] = PropTypes.ex
|
|
|
8389
8408
|
T['io.flow.internal.v0.enums.surcharge_type'] = PropTypes.oneOf(['fuel', 'remote_area', 'oversize', 'duties_paid']);
|
|
8390
8409
|
|
|
8391
8410
|
T['io.flow.internal.v0.models.surcharge'] = PropTypes.exact({
|
|
8392
|
-
amount: PropTypes.number
|
|
8411
|
+
amount: PropTypes.number,
|
|
8393
8412
|
percentage: PropTypes.number,
|
|
8394
8413
|
type: T['io.flow.internal.v0.enums.surcharge_type'].isRequired,
|
|
8395
8414
|
});
|
|
@@ -8956,9 +8975,18 @@ T['io.flow.shopify.markets.v0.models.shopify_webhook_response_wrapper'] = PropTy
|
|
|
8956
8975
|
});
|
|
8957
8976
|
|
|
8958
8977
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration'] = PropTypes.exact({
|
|
8978
|
+
id: PropTypes.string.isRequired,
|
|
8959
8979
|
response: T['io.flow.shopify.markets.v0.models.shopify_webhook_response'].isRequired,
|
|
8960
8980
|
});
|
|
8961
8981
|
|
|
8982
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'] = PropTypes.exact({
|
|
8983
|
+
discriminator: PropTypes.oneOf(['shopify_markets_webhook_registration_upserted']).isRequired,
|
|
8984
|
+
event_id: PropTypes.string.isRequired,
|
|
8985
|
+
timestamp: PropTypes.string.isRequired,
|
|
8986
|
+
organization: PropTypes.string.isRequired,
|
|
8987
|
+
registration: T['io.flow.internal.v0.models.shopify_markets_webhook_registration'].isRequired,
|
|
8988
|
+
});
|
|
8989
|
+
|
|
8962
8990
|
T['io.flow.internal.v0.models.shopify_markets_incorporation_country'] = PropTypes.exact({
|
|
8963
8991
|
country: PropTypes.string.isRequired,
|
|
8964
8992
|
state: PropTypes.string,
|
|
@@ -9061,6 +9089,19 @@ T['io.flow.internal.v0.models.shipper_account_info_form'] = PropTypes.exact({
|
|
|
9061
9089
|
invoice_info: T['io.flow.internal.v0.models.invoice_info_form'],
|
|
9062
9090
|
});
|
|
9063
9091
|
|
|
9092
|
+
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
9093
|
+
'street_address_is_blank_3pl',
|
|
9094
|
+
'street_address_is_po_box_3pl',
|
|
9095
|
+
'business_street_address_is_blank',
|
|
9096
|
+
'business_street_address_is_po_box',
|
|
9097
|
+
]);
|
|
9098
|
+
|
|
9099
|
+
T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
9100
|
+
reasons: PropTypes.arrayOf(
|
|
9101
|
+
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
|
|
9102
|
+
).isRequired,
|
|
9103
|
+
});
|
|
9104
|
+
|
|
9064
9105
|
T['io.flow.internal.v0.enums.session_country_status'] = PropTypes.oneOf(['enabled', 'disabled']);
|
|
9065
9106
|
|
|
9066
9107
|
T['io.flow.internal.v0.models.session_country_form'] = PropTypes.exact({
|
|
@@ -9676,10 +9717,19 @@ T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.e
|
|
|
9676
9717
|
});
|
|
9677
9718
|
|
|
9678
9719
|
T['io.flow.internal.v0.models.partner_organization_settings'] = PropTypes.exact({
|
|
9720
|
+
id: PropTypes.string.isRequired,
|
|
9679
9721
|
label_format: T['io.flow.partner.v0.enums.label_format'].isRequired,
|
|
9680
9722
|
glbe_merchant_guid: PropTypes.string.isRequired,
|
|
9681
9723
|
});
|
|
9682
9724
|
|
|
9725
|
+
T['io.flow.internal.v0.models.partner_organization_settings_upserted'] = PropTypes.exact({
|
|
9726
|
+
discriminator: PropTypes.oneOf(['partner_organization_settings_upserted']).isRequired,
|
|
9727
|
+
event_id: PropTypes.string.isRequired,
|
|
9728
|
+
timestamp: PropTypes.string.isRequired,
|
|
9729
|
+
organization: PropTypes.string.isRequired,
|
|
9730
|
+
partner_organization_settings: T['io.flow.internal.v0.models.partner_organization_settings'].isRequired,
|
|
9731
|
+
});
|
|
9732
|
+
|
|
9683
9733
|
T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
|
|
9684
9734
|
T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
|
|
9685
9735
|
|
|
@@ -9742,13 +9792,6 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
|
|
|
9742
9792
|
organization_restriction_snapshot: T['io.flow.internal.v0.models.organization_restriction_snapshot'].isRequired,
|
|
9743
9793
|
});
|
|
9744
9794
|
|
|
9745
|
-
T['io.flow.internal.v0.enums.organization_restriction_note_type'] = PropTypes.oneOf(['internal', 'rejection_reason', 'additional_rejection_info']);
|
|
9746
|
-
|
|
9747
|
-
T['io.flow.internal.v0.models.organization_restriction_note_form'] = PropTypes.exact({
|
|
9748
|
-
note: PropTypes.string.isRequired,
|
|
9749
|
-
note_type: T['io.flow.internal.v0.enums.organization_restriction_note_type'].isRequired,
|
|
9750
|
-
});
|
|
9751
|
-
|
|
9752
9795
|
T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
|
|
9753
9796
|
T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
|
|
9754
9797
|
T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
|
|
@@ -9781,16 +9824,6 @@ T['io.flow.internal.v0.models.restriction_organization_status_deleted'] = PropTy
|
|
|
9781
9824
|
restriction_organization_status: T['io.flow.internal.v0.models.restriction_organization_status'].isRequired,
|
|
9782
9825
|
});
|
|
9783
9826
|
|
|
9784
|
-
T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'] = PropTypes.exact({
|
|
9785
|
-
organization_id: PropTypes.string.isRequired,
|
|
9786
|
-
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
|
|
9787
|
-
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
|
|
9788
|
-
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
9789
|
-
hs_code: PropTypes.string,
|
|
9790
|
-
merchant_category_code: PropTypes.string,
|
|
9791
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_note_form']),
|
|
9792
|
-
});
|
|
9793
|
-
|
|
9794
9827
|
T['io.flow.internal.v0.models.organization_restriction_status'] = PropTypes.exact({
|
|
9795
9828
|
id: PropTypes.string.isRequired,
|
|
9796
9829
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -9801,29 +9834,33 @@ T['io.flow.internal.v0.models.organization_restriction_status'] = PropTypes.exac
|
|
|
9801
9834
|
selective_review_end_date: PropTypes.string,
|
|
9802
9835
|
full_review_start_date: PropTypes.string,
|
|
9803
9836
|
full_review_end_date: PropTypes.string,
|
|
9804
|
-
|
|
9805
|
-
|
|
9806
|
-
T['io.flow.internal.v0.models.organization_restriction_approval'] = PropTypes.exact({
|
|
9807
|
-
id: PropTypes.string.isRequired,
|
|
9808
|
-
status: T['io.flow.internal.v0.models.organization_restriction_status'].isRequired,
|
|
9837
|
+
merchant_category_code: PropTypes.string,
|
|
9809
9838
|
reason: PropTypes.string,
|
|
9810
9839
|
updated_at: PropTypes.string.isRequired,
|
|
9811
9840
|
});
|
|
9812
9841
|
|
|
9813
|
-
T['io.flow.internal.v0.models.
|
|
9814
|
-
discriminator: PropTypes.oneOf(['
|
|
9842
|
+
T['io.flow.internal.v0.models.organization_restriction_status_upserted'] = PropTypes.exact({
|
|
9843
|
+
discriminator: PropTypes.oneOf(['organization_restriction_status_upserted']).isRequired,
|
|
9815
9844
|
event_id: PropTypes.string.isRequired,
|
|
9816
9845
|
timestamp: PropTypes.string.isRequired,
|
|
9817
|
-
|
|
9818
|
-
organization_restriction_approval: T['io.flow.internal.v0.models.organization_restriction_approval'].isRequired,
|
|
9846
|
+
organization_restriction_status: T['io.flow.internal.v0.models.organization_restriction_status'].isRequired,
|
|
9819
9847
|
});
|
|
9820
9848
|
|
|
9821
|
-
T['io.flow.internal.v0.
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
|
|
9849
|
+
T['io.flow.internal.v0.enums.organization_restriction_note_type'] = PropTypes.oneOf(['internal', 'rejection_reason', 'additional_rejection_info']);
|
|
9850
|
+
|
|
9851
|
+
T['io.flow.internal.v0.models.organization_restriction_note_form'] = PropTypes.exact({
|
|
9852
|
+
note: PropTypes.string.isRequired,
|
|
9853
|
+
note_type: T['io.flow.internal.v0.enums.organization_restriction_note_type'].isRequired,
|
|
9854
|
+
});
|
|
9855
|
+
|
|
9856
|
+
T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'] = PropTypes.exact({
|
|
9857
|
+
organization_id: PropTypes.string.isRequired,
|
|
9858
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
|
|
9859
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
|
|
9860
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
9861
|
+
hs_code: PropTypes.string,
|
|
9862
|
+
merchant_category_code: PropTypes.string,
|
|
9863
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_note_form']),
|
|
9827
9864
|
});
|
|
9828
9865
|
|
|
9829
9866
|
T['io.flow.payment.gateway.v0.models.payment_capture_option_manual'] = PropTypes.exact({
|
|
@@ -10031,7 +10068,7 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
|
|
|
10031
10068
|
|
|
10032
10069
|
T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
|
|
10033
10070
|
onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
10034
|
-
transitioned_at: PropTypes.string
|
|
10071
|
+
transitioned_at: PropTypes.string,
|
|
10035
10072
|
});
|
|
10036
10073
|
|
|
10037
10074
|
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
@@ -11273,6 +11310,21 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
|
11273
11310
|
'visa',
|
|
11274
11311
|
]);
|
|
11275
11312
|
|
|
11313
|
+
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
11314
|
+
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
11315
|
+
type: T['io.flow.payment.v0.enums.card_type'],
|
|
11316
|
+
funding_type: PropTypes.string,
|
|
11317
|
+
expiration: T['io.flow.payment.v0.models.expiration'],
|
|
11318
|
+
iin: PropTypes.string,
|
|
11319
|
+
issuer: T['io.flow.payment.v0.models.issuer_summary'],
|
|
11320
|
+
last4: PropTypes.string,
|
|
11321
|
+
});
|
|
11322
|
+
|
|
11323
|
+
T['io.flow.payment.v0.unions.confirmation_details'] = PropTypes.oneOfType([
|
|
11324
|
+
T['io.flow.payment.v0.models.direct_debit'],
|
|
11325
|
+
T['io.flow.payment.v0.models.card_confirmation_summary'],
|
|
11326
|
+
]);
|
|
11327
|
+
|
|
11276
11328
|
T['io.flow.payment.v0.enums.cvv_result_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
|
|
11277
11329
|
T['io.flow.payment.v0.enums.address_verification_result_field_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
|
|
11278
11330
|
|
|
@@ -11475,6 +11527,7 @@ T['io.flow.internal.v0.models.organization_payment_setting_form'] = PropTypes.ex
|
|
|
11475
11527
|
});
|
|
11476
11528
|
|
|
11477
11529
|
T['io.flow.internal.v0.models.organization_payment_setting'] = PropTypes.exact({
|
|
11530
|
+
id: PropTypes.string.isRequired,
|
|
11478
11531
|
organization_id: PropTypes.string.isRequired,
|
|
11479
11532
|
default_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'].isRequired,
|
|
11480
11533
|
status: T['io.flow.internal.v0.enums.organization_payment_status'].isRequired,
|
|
@@ -13335,6 +13388,8 @@ T['io.flow.internal.v0.models.csv_label'] = PropTypes.exact({
|
|
|
13335
13388
|
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
13336
13389
|
});
|
|
13337
13390
|
|
|
13391
|
+
T['io.flow.internal.v0.enums.label_input_source'] = PropTypes.oneOf(['estimate']);
|
|
13392
|
+
|
|
13338
13393
|
T['io.flow.internal.v0.models.csv_global_e_proposition'] = PropTypes.exact({
|
|
13339
13394
|
name: PropTypes.string.isRequired,
|
|
13340
13395
|
});
|
|
@@ -13414,7 +13469,7 @@ T['io.flow.internal.v0.models.csv_flow_ratecard'] = PropTypes.exact({
|
|
|
13414
13469
|
base_amount: PropTypes.number,
|
|
13415
13470
|
});
|
|
13416
13471
|
|
|
13417
|
-
T['io.flow.internal.v0.models.
|
|
13472
|
+
T['io.flow.internal.v0.models.csv_surcharge_percentage'] = PropTypes.exact({
|
|
13418
13473
|
percentage: PropTypes.number.isRequired,
|
|
13419
13474
|
amount: PropTypes.number.isRequired,
|
|
13420
13475
|
});
|
|
@@ -13542,18 +13597,29 @@ T['io.flow.internal.v0.models.csv_dimensions'] = PropTypes.exact({
|
|
|
13542
13597
|
depth: PropTypes.number.isRequired,
|
|
13543
13598
|
});
|
|
13544
13599
|
|
|
13545
|
-
T['io.flow.internal.v0.models.
|
|
13546
|
-
fuel: T['io.flow.internal.v0.models.
|
|
13600
|
+
T['io.flow.internal.v0.models.csv_surcharges'] = PropTypes.exact({
|
|
13601
|
+
fuel: T['io.flow.internal.v0.models.csv_surcharge_percentage'].isRequired,
|
|
13547
13602
|
remote_area: PropTypes.number.isRequired,
|
|
13548
13603
|
oversize: PropTypes.number.isRequired,
|
|
13549
13604
|
duties_paid: PropTypes.number.isRequired,
|
|
13550
13605
|
});
|
|
13551
13606
|
|
|
13607
|
+
T['io.flow.internal.v0.models.csv_input'] = PropTypes.exact({
|
|
13608
|
+
id: PropTypes.string.isRequired,
|
|
13609
|
+
source: T['io.flow.internal.v0.enums.label_input_source'].isRequired,
|
|
13610
|
+
currency: PropTypes.string.isRequired,
|
|
13611
|
+
base_amount: PropTypes.number.isRequired,
|
|
13612
|
+
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13613
|
+
total: PropTypes.number.isRequired,
|
|
13614
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
13615
|
+
weight: PropTypes.number.isRequired,
|
|
13616
|
+
});
|
|
13617
|
+
|
|
13552
13618
|
T['io.flow.internal.v0.models.csv_actual'] = PropTypes.exact({
|
|
13553
13619
|
id: PropTypes.string.isRequired,
|
|
13554
13620
|
currency: PropTypes.string.isRequired,
|
|
13555
13621
|
base_amount: PropTypes.number.isRequired,
|
|
13556
|
-
surcharges: T['io.flow.internal.v0.models.
|
|
13622
|
+
surcharges: T['io.flow.internal.v0.models.csv_surcharges'].isRequired,
|
|
13557
13623
|
total: PropTypes.number.isRequired,
|
|
13558
13624
|
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
13559
13625
|
weight: PropTypes.number.isRequired,
|
|
@@ -19343,11 +19409,6 @@ T['io.flow.fulfillment.v0.models.quote_version'] = PropTypes.exact({
|
|
|
19343
19409
|
quote: T['io.flow.fulfillment.v0.models.quote_summary'].isRequired,
|
|
19344
19410
|
});
|
|
19345
19411
|
|
|
19346
|
-
T['io.flow.partner.v0.models.bridge_hub'] = PropTypes.exact({
|
|
19347
|
-
hub_code: PropTypes.string.isRequired,
|
|
19348
|
-
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
19349
|
-
});
|
|
19350
|
-
|
|
19351
19412
|
T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
19352
19413
|
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
19353
19414
|
tier_id: PropTypes.string,
|
|
@@ -21753,7 +21814,7 @@ T['io.flow.partner.v0.models.bridge_label_form'] = PropTypes.exact({
|
|
|
21753
21814
|
organization: PropTypes.string.isRequired,
|
|
21754
21815
|
order_number: PropTypes.string.isRequired,
|
|
21755
21816
|
'package': T['io.flow.partner.v0.models.bridge_label_package'].isRequired,
|
|
21756
|
-
|
|
21817
|
+
hub_code: PropTypes.string,
|
|
21757
21818
|
});
|
|
21758
21819
|
|
|
21759
21820
|
T['io.flow.label.v0.models.summary_shipping_notification_form'] = PropTypes.exact({
|
|
@@ -22240,7 +22301,10 @@ T['io.flow.internal.v0.models.csv_record'] = PropTypes.exact({
|
|
|
22240
22301
|
global_e_shipping_method: T['io.flow.internal.v0.models.csv_global_e_shipping_method'],
|
|
22241
22302
|
weight: T['io.flow.internal.v0.models.csv_weight'].isRequired,
|
|
22242
22303
|
dimensions: T['io.flow.internal.v0.models.csv_dimensions'].isRequired,
|
|
22304
|
+
input: T['io.flow.internal.v0.models.csv_input'],
|
|
22243
22305
|
actual: T['io.flow.internal.v0.models.csv_actual'],
|
|
22306
|
+
deltas: PropTypes.arrayOf(PropTypes.string),
|
|
22307
|
+
outliers: PropTypes.arrayOf(PropTypes.string),
|
|
22244
22308
|
});
|
|
22245
22309
|
|
|
22246
22310
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
@@ -22586,16 +22650,6 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
22586
22650
|
|
|
22587
22651
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
22588
22652
|
|
|
22589
|
-
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
22590
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
22591
|
-
|
|
22592
|
-
transitions: PropTypes.arrayOf(
|
|
22593
|
-
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
22594
|
-
).isRequired,
|
|
22595
|
-
|
|
22596
|
-
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
22597
|
-
});
|
|
22598
|
-
|
|
22599
22653
|
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
22600
22654
|
id: PropTypes.string.isRequired,
|
|
22601
22655
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -22673,6 +22727,17 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
|
|
|
22673
22727
|
'export': T['io.flow.export.v0.models.export'].isRequired,
|
|
22674
22728
|
});
|
|
22675
22729
|
|
|
22730
|
+
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
22731
|
+
id: PropTypes.string.isRequired,
|
|
22732
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
22733
|
+
|
|
22734
|
+
transitions: PropTypes.arrayOf(
|
|
22735
|
+
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
22736
|
+
).isRequired,
|
|
22737
|
+
|
|
22738
|
+
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
22739
|
+
});
|
|
22740
|
+
|
|
22676
22741
|
T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
|
|
22677
22742
|
organization: T['io.flow.common.v0.models.organization_reference'],
|
|
22678
22743
|
id: PropTypes.string.isRequired,
|
|
@@ -25726,8 +25791,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25726
25791
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
25727
25792
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
25728
25793
|
T['io.flow.internal.v0.models.organization_status_change_deleted'],
|
|
25729
|
-
T['io.flow.internal.v0.models.
|
|
25730
|
-
T['io.flow.internal.v0.models.
|
|
25794
|
+
T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
|
|
25795
|
+
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
25731
25796
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
25732
25797
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
25733
25798
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -25777,6 +25842,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25777
25842
|
T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
|
|
25778
25843
|
T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
|
|
25779
25844
|
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
25845
|
+
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
25846
|
+
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
25780
25847
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
25781
25848
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
25782
25849
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -25785,6 +25852,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25785
25852
|
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
25786
25853
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
25787
25854
|
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
25855
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
25856
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
25788
25857
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
25789
25858
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
25790
25859
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -26241,8 +26310,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26241
26310
|
'organization_business_entity_upserted',
|
|
26242
26311
|
'organization_status_change_upserted',
|
|
26243
26312
|
'organization_status_change_deleted',
|
|
26244
|
-
'
|
|
26245
|
-
'
|
|
26313
|
+
'partner_organization_settings_upserted',
|
|
26314
|
+
'partner_organization_settings_deleted',
|
|
26246
26315
|
'internal_authorization_upserted',
|
|
26247
26316
|
'internal_authorization_deleted',
|
|
26248
26317
|
'afterpay_authorization_upserted',
|
|
@@ -26292,6 +26361,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26292
26361
|
'organization_restriction_snapshot_deleted',
|
|
26293
26362
|
'restriction_organization_status_upserted',
|
|
26294
26363
|
'restriction_organization_status_deleted',
|
|
26364
|
+
'organization_restriction_status_upserted',
|
|
26365
|
+
'organization_restriction_status_deleted',
|
|
26295
26366
|
'shopify_shop_upserted',
|
|
26296
26367
|
'shopify_shop_deleted',
|
|
26297
26368
|
'shopify_experience_short_id_upserted',
|
|
@@ -26300,6 +26371,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26300
26371
|
'shopify_markets_order_deleted',
|
|
26301
26372
|
'shopify_markets_shop_upserted',
|
|
26302
26373
|
'shopify_markets_shop_deleted',
|
|
26374
|
+
'shopify_markets_webhook_registration_upserted',
|
|
26375
|
+
'shopify_markets_webhook_registration_deleted',
|
|
26303
26376
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
26304
26377
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
26305
26378
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -29101,18 +29174,19 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
29101
29174
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
29102
29175
|
export const csvActual = T['io.flow.internal.v0.models.csv_actual'];
|
|
29103
29176
|
export const csvActualRatecard = T['io.flow.internal.v0.models.csv_actual_ratecard'];
|
|
29104
|
-
export const csvActualSurchargePercentage = T['io.flow.internal.v0.models.csv_actual_surcharge_percentage'];
|
|
29105
|
-
export const csvActualSurcharges = T['io.flow.internal.v0.models.csv_actual_surcharges'];
|
|
29106
29177
|
export const csvDimensions = T['io.flow.internal.v0.models.csv_dimensions'];
|
|
29107
29178
|
export const csvFlowRatecard = T['io.flow.internal.v0.models.csv_flow_ratecard'];
|
|
29108
29179
|
export const csvFlowRatecardSurcharges = T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'];
|
|
29109
29180
|
export const csvGlobalEProposition = T['io.flow.internal.v0.models.csv_global_e_proposition'];
|
|
29110
29181
|
export const csvGlobalEShippingMethod = T['io.flow.internal.v0.models.csv_global_e_shipping_method'];
|
|
29182
|
+
export const csvInput = T['io.flow.internal.v0.models.csv_input'];
|
|
29111
29183
|
export const csvLabel = T['io.flow.internal.v0.models.csv_label'];
|
|
29112
29184
|
export const csvLabelCost = T['io.flow.internal.v0.models.csv_label_cost'];
|
|
29113
29185
|
export const csvOrder = T['io.flow.internal.v0.models.csv_order'];
|
|
29114
29186
|
export const csvRecord = T['io.flow.internal.v0.models.csv_record'];
|
|
29115
29187
|
export const csvServiceFee = T['io.flow.internal.v0.models.csv_service_fee'];
|
|
29188
|
+
export const csvSurchargePercentage = T['io.flow.internal.v0.models.csv_surcharge_percentage'];
|
|
29189
|
+
export const csvSurcharges = T['io.flow.internal.v0.models.csv_surcharges'];
|
|
29116
29190
|
export const csvWeight = T['io.flow.internal.v0.models.csv_weight'];
|
|
29117
29191
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
29118
29192
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
@@ -29582,6 +29656,7 @@ export const labelGenerationSettings = T['io.flow.internal.v0.models.label_gener
|
|
|
29582
29656
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
29583
29657
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
29584
29658
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
29659
|
+
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
29585
29660
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
29586
29661
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
29587
29662
|
export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
|
|
@@ -29801,10 +29876,7 @@ export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.
|
|
|
29801
29876
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
29802
29877
|
export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
|
|
29803
29878
|
export const organizationReference = T['io.flow.internal.v0.models.organization_reference'];
|
|
29804
|
-
export const organizationRestrictionApproval = T['io.flow.internal.v0.models.organization_restriction_approval'];
|
|
29805
|
-
export const organizationRestrictionApprovalDeleted = T['io.flow.internal.v0.models.organization_restriction_approval_deleted'];
|
|
29806
29879
|
export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
|
|
29807
|
-
export const organizationRestrictionApprovalUpserted = T['io.flow.internal.v0.models.organization_restriction_approval_upserted'];
|
|
29808
29880
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
29809
29881
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
29810
29882
|
export const organizationRestrictionRiskLevel = T['io.flow.internal.v0.enums.organization_restriction_risk_level'];
|
|
@@ -29814,7 +29886,9 @@ export const organizationRestrictionSnapshot = T['io.flow.internal.v0.models.org
|
|
|
29814
29886
|
export const organizationRestrictionSnapshotDeleted = T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'];
|
|
29815
29887
|
export const organizationRestrictionSnapshotUpserted = T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'];
|
|
29816
29888
|
export const organizationRestrictionStatus = T['io.flow.internal.v0.models.organization_restriction_status'];
|
|
29889
|
+
export const organizationRestrictionStatusDeleted = T['io.flow.internal.v0.models.organization_restriction_status_deleted'];
|
|
29817
29890
|
export const organizationRestrictionStatusNote = T['io.flow.internal.v0.models.organization_restriction_status_note'];
|
|
29891
|
+
export const organizationRestrictionStatusUpserted = T['io.flow.internal.v0.models.organization_restriction_status_upserted'];
|
|
29818
29892
|
export const organizationSettings = T['io.flow.internal.v0.models.organization_settings'];
|
|
29819
29893
|
export const organizationSettingsForm = T['io.flow.internal.v0.models.organization_settings_form'];
|
|
29820
29894
|
export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
|
|
@@ -29834,7 +29908,9 @@ export const partnerMembershipVersion = T['io.flow.internal.v0.models.partner_me
|
|
|
29834
29908
|
export const partnerOrganizationAuthorization = T['io.flow.internal.v0.models.partner_organization_authorization'];
|
|
29835
29909
|
export const partnerOrganizationAuthorizationForm = T['io.flow.internal.v0.models.partner_organization_authorization_form'];
|
|
29836
29910
|
export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner_organization_settings'];
|
|
29911
|
+
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
29837
29912
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
29913
|
+
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
29838
29914
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
29839
29915
|
export const passphraseForm = T['io.flow.internal.v0.models.passphrase_form'];
|
|
29840
29916
|
export const passphraseSummary = T['io.flow.internal.v0.models.passphrase_summary'];
|
|
@@ -30061,6 +30137,7 @@ export const sessionCountryStatus = T['io.flow.internal.v0.enums.session_country
|
|
|
30061
30137
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
30062
30138
|
export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
30063
30139
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
30140
|
+
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
30064
30141
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
30065
30142
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
30066
30143
|
export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
|
|
@@ -30100,6 +30177,8 @@ export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.sho
|
|
|
30100
30177
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
30101
30178
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
30102
30179
|
export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
|
|
30180
|
+
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
30181
|
+
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
30103
30182
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
30104
30183
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
30105
30184
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|