@flowio/api-internal-prop-types 9.24.58 → 9.24.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +114 -45
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +114 -45
- package/src/api-internal.js +148 -65
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({
|
|
@@ -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,
|
|
@@ -22240,7 +22306,10 @@ T['io.flow.internal.v0.models.csv_record'] = PropTypes.exact({
|
|
|
22240
22306
|
global_e_shipping_method: T['io.flow.internal.v0.models.csv_global_e_shipping_method'],
|
|
22241
22307
|
weight: T['io.flow.internal.v0.models.csv_weight'].isRequired,
|
|
22242
22308
|
dimensions: T['io.flow.internal.v0.models.csv_dimensions'].isRequired,
|
|
22309
|
+
input: T['io.flow.internal.v0.models.csv_input'],
|
|
22243
22310
|
actual: T['io.flow.internal.v0.models.csv_actual'],
|
|
22311
|
+
deltas: PropTypes.arrayOf(PropTypes.string),
|
|
22312
|
+
outliers: PropTypes.arrayOf(PropTypes.string),
|
|
22244
22313
|
});
|
|
22245
22314
|
|
|
22246
22315
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
@@ -22586,16 +22655,6 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
22586
22655
|
|
|
22587
22656
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
22588
22657
|
|
|
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
22658
|
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
22600
22659
|
id: PropTypes.string.isRequired,
|
|
22601
22660
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -22673,6 +22732,16 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
|
|
|
22673
22732
|
'export': T['io.flow.export.v0.models.export'].isRequired,
|
|
22674
22733
|
});
|
|
22675
22734
|
|
|
22735
|
+
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
22736
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
22737
|
+
|
|
22738
|
+
transitions: PropTypes.arrayOf(
|
|
22739
|
+
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
22740
|
+
).isRequired,
|
|
22741
|
+
|
|
22742
|
+
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
22743
|
+
});
|
|
22744
|
+
|
|
22676
22745
|
T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
|
|
22677
22746
|
organization: T['io.flow.common.v0.models.organization_reference'],
|
|
22678
22747
|
id: PropTypes.string.isRequired,
|
|
@@ -25726,8 +25795,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25726
25795
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
25727
25796
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
25728
25797
|
T['io.flow.internal.v0.models.organization_status_change_deleted'],
|
|
25729
|
-
T['io.flow.internal.v0.models.
|
|
25730
|
-
T['io.flow.internal.v0.models.
|
|
25798
|
+
T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
|
|
25799
|
+
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
25731
25800
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
25732
25801
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
25733
25802
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -25777,6 +25846,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25777
25846
|
T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
|
|
25778
25847
|
T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
|
|
25779
25848
|
T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
|
|
25849
|
+
T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
|
|
25850
|
+
T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
|
|
25780
25851
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
25781
25852
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
25782
25853
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -25785,6 +25856,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
25785
25856
|
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
25786
25857
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
25787
25858
|
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
25859
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'],
|
|
25860
|
+
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
25788
25861
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
25789
25862
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
25790
25863
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -26241,8 +26314,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26241
26314
|
'organization_business_entity_upserted',
|
|
26242
26315
|
'organization_status_change_upserted',
|
|
26243
26316
|
'organization_status_change_deleted',
|
|
26244
|
-
'
|
|
26245
|
-
'
|
|
26317
|
+
'partner_organization_settings_upserted',
|
|
26318
|
+
'partner_organization_settings_deleted',
|
|
26246
26319
|
'internal_authorization_upserted',
|
|
26247
26320
|
'internal_authorization_deleted',
|
|
26248
26321
|
'afterpay_authorization_upserted',
|
|
@@ -26292,6 +26365,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26292
26365
|
'organization_restriction_snapshot_deleted',
|
|
26293
26366
|
'restriction_organization_status_upserted',
|
|
26294
26367
|
'restriction_organization_status_deleted',
|
|
26368
|
+
'organization_restriction_status_upserted',
|
|
26369
|
+
'organization_restriction_status_deleted',
|
|
26295
26370
|
'shopify_shop_upserted',
|
|
26296
26371
|
'shopify_shop_deleted',
|
|
26297
26372
|
'shopify_experience_short_id_upserted',
|
|
@@ -26300,6 +26375,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
26300
26375
|
'shopify_markets_order_deleted',
|
|
26301
26376
|
'shopify_markets_shop_upserted',
|
|
26302
26377
|
'shopify_markets_shop_deleted',
|
|
26378
|
+
'shopify_markets_webhook_registration_upserted',
|
|
26379
|
+
'shopify_markets_webhook_registration_deleted',
|
|
26303
26380
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
26304
26381
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
26305
26382
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -29101,18 +29178,19 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
29101
29178
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
29102
29179
|
export const csvActual = T['io.flow.internal.v0.models.csv_actual'];
|
|
29103
29180
|
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
29181
|
export const csvDimensions = T['io.flow.internal.v0.models.csv_dimensions'];
|
|
29107
29182
|
export const csvFlowRatecard = T['io.flow.internal.v0.models.csv_flow_ratecard'];
|
|
29108
29183
|
export const csvFlowRatecardSurcharges = T['io.flow.internal.v0.models.csv_flow_ratecard_surcharges'];
|
|
29109
29184
|
export const csvGlobalEProposition = T['io.flow.internal.v0.models.csv_global_e_proposition'];
|
|
29110
29185
|
export const csvGlobalEShippingMethod = T['io.flow.internal.v0.models.csv_global_e_shipping_method'];
|
|
29186
|
+
export const csvInput = T['io.flow.internal.v0.models.csv_input'];
|
|
29111
29187
|
export const csvLabel = T['io.flow.internal.v0.models.csv_label'];
|
|
29112
29188
|
export const csvLabelCost = T['io.flow.internal.v0.models.csv_label_cost'];
|
|
29113
29189
|
export const csvOrder = T['io.flow.internal.v0.models.csv_order'];
|
|
29114
29190
|
export const csvRecord = T['io.flow.internal.v0.models.csv_record'];
|
|
29115
29191
|
export const csvServiceFee = T['io.flow.internal.v0.models.csv_service_fee'];
|
|
29192
|
+
export const csvSurchargePercentage = T['io.flow.internal.v0.models.csv_surcharge_percentage'];
|
|
29193
|
+
export const csvSurcharges = T['io.flow.internal.v0.models.csv_surcharges'];
|
|
29116
29194
|
export const csvWeight = T['io.flow.internal.v0.models.csv_weight'];
|
|
29117
29195
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
29118
29196
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
@@ -29582,6 +29660,7 @@ export const labelGenerationSettings = T['io.flow.internal.v0.models.label_gener
|
|
|
29582
29660
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
29583
29661
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
29584
29662
|
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
29663
|
+
export const labelInputSource = T['io.flow.internal.v0.enums.label_input_source'];
|
|
29585
29664
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
29586
29665
|
export const labelTaxonomy = T['io.flow.internal.v0.models.label_taxonomy'];
|
|
29587
29666
|
export const labelTrackingSummaryDeleted = T['io.flow.internal.v0.models.label_tracking_summary_deleted'];
|
|
@@ -29801,10 +29880,7 @@ export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.
|
|
|
29801
29880
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
29802
29881
|
export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
|
|
29803
29882
|
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
29883
|
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
29884
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
29809
29885
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
29810
29886
|
export const organizationRestrictionRiskLevel = T['io.flow.internal.v0.enums.organization_restriction_risk_level'];
|
|
@@ -29814,7 +29890,9 @@ export const organizationRestrictionSnapshot = T['io.flow.internal.v0.models.org
|
|
|
29814
29890
|
export const organizationRestrictionSnapshotDeleted = T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'];
|
|
29815
29891
|
export const organizationRestrictionSnapshotUpserted = T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'];
|
|
29816
29892
|
export const organizationRestrictionStatus = T['io.flow.internal.v0.models.organization_restriction_status'];
|
|
29893
|
+
export const organizationRestrictionStatusDeleted = T['io.flow.internal.v0.models.organization_restriction_status_deleted'];
|
|
29817
29894
|
export const organizationRestrictionStatusNote = T['io.flow.internal.v0.models.organization_restriction_status_note'];
|
|
29895
|
+
export const organizationRestrictionStatusUpserted = T['io.flow.internal.v0.models.organization_restriction_status_upserted'];
|
|
29818
29896
|
export const organizationSettings = T['io.flow.internal.v0.models.organization_settings'];
|
|
29819
29897
|
export const organizationSettingsForm = T['io.flow.internal.v0.models.organization_settings_form'];
|
|
29820
29898
|
export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
|
|
@@ -29834,7 +29912,9 @@ export const partnerMembershipVersion = T['io.flow.internal.v0.models.partner_me
|
|
|
29834
29912
|
export const partnerOrganizationAuthorization = T['io.flow.internal.v0.models.partner_organization_authorization'];
|
|
29835
29913
|
export const partnerOrganizationAuthorizationForm = T['io.flow.internal.v0.models.partner_organization_authorization_form'];
|
|
29836
29914
|
export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner_organization_settings'];
|
|
29915
|
+
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
29837
29916
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
29917
|
+
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
29838
29918
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
29839
29919
|
export const passphraseForm = T['io.flow.internal.v0.models.passphrase_form'];
|
|
29840
29920
|
export const passphraseSummary = T['io.flow.internal.v0.models.passphrase_summary'];
|
|
@@ -30061,6 +30141,7 @@ export const sessionCountryStatus = T['io.flow.internal.v0.enums.session_country
|
|
|
30061
30141
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
30062
30142
|
export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
30063
30143
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
30144
|
+
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
30064
30145
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
30065
30146
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
30066
30147
|
export const shipperAccountInfoForm = T['io.flow.internal.v0.models.shipper_account_info_form'];
|
|
@@ -30100,6 +30181,8 @@ export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.sho
|
|
|
30100
30181
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
30101
30182
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
30102
30183
|
export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
|
|
30184
|
+
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
30185
|
+
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
30103
30186
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
30104
30187
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
30105
30188
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|