@flowio/api-internal-prop-types 9.24.129 → 9.24.131
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 +1060 -77
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1060 -77
- package/src/api-internal.js +1366 -301
package/src/api-internal.js
CHANGED
|
@@ -12,6 +12,18 @@ T['io.flow.organization.v0.models.region_setting'] = PropTypes.exact({
|
|
|
12
12
|
status: T['io.flow.common.v0.enums.availability_status'].isRequired,
|
|
13
13
|
});
|
|
14
14
|
|
|
15
|
+
T['io.flow.organization.v0.models.self_billing_agreement'] = PropTypes.exact({
|
|
16
|
+
effective_at: PropTypes.string.isRequired,
|
|
17
|
+
expires_at: PropTypes.string.isRequired,
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
T['io.flow.organization.v0.models.tax_registration_detail'] = PropTypes.exact({
|
|
21
|
+
tax_number: PropTypes.string.isRequired,
|
|
22
|
+
country: PropTypes.string.isRequired,
|
|
23
|
+
tax_code: PropTypes.string.isRequired,
|
|
24
|
+
province: PropTypes.string,
|
|
25
|
+
});
|
|
26
|
+
|
|
15
27
|
T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
|
|
16
28
|
|
|
17
29
|
T['io.flow.organization.v0.models.invitation_error'] = PropTypes.exact({
|
|
@@ -53,6 +65,19 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
53
65
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
54
66
|
});
|
|
55
67
|
|
|
68
|
+
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
69
|
+
|
|
70
|
+
T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
|
|
71
|
+
reason: PropTypes.string.isRequired,
|
|
72
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
T['io.flow.sellability.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
|
|
76
|
+
reason_code: PropTypes.string.isRequired,
|
|
77
|
+
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
78
|
+
require_msds: PropTypes.bool,
|
|
79
|
+
});
|
|
80
|
+
|
|
56
81
|
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
57
82
|
T['io.flow.fraud.v0.enums.fraud_email_rule_decision'] = PropTypes.oneOf(['approved', 'declined']);
|
|
58
83
|
|
|
@@ -106,7 +131,7 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
106
131
|
weight: PropTypes.number.isRequired,
|
|
107
132
|
});
|
|
108
133
|
|
|
109
|
-
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
134
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
110
135
|
|
|
111
136
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
112
137
|
base: PropTypes.number,
|
|
@@ -133,6 +158,8 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
133
158
|
transaction_id: PropTypes.string.isRequired,
|
|
134
159
|
});
|
|
135
160
|
|
|
161
|
+
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
162
|
+
|
|
136
163
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
137
164
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
138
165
|
id: PropTypes.string,
|
|
@@ -182,7 +209,7 @@ T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.
|
|
|
182
209
|
id: PropTypes.string.isRequired,
|
|
183
210
|
});
|
|
184
211
|
|
|
185
|
-
T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
|
|
212
|
+
T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv', 'pdf']);
|
|
186
213
|
|
|
187
214
|
T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
|
|
188
215
|
type: T['io.flow.billing.v0.enums.statement_attachment_type'].isRequired,
|
|
@@ -516,6 +543,11 @@ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
|
|
|
516
543
|
label: PropTypes.string.isRequired,
|
|
517
544
|
});
|
|
518
545
|
|
|
546
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_applications_summary'] = PropTypes.exact({
|
|
547
|
+
discriminator: PropTypes.oneOf(['common_merchant_applications_summary']).isRequired,
|
|
548
|
+
total: PropTypes.number.isRequired,
|
|
549
|
+
});
|
|
550
|
+
|
|
519
551
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'] = PropTypes.exact({
|
|
520
552
|
discriminator: PropTypes.oneOf(['shopify_merchant_applications_summary']).isRequired,
|
|
521
553
|
total: PropTypes.number.isRequired,
|
|
@@ -523,6 +555,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary']
|
|
|
523
555
|
|
|
524
556
|
T['io.flow.merchant.onboarding.v0.unions.merchant_applications_summary'] = PropTypes.oneOfType([
|
|
525
557
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'],
|
|
558
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_applications_summary'],
|
|
526
559
|
]);
|
|
527
560
|
|
|
528
561
|
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'] = PropTypes.exact({
|
|
@@ -545,12 +578,6 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'] = P
|
|
|
545
578
|
to: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_time'].isRequired,
|
|
546
579
|
});
|
|
547
580
|
|
|
548
|
-
T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
549
|
-
amount: PropTypes.number,
|
|
550
|
-
currency: PropTypes.string,
|
|
551
|
-
});
|
|
552
|
-
|
|
553
|
-
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
554
581
|
T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'] = PropTypes.oneOf(['shopify_console', 'existing_3pl_integration', 'byo_integration']);
|
|
555
582
|
|
|
556
583
|
T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
@@ -558,6 +585,13 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
558
585
|
description: PropTypes.string,
|
|
559
586
|
});
|
|
560
587
|
|
|
588
|
+
T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
589
|
+
amount: PropTypes.number,
|
|
590
|
+
currency: PropTypes.string,
|
|
591
|
+
});
|
|
592
|
+
|
|
593
|
+
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
594
|
+
|
|
561
595
|
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
562
596
|
decimal: PropTypes.string.isRequired,
|
|
563
597
|
group: PropTypes.string.isRequired,
|
|
@@ -663,6 +697,18 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
663
697
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
664
698
|
]);
|
|
665
699
|
|
|
700
|
+
T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
|
|
701
|
+
|
|
702
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
|
|
703
|
+
code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
|
|
704
|
+
message: PropTypes.string.isRequired,
|
|
705
|
+
});
|
|
706
|
+
|
|
707
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
|
|
708
|
+
order_id: PropTypes.number.isRequired,
|
|
709
|
+
shop_id: PropTypes.number.isRequired,
|
|
710
|
+
});
|
|
711
|
+
|
|
666
712
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
667
713
|
|
|
668
714
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -750,6 +796,11 @@ T['io.flow.token.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
750
796
|
id: PropTypes.string.isRequired,
|
|
751
797
|
});
|
|
752
798
|
|
|
799
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_unavailable'] = PropTypes.exact({
|
|
800
|
+
service: PropTypes.string.isRequired,
|
|
801
|
+
reason: PropTypes.string.isRequired,
|
|
802
|
+
});
|
|
803
|
+
|
|
753
804
|
T['io.flow.ratecard.v0.models.ratecard_rate_form'] = PropTypes.exact({
|
|
754
805
|
amount: PropTypes.number.isRequired,
|
|
755
806
|
weight: PropTypes.number.isRequired,
|
|
@@ -761,15 +812,7 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
761
812
|
weight: PropTypes.number.isRequired,
|
|
762
813
|
});
|
|
763
814
|
|
|
764
|
-
T['io.flow.
|
|
765
|
-
id: PropTypes.string.isRequired,
|
|
766
|
-
name: PropTypes.string.isRequired,
|
|
767
|
-
});
|
|
768
|
-
|
|
769
|
-
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
770
|
-
from: PropTypes.number.isRequired,
|
|
771
|
-
to: PropTypes.number.isRequired,
|
|
772
|
-
});
|
|
815
|
+
T['io.flow.label.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
|
|
773
816
|
|
|
774
817
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
775
818
|
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
@@ -1199,6 +1242,14 @@ T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exa
|
|
|
1199
1242
|
),
|
|
1200
1243
|
});
|
|
1201
1244
|
|
|
1245
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
1246
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
1247
|
+
event_id: PropTypes.string.isRequired,
|
|
1248
|
+
timestamp: PropTypes.string.isRequired,
|
|
1249
|
+
organization: PropTypes.string.isRequired,
|
|
1250
|
+
id: PropTypes.string.isRequired,
|
|
1251
|
+
});
|
|
1252
|
+
|
|
1202
1253
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
1203
1254
|
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
1204
1255
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1300,6 +1351,18 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
|
|
|
1300
1351
|
id: PropTypes.string.isRequired,
|
|
1301
1352
|
});
|
|
1302
1353
|
|
|
1354
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_test_order'] = PropTypes.exact({
|
|
1355
|
+
id: PropTypes.string.isRequired,
|
|
1356
|
+
});
|
|
1357
|
+
|
|
1358
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
|
|
1359
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_upserted']).isRequired,
|
|
1360
|
+
event_id: PropTypes.string.isRequired,
|
|
1361
|
+
timestamp: PropTypes.string.isRequired,
|
|
1362
|
+
organization: PropTypes.string.isRequired,
|
|
1363
|
+
shopify_test_order: T['io.flow.shopify.markets.internal.v0.models.shopify_test_order'].isRequired,
|
|
1364
|
+
});
|
|
1365
|
+
|
|
1303
1366
|
T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
1304
1367
|
id: PropTypes.string.isRequired,
|
|
1305
1368
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -3314,6 +3377,88 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3314
3377
|
notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
|
|
3315
3378
|
});
|
|
3316
3379
|
|
|
3380
|
+
T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
|
|
3381
|
+
|
|
3382
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
|
|
3383
|
+
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
3384
|
+
price: PropTypes.number.isRequired,
|
|
3385
|
+
});
|
|
3386
|
+
|
|
3387
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'] = PropTypes.exact({
|
|
3388
|
+
id: PropTypes.string.isRequired,
|
|
3389
|
+
key: PropTypes.string.isRequired,
|
|
3390
|
+
number: PropTypes.string.isRequired,
|
|
3391
|
+
});
|
|
3392
|
+
|
|
3393
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
3394
|
+
rate: PropTypes.number.isRequired,
|
|
3395
|
+
amount: PropTypes.number.isRequired,
|
|
3396
|
+
});
|
|
3397
|
+
|
|
3398
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip_form'] = PropTypes.exact({
|
|
3399
|
+
discriminator: PropTypes.oneOf(['tip']).isRequired,
|
|
3400
|
+
price: PropTypes.number.isRequired,
|
|
3401
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3402
|
+
});
|
|
3403
|
+
|
|
3404
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'] = PropTypes.exact({
|
|
3405
|
+
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
3406
|
+
price: PropTypes.number.isRequired,
|
|
3407
|
+
discount: PropTypes.number,
|
|
3408
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3409
|
+
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3410
|
+
});
|
|
3411
|
+
|
|
3412
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'] = PropTypes.exact({
|
|
3413
|
+
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
3414
|
+
item_number: PropTypes.string.isRequired,
|
|
3415
|
+
quantity: PropTypes.number.isRequired,
|
|
3416
|
+
unit_price: PropTypes.number.isRequired,
|
|
3417
|
+
unit_discount: PropTypes.number,
|
|
3418
|
+
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3419
|
+
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3420
|
+
});
|
|
3421
|
+
|
|
3422
|
+
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form'] = PropTypes.oneOfType([
|
|
3423
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'],
|
|
3424
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'],
|
|
3425
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'],
|
|
3426
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip_form'],
|
|
3427
|
+
]);
|
|
3428
|
+
|
|
3429
|
+
T['io.flow.consumer.invoice.v0.models.credit_memo_form'] = PropTypes.exact({
|
|
3430
|
+
refund_id: PropTypes.string,
|
|
3431
|
+
refund_key: PropTypes.string,
|
|
3432
|
+
refund_identifier: PropTypes.string,
|
|
3433
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form']).isRequired,
|
|
3434
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
3435
|
+
});
|
|
3436
|
+
|
|
3437
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
|
|
3438
|
+
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
3439
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
|
|
3440
|
+
|
|
3441
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
|
|
3442
|
+
id: PropTypes.string.isRequired,
|
|
3443
|
+
number: PropTypes.string.isRequired,
|
|
3444
|
+
submitted_at: PropTypes.string.isRequired,
|
|
3445
|
+
});
|
|
3446
|
+
|
|
3447
|
+
T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
|
|
3448
|
+
|
|
3449
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_document'] = PropTypes.exact({
|
|
3450
|
+
type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'].isRequired,
|
|
3451
|
+
language: PropTypes.string.isRequired,
|
|
3452
|
+
url: PropTypes.string.isRequired,
|
|
3453
|
+
});
|
|
3454
|
+
|
|
3455
|
+
T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact({
|
|
3456
|
+
id: PropTypes.string.isRequired,
|
|
3457
|
+
key: PropTypes.string.isRequired,
|
|
3458
|
+
number: PropTypes.string.isRequired,
|
|
3459
|
+
});
|
|
3460
|
+
|
|
3461
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'] = PropTypes.oneOf(['pending', 'available', 'invalid']);
|
|
3317
3462
|
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3318
3463
|
|
|
3319
3464
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -3355,6 +3500,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company
|
|
|
3355
3500
|
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
3356
3501
|
});
|
|
3357
3502
|
|
|
3503
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_organization_order_metrics'] = PropTypes.exact({
|
|
3504
|
+
organization_id: PropTypes.string.isRequired,
|
|
3505
|
+
shopify_order_count: PropTypes.number.isRequired,
|
|
3506
|
+
internal_order_count: PropTypes.number.isRequired,
|
|
3507
|
+
discrepancy_count: PropTypes.number,
|
|
3508
|
+
});
|
|
3509
|
+
|
|
3358
3510
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
3359
3511
|
total_order_count: PropTypes.number.isRequired,
|
|
3360
3512
|
});
|
|
@@ -3407,6 +3559,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3407
3559
|
'unsupported_virtual_goods',
|
|
3408
3560
|
'non_matching_currencies',
|
|
3409
3561
|
'unsupported_order_edit',
|
|
3562
|
+
'order_allocation_duties_mismatch',
|
|
3410
3563
|
'order_missing',
|
|
3411
3564
|
]);
|
|
3412
3565
|
|
|
@@ -3485,29 +3638,6 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3485
3638
|
'logistics_team',
|
|
3486
3639
|
]);
|
|
3487
3640
|
|
|
3488
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3489
|
-
id: PropTypes.string.isRequired,
|
|
3490
|
-
organization_id: PropTypes.string.isRequired,
|
|
3491
|
-
order_number: PropTypes.string.isRequired,
|
|
3492
|
-
channel_id: PropTypes.string.isRequired,
|
|
3493
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
3494
|
-
payment_request_id: PropTypes.string,
|
|
3495
|
-
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3496
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3497
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3498
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3499
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3500
|
-
order_created_at: PropTypes.string,
|
|
3501
|
-
order_updated_at: PropTypes.string,
|
|
3502
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3503
|
-
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
3504
|
-
});
|
|
3505
|
-
|
|
3506
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3507
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3508
|
-
external_order: PropTypes.object.isRequired,
|
|
3509
|
-
});
|
|
3510
|
-
|
|
3511
3641
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3512
3642
|
message: PropTypes.string.isRequired,
|
|
3513
3643
|
reason: PropTypes.string.isRequired,
|
|
@@ -6679,7 +6809,7 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6679
6809
|
primary: PropTypes.bool.isRequired,
|
|
6680
6810
|
});
|
|
6681
6811
|
|
|
6682
|
-
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
|
|
6812
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp', 'mor_tax']);
|
|
6683
6813
|
|
|
6684
6814
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6685
6815
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
@@ -7252,6 +7382,22 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7252
7382
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7253
7383
|
});
|
|
7254
7384
|
|
|
7385
|
+
T['io.flow.restrictions.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
7386
|
+
|
|
7387
|
+
T['io.flow.restrictions.v0.models.needs_action_attributes'] = PropTypes.exact({
|
|
7388
|
+
reason_code: PropTypes.string.isRequired,
|
|
7389
|
+
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7390
|
+
require_msds: PropTypes.bool,
|
|
7391
|
+
});
|
|
7392
|
+
|
|
7393
|
+
T['io.flow.restrictions.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
|
|
7394
|
+
|
|
7395
|
+
T['io.flow.restrictions.v0.models.reasons_per_region'] = PropTypes.exact({
|
|
7396
|
+
region: PropTypes.string.isRequired,
|
|
7397
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7398
|
+
review_status: T['io.flow.restrictions.v0.enums.restricted_review_status'].isRequired,
|
|
7399
|
+
});
|
|
7400
|
+
|
|
7255
7401
|
T['io.flow.ftp.v0.models.ftp_user'] = PropTypes.exact({
|
|
7256
7402
|
username: PropTypes.string.isRequired,
|
|
7257
7403
|
password: PropTypes.string,
|
|
@@ -8072,12 +8218,6 @@ T['io.flow.label.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
|
8072
8218
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8073
8219
|
});
|
|
8074
8220
|
|
|
8075
|
-
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
8076
|
-
id: PropTypes.string.isRequired,
|
|
8077
|
-
name: PropTypes.string.isRequired,
|
|
8078
|
-
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
8079
|
-
});
|
|
8080
|
-
|
|
8081
8221
|
T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
8082
8222
|
postals: PropTypes.arrayOf(PropTypes.string),
|
|
8083
8223
|
provinces: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -8170,6 +8310,7 @@ T['io.flow.merchant.onboarding.v0.models.merchant_info'] = PropTypes.exact({
|
|
|
8170
8310
|
region: T['io.flow.merchant.onboarding.v0.enums.region_type'],
|
|
8171
8311
|
region_value: PropTypes.string,
|
|
8172
8312
|
category_code: PropTypes.string,
|
|
8313
|
+
description: PropTypes.string,
|
|
8173
8314
|
});
|
|
8174
8315
|
|
|
8175
8316
|
T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
|
|
@@ -8179,8 +8320,14 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form']
|
|
|
8179
8320
|
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'],
|
|
8180
8321
|
});
|
|
8181
8322
|
|
|
8323
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_put_form'] = PropTypes.exact({
|
|
8324
|
+
discriminator: PropTypes.oneOf(['common_merchant_application_put_form']).isRequired,
|
|
8325
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'],
|
|
8326
|
+
});
|
|
8327
|
+
|
|
8182
8328
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
|
|
8183
8329
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
8330
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_put_form'],
|
|
8184
8331
|
]);
|
|
8185
8332
|
|
|
8186
8333
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
@@ -8447,6 +8594,62 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8447
8594
|
id: PropTypes.string.isRequired,
|
|
8448
8595
|
});
|
|
8449
8596
|
|
|
8597
|
+
T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
|
|
8598
|
+
discriminator: PropTypes.oneOf(['gabriel_item_deleted']).isRequired,
|
|
8599
|
+
event_id: PropTypes.string.isRequired,
|
|
8600
|
+
timestamp: PropTypes.string.isRequired,
|
|
8601
|
+
id: PropTypes.string.isRequired,
|
|
8602
|
+
});
|
|
8603
|
+
|
|
8604
|
+
T['io.flow.internal.v0.models.ansh_item_deleted'] = PropTypes.exact({
|
|
8605
|
+
discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
|
|
8606
|
+
event_id: PropTypes.string.isRequired,
|
|
8607
|
+
timestamp: PropTypes.string.isRequired,
|
|
8608
|
+
id: PropTypes.string.isRequired,
|
|
8609
|
+
});
|
|
8610
|
+
|
|
8611
|
+
T['io.flow.internal.v0.models.aldo_item_deleted'] = PropTypes.exact({
|
|
8612
|
+
discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
|
|
8613
|
+
event_id: PropTypes.string.isRequired,
|
|
8614
|
+
timestamp: PropTypes.string.isRequired,
|
|
8615
|
+
id: PropTypes.string.isRequired,
|
|
8616
|
+
});
|
|
8617
|
+
|
|
8618
|
+
T['io.flow.internal.v0.models.rohan_item_deleted'] = PropTypes.exact({
|
|
8619
|
+
discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
|
|
8620
|
+
event_id: PropTypes.string.isRequired,
|
|
8621
|
+
timestamp: PropTypes.string.isRequired,
|
|
8622
|
+
id: PropTypes.string.isRequired,
|
|
8623
|
+
});
|
|
8624
|
+
|
|
8625
|
+
T['io.flow.internal.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
8626
|
+
discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
|
|
8627
|
+
event_id: PropTypes.string.isRequired,
|
|
8628
|
+
timestamp: PropTypes.string.isRequired,
|
|
8629
|
+
id: PropTypes.string.isRequired,
|
|
8630
|
+
});
|
|
8631
|
+
|
|
8632
|
+
T['io.flow.internal.v0.models.hosein_item_deleted'] = PropTypes.exact({
|
|
8633
|
+
discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
|
|
8634
|
+
event_id: PropTypes.string.isRequired,
|
|
8635
|
+
timestamp: PropTypes.string.isRequired,
|
|
8636
|
+
id: PropTypes.string.isRequired,
|
|
8637
|
+
});
|
|
8638
|
+
|
|
8639
|
+
T['io.flow.internal.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
|
|
8640
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
|
|
8641
|
+
event_id: PropTypes.string.isRequired,
|
|
8642
|
+
timestamp: PropTypes.string.isRequired,
|
|
8643
|
+
id: PropTypes.string.isRequired,
|
|
8644
|
+
});
|
|
8645
|
+
|
|
8646
|
+
T['io.flow.internal.v0.models.anirban_item_deleted'] = PropTypes.exact({
|
|
8647
|
+
discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
|
|
8648
|
+
event_id: PropTypes.string.isRequired,
|
|
8649
|
+
timestamp: PropTypes.string.isRequired,
|
|
8650
|
+
id: PropTypes.string.isRequired,
|
|
8651
|
+
});
|
|
8652
|
+
|
|
8450
8653
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8451
8654
|
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8452
8655
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8538,6 +8741,14 @@ T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact
|
|
|
8538
8741
|
id: PropTypes.string.isRequired,
|
|
8539
8742
|
});
|
|
8540
8743
|
|
|
8744
|
+
T['io.flow.internal.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
8745
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
8746
|
+
event_id: PropTypes.string.isRequired,
|
|
8747
|
+
timestamp: PropTypes.string.isRequired,
|
|
8748
|
+
organization: PropTypes.string.isRequired,
|
|
8749
|
+
id: PropTypes.string.isRequired,
|
|
8750
|
+
});
|
|
8751
|
+
|
|
8541
8752
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
8542
8753
|
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
8543
8754
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9813,6 +10024,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9813
10024
|
'order_edit',
|
|
9814
10025
|
'mixed_fulfilment_non_lvg',
|
|
9815
10026
|
'lvg_refund',
|
|
10027
|
+
'us_inbound_tax_refund',
|
|
9816
10028
|
'order_cancellation_above_de_min',
|
|
9817
10029
|
'wyol_shipment_above_de_min',
|
|
9818
10030
|
'full_refund_without_shipment',
|
|
@@ -10202,6 +10414,18 @@ T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact(
|
|
|
10202
10414
|
total: PropTypes.number.isRequired,
|
|
10203
10415
|
});
|
|
10204
10416
|
|
|
10417
|
+
T['io.flow.internal.v0.models.shopify_test_order'] = PropTypes.exact({
|
|
10418
|
+
id: PropTypes.string.isRequired,
|
|
10419
|
+
});
|
|
10420
|
+
|
|
10421
|
+
T['io.flow.internal.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
|
|
10422
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_upserted']).isRequired,
|
|
10423
|
+
event_id: PropTypes.string.isRequired,
|
|
10424
|
+
timestamp: PropTypes.string.isRequired,
|
|
10425
|
+
organization: PropTypes.string.isRequired,
|
|
10426
|
+
shopify_test_order: T['io.flow.internal.v0.models.shopify_test_order'].isRequired,
|
|
10427
|
+
});
|
|
10428
|
+
|
|
10205
10429
|
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
10206
10430
|
id: PropTypes.string.isRequired,
|
|
10207
10431
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -10446,6 +10670,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] =
|
|
|
10446
10670
|
mor_fees: PropTypes.number,
|
|
10447
10671
|
mor_foreign_exchange_fees: PropTypes.number,
|
|
10448
10672
|
sp_processing_fees: PropTypes.number,
|
|
10673
|
+
mor_fees_tax: PropTypes.number,
|
|
10449
10674
|
});
|
|
10450
10675
|
|
|
10451
10676
|
T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'] = PropTypes.oneOfType([
|
|
@@ -10648,6 +10873,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = Prop
|
|
|
10648
10873
|
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
10649
10874
|
});
|
|
10650
10875
|
|
|
10876
|
+
T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics'] = PropTypes.exact({
|
|
10877
|
+
organization_id: PropTypes.string.isRequired,
|
|
10878
|
+
shopify_order_count: PropTypes.number.isRequired,
|
|
10879
|
+
internal_order_count: PropTypes.number.isRequired,
|
|
10880
|
+
discrepancy_count: PropTypes.number,
|
|
10881
|
+
});
|
|
10882
|
+
|
|
10651
10883
|
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
10652
10884
|
total_order_count: PropTypes.number.isRequired,
|
|
10653
10885
|
});
|
|
@@ -10840,6 +11072,22 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
10840
11072
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10841
11073
|
});
|
|
10842
11074
|
|
|
11075
|
+
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11076
|
+
id: PropTypes.string.isRequired,
|
|
11077
|
+
name: PropTypes.string.isRequired,
|
|
11078
|
+
});
|
|
11079
|
+
|
|
11080
|
+
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
11081
|
+
from: PropTypes.number.isRequired,
|
|
11082
|
+
to: PropTypes.number.isRequired,
|
|
11083
|
+
});
|
|
11084
|
+
|
|
11085
|
+
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
11086
|
+
id: PropTypes.string.isRequired,
|
|
11087
|
+
name: PropTypes.string.isRequired,
|
|
11088
|
+
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
11089
|
+
});
|
|
11090
|
+
|
|
10843
11091
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10844
11092
|
|
|
10845
11093
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -11022,6 +11270,7 @@ T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
|
11022
11270
|
T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
11023
11271
|
lvg: PropTypes.bool.isRequired,
|
|
11024
11272
|
manual: PropTypes.bool.isRequired,
|
|
11273
|
+
managed_pricing: PropTypes.bool,
|
|
11025
11274
|
});
|
|
11026
11275
|
|
|
11027
11276
|
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
@@ -11114,23 +11363,12 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
11114
11363
|
oldest_pv_product_date_transacting: PropTypes.string.isRequired,
|
|
11115
11364
|
oldest_pc_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11116
11365
|
oldest_pc_product_date_transacting: PropTypes.string.isRequired,
|
|
11117
|
-
num_orgs_setup_complete_prs: PropTypes.number.isRequired,
|
|
11118
|
-
num_products_setup_complete_prs: PropTypes.number.isRequired,
|
|
11119
|
-
num_orgs_transacting_prs: PropTypes.number.isRequired,
|
|
11120
|
-
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
11121
|
-
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11122
|
-
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
11123
11366
|
percent_products_reviewed_transacting: PropTypes.number,
|
|
11124
11367
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11125
11368
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11126
11369
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11127
11370
|
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11128
|
-
num_pr_inflow_net_new: PropTypes.number.isRequired,
|
|
11129
|
-
num_pr_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11130
|
-
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11131
|
-
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11132
11371
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11133
|
-
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11134
11372
|
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11135
11373
|
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11136
11374
|
num_products_with_fs_result: PropTypes.number,
|
|
@@ -11187,96 +11425,21 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
|
11187
11425
|
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
11188
11426
|
});
|
|
11189
11427
|
|
|
11190
|
-
T['io.flow.
|
|
11191
|
-
name: PropTypes.string.isRequired,
|
|
11192
|
-
full_name: PropTypes.string.isRequired,
|
|
11193
|
-
});
|
|
11428
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11194
11429
|
|
|
11195
|
-
T['io.flow.
|
|
11196
|
-
|
|
11197
|
-
|
|
11198
|
-
|
|
11199
|
-
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
11200
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11201
|
-
highest_value_item_number: PropTypes.string,
|
|
11202
|
-
updated_at: PropTypes.string.isRequired,
|
|
11203
|
-
deleted_at: PropTypes.string,
|
|
11430
|
+
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11431
|
+
pending_restriction_count: PropTypes.number.isRequired,
|
|
11432
|
+
pending_verification_count: PropTypes.number.isRequired,
|
|
11433
|
+
pending_classification_count: PropTypes.number.isRequired,
|
|
11204
11434
|
});
|
|
11205
11435
|
|
|
11206
|
-
T['io.flow.
|
|
11207
|
-
id: PropTypes.number.isRequired,
|
|
11208
|
-
handle: PropTypes.string.isRequired,
|
|
11209
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
11210
|
-
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
11211
|
-
title: PropTypes.string.isRequired,
|
|
11212
|
-
vendor: PropTypes.string,
|
|
11213
|
-
body_html: PropTypes.string,
|
|
11214
|
-
product_type: PropTypes.string,
|
|
11215
|
-
status: PropTypes.string,
|
|
11216
|
-
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
11217
|
-
tags: PropTypes.string,
|
|
11218
|
-
template_suffix: PropTypes.string,
|
|
11219
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
11220
|
-
published_at: PropTypes.string,
|
|
11221
|
-
created_at: PropTypes.string.isRequired,
|
|
11222
|
-
updated_at: PropTypes.string.isRequired,
|
|
11223
|
-
has_variants_that_requires_components: PropTypes.bool,
|
|
11224
|
-
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
11225
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
11226
|
-
});
|
|
11227
|
-
|
|
11228
|
-
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
11229
|
-
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
11230
|
-
});
|
|
11231
|
-
|
|
11232
|
-
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
11233
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11234
|
-
});
|
|
11235
|
-
|
|
11236
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11237
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11238
|
-
deleted_at: PropTypes.string,
|
|
11239
|
-
});
|
|
11240
|
-
|
|
11241
|
-
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11242
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11243
|
-
deleted_at: PropTypes.string,
|
|
11244
|
-
});
|
|
11436
|
+
T['io.flow.restrictions.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
|
|
11245
11437
|
|
|
11246
|
-
T['io.flow.internal.v0.models.
|
|
11247
|
-
id: PropTypes.string.isRequired,
|
|
11248
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11249
|
-
domain: PropTypes.string.isRequired,
|
|
11250
|
-
api_version: PropTypes.string.isRequired,
|
|
11251
|
-
});
|
|
11252
|
-
|
|
11253
|
-
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
11254
|
-
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
11255
|
-
event_id: PropTypes.string.isRequired,
|
|
11256
|
-
timestamp: PropTypes.string.isRequired,
|
|
11257
|
-
organization: PropTypes.string.isRequired,
|
|
11258
|
-
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
11259
|
-
});
|
|
11260
|
-
|
|
11261
|
-
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
11438
|
+
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
11262
11439
|
id: PropTypes.string.isRequired,
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
11267
|
-
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
11268
|
-
event_id: PropTypes.string.isRequired,
|
|
11269
|
-
timestamp: PropTypes.string.isRequired,
|
|
11270
|
-
organization: PropTypes.string.isRequired,
|
|
11271
|
-
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
11272
|
-
});
|
|
11273
|
-
|
|
11274
|
-
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11275
|
-
|
|
11276
|
-
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11277
|
-
pending_restriction_count: PropTypes.number.isRequired,
|
|
11278
|
-
pending_verification_count: PropTypes.number.isRequired,
|
|
11279
|
-
pending_classification_count: PropTypes.number.isRequired,
|
|
11440
|
+
name: PropTypes.string.isRequired,
|
|
11441
|
+
environment: T['io.flow.restrictions.v0.enums.restriction_environment'].isRequired,
|
|
11442
|
+
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
11280
11443
|
});
|
|
11281
11444
|
|
|
11282
11445
|
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
@@ -11410,6 +11573,11 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11410
11573
|
organization_id: PropTypes.string.isRequired,
|
|
11411
11574
|
});
|
|
11412
11575
|
|
|
11576
|
+
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11577
|
+
min: PropTypes.number,
|
|
11578
|
+
max: PropTypes.number,
|
|
11579
|
+
});
|
|
11580
|
+
|
|
11413
11581
|
T['io.flow.internal.v0.enums.source_type_filter'] = PropTypes.oneOf(['organization', 'channel']);
|
|
11414
11582
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11415
11583
|
|
|
@@ -11418,6 +11586,12 @@ T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
|
11418
11586
|
'global_e_united_kingdom',
|
|
11419
11587
|
'global_e_canada',
|
|
11420
11588
|
'global_e_netherlands',
|
|
11589
|
+
'uk_global_e_canada',
|
|
11590
|
+
'uk_global_e_netherlands',
|
|
11591
|
+
'uk_global_e_united_states',
|
|
11592
|
+
'ca_global_e_united_kingdom',
|
|
11593
|
+
'ca_global_e_netherlands',
|
|
11594
|
+
'ca_global_e_united_states',
|
|
11421
11595
|
]);
|
|
11422
11596
|
|
|
11423
11597
|
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
@@ -11457,6 +11631,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11457
11631
|
'trueup_overview',
|
|
11458
11632
|
'non_channel_payment_bank_account',
|
|
11459
11633
|
'scheduled_payment',
|
|
11634
|
+
'scheduled_payment_citi',
|
|
11460
11635
|
'account_quarterly_balances',
|
|
11461
11636
|
'invariants',
|
|
11462
11637
|
'payments',
|
|
@@ -11721,30 +11896,6 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11721
11896
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11722
11897
|
});
|
|
11723
11898
|
|
|
11724
|
-
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11725
|
-
|
|
11726
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11727
|
-
rule_id: PropTypes.string.isRequired,
|
|
11728
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11729
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11730
|
-
description: PropTypes.string,
|
|
11731
|
-
});
|
|
11732
|
-
|
|
11733
|
-
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11734
|
-
id: PropTypes.string.isRequired,
|
|
11735
|
-
rule_id: PropTypes.string.isRequired,
|
|
11736
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11737
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11738
|
-
description: PropTypes.string,
|
|
11739
|
-
});
|
|
11740
|
-
|
|
11741
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11742
|
-
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11743
|
-
event_id: PropTypes.string.isRequired,
|
|
11744
|
-
timestamp: PropTypes.string.isRequired,
|
|
11745
|
-
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11746
|
-
});
|
|
11747
|
-
|
|
11748
11899
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11749
11900
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11750
11901
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11836,6 +11987,207 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11836
11987
|
classification_model_id: PropTypes.string.isRequired,
|
|
11837
11988
|
});
|
|
11838
11989
|
|
|
11990
|
+
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11991
|
+
|
|
11992
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11993
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11994
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11995
|
+
});
|
|
11996
|
+
|
|
11997
|
+
T['io.flow.sellability.v0.models.sellability_restricted_reason'] = PropTypes.exact({
|
|
11998
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11999
|
+
reasons_with_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_reason_with_regions']).isRequired,
|
|
12000
|
+
});
|
|
12001
|
+
|
|
12002
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
12003
|
+
rule_id: PropTypes.string.isRequired,
|
|
12004
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
12005
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12006
|
+
description: PropTypes.string,
|
|
12007
|
+
});
|
|
12008
|
+
|
|
12009
|
+
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
12010
|
+
id: PropTypes.string.isRequired,
|
|
12011
|
+
rule_id: PropTypes.string.isRequired,
|
|
12012
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
12013
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12014
|
+
description: PropTypes.string,
|
|
12015
|
+
});
|
|
12016
|
+
|
|
12017
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
12018
|
+
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
12019
|
+
event_id: PropTypes.string.isRequired,
|
|
12020
|
+
timestamp: PropTypes.string.isRequired,
|
|
12021
|
+
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
12022
|
+
});
|
|
12023
|
+
|
|
12024
|
+
T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout']);
|
|
12025
|
+
|
|
12026
|
+
T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exact({
|
|
12027
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
12028
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12029
|
+
});
|
|
12030
|
+
|
|
12031
|
+
T['io.flow.sellability.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
12032
|
+
merchant_id: PropTypes.string,
|
|
12033
|
+
product_id: PropTypes.string.isRequired,
|
|
12034
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']).isRequired,
|
|
12035
|
+
restricted_reasons: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_reason']).isRequired,
|
|
12036
|
+
needs_action_attributes: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_needs_action_attributes']),
|
|
12037
|
+
request_id: PropTypes.string,
|
|
12038
|
+
hs6_code: PropTypes.string,
|
|
12039
|
+
});
|
|
12040
|
+
|
|
12041
|
+
T['io.flow.internal.v0.enums.hs6_code_source'] = PropTypes.oneOf(['sellability', 'classification', 'human']);
|
|
12042
|
+
T['io.flow.sellability.v0.enums.sellability_result_error_code'] = PropTypes.oneOf(['insufficient_details', 'generic_error']);
|
|
12043
|
+
T['io.flow.sellability.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
|
|
12044
|
+
|
|
12045
|
+
T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
12046
|
+
discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
|
|
12047
|
+
product_sellability_result: T['io.flow.sellability.v0.models.product_sellability_result'],
|
|
12048
|
+
request_id: PropTypes.string.isRequired,
|
|
12049
|
+
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12050
|
+
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
12051
|
+
error_message: PropTypes.string,
|
|
12052
|
+
});
|
|
12053
|
+
|
|
12054
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12055
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12056
|
+
|
|
12057
|
+
T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.exact({
|
|
12058
|
+
id: PropTypes.string.isRequired,
|
|
12059
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12060
|
+
product_id: PropTypes.string.isRequired,
|
|
12061
|
+
channel: PropTypes.string.isRequired,
|
|
12062
|
+
hs6_code: PropTypes.string,
|
|
12063
|
+
probability: PropTypes.number,
|
|
12064
|
+
classification_decision: T['io.flow.internal.v0.enums.preonboarding_classification_decision'].isRequired,
|
|
12065
|
+
classification_type: T['io.flow.internal.v0.enums.preonboarding_classification_type'].isRequired,
|
|
12066
|
+
});
|
|
12067
|
+
|
|
12068
|
+
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12069
|
+
name: PropTypes.string.isRequired,
|
|
12070
|
+
full_name: PropTypes.string.isRequired,
|
|
12071
|
+
});
|
|
12072
|
+
|
|
12073
|
+
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
12074
|
+
organization_id: PropTypes.string.isRequired,
|
|
12075
|
+
number: PropTypes.string.isRequired,
|
|
12076
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12077
|
+
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
12078
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12079
|
+
highest_value_item_number: PropTypes.string,
|
|
12080
|
+
updated_at: PropTypes.string.isRequired,
|
|
12081
|
+
deleted_at: PropTypes.string,
|
|
12082
|
+
});
|
|
12083
|
+
|
|
12084
|
+
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
12085
|
+
id: PropTypes.number.isRequired,
|
|
12086
|
+
handle: PropTypes.string.isRequired,
|
|
12087
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
12088
|
+
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
12089
|
+
title: PropTypes.string.isRequired,
|
|
12090
|
+
vendor: PropTypes.string,
|
|
12091
|
+
body_html: PropTypes.string,
|
|
12092
|
+
product_type: PropTypes.string,
|
|
12093
|
+
status: PropTypes.string,
|
|
12094
|
+
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
12095
|
+
tags: PropTypes.string,
|
|
12096
|
+
template_suffix: PropTypes.string,
|
|
12097
|
+
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
12098
|
+
published_at: PropTypes.string,
|
|
12099
|
+
created_at: PropTypes.string.isRequired,
|
|
12100
|
+
updated_at: PropTypes.string.isRequired,
|
|
12101
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
12102
|
+
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12103
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
12104
|
+
});
|
|
12105
|
+
|
|
12106
|
+
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
12107
|
+
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
12108
|
+
});
|
|
12109
|
+
|
|
12110
|
+
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
12111
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12112
|
+
});
|
|
12113
|
+
|
|
12114
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12115
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12116
|
+
deleted_at: PropTypes.string,
|
|
12117
|
+
});
|
|
12118
|
+
|
|
12119
|
+
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12120
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12121
|
+
deleted_at: PropTypes.string,
|
|
12122
|
+
});
|
|
12123
|
+
|
|
12124
|
+
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
12125
|
+
id: PropTypes.string.isRequired,
|
|
12126
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12127
|
+
domain: PropTypes.string.isRequired,
|
|
12128
|
+
api_version: PropTypes.string.isRequired,
|
|
12129
|
+
});
|
|
12130
|
+
|
|
12131
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
12132
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
12133
|
+
event_id: PropTypes.string.isRequired,
|
|
12134
|
+
timestamp: PropTypes.string.isRequired,
|
|
12135
|
+
organization: PropTypes.string.isRequired,
|
|
12136
|
+
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
12137
|
+
});
|
|
12138
|
+
|
|
12139
|
+
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
12140
|
+
id: PropTypes.string.isRequired,
|
|
12141
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12142
|
+
});
|
|
12143
|
+
|
|
12144
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
12145
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
12146
|
+
event_id: PropTypes.string.isRequired,
|
|
12147
|
+
timestamp: PropTypes.string.isRequired,
|
|
12148
|
+
organization: PropTypes.string.isRequired,
|
|
12149
|
+
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
12150
|
+
});
|
|
12151
|
+
|
|
12152
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12153
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12154
|
+
product_id: PropTypes.string.isRequired,
|
|
12155
|
+
channel: PropTypes.string.isRequired,
|
|
12156
|
+
request_id: PropTypes.string.isRequired,
|
|
12157
|
+
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12158
|
+
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
12159
|
+
hs6_code: PropTypes.string,
|
|
12160
|
+
hs6_code_source: T['io.flow.internal.v0.enums.hs6_code_source'],
|
|
12161
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
|
|
12162
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
12163
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12164
|
+
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12165
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12166
|
+
fingerprint: PropTypes.string.isRequired,
|
|
12167
|
+
});
|
|
12168
|
+
|
|
12169
|
+
T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
|
|
12170
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
|
|
12171
|
+
|
|
12172
|
+
T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'] = PropTypes.exact({
|
|
12173
|
+
MerchantId: PropTypes.string.isRequired,
|
|
12174
|
+
ProductName: PropTypes.string.isRequired,
|
|
12175
|
+
ProductDescription: PropTypes.string.isRequired,
|
|
12176
|
+
ProductIdInternal: PropTypes.string.isRequired,
|
|
12177
|
+
ProductIdExternal: PropTypes.string.isRequired,
|
|
12178
|
+
ProductGroupCode: PropTypes.string,
|
|
12179
|
+
ProductUrl: PropTypes.string,
|
|
12180
|
+
ProductImage: PropTypes.string,
|
|
12181
|
+
ProductAttributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
12182
|
+
Categories: PropTypes.arrayOf(PropTypes.string),
|
|
12183
|
+
PlatformId: T['io.flow.internal.v0.enums.preonboarding_classification_platform'].isRequired,
|
|
12184
|
+
});
|
|
12185
|
+
|
|
12186
|
+
T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'] = PropTypes.exact({
|
|
12187
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12188
|
+
message: T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'].isRequired,
|
|
12189
|
+
});
|
|
12190
|
+
|
|
11839
12191
|
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11840
12192
|
|
|
11841
12193
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
@@ -12398,10 +12750,6 @@ T['io.flow.internal.v0.models.organization_business_entity_deleted'] = PropTypes
|
|
|
12398
12750
|
id: PropTypes.string.isRequired,
|
|
12399
12751
|
});
|
|
12400
12752
|
|
|
12401
|
-
T['io.flow.internal.v0.models.feature_id_reference'] = PropTypes.exact({
|
|
12402
|
-
id: PropTypes.string.isRequired,
|
|
12403
|
-
});
|
|
12404
|
-
|
|
12405
12753
|
T['io.flow.billing.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
12406
12754
|
id: PropTypes.string.isRequired,
|
|
12407
12755
|
key: PropTypes.string.isRequired,
|
|
@@ -12620,7 +12968,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12620
12968
|
'fraud',
|
|
12621
12969
|
'logistics',
|
|
12622
12970
|
'payments',
|
|
12623
|
-
'shopify_markets',
|
|
12624
12971
|
'integration_partner',
|
|
12625
12972
|
'dtce',
|
|
12626
12973
|
'restrictions',
|
|
@@ -12780,6 +13127,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
12780
13127
|
health_score: PropTypes.number,
|
|
12781
13128
|
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
|
|
12782
13129
|
blocked_since: PropTypes.string,
|
|
13130
|
+
onboarding_segment: PropTypes.string,
|
|
12783
13131
|
});
|
|
12784
13132
|
|
|
12785
13133
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
@@ -13222,6 +13570,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
13222
13570
|
tags: PropTypes.string,
|
|
13223
13571
|
tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
|
|
13224
13572
|
taxes_included: PropTypes.bool.isRequired,
|
|
13573
|
+
test: PropTypes.bool,
|
|
13225
13574
|
token: PropTypes.string,
|
|
13226
13575
|
total_weight: PropTypes.number,
|
|
13227
13576
|
updated_at: PropTypes.string,
|
|
@@ -13234,6 +13583,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
13234
13583
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
|
|
13235
13584
|
merchant_of_record_app_id: PropTypes.number,
|
|
13236
13585
|
total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
13586
|
+
current_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
13237
13587
|
total_tip_received: PropTypes.string,
|
|
13238
13588
|
});
|
|
13239
13589
|
|
|
@@ -13440,6 +13790,25 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
|
|
|
13440
13790
|
code: PropTypes.string.isRequired,
|
|
13441
13791
|
});
|
|
13442
13792
|
|
|
13793
|
+
T['io.flow.internal.v0.enums.ledger_report_url_type'] = PropTypes.oneOf(['sharepoint', 's3']);
|
|
13794
|
+
|
|
13795
|
+
T['io.flow.internal.v0.models.ledger_report_url'] = PropTypes.exact({
|
|
13796
|
+
url: PropTypes.string.isRequired,
|
|
13797
|
+
type: T['io.flow.internal.v0.enums.ledger_report_url_type'].isRequired,
|
|
13798
|
+
});
|
|
13799
|
+
|
|
13800
|
+
T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf(['periodic_mor_jurisdiction_report']);
|
|
13801
|
+
|
|
13802
|
+
T['io.flow.internal.v0.models.ledger_report'] = PropTypes.exact({
|
|
13803
|
+
id: PropTypes.string.isRequired,
|
|
13804
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
13805
|
+
jurisdiction: PropTypes.string.isRequired,
|
|
13806
|
+
start_date: PropTypes.string.isRequired,
|
|
13807
|
+
end_date: PropTypes.string.isRequired,
|
|
13808
|
+
report_type: T['io.flow.internal.v0.enums.ledger_report_type'].isRequired,
|
|
13809
|
+
urls: PropTypes.arrayOf(T['io.flow.internal.v0.models.ledger_report_url']).isRequired,
|
|
13810
|
+
});
|
|
13811
|
+
|
|
13443
13812
|
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
13444
13813
|
amount: PropTypes.number.isRequired,
|
|
13445
13814
|
description: PropTypes.string,
|
|
@@ -13536,8 +13905,6 @@ T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
|
13536
13905
|
eori_number: PropTypes.string,
|
|
13537
13906
|
});
|
|
13538
13907
|
|
|
13539
|
-
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13540
|
-
|
|
13541
13908
|
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13542
13909
|
'consumer',
|
|
13543
13910
|
'to_non_registered_business',
|
|
@@ -13629,49 +13996,26 @@ T['io.flow.internal.v0.models.last_failure_summary'] = PropTypes.exact({
|
|
|
13629
13996
|
});
|
|
13630
13997
|
|
|
13631
13998
|
T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
|
|
13632
|
-
id: PropTypes.string.isRequired,
|
|
13633
|
-
organization_id: PropTypes.string.isRequired,
|
|
13634
|
-
order_number: PropTypes.string.isRequired,
|
|
13635
|
-
service_id: PropTypes.string.isRequired,
|
|
13636
|
-
status: T['io.flow.internal.v0.enums.order_validation_status'].isRequired,
|
|
13637
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
13638
|
-
created_at: PropTypes.string.isRequired,
|
|
13639
|
-
resolved_at: PropTypes.string,
|
|
13640
|
-
last_failure: T['io.flow.internal.v0.models.last_failure_summary'],
|
|
13641
|
-
sla_breach_at: PropTypes.string,
|
|
13642
|
-
capabilities_at_creation: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']),
|
|
13643
|
-
first_globale_address_repair_failure_at: PropTypes.string,
|
|
13644
|
-
});
|
|
13645
|
-
|
|
13646
|
-
T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
13647
|
-
discriminator: PropTypes.oneOf(['order_validation_upserted']).isRequired,
|
|
13648
|
-
event_id: PropTypes.string.isRequired,
|
|
13649
|
-
timestamp: PropTypes.string.isRequired,
|
|
13650
|
-
organization: PropTypes.string.isRequired,
|
|
13651
|
-
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13652
|
-
});
|
|
13653
|
-
|
|
13654
|
-
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13655
|
-
id: PropTypes.string.isRequired,
|
|
13656
|
-
order_number: PropTypes.string.isRequired,
|
|
13657
|
-
created_at: PropTypes.string.isRequired,
|
|
13658
|
-
reference_id: PropTypes.string.isRequired,
|
|
13659
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13660
|
-
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
13661
|
-
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13662
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
13663
|
-
carrier_id: PropTypes.string,
|
|
13664
|
-
service_id: PropTypes.string,
|
|
13665
|
-
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13666
|
-
direction: T['io.flow.label.v0.enums.direction'],
|
|
13999
|
+
id: PropTypes.string.isRequired,
|
|
14000
|
+
organization_id: PropTypes.string.isRequired,
|
|
14001
|
+
order_number: PropTypes.string.isRequired,
|
|
14002
|
+
service_id: PropTypes.string.isRequired,
|
|
14003
|
+
status: T['io.flow.internal.v0.enums.order_validation_status'].isRequired,
|
|
14004
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
14005
|
+
created_at: PropTypes.string.isRequired,
|
|
14006
|
+
resolved_at: PropTypes.string,
|
|
14007
|
+
last_failure: T['io.flow.internal.v0.models.last_failure_summary'],
|
|
14008
|
+
sla_breach_at: PropTypes.string,
|
|
14009
|
+
capabilities_at_creation: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']),
|
|
14010
|
+
first_globale_address_repair_failure_at: PropTypes.string,
|
|
13667
14011
|
});
|
|
13668
14012
|
|
|
13669
|
-
T['io.flow.internal.v0.models.
|
|
13670
|
-
discriminator: PropTypes.oneOf(['
|
|
14013
|
+
T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
14014
|
+
discriminator: PropTypes.oneOf(['order_validation_upserted']).isRequired,
|
|
13671
14015
|
event_id: PropTypes.string.isRequired,
|
|
13672
14016
|
timestamp: PropTypes.string.isRequired,
|
|
13673
14017
|
organization: PropTypes.string.isRequired,
|
|
13674
|
-
|
|
14018
|
+
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13675
14019
|
});
|
|
13676
14020
|
|
|
13677
14021
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
@@ -13907,6 +14251,7 @@ T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
|
13907
14251
|
narrow: PropTypes.string,
|
|
13908
14252
|
});
|
|
13909
14253
|
|
|
14254
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13910
14255
|
T['io.flow.internal.v0.enums.commercial_invoice_version'] = PropTypes.oneOf(['v2_2_1']);
|
|
13911
14256
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13912
14257
|
|
|
@@ -13931,7 +14276,7 @@ T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
|
13931
14276
|
tariff_code: PropTypes.string.isRequired,
|
|
13932
14277
|
country_of_origin: PropTypes.string.isRequired,
|
|
13933
14278
|
display_country_of_origin: PropTypes.string.isRequired,
|
|
13934
|
-
|
|
14279
|
+
remitter: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
13935
14280
|
gst_paid_text: PropTypes.string.isRequired,
|
|
13936
14281
|
unit_price: PropTypes.number.isRequired,
|
|
13937
14282
|
vat_price: PropTypes.number.isRequired,
|
|
@@ -14313,6 +14658,7 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14313
14658
|
]);
|
|
14314
14659
|
|
|
14315
14660
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14661
|
+
T['io.flow.experience.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
|
|
14316
14662
|
|
|
14317
14663
|
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
14318
14664
|
from: PropTypes.string.isRequired,
|
|
@@ -14469,6 +14815,8 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
|
14469
14815
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14470
14816
|
});
|
|
14471
14817
|
|
|
14818
|
+
T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14819
|
+
|
|
14472
14820
|
T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.exact({
|
|
14473
14821
|
value: PropTypes.number.isRequired,
|
|
14474
14822
|
});
|
|
@@ -14662,23 +15010,6 @@ T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
|
14662
15010
|
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14663
15011
|
]);
|
|
14664
15012
|
|
|
14665
|
-
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
14666
|
-
id: PropTypes.string.isRequired,
|
|
14667
|
-
order_number: PropTypes.string.isRequired,
|
|
14668
|
-
organization_id: PropTypes.string.isRequired,
|
|
14669
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
14670
|
-
sequence_number: PropTypes.number.isRequired,
|
|
14671
|
-
completes_order: PropTypes.bool.isRequired,
|
|
14672
|
-
});
|
|
14673
|
-
|
|
14674
|
-
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
14675
|
-
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
14676
|
-
event_id: PropTypes.string.isRequired,
|
|
14677
|
-
timestamp: PropTypes.string.isRequired,
|
|
14678
|
-
organization: PropTypes.string.isRequired,
|
|
14679
|
-
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
14680
|
-
});
|
|
14681
|
-
|
|
14682
15013
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
14683
15014
|
transaction: PropTypes.number.isRequired,
|
|
14684
15015
|
merchant: PropTypes.number.isRequired,
|
|
@@ -14690,6 +15021,7 @@ T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
|
14690
15021
|
|
|
14691
15022
|
T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
14692
15023
|
product: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15024
|
+
product_purchase_price: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14693
15025
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14694
15026
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14695
15027
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -14877,6 +15209,24 @@ T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
|
14877
15209
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
14878
15210
|
]);
|
|
14879
15211
|
|
|
15212
|
+
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
15213
|
+
id: PropTypes.string.isRequired,
|
|
15214
|
+
order_number: PropTypes.string.isRequired,
|
|
15215
|
+
organization_id: PropTypes.string.isRequired,
|
|
15216
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
15217
|
+
sequence_number: PropTypes.number.isRequired,
|
|
15218
|
+
completes_order: PropTypes.bool.isRequired,
|
|
15219
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'],
|
|
15220
|
+
});
|
|
15221
|
+
|
|
15222
|
+
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
15223
|
+
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
15224
|
+
event_id: PropTypes.string.isRequired,
|
|
15225
|
+
timestamp: PropTypes.string.isRequired,
|
|
15226
|
+
organization: PropTypes.string.isRequired,
|
|
15227
|
+
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
15228
|
+
});
|
|
15229
|
+
|
|
14880
15230
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
14881
15231
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
14882
15232
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -15046,24 +15396,6 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15046
15396
|
name: PropTypes.string.isRequired,
|
|
15047
15397
|
});
|
|
15048
15398
|
|
|
15049
|
-
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
15050
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
15051
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
15052
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
15053
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
15054
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
15055
|
-
]);
|
|
15056
|
-
|
|
15057
|
-
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
15058
|
-
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
15059
|
-
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
15060
|
-
});
|
|
15061
|
-
|
|
15062
|
-
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
15063
|
-
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
15064
|
-
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
15065
|
-
]);
|
|
15066
|
-
|
|
15067
15399
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15068
15400
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15069
15401
|
query: PropTypes.string.isRequired,
|
|
@@ -15348,7 +15680,7 @@ T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
|
15348
15680
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15349
15681
|
});
|
|
15350
15682
|
|
|
15351
|
-
T['io.flow.sellability.v0.models.
|
|
15683
|
+
T['io.flow.sellability.v0.models.sellability_region_result'] = PropTypes.exact({
|
|
15352
15684
|
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
15353
15685
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15354
15686
|
});
|
|
@@ -15359,27 +15691,44 @@ T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
|
15359
15691
|
product_id: PropTypes.string,
|
|
15360
15692
|
request_id: PropTypes.string.isRequired,
|
|
15361
15693
|
hs6_code: PropTypes.string.isRequired,
|
|
15362
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15694
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15363
15695
|
});
|
|
15364
15696
|
|
|
15365
15697
|
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
15366
15698
|
T['io.flow.sellability.v0.models.product_sellability'],
|
|
15367
15699
|
T['io.flow.sellability.v0.models.sellability_error'],
|
|
15700
|
+
T['io.flow.sellability.v0.models.sellability_screening'],
|
|
15368
15701
|
]);
|
|
15369
15702
|
|
|
15703
|
+
T['io.flow.restrictions.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
15704
|
+
id: PropTypes.string.isRequired,
|
|
15705
|
+
product_id: PropTypes.string.isRequired,
|
|
15706
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15707
|
+
prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15708
|
+
sellability_restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15709
|
+
reasons_per_region: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.reasons_per_region']),
|
|
15710
|
+
review_status: T['io.flow.restrictions.v0.enums.review_status'],
|
|
15711
|
+
rules: PropTypes.arrayOf(PropTypes.string),
|
|
15712
|
+
updated_by: PropTypes.string,
|
|
15713
|
+
product_restriction_id: PropTypes.string,
|
|
15714
|
+
hs_code: PropTypes.string,
|
|
15715
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15716
|
+
needs_action_attributes: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.needs_action_attributes']),
|
|
15717
|
+
});
|
|
15718
|
+
|
|
15370
15719
|
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
15371
15720
|
shop_id: PropTypes.string.isRequired,
|
|
15372
15721
|
product_number: PropTypes.string.isRequired,
|
|
15373
15722
|
request_id: PropTypes.string.isRequired,
|
|
15374
15723
|
hs6_code: PropTypes.string.isRequired,
|
|
15375
15724
|
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15376
|
-
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15725
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15377
15726
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15378
15727
|
taxonomy_category: PropTypes.string,
|
|
15379
15728
|
});
|
|
15380
15729
|
|
|
15381
15730
|
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15382
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15731
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15383
15732
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15384
15733
|
});
|
|
15385
15734
|
|
|
@@ -15388,7 +15737,7 @@ T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
|
15388
15737
|
product_id: PropTypes.string,
|
|
15389
15738
|
request_id: PropTypes.string.isRequired,
|
|
15390
15739
|
hs6_code: PropTypes.string.isRequired,
|
|
15391
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15740
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15392
15741
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15393
15742
|
});
|
|
15394
15743
|
|
|
@@ -15868,6 +16217,7 @@ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
|
15868
16217
|
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
15869
16218
|
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
15870
16219
|
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16220
|
+
client_secret: PropTypes.string,
|
|
15871
16221
|
});
|
|
15872
16222
|
|
|
15873
16223
|
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
@@ -16351,6 +16701,7 @@ T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['g
|
|
|
16351
16701
|
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
16352
16702
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16353
16703
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16704
|
+
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
16354
16705
|
});
|
|
16355
16706
|
|
|
16356
16707
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -16825,6 +17176,8 @@ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
|
16825
17176
|
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
16826
17177
|
number: PropTypes.string.isRequired,
|
|
16827
17178
|
country: PropTypes.string.isRequired,
|
|
17179
|
+
province_number: PropTypes.string,
|
|
17180
|
+
province: PropTypes.string,
|
|
16828
17181
|
});
|
|
16829
17182
|
|
|
16830
17183
|
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
@@ -16897,7 +17250,7 @@ T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact(
|
|
|
16897
17250
|
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16898
17251
|
});
|
|
16899
17252
|
|
|
16900
|
-
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
17253
|
+
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'FlowOnboarding', 'Borderfree']);
|
|
16901
17254
|
|
|
16902
17255
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
16903
17256
|
productId: PropTypes.string.isRequired,
|
|
@@ -17398,9 +17751,9 @@ T['io.flow.internal.v0.models.sellability_check_result'] = PropTypes.exact({
|
|
|
17398
17751
|
status: T['io.flow.internal.v0.enums.sellability_check_status'].isRequired,
|
|
17399
17752
|
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17400
17753
|
current_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17401
|
-
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
17754
|
+
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
17402
17755
|
merchant_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17403
|
-
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
17756
|
+
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
17404
17757
|
current_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17405
17758
|
merchant_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17406
17759
|
});
|
|
@@ -17640,9 +17993,47 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17640
17993
|
'unsupported_virtual_goods',
|
|
17641
17994
|
'non_matching_currencies',
|
|
17642
17995
|
'unsupported_order_edit',
|
|
17996
|
+
'order_allocation_duties_mismatch',
|
|
17643
17997
|
'order_missing',
|
|
17644
17998
|
]);
|
|
17645
17999
|
|
|
18000
|
+
T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
|
|
18001
|
+
id: PropTypes.string.isRequired,
|
|
18002
|
+
edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18003
|
+
});
|
|
18004
|
+
|
|
18005
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
|
|
18006
|
+
id: PropTypes.string.isRequired,
|
|
18007
|
+
shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
|
|
18008
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18009
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
|
|
18010
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18011
|
+
});
|
|
18012
|
+
|
|
18013
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
18014
|
+
id: PropTypes.string.isRequired,
|
|
18015
|
+
organization_id: PropTypes.string.isRequired,
|
|
18016
|
+
order_number: PropTypes.string.isRequired,
|
|
18017
|
+
channel_id: PropTypes.string.isRequired,
|
|
18018
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
18019
|
+
payment_request_id: PropTypes.string,
|
|
18020
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18021
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18022
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18023
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
18024
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
18025
|
+
order_created_at: PropTypes.string,
|
|
18026
|
+
order_updated_at: PropTypes.string,
|
|
18027
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
18028
|
+
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
18029
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18030
|
+
});
|
|
18031
|
+
|
|
18032
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
18033
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18034
|
+
external_order: PropTypes.object.isRequired,
|
|
18035
|
+
});
|
|
18036
|
+
|
|
17646
18037
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17647
18038
|
|
|
17648
18039
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -17857,13 +18248,6 @@ T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
|
17857
18248
|
snooze_id: PropTypes.string,
|
|
17858
18249
|
});
|
|
17859
18250
|
|
|
17860
|
-
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
17861
|
-
id: PropTypes.string.isRequired,
|
|
17862
|
-
name: PropTypes.string.isRequired,
|
|
17863
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
17864
|
-
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
17865
|
-
});
|
|
17866
|
-
|
|
17867
18251
|
T['io.flow.internal.v0.models.partner_form'] = PropTypes.exact({
|
|
17868
18252
|
id: PropTypes.string,
|
|
17869
18253
|
name: PropTypes.string,
|
|
@@ -18297,6 +18681,48 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
18297
18681
|
longitude: PropTypes.string,
|
|
18298
18682
|
});
|
|
18299
18683
|
|
|
18684
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
18685
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
18686
|
+
name: PropTypes.string,
|
|
18687
|
+
address: T['io.flow.common.v0.models.address'],
|
|
18688
|
+
phone: PropTypes.string,
|
|
18689
|
+
email: PropTypes.string,
|
|
18690
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
18691
|
+
bank_routing_number: PropTypes.string,
|
|
18692
|
+
bank_name: PropTypes.string,
|
|
18693
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
18694
|
+
});
|
|
18695
|
+
|
|
18696
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
18697
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
18698
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
18699
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
18700
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
18701
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
18702
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
18703
|
+
]);
|
|
18704
|
+
|
|
18705
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
18706
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
18707
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
18708
|
+
});
|
|
18709
|
+
|
|
18710
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
18711
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
18712
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
18713
|
+
]);
|
|
18714
|
+
|
|
18715
|
+
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
|
|
18716
|
+
name: PropTypes.string,
|
|
18717
|
+
address: T['io.flow.common.v0.models.address'],
|
|
18718
|
+
phone: PropTypes.string,
|
|
18719
|
+
email: PropTypes.string,
|
|
18720
|
+
bank_account_number: PropTypes.string,
|
|
18721
|
+
bank_routing_number: PropTypes.string,
|
|
18722
|
+
bank_name: PropTypes.string,
|
|
18723
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
18724
|
+
});
|
|
18725
|
+
|
|
18300
18726
|
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
18301
18727
|
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
18302
18728
|
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
@@ -18326,6 +18752,13 @@ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropType
|
|
|
18326
18752
|
|
|
18327
18753
|
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
18328
18754
|
|
|
18755
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
|
|
18756
|
+
id: PropTypes.string.isRequired,
|
|
18757
|
+
key: PropTypes.string.isRequired,
|
|
18758
|
+
name: PropTypes.string.isRequired,
|
|
18759
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18760
|
+
});
|
|
18761
|
+
|
|
18329
18762
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
18330
18763
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18331
18764
|
order_note: PropTypes.string,
|
|
@@ -19158,6 +19591,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19158
19591
|
order_updated_at: PropTypes.string,
|
|
19159
19592
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19160
19593
|
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
19594
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
19161
19595
|
});
|
|
19162
19596
|
|
|
19163
19597
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19442,6 +19876,10 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_orders_metrics'] =
|
|
|
19442
19876
|
shopify: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19443
19877
|
internal: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19444
19878
|
discrepancy_data: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
19879
|
+
|
|
19880
|
+
organization_metrics: PropTypes.arrayOf(
|
|
19881
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_organization_order_metrics'],
|
|
19882
|
+
),
|
|
19445
19883
|
});
|
|
19446
19884
|
|
|
19447
19885
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19488,6 +19926,7 @@ T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact
|
|
|
19488
19926
|
shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19489
19927
|
internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19490
19928
|
discrepancy_data: T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
19929
|
+
organization_metrics: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics']),
|
|
19491
19930
|
});
|
|
19492
19931
|
|
|
19493
19932
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19615,6 +20054,8 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19615
20054
|
'merchant_refund',
|
|
19616
20055
|
'ge_revenue_share',
|
|
19617
20056
|
'merchant_fee',
|
|
20057
|
+
'b2b_tax',
|
|
20058
|
+
'b2b_tax_refund',
|
|
19618
20059
|
]);
|
|
19619
20060
|
|
|
19620
20061
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19679,6 +20120,11 @@ T['io.flow.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
|
|
|
19679
20120
|
|
|
19680
20121
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
19681
20122
|
|
|
20123
|
+
T['io.flow.billing.v0.models.statement_status_form'] = PropTypes.exact({
|
|
20124
|
+
code: T['io.flow.billing.v0.enums.statement_status_code'].isRequired,
|
|
20125
|
+
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
20126
|
+
});
|
|
20127
|
+
|
|
19682
20128
|
T['io.flow.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
19683
20129
|
id: PropTypes.string.isRequired,
|
|
19684
20130
|
});
|
|
@@ -19836,6 +20282,9 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
19836
20282
|
account: T['io.flow.internal.v0.models.bank_account'].isRequired,
|
|
19837
20283
|
});
|
|
19838
20284
|
|
|
20285
|
+
T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf(['b2b_invoice', 'b2b_credit_memo']);
|
|
20286
|
+
T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
|
|
20287
|
+
T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
|
|
19839
20288
|
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
19840
20289
|
|
|
19841
20290
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
@@ -20217,6 +20666,31 @@ T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
|
20217
20666
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20218
20667
|
});
|
|
20219
20668
|
|
|
20669
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
20670
|
+
id: PropTypes.string.isRequired,
|
|
20671
|
+
order_number: PropTypes.string.isRequired,
|
|
20672
|
+
created_at: PropTypes.string.isRequired,
|
|
20673
|
+
reference_id: PropTypes.string.isRequired,
|
|
20674
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
20675
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
20676
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20677
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
20678
|
+
carrier_id: PropTypes.string,
|
|
20679
|
+
service_id: PropTypes.string,
|
|
20680
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20681
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
20682
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
20683
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
20684
|
+
});
|
|
20685
|
+
|
|
20686
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
20687
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
20688
|
+
event_id: PropTypes.string.isRequired,
|
|
20689
|
+
timestamp: PropTypes.string.isRequired,
|
|
20690
|
+
organization: PropTypes.string.isRequired,
|
|
20691
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
20692
|
+
});
|
|
20693
|
+
|
|
20220
20694
|
T['io.flow.internal.v0.models.validated_address'] = PropTypes.exact({
|
|
20221
20695
|
company_name: PropTypes.string.isRequired,
|
|
20222
20696
|
person_name: PropTypes.string.isRequired,
|
|
@@ -20274,6 +20748,14 @@ T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
|
|
|
20274
20748
|
company: PropTypes.string,
|
|
20275
20749
|
});
|
|
20276
20750
|
|
|
20751
|
+
T['io.flow.organization.v0.models.organization_tax_registration'] = PropTypes.exact({
|
|
20752
|
+
id: PropTypes.string.isRequired,
|
|
20753
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20754
|
+
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
20755
|
+
registration: T['io.flow.organization.v0.models.tax_registration_detail'].isRequired,
|
|
20756
|
+
self_billing_agreement: T['io.flow.organization.v0.models.self_billing_agreement'].isRequired,
|
|
20757
|
+
});
|
|
20758
|
+
|
|
20277
20759
|
T['io.flow.experience.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
|
|
20278
20760
|
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
20279
20761
|
});
|
|
@@ -20796,7 +21278,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
20796
21278
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20797
21279
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20798
21280
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20799
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21281
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20800
21282
|
});
|
|
20801
21283
|
|
|
20802
21284
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -20816,7 +21298,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
20816
21298
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20817
21299
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20818
21300
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20819
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21301
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20820
21302
|
});
|
|
20821
21303
|
|
|
20822
21304
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -20828,6 +21310,7 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
20828
21310
|
|
|
20829
21311
|
T['io.flow.internal.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20830
21312
|
T['io.flow.internal.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21313
|
+
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20831
21314
|
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20832
21315
|
|
|
20833
21316
|
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
@@ -21874,7 +22357,22 @@ T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
|
21874
22357
|
currency: PropTypes.string.isRequired,
|
|
21875
22358
|
});
|
|
21876
22359
|
|
|
22360
|
+
T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact({
|
|
22361
|
+
discriminator: PropTypes.oneOf(['sellability_screening_form']).isRequired,
|
|
22362
|
+
merchant_id: PropTypes.string.isRequired,
|
|
22363
|
+
product_id: PropTypes.string.isRequired,
|
|
22364
|
+
name: PropTypes.string.isRequired,
|
|
22365
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
22366
|
+
description: PropTypes.string.isRequired,
|
|
22367
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
22368
|
+
mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
|
|
22369
|
+
catalog_size: PropTypes.number,
|
|
22370
|
+
relative_ranking: PropTypes.number,
|
|
22371
|
+
dry_run: PropTypes.bool,
|
|
22372
|
+
});
|
|
22373
|
+
|
|
21877
22374
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
22375
|
+
discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
|
|
21878
22376
|
shop_id: PropTypes.string.isRequired,
|
|
21879
22377
|
product_id: PropTypes.string,
|
|
21880
22378
|
name: PropTypes.string.isRequired,
|
|
@@ -21885,6 +22383,11 @@ T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
|
21885
22383
|
dry_run: PropTypes.bool,
|
|
21886
22384
|
});
|
|
21887
22385
|
|
|
22386
|
+
T['io.flow.sellability.v0.unions.sellability_request'] = PropTypes.oneOfType([
|
|
22387
|
+
T['io.flow.sellability.v0.models.product_sellability_form'],
|
|
22388
|
+
T['io.flow.sellability.v0.models.sellability_screening_form'],
|
|
22389
|
+
]);
|
|
22390
|
+
|
|
21888
22391
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
|
|
21889
22392
|
discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
|
|
21890
22393
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
@@ -21902,6 +22405,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21902
22405
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
21903
22406
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
21904
22407
|
average_order_weight: PropTypes.number,
|
|
22408
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
21905
22409
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
21906
22410
|
monthly_average_volume_amount: PropTypes.number,
|
|
21907
22411
|
monthly_average_volume_currency: PropTypes.string,
|
|
@@ -21916,10 +22420,72 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21916
22420
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
21917
22421
|
});
|
|
21918
22422
|
|
|
22423
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'] = PropTypes.exact({
|
|
22424
|
+
discriminator: PropTypes.oneOf(['common_merchant_application_form']).isRequired,
|
|
22425
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22426
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22427
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22428
|
+
business_url: PropTypes.string,
|
|
22429
|
+
business_description: PropTypes.string,
|
|
22430
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22431
|
+
refund_percentage: PropTypes.number,
|
|
22432
|
+
chargeback_percentage: PropTypes.number,
|
|
22433
|
+
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22434
|
+
other_trade_sector: PropTypes.string,
|
|
22435
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22436
|
+
center_address: T['io.flow.common.v0.models.address'],
|
|
22437
|
+
average_order_weight: PropTypes.number,
|
|
22438
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22439
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22440
|
+
monthly_average_volume_amount: PropTypes.number,
|
|
22441
|
+
monthly_average_volume_currency: PropTypes.string,
|
|
22442
|
+
monthly_average_number_transactions: PropTypes.number,
|
|
22443
|
+
default_country_of_origin: PropTypes.string,
|
|
22444
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22445
|
+
rate_card: PropTypes.string,
|
|
22446
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22447
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22448
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22449
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22450
|
+
});
|
|
22451
|
+
|
|
21919
22452
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
21920
22453
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'],
|
|
22454
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'],
|
|
21921
22455
|
]);
|
|
21922
22456
|
|
|
22457
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application'] = PropTypes.exact({
|
|
22458
|
+
discriminator: PropTypes.oneOf(['common_merchant_application']).isRequired,
|
|
22459
|
+
id: PropTypes.string.isRequired,
|
|
22460
|
+
organization_id: PropTypes.string.isRequired,
|
|
22461
|
+
organization_reference: T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'].isRequired,
|
|
22462
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22463
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22464
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22465
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22466
|
+
business_url: PropTypes.string,
|
|
22467
|
+
business_description: PropTypes.string,
|
|
22468
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22469
|
+
refund_percentage: PropTypes.number,
|
|
22470
|
+
chargeback_percentage: PropTypes.number,
|
|
22471
|
+
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22472
|
+
other_trade_sector: PropTypes.string,
|
|
22473
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22474
|
+
center_address: T['io.flow.common.v0.models.address'],
|
|
22475
|
+
average_order_weight: PropTypes.number,
|
|
22476
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22477
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22478
|
+
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22479
|
+
default_country_of_origin: PropTypes.string,
|
|
22480
|
+
rate_card: PropTypes.string.isRequired,
|
|
22481
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22482
|
+
created_at: PropTypes.string.isRequired,
|
|
22483
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22484
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22485
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22486
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22487
|
+
});
|
|
22488
|
+
|
|
21923
22489
|
T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
21924
22490
|
tracking_id: PropTypes.string.isRequired,
|
|
21925
22491
|
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
@@ -22064,6 +22630,7 @@ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'] = Prop
|
|
|
22064
22630
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22065
22631
|
origin_region: T['io.flow.ratecard.v0.models.ratecard_region_reference'],
|
|
22066
22632
|
destination_region: T['io.flow.ratecard.v0.models.ratecard_region_reference'],
|
|
22633
|
+
destination_regions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_region_reference']),
|
|
22067
22634
|
interval_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22068
22635
|
});
|
|
22069
22636
|
|
|
@@ -22119,6 +22686,27 @@ T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
|
22119
22686
|
T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'],
|
|
22120
22687
|
]);
|
|
22121
22688
|
|
|
22689
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_available'] = PropTypes.exact({
|
|
22690
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22691
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22692
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22693
|
+
total_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22694
|
+
base_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22695
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22696
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22697
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22698
|
+
weight_break: PropTypes.number,
|
|
22699
|
+
});
|
|
22700
|
+
|
|
22701
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate'] = PropTypes.exact({
|
|
22702
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22703
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22704
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
22705
|
+
services: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22706
|
+
available: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.shipping_rate_estimate_available']).isRequired,
|
|
22707
|
+
unavailable: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.shipping_rate_estimate_unavailable']),
|
|
22708
|
+
});
|
|
22709
|
+
|
|
22122
22710
|
T['io.flow.ratecard.v0.models.ratecard_lane_form'] = PropTypes.exact({
|
|
22123
22711
|
ratecard_id: PropTypes.string.isRequired,
|
|
22124
22712
|
currency: PropTypes.string.isRequired,
|
|
@@ -22350,6 +22938,19 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22350
22938
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22351
22939
|
});
|
|
22352
22940
|
|
|
22941
|
+
T['io.flow.consumer.invoice.v0.models.tax_breakdown'] = PropTypes.exact({
|
|
22942
|
+
label: PropTypes.string.isRequired,
|
|
22943
|
+
calculated_tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
22944
|
+
rate: PropTypes.number.isRequired,
|
|
22945
|
+
line_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22946
|
+
jurisdiction_type: T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'].isRequired,
|
|
22947
|
+
});
|
|
22948
|
+
|
|
22949
|
+
T['io.flow.consumer.invoice.v0.models.invoice_tax_line'] = PropTypes.exact({
|
|
22950
|
+
line_id: PropTypes.string.isRequired,
|
|
22951
|
+
tax_breakdown: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.tax_breakdown']).isRequired,
|
|
22952
|
+
});
|
|
22953
|
+
|
|
22353
22954
|
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22354
22955
|
id: PropTypes.string.isRequired,
|
|
22355
22956
|
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
@@ -22683,6 +23284,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22683
23284
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22684
23285
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22685
23286
|
average_order_weight: PropTypes.number,
|
|
23287
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22686
23288
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22687
23289
|
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22688
23290
|
default_country_of_origin: PropTypes.string,
|
|
@@ -22699,7 +23301,40 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22699
23301
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22700
23302
|
});
|
|
22701
23303
|
|
|
22702
|
-
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([
|
|
23304
|
+
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([
|
|
23305
|
+
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'],
|
|
23306
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application'],
|
|
23307
|
+
]);
|
|
23308
|
+
|
|
23309
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'] = PropTypes.exact({
|
|
23310
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
23311
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
23312
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
23313
|
+
total_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23314
|
+
base_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23315
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
23316
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
23317
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
23318
|
+
weight_break: PropTypes.number,
|
|
23319
|
+
ratecard_id: PropTypes.string,
|
|
23320
|
+
lane_id: PropTypes.string,
|
|
23321
|
+
rate_level_key: PropTypes.string,
|
|
23322
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
23323
|
+
glbe_proposition_name: PropTypes.string,
|
|
23324
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
23325
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23326
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23327
|
+
});
|
|
23328
|
+
|
|
23329
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_internal'] = PropTypes.exact({
|
|
23330
|
+
channel_id: PropTypes.string.isRequired,
|
|
23331
|
+
organization_id: PropTypes.string.isRequired,
|
|
23332
|
+
service: PropTypes.string.isRequired,
|
|
23333
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23334
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23335
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23336
|
+
available: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']).isRequired,
|
|
23337
|
+
});
|
|
22703
23338
|
|
|
22704
23339
|
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
22705
23340
|
lane_id: PropTypes.string,
|
|
@@ -22717,7 +23352,7 @@ T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
|
22717
23352
|
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
22718
23353
|
id: PropTypes.string.isRequired,
|
|
22719
23354
|
name: PropTypes.string.isRequired,
|
|
22720
|
-
environment: T['io.flow.
|
|
23355
|
+
environment: T['io.flow.restrictions.v0.enums.restriction_environment'].isRequired,
|
|
22721
23356
|
url: PropTypes.string,
|
|
22722
23357
|
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
22723
23358
|
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
@@ -22745,6 +23380,21 @@ T['io.flow.internal.v0.models.product_sellability_internal_form'] = PropTypes.ex
|
|
|
22745
23380
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22746
23381
|
});
|
|
22747
23382
|
|
|
23383
|
+
T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes.exact({
|
|
23384
|
+
id: PropTypes.string.isRequired,
|
|
23385
|
+
merchant_id: PropTypes.string.isRequired,
|
|
23386
|
+
product_id: PropTypes.string.isRequired,
|
|
23387
|
+
channel: PropTypes.string.isRequired,
|
|
23388
|
+
request_id: PropTypes.string.isRequired,
|
|
23389
|
+
status: T['io.flow.internal.v0.enums.preonboarding_request_status'].isRequired,
|
|
23390
|
+
name: PropTypes.string.isRequired,
|
|
23391
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
23392
|
+
description: PropTypes.string.isRequired,
|
|
23393
|
+
relative_ranking: PropTypes.number.isRequired,
|
|
23394
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23395
|
+
fingerprint: PropTypes.string.isRequired,
|
|
23396
|
+
});
|
|
23397
|
+
|
|
22748
23398
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
22749
23399
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22750
23400
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -22814,6 +23464,17 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
22814
23464
|
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22815
23465
|
});
|
|
22816
23466
|
|
|
23467
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
|
|
23468
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23469
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23470
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23471
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23472
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23473
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23474
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23475
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23476
|
+
});
|
|
23477
|
+
|
|
22817
23478
|
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22818
23479
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22819
23480
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
@@ -22886,6 +23547,7 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_form'] = PropTypes.exact({
|
|
|
22886
23547
|
center_id: PropTypes.string,
|
|
22887
23548
|
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
22888
23549
|
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23550
|
+
commercial_invoice_mode: T['io.flow.label.v0.enums.commercial_invoice_mode'],
|
|
22889
23551
|
});
|
|
22890
23552
|
|
|
22891
23553
|
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
@@ -22979,6 +23641,21 @@ T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
|
22979
23641
|
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
22980
23642
|
});
|
|
22981
23643
|
|
|
23644
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'] = PropTypes.exact({
|
|
23645
|
+
channel_id: PropTypes.string.isRequired,
|
|
23646
|
+
organization_id: PropTypes.string.isRequired,
|
|
23647
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23648
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23649
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23650
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23651
|
+
service: PropTypes.string.isRequired,
|
|
23652
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23653
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23654
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23655
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23656
|
+
include_unpublished: PropTypes.bool,
|
|
23657
|
+
});
|
|
23658
|
+
|
|
22982
23659
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
22983
23660
|
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
22984
23661
|
volumetric_weight: PropTypes.number,
|
|
@@ -23342,6 +24019,47 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
23342
24019
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
23343
24020
|
});
|
|
23344
24021
|
|
|
24022
|
+
T['io.flow.internal.v0.models.tax_type_total'] = PropTypes.exact({
|
|
24023
|
+
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
24024
|
+
});
|
|
24025
|
+
|
|
24026
|
+
T['io.flow.internal.v0.models.b2b_tax_ledger_form'] = PropTypes.exact({
|
|
24027
|
+
total_amount: T['io.flow.internal.v0.models.tax_type_total'].isRequired,
|
|
24028
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24029
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
24030
|
+
tax_rate: PropTypes.number.isRequired,
|
|
24031
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
24032
|
+
organization_id: PropTypes.string.isRequired,
|
|
24033
|
+
organization_country: PropTypes.string.isRequired,
|
|
24034
|
+
organization_province: PropTypes.string,
|
|
24035
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
24036
|
+
mor_country: PropTypes.string.isRequired,
|
|
24037
|
+
mor_province: PropTypes.string,
|
|
24038
|
+
document_id: PropTypes.string.isRequired,
|
|
24039
|
+
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
24040
|
+
document_date: PropTypes.string.isRequired,
|
|
24041
|
+
ledger_report_id: PropTypes.string,
|
|
24042
|
+
});
|
|
24043
|
+
|
|
24044
|
+
T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
|
|
24045
|
+
id: PropTypes.string.isRequired,
|
|
24046
|
+
total_amount: T['io.flow.internal.v0.models.tax_type_total'].isRequired,
|
|
24047
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24048
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
24049
|
+
tax_rate: PropTypes.number.isRequired,
|
|
24050
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
24051
|
+
organization_id: PropTypes.string.isRequired,
|
|
24052
|
+
organization_country: PropTypes.string.isRequired,
|
|
24053
|
+
organization_province: PropTypes.string,
|
|
24054
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
24055
|
+
mor_country: PropTypes.string.isRequired,
|
|
24056
|
+
mor_province: PropTypes.string,
|
|
24057
|
+
document_id: PropTypes.string.isRequired,
|
|
24058
|
+
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
24059
|
+
document_date: PropTypes.string.isRequired,
|
|
24060
|
+
ledger_report_id: PropTypes.string,
|
|
24061
|
+
});
|
|
24062
|
+
|
|
23345
24063
|
T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
|
|
23346
24064
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23347
24065
|
});
|
|
@@ -23621,6 +24339,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23621
24339
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
23622
24340
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'],
|
|
23623
24341
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
24342
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'],
|
|
24343
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'],
|
|
23624
24344
|
]);
|
|
23625
24345
|
|
|
23626
24346
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -23753,27 +24473,6 @@ T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result']
|
|
|
23753
24473
|
organization_onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'],
|
|
23754
24474
|
});
|
|
23755
24475
|
|
|
23756
|
-
T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
|
|
23757
|
-
id: PropTypes.string.isRequired,
|
|
23758
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
23759
|
-
feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
|
|
23760
|
-
value: PropTypes.bool.isRequired,
|
|
23761
|
-
});
|
|
23762
|
-
|
|
23763
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
|
|
23764
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
|
|
23765
|
-
event_id: PropTypes.string.isRequired,
|
|
23766
|
-
timestamp: PropTypes.string.isRequired,
|
|
23767
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23768
|
-
});
|
|
23769
|
-
|
|
23770
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
|
|
23771
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
|
|
23772
|
-
event_id: PropTypes.string.isRequired,
|
|
23773
|
-
timestamp: PropTypes.string.isRequired,
|
|
23774
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23775
|
-
});
|
|
23776
|
-
|
|
23777
24476
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
23778
24477
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
23779
24478
|
id: PropTypes.string.isRequired,
|
|
@@ -24006,8 +24705,6 @@ T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
|
24006
24705
|
customs_value: PropTypes.number.isRequired,
|
|
24007
24706
|
total_value: PropTypes.number.isRequired,
|
|
24008
24707
|
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
24009
|
-
feature_israel_notes_import_duty_and_taxes_due: PropTypes.bool.isRequired,
|
|
24010
|
-
feature_new_export_declaration: PropTypes.bool.isRequired,
|
|
24011
24708
|
});
|
|
24012
24709
|
|
|
24013
24710
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
@@ -24148,6 +24845,12 @@ T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact(
|
|
|
24148
24845
|
created_at: PropTypes.string.isRequired,
|
|
24149
24846
|
});
|
|
24150
24847
|
|
|
24848
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
|
|
24849
|
+
discriminator: PropTypes.oneOf(['synthetic']).isRequired,
|
|
24850
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24851
|
+
created_at: PropTypes.string.isRequired,
|
|
24852
|
+
});
|
|
24853
|
+
|
|
24151
24854
|
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
24152
24855
|
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
24153
24856
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
@@ -24155,6 +24858,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
24155
24858
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
24156
24859
|
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
24157
24860
|
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
24861
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
|
|
24158
24862
|
]);
|
|
24159
24863
|
|
|
24160
24864
|
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
@@ -24407,6 +25111,136 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
24407
25111
|
name: PropTypes.string,
|
|
24408
25112
|
});
|
|
24409
25113
|
|
|
25114
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
25115
|
+
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
25116
|
+
line_id: PropTypes.string,
|
|
25117
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25118
|
+
});
|
|
25119
|
+
|
|
25120
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'] = PropTypes.exact({
|
|
25121
|
+
rate: PropTypes.number.isRequired,
|
|
25122
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25123
|
+
});
|
|
25124
|
+
|
|
25125
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'] = PropTypes.exact({
|
|
25126
|
+
discriminator: PropTypes.oneOf(['tip']).isRequired,
|
|
25127
|
+
line_id: PropTypes.string,
|
|
25128
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25129
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25130
|
+
});
|
|
25131
|
+
|
|
25132
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
|
|
25133
|
+
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
25134
|
+
line_id: PropTypes.string,
|
|
25135
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25136
|
+
discount: T['io.flow.common.v0.models.price'],
|
|
25137
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25138
|
+
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25139
|
+
});
|
|
25140
|
+
|
|
25141
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
|
|
25142
|
+
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
25143
|
+
line_id: PropTypes.string,
|
|
25144
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
25145
|
+
description: PropTypes.string.isRequired,
|
|
25146
|
+
quantity: PropTypes.number.isRequired,
|
|
25147
|
+
unit_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25148
|
+
unit_discount: T['io.flow.common.v0.models.price'],
|
|
25149
|
+
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25150
|
+
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25151
|
+
});
|
|
25152
|
+
|
|
25153
|
+
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
|
|
25154
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'],
|
|
25155
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'],
|
|
25156
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'],
|
|
25157
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
|
|
25158
|
+
]);
|
|
25159
|
+
|
|
25160
|
+
T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
25161
|
+
id: PropTypes.string.isRequired,
|
|
25162
|
+
number: PropTypes.string.isRequired,
|
|
25163
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25164
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25165
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25166
|
+
date: PropTypes.string.isRequired,
|
|
25167
|
+
key: PropTypes.string.isRequired,
|
|
25168
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
25169
|
+
economic_title_location: T['io.flow.merchant.of.record.v0.enums.economic_title_location'].isRequired,
|
|
25170
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25171
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
25172
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
25173
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25174
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25175
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25176
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25177
|
+
estimated_delivery_date: PropTypes.string,
|
|
25178
|
+
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
25179
|
+
});
|
|
25180
|
+
|
|
25181
|
+
T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
25182
|
+
id: PropTypes.string.isRequired,
|
|
25183
|
+
number: PropTypes.string.isRequired,
|
|
25184
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25185
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25186
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25187
|
+
date: PropTypes.string.isRequired,
|
|
25188
|
+
key: PropTypes.string.isRequired,
|
|
25189
|
+
invoice: T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'].isRequired,
|
|
25190
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25191
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25192
|
+
tax: T['io.flow.common.v0.models.money'],
|
|
25193
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25194
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25195
|
+
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
25196
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25197
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
25198
|
+
});
|
|
25199
|
+
|
|
25200
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'] = PropTypes.exact({
|
|
25201
|
+
date: PropTypes.string.isRequired,
|
|
25202
|
+
description: PropTypes.string.isRequired,
|
|
25203
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25204
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
25205
|
+
});
|
|
25206
|
+
|
|
25207
|
+
T['io.flow.consumer.invoice.v0.models.credit_memo'] = PropTypes.exact({
|
|
25208
|
+
id: PropTypes.string.isRequired,
|
|
25209
|
+
number: PropTypes.string,
|
|
25210
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25211
|
+
date: PropTypes.string.isRequired,
|
|
25212
|
+
key: PropTypes.string.isRequired,
|
|
25213
|
+
invoice: T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'].isRequired,
|
|
25214
|
+
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25215
|
+
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
25216
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25217
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25218
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25219
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25220
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25221
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
25222
|
+
});
|
|
25223
|
+
|
|
25224
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice'] = PropTypes.exact({
|
|
25225
|
+
id: PropTypes.string.isRequired,
|
|
25226
|
+
number: PropTypes.string.isRequired,
|
|
25227
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25228
|
+
date: PropTypes.string.isRequired,
|
|
25229
|
+
key: PropTypes.string.isRequired,
|
|
25230
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
25231
|
+
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25232
|
+
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
25233
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25234
|
+
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
25235
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
25236
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25237
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25238
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25239
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25240
|
+
customer_type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'],
|
|
25241
|
+
estimated_delivery_date: PropTypes.string,
|
|
25242
|
+
});
|
|
25243
|
+
|
|
24410
25244
|
T['io.flow.payment.v0.models.virtual_card'] = PropTypes.exact({
|
|
24411
25245
|
id: PropTypes.string.isRequired,
|
|
24412
25246
|
key: PropTypes.string.isRequired,
|
|
@@ -24710,6 +25544,13 @@ T['io.flow.internal.v0.models.sarvesh_item'] = PropTypes.exact({
|
|
|
24710
25544
|
added_on: PropTypes.string.isRequired,
|
|
24711
25545
|
});
|
|
24712
25546
|
|
|
25547
|
+
T['io.flow.internal.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
|
|
25548
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
|
|
25549
|
+
event_id: PropTypes.string.isRequired,
|
|
25550
|
+
timestamp: PropTypes.string.isRequired,
|
|
25551
|
+
item: T['io.flow.internal.v0.models.sarvesh_item'].isRequired,
|
|
25552
|
+
});
|
|
25553
|
+
|
|
24713
25554
|
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
24714
25555
|
number: PropTypes.string.isRequired,
|
|
24715
25556
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24727,6 +25568,13 @@ T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
|
24727
25568
|
added_on: PropTypes.string.isRequired,
|
|
24728
25569
|
});
|
|
24729
25570
|
|
|
25571
|
+
T['io.flow.internal.v0.models.rohan_item_upserted'] = PropTypes.exact({
|
|
25572
|
+
discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
|
|
25573
|
+
event_id: PropTypes.string.isRequired,
|
|
25574
|
+
timestamp: PropTypes.string.isRequired,
|
|
25575
|
+
item: T['io.flow.internal.v0.models.rohan_item'].isRequired,
|
|
25576
|
+
});
|
|
25577
|
+
|
|
24730
25578
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24731
25579
|
id: PropTypes.string.isRequired,
|
|
24732
25580
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24848,6 +25696,13 @@ T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
|
24848
25696
|
added_on: PropTypes.string.isRequired,
|
|
24849
25697
|
});
|
|
24850
25698
|
|
|
25699
|
+
T['io.flow.internal.v0.models.niall_item_upserted'] = PropTypes.exact({
|
|
25700
|
+
discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
|
|
25701
|
+
event_id: PropTypes.string.isRequired,
|
|
25702
|
+
timestamp: PropTypes.string.isRequired,
|
|
25703
|
+
item: T['io.flow.internal.v0.models.niall_item'].isRequired,
|
|
25704
|
+
});
|
|
25705
|
+
|
|
24851
25706
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
24852
25707
|
id: PropTypes.string.isRequired,
|
|
24853
25708
|
description: PropTypes.string.isRequired,
|
|
@@ -24871,6 +25726,13 @@ T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
|
|
|
24871
25726
|
added_on: PropTypes.string.isRequired,
|
|
24872
25727
|
});
|
|
24873
25728
|
|
|
25729
|
+
T['io.flow.internal.v0.models.hosein_item_upserted'] = PropTypes.exact({
|
|
25730
|
+
discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
|
|
25731
|
+
event_id: PropTypes.string.isRequired,
|
|
25732
|
+
timestamp: PropTypes.string.isRequired,
|
|
25733
|
+
item: T['io.flow.internal.v0.models.hosein_item'].isRequired,
|
|
25734
|
+
});
|
|
25735
|
+
|
|
24874
25736
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
24875
25737
|
id: PropTypes.string.isRequired,
|
|
24876
25738
|
number: PropTypes.string.isRequired,
|
|
@@ -24892,6 +25754,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24892
25754
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24893
25755
|
});
|
|
24894
25756
|
|
|
25757
|
+
T['io.flow.internal.v0.models.gabriel_item_form'] = PropTypes.exact({
|
|
25758
|
+
number: PropTypes.string.isRequired,
|
|
25759
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25760
|
+
description: PropTypes.string,
|
|
25761
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
25762
|
+
added_on: PropTypes.string.isRequired,
|
|
25763
|
+
});
|
|
25764
|
+
|
|
25765
|
+
T['io.flow.internal.v0.models.gabriel_item'] = PropTypes.exact({
|
|
25766
|
+
id: PropTypes.string.isRequired,
|
|
25767
|
+
number: PropTypes.string.isRequired,
|
|
25768
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25769
|
+
description: PropTypes.string,
|
|
25770
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
25771
|
+
added_on: PropTypes.string.isRequired,
|
|
25772
|
+
});
|
|
25773
|
+
|
|
25774
|
+
T['io.flow.internal.v0.models.gabriel_item_upserted'] = PropTypes.exact({
|
|
25775
|
+
discriminator: PropTypes.oneOf(['gabriel_item_upserted']).isRequired,
|
|
25776
|
+
event_id: PropTypes.string.isRequired,
|
|
25777
|
+
timestamp: PropTypes.string.isRequired,
|
|
25778
|
+
item: T['io.flow.internal.v0.models.gabriel_item'].isRequired,
|
|
25779
|
+
});
|
|
25780
|
+
|
|
24895
25781
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
24896
25782
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
24897
25783
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24955,6 +25841,8 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24955
25841
|
non_l4l_tax_duty_fx: T['io.flow.common.v0.models.price'].isRequired,
|
|
24956
25842
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24957
25843
|
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
25844
|
+
b2b_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25845
|
+
b2b_tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24958
25846
|
});
|
|
24959
25847
|
|
|
24960
25848
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -25456,6 +26344,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
25456
26344
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
25457
26345
|
edits: PropTypes.arrayOf(T['io.flow.experience.v0.models.edit_summary']),
|
|
25458
26346
|
rates: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rate']),
|
|
26347
|
+
pricing_type: T['io.flow.experience.v0.enums.pricing_type'],
|
|
25459
26348
|
});
|
|
25460
26349
|
|
|
25461
26350
|
T['io.flow.experience.v0.models.order_version'] = PropTypes.exact({
|
|
@@ -25667,6 +26556,13 @@ T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
|
25667
26556
|
added_on: PropTypes.string.isRequired,
|
|
25668
26557
|
});
|
|
25669
26558
|
|
|
26559
|
+
T['io.flow.internal.v0.models.ansh_item_upserted'] = PropTypes.exact({
|
|
26560
|
+
discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
|
|
26561
|
+
event_id: PropTypes.string.isRequired,
|
|
26562
|
+
timestamp: PropTypes.string.isRequired,
|
|
26563
|
+
item: T['io.flow.internal.v0.models.ansh_item'].isRequired,
|
|
26564
|
+
});
|
|
26565
|
+
|
|
25670
26566
|
T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
25671
26567
|
number: PropTypes.string.isRequired,
|
|
25672
26568
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25684,6 +26580,30 @@ T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
|
|
|
25684
26580
|
added_on: PropTypes.string.isRequired,
|
|
25685
26581
|
});
|
|
25686
26582
|
|
|
26583
|
+
T['io.flow.internal.v0.models.anirban_item_upserted'] = PropTypes.exact({
|
|
26584
|
+
discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
|
|
26585
|
+
event_id: PropTypes.string.isRequired,
|
|
26586
|
+
timestamp: PropTypes.string.isRequired,
|
|
26587
|
+
item: T['io.flow.internal.v0.models.anirban_item'].isRequired,
|
|
26588
|
+
});
|
|
26589
|
+
|
|
26590
|
+
T['io.flow.internal.v0.models.amrutha_item_form'] = PropTypes.exact({
|
|
26591
|
+
number: PropTypes.string.isRequired,
|
|
26592
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26593
|
+
description: PropTypes.string,
|
|
26594
|
+
type: T['io.flow.internal.v0.enums.amrutha_item_type'].isRequired,
|
|
26595
|
+
added_on: PropTypes.string.isRequired,
|
|
26596
|
+
});
|
|
26597
|
+
|
|
26598
|
+
T['io.flow.internal.v0.models.amrutha_item'] = PropTypes.exact({
|
|
26599
|
+
id: PropTypes.string.isRequired,
|
|
26600
|
+
number: PropTypes.string.isRequired,
|
|
26601
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26602
|
+
description: PropTypes.string,
|
|
26603
|
+
type: T['io.flow.internal.v0.enums.amrutha_item_type'].isRequired,
|
|
26604
|
+
added_on: PropTypes.string.isRequired,
|
|
26605
|
+
});
|
|
26606
|
+
|
|
25687
26607
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25688
26608
|
number: PropTypes.string.isRequired,
|
|
25689
26609
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25701,6 +26621,13 @@ T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
|
|
|
25701
26621
|
added_on: PropTypes.string.isRequired,
|
|
25702
26622
|
});
|
|
25703
26623
|
|
|
26624
|
+
T['io.flow.internal.v0.models.aldo_item_upserted'] = PropTypes.exact({
|
|
26625
|
+
discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
|
|
26626
|
+
event_id: PropTypes.string.isRequired,
|
|
26627
|
+
timestamp: PropTypes.string.isRequired,
|
|
26628
|
+
item: T['io.flow.internal.v0.models.aldo_item'].isRequired,
|
|
26629
|
+
});
|
|
26630
|
+
|
|
25704
26631
|
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
25705
26632
|
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
25706
26633
|
});
|
|
@@ -26202,6 +27129,8 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26202
27129
|
'merchant_fee',
|
|
26203
27130
|
'merchant_payout',
|
|
26204
27131
|
'merchant_refund',
|
|
27132
|
+
'b2b_tax',
|
|
27133
|
+
'b2b_tax_refund',
|
|
26205
27134
|
]);
|
|
26206
27135
|
|
|
26207
27136
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27025,8 +27954,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27025
27954
|
T['io.flow.internal.v0.models.export_failed'],
|
|
27026
27955
|
T['io.flow.internal.v0.models.feature_upserted'],
|
|
27027
27956
|
T['io.flow.internal.v0.models.feature_deleted'],
|
|
27028
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'],
|
|
27029
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'],
|
|
27030
27957
|
T['io.flow.internal.v0.models.account_settings_upserted'],
|
|
27031
27958
|
T['io.flow.internal.v0.models.account_settings_deleted'],
|
|
27032
27959
|
T['io.flow.internal.v0.models.account_processing_rates_upserted'],
|
|
@@ -27226,6 +28153,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27226
28153
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
27227
28154
|
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'],
|
|
27228
28155
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
28156
|
+
T['io.flow.internal.v0.models.shopify_test_order_upserted'],
|
|
28157
|
+
T['io.flow.internal.v0.models.shopify_test_order_deleted'],
|
|
27229
28158
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27230
28159
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27231
28160
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27262,6 +28191,22 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27262
28191
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
27263
28192
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27264
28193
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28194
|
+
T['io.flow.internal.v0.models.anirban_item_upserted'],
|
|
28195
|
+
T['io.flow.internal.v0.models.anirban_item_deleted'],
|
|
28196
|
+
T['io.flow.internal.v0.models.sarvesh_item_upserted'],
|
|
28197
|
+
T['io.flow.internal.v0.models.sarvesh_item_deleted'],
|
|
28198
|
+
T['io.flow.internal.v0.models.hosein_item_upserted'],
|
|
28199
|
+
T['io.flow.internal.v0.models.hosein_item_deleted'],
|
|
28200
|
+
T['io.flow.internal.v0.models.niall_item_upserted'],
|
|
28201
|
+
T['io.flow.internal.v0.models.niall_item_deleted'],
|
|
28202
|
+
T['io.flow.internal.v0.models.rohan_item_upserted'],
|
|
28203
|
+
T['io.flow.internal.v0.models.rohan_item_deleted'],
|
|
28204
|
+
T['io.flow.internal.v0.models.aldo_item_upserted'],
|
|
28205
|
+
T['io.flow.internal.v0.models.aldo_item_deleted'],
|
|
28206
|
+
T['io.flow.internal.v0.models.ansh_item_upserted'],
|
|
28207
|
+
T['io.flow.internal.v0.models.ansh_item_deleted'],
|
|
28208
|
+
T['io.flow.internal.v0.models.gabriel_item_upserted'],
|
|
28209
|
+
T['io.flow.internal.v0.models.gabriel_item_deleted'],
|
|
27265
28210
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
27266
28211
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
27267
28212
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -27564,8 +28509,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27564
28509
|
'export_failed',
|
|
27565
28510
|
'feature_upserted',
|
|
27566
28511
|
'feature_deleted',
|
|
27567
|
-
'organization_boolean_value_upserted',
|
|
27568
|
-
'organization_boolean_value_deleted',
|
|
27569
28512
|
'account_settings_upserted',
|
|
27570
28513
|
'account_settings_deleted',
|
|
27571
28514
|
'account_processing_rates_upserted',
|
|
@@ -27765,6 +28708,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27765
28708
|
'shopify_order_risk_assessment_deleted',
|
|
27766
28709
|
'shopify_order_transaction_upserted',
|
|
27767
28710
|
'shopify_order_transaction_deleted',
|
|
28711
|
+
'shopify_test_order_upserted',
|
|
28712
|
+
'shopify_test_order_deleted',
|
|
27768
28713
|
'shopify_product_create_upserted',
|
|
27769
28714
|
'shopify_product_create_deleted',
|
|
27770
28715
|
'shopify_product_update_upserted',
|
|
@@ -27801,6 +28746,22 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27801
28746
|
'stripe_connect_report_record_deleted',
|
|
27802
28747
|
'liability_remittance_plan_upserted',
|
|
27803
28748
|
'liability_remittance_plan_deleted',
|
|
28749
|
+
'anirban_item_upserted',
|
|
28750
|
+
'anirban_item_deleted',
|
|
28751
|
+
'sarvesh_item_upserted',
|
|
28752
|
+
'sarvesh_item_deleted',
|
|
28753
|
+
'hosein_item_upserted',
|
|
28754
|
+
'hosein_item_deleted',
|
|
28755
|
+
'niall_item_upserted',
|
|
28756
|
+
'niall_item_deleted',
|
|
28757
|
+
'rohan_item_upserted',
|
|
28758
|
+
'rohan_item_deleted',
|
|
28759
|
+
'aldo_item_upserted',
|
|
28760
|
+
'aldo_item_deleted',
|
|
28761
|
+
'ansh_item_upserted',
|
|
28762
|
+
'ansh_item_deleted',
|
|
28763
|
+
'gabriel_item_upserted',
|
|
28764
|
+
'gabriel_item_deleted',
|
|
27804
28765
|
'tracking_processing_error_upserted',
|
|
27805
28766
|
'tracking_processing_error_deleted',
|
|
27806
28767
|
'tracking_label_event_upserted_v2',
|
|
@@ -27894,7 +28855,15 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
27894
28855
|
]);
|
|
27895
28856
|
|
|
27896
28857
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
27897
|
-
|
|
28858
|
+
|
|
28859
|
+
T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneOf([
|
|
28860
|
+
'shopify',
|
|
28861
|
+
'enterprise',
|
|
28862
|
+
'shopify-sandbox',
|
|
28863
|
+
'enterprise-sandbox',
|
|
28864
|
+
'enterprise-qa',
|
|
28865
|
+
]);
|
|
28866
|
+
|
|
27898
28867
|
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
27899
28868
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
27900
28869
|
|
|
@@ -27973,6 +28942,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27973
28942
|
'payment',
|
|
27974
28943
|
'rate_levels',
|
|
27975
28944
|
'center_defaults',
|
|
28945
|
+
'item_dimensions',
|
|
27976
28946
|
]);
|
|
27977
28947
|
|
|
27978
28948
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -28057,6 +29027,10 @@ T['io.flow.internal.v0.models.brick_webhook_event_response'] = PropTypes.exact({
|
|
|
28057
29027
|
status: PropTypes.string.isRequired,
|
|
28058
29028
|
});
|
|
28059
29029
|
|
|
29030
|
+
T['io.flow.internal.v0.models.cafe24_markets_webhook'] = PropTypes.exact({
|
|
29031
|
+
placeholder: PropTypes.string,
|
|
29032
|
+
});
|
|
29033
|
+
|
|
28060
29034
|
T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropTypes.exact({
|
|
28061
29035
|
default_country_of_origin: PropTypes.string,
|
|
28062
29036
|
default_hs_code: PropTypes.string,
|
|
@@ -28586,6 +29560,14 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
28586
29560
|
phrase_id: PropTypes.string.isRequired,
|
|
28587
29561
|
});
|
|
28588
29562
|
|
|
29563
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
29564
|
+
merchant_id: PropTypes.string.isRequired,
|
|
29565
|
+
channel: PropTypes.string.isRequired,
|
|
29566
|
+
catalog_size: PropTypes.number.isRequired,
|
|
29567
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
29568
|
+
last_request: PropTypes.string.isRequired,
|
|
29569
|
+
});
|
|
29570
|
+
|
|
28589
29571
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
28590
29572
|
center_key: PropTypes.string.isRequired,
|
|
28591
29573
|
position: PropTypes.number.isRequired,
|
|
@@ -28943,6 +29925,11 @@ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTyp
|
|
|
28943
29925
|
organization_id: PropTypes.string.isRequired,
|
|
28944
29926
|
});
|
|
28945
29927
|
|
|
29928
|
+
T['io.flow.restrictions.v0.models.carrier_restrictions'] = PropTypes.exact({
|
|
29929
|
+
carrier: PropTypes.string.isRequired,
|
|
29930
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29931
|
+
});
|
|
29932
|
+
|
|
28946
29933
|
T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
|
|
28947
29934
|
|
|
28948
29935
|
T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
|
|
@@ -29359,6 +30346,24 @@ T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
|
|
|
29359
30346
|
placeholder: PropTypes.string,
|
|
29360
30347
|
});
|
|
29361
30348
|
|
|
30349
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form'] = PropTypes.exact({
|
|
30350
|
+
order_number: PropTypes.string.isRequired,
|
|
30351
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30352
|
+
});
|
|
30353
|
+
|
|
30354
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form_by_order'] = PropTypes.exact({
|
|
30355
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30356
|
+
});
|
|
30357
|
+
|
|
30358
|
+
T['io.flow.consumer.invoice.v0.models.invoice_export'] = PropTypes.exact({
|
|
30359
|
+
id: PropTypes.string.isRequired,
|
|
30360
|
+
});
|
|
30361
|
+
|
|
30362
|
+
T['io.flow.consumer.invoice.v0.models.invoice_export_form'] = PropTypes.exact({
|
|
30363
|
+
date_from: PropTypes.string,
|
|
30364
|
+
date_to: PropTypes.string,
|
|
30365
|
+
});
|
|
30366
|
+
|
|
29362
30367
|
T['io.flow.adyen.v0.enums.payment_record_type'] = PropTypes.oneOf([
|
|
29363
30368
|
'Authorised',
|
|
29364
30369
|
'AuthorisedPending',
|
|
@@ -30060,8 +31065,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
30060
31065
|
paymentData: PropTypes.object.isRequired,
|
|
30061
31066
|
});
|
|
30062
31067
|
|
|
30063
|
-
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
30064
|
-
|
|
30065
31068
|
T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropTypes.exact({
|
|
30066
31069
|
placeholder: PropTypes.bool,
|
|
30067
31070
|
});
|
|
@@ -30071,12 +31074,25 @@ T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = Pro
|
|
|
30071
31074
|
deactivate_at: PropTypes.string,
|
|
30072
31075
|
});
|
|
30073
31076
|
|
|
31077
|
+
T['io.flow.sellability.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
|
|
31078
|
+
region: PropTypes.string.isRequired,
|
|
31079
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
31080
|
+
});
|
|
31081
|
+
|
|
30074
31082
|
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
30075
31083
|
base: PropTypes.string.isRequired,
|
|
30076
31084
|
target: PropTypes.string.isRequired,
|
|
30077
31085
|
effective_at: PropTypes.string.isRequired,
|
|
30078
31086
|
});
|
|
30079
31087
|
|
|
31088
|
+
T['io.flow.organization.v0.models.organization_tax_registration_form'] = PropTypes.exact({
|
|
31089
|
+
tax_number: PropTypes.string.isRequired,
|
|
31090
|
+
country: PropTypes.string.isRequired,
|
|
31091
|
+
province: PropTypes.string,
|
|
31092
|
+
self_billing_agreement_effective_at: PropTypes.string.isRequired,
|
|
31093
|
+
self_billing_agreement_expires_at: PropTypes.string,
|
|
31094
|
+
});
|
|
31095
|
+
|
|
30080
31096
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
30081
31097
|
export const accountContact = T['io.flow.internal.v0.models.account_contact'];
|
|
30082
31098
|
export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
|
|
@@ -30170,18 +31186,27 @@ export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refu
|
|
|
30170
31186
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
30171
31187
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
30172
31188
|
export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
|
|
31189
|
+
export const aldoItemDeleted = T['io.flow.internal.v0.models.aldo_item_deleted'];
|
|
30173
31190
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
30174
31191
|
export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
|
|
31192
|
+
export const aldoItemUpserted = T['io.flow.internal.v0.models.aldo_item_upserted'];
|
|
30175
31193
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
30176
31194
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
30177
31195
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
30178
31196
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
31197
|
+
export const amruthaItem = T['io.flow.internal.v0.models.amrutha_item'];
|
|
31198
|
+
export const amruthaItemForm = T['io.flow.internal.v0.models.amrutha_item_form'];
|
|
31199
|
+
export const amruthaItemType = T['io.flow.internal.v0.enums.amrutha_item_type'];
|
|
30179
31200
|
export const anirbanItem = T['io.flow.internal.v0.models.anirban_item'];
|
|
31201
|
+
export const anirbanItemDeleted = T['io.flow.internal.v0.models.anirban_item_deleted'];
|
|
30180
31202
|
export const anirbanItemForm = T['io.flow.internal.v0.models.anirban_item_form'];
|
|
30181
31203
|
export const anirbanItemType = T['io.flow.internal.v0.enums.anirban_item_type'];
|
|
31204
|
+
export const anirbanItemUpserted = T['io.flow.internal.v0.models.anirban_item_upserted'];
|
|
30182
31205
|
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
31206
|
+
export const anshItemDeleted = T['io.flow.internal.v0.models.ansh_item_deleted'];
|
|
30183
31207
|
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
30184
31208
|
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
31209
|
+
export const anshItemUpserted = T['io.flow.internal.v0.models.ansh_item_upserted'];
|
|
30185
31210
|
export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
|
|
30186
31211
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30187
31212
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
@@ -30204,6 +31229,10 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
30204
31229
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
30205
31230
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
30206
31231
|
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
31232
|
+
export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
|
|
31233
|
+
export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
|
|
31234
|
+
export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
|
|
31235
|
+
export const b2BTaxRateType = T['io.flow.internal.v0.enums.b2b_tax_rate_type'];
|
|
30207
31236
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
30208
31237
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
30209
31238
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
@@ -30269,6 +31298,7 @@ export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_eve
|
|
|
30269
31298
|
export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
|
|
30270
31299
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30271
31300
|
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
31301
|
+
export const cafe24MarketsWebhook = T['io.flow.internal.v0.models.cafe24_markets_webhook'];
|
|
30272
31302
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30273
31303
|
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
30274
31304
|
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
@@ -30443,6 +31473,7 @@ export const classificationDecision = T['io.flow.internal.v0.enums.classificatio
|
|
|
30443
31473
|
export const classificationDetails = T['io.flow.internal.v0.models.classification_details'];
|
|
30444
31474
|
export const classificationError = T['io.flow.internal.v0.models.classification_error'];
|
|
30445
31475
|
export const classificationErrorCode = T['io.flow.internal.v0.enums.classification_error_code'];
|
|
31476
|
+
export const classificationFailureReason = T['io.flow.internal.v0.enums.classification_failure_reason'];
|
|
30446
31477
|
export const classificationForm = T['io.flow.internal.v0.unions.classification_form'];
|
|
30447
31478
|
export const classificationFormWrapper = T['io.flow.internal.v0.models.classification_form_wrapper'];
|
|
30448
31479
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
@@ -30680,7 +31711,6 @@ export const featureDefaultValue = T['io.flow.internal.v0.unions.feature_default
|
|
|
30680
31711
|
export const featureDeleted = T['io.flow.internal.v0.models.feature_deleted'];
|
|
30681
31712
|
export const featureForm = T['io.flow.internal.v0.models.feature_form'];
|
|
30682
31713
|
export const featureGeoForm = T['io.flow.internal.v0.models.feature_geo_form'];
|
|
30683
|
-
export const featureIdReference = T['io.flow.internal.v0.models.feature_id_reference'];
|
|
30684
31714
|
export const featureReference = T['io.flow.internal.v0.models.feature_reference'];
|
|
30685
31715
|
export const featureReleaseForm = T['io.flow.internal.v0.models.feature_release_form'];
|
|
30686
31716
|
export const featureRule = T['io.flow.internal.v0.unions.feature_rule'];
|
|
@@ -30798,6 +31828,11 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
30798
31828
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
30799
31829
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
30800
31830
|
export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
|
|
31831
|
+
export const gabrielItem = T['io.flow.internal.v0.models.gabriel_item'];
|
|
31832
|
+
export const gabrielItemDeleted = T['io.flow.internal.v0.models.gabriel_item_deleted'];
|
|
31833
|
+
export const gabrielItemForm = T['io.flow.internal.v0.models.gabriel_item_form'];
|
|
31834
|
+
export const gabrielItemType = T['io.flow.internal.v0.enums.gabriel_item_type'];
|
|
31835
|
+
export const gabrielItemUpserted = T['io.flow.internal.v0.models.gabriel_item_upserted'];
|
|
30801
31836
|
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
30802
31837
|
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
30803
31838
|
export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
|
|
@@ -30833,9 +31868,12 @@ export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models
|
|
|
30833
31868
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
30834
31869
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
30835
31870
|
export const hoseinItem = T['io.flow.internal.v0.models.hosein_item'];
|
|
31871
|
+
export const hoseinItemDeleted = T['io.flow.internal.v0.models.hosein_item_deleted'];
|
|
30836
31872
|
export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
|
|
30837
31873
|
export const hoseinItemType = T['io.flow.internal.v0.enums.hosein_item_type'];
|
|
31874
|
+
export const hoseinItemUpserted = T['io.flow.internal.v0.models.hosein_item_upserted'];
|
|
30838
31875
|
export const hs6 = T['io.flow.internal.v0.models.hs6'];
|
|
31876
|
+
export const hs6CodeSource = T['io.flow.internal.v0.enums.hs6_code_source'];
|
|
30839
31877
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
30840
31878
|
export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
|
|
30841
31879
|
export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
|
|
@@ -30963,6 +32001,10 @@ export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'
|
|
|
30963
32001
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
30964
32002
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
30965
32003
|
export const lastFailureSummary = T['io.flow.internal.v0.models.last_failure_summary'];
|
|
32004
|
+
export const ledgerReport = T['io.flow.internal.v0.models.ledger_report'];
|
|
32005
|
+
export const ledgerReportType = T['io.flow.internal.v0.enums.ledger_report_type'];
|
|
32006
|
+
export const ledgerReportUrl = T['io.flow.internal.v0.models.ledger_report_url'];
|
|
32007
|
+
export const ledgerReportUrlType = T['io.flow.internal.v0.enums.ledger_report_url_type'];
|
|
30966
32008
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
30967
32009
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
30968
32010
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -31042,8 +32084,10 @@ export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
|
31042
32084
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31043
32085
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31044
32086
|
export const niallItem = T['io.flow.internal.v0.models.niall_item'];
|
|
32087
|
+
export const niallItemDeleted = T['io.flow.internal.v0.models.niall_item_deleted'];
|
|
31045
32088
|
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
31046
32089
|
export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
|
|
32090
|
+
export const niallItemUpserted = T['io.flow.internal.v0.models.niall_item_upserted'];
|
|
31047
32091
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31048
32092
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31049
32093
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
@@ -31130,9 +32174,6 @@ export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organ
|
|
|
31130
32174
|
export const organizationBankAccountDeleted = T['io.flow.internal.v0.models.organization_bank_account_deleted'];
|
|
31131
32175
|
export const organizationBankAccountUpserted = T['io.flow.internal.v0.models.organization_bank_account_upserted'];
|
|
31132
32176
|
export const organizationBillingStatement = T['io.flow.internal.v0.models.organization_billing_statement'];
|
|
31133
|
-
export const organizationBooleanValue = T['io.flow.internal.v0.models.organization_boolean_value'];
|
|
31134
|
-
export const organizationBooleanValueDeleted = T['io.flow.internal.v0.models.organization_boolean_value_deleted'];
|
|
31135
|
-
export const organizationBooleanValueUpserted = T['io.flow.internal.v0.models.organization_boolean_value_upserted'];
|
|
31136
32177
|
export const organizationBusinessEntity = T['io.flow.internal.v0.models.organization_business_entity'];
|
|
31137
32178
|
export const organizationBusinessEntityDeleted = T['io.flow.internal.v0.models.organization_business_entity_deleted'];
|
|
31138
32179
|
export const organizationBusinessEntityUpserted = T['io.flow.internal.v0.models.organization_business_entity_upserted'];
|
|
@@ -31289,6 +32330,16 @@ export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form']
|
|
|
31289
32330
|
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31290
32331
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31291
32332
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
32333
|
+
export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
|
|
32334
|
+
export const preonboardingClassificationPlatform = T['io.flow.internal.v0.enums.preonboarding_classification_platform'];
|
|
32335
|
+
export const preonboardingClassificationRabbitmqEnvelope = T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'];
|
|
32336
|
+
export const preonboardingClassificationRabbitmqMessage = T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'];
|
|
32337
|
+
export const preonboardingClassificationRequest = T['io.flow.internal.v0.models.preonboarding_classification_request'];
|
|
32338
|
+
export const preonboardingClassificationResult = T['io.flow.internal.v0.models.preonboarding_classification_result'];
|
|
32339
|
+
export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preonboarding_classification_type'];
|
|
32340
|
+
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
32341
|
+
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32342
|
+
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
31292
32343
|
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
31293
32344
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31294
32345
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
@@ -31341,6 +32392,7 @@ export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_po
|
|
|
31341
32392
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
31342
32393
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
31343
32394
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
32395
|
+
export const proofOfPostingSynthetic = T['io.flow.internal.v0.models.proof_of_posting_synthetic'];
|
|
31344
32396
|
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
31345
32397
|
export const pspDistribution = T['io.flow.internal.v0.models.psp_distribution'];
|
|
31346
32398
|
export const pspRoutingDistribution = T['io.flow.internal.v0.models.psp_routing_distribution'];
|
|
@@ -31412,6 +32464,7 @@ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
|
31412
32464
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
31413
32465
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
31414
32466
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
32467
|
+
export const reportAmountRange = T['io.flow.internal.v0.models.report_amount_range'];
|
|
31415
32468
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31416
32469
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31417
32470
|
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
@@ -31542,8 +32595,10 @@ export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_recor
|
|
|
31542
32595
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
31543
32596
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
31544
32597
|
export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
|
|
32598
|
+
export const rohanItemDeleted = T['io.flow.internal.v0.models.rohan_item_deleted'];
|
|
31545
32599
|
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
31546
32600
|
export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
|
|
32601
|
+
export const rohanItemUpserted = T['io.flow.internal.v0.models.rohan_item_upserted'];
|
|
31547
32602
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
31548
32603
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
31549
32604
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -31552,8 +32607,10 @@ export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_re
|
|
|
31552
32607
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
31553
32608
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
31554
32609
|
export const sarveshItem = T['io.flow.internal.v0.models.sarvesh_item'];
|
|
32610
|
+
export const sarveshItemDeleted = T['io.flow.internal.v0.models.sarvesh_item_deleted'];
|
|
31555
32611
|
export const sarveshItemForm = T['io.flow.internal.v0.models.sarvesh_item_form'];
|
|
31556
32612
|
export const sarveshItemType = T['io.flow.internal.v0.enums.sarvesh_item_type'];
|
|
32613
|
+
export const sarveshItemUpserted = T['io.flow.internal.v0.models.sarvesh_item_upserted'];
|
|
31557
32614
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
31558
32615
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
31559
32616
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -31577,6 +32634,9 @@ export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_s
|
|
|
31577
32634
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31578
32635
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31579
32636
|
export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
32637
|
+
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
32638
|
+
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
32639
|
+
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
31580
32640
|
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
31581
32641
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
31582
32642
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
@@ -31616,6 +32676,7 @@ export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_
|
|
|
31616
32676
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
31617
32677
|
export const shopifyMarketsOrderVersionWithShopId = T['io.flow.internal.v0.models.shopify_markets_order_version_with_shop_id'];
|
|
31618
32678
|
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
32679
|
+
export const shopifyMarketsOrganizationOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics'];
|
|
31619
32680
|
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
31620
32681
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
31621
32682
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
@@ -31690,6 +32751,9 @@ export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_de
|
|
|
31690
32751
|
export const shopifyStripeEvent = T['io.flow.internal.v0.models.shopify_stripe_event'];
|
|
31691
32752
|
export const shopifyTaxonomyAlignmentConfig = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config'];
|
|
31692
32753
|
export const shopifyTaxonomyAlignmentConfigForm = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form'];
|
|
32754
|
+
export const shopifyTestOrder = T['io.flow.internal.v0.models.shopify_test_order'];
|
|
32755
|
+
export const shopifyTestOrderDeleted = T['io.flow.internal.v0.models.shopify_test_order_deleted'];
|
|
32756
|
+
export const shopifyTestOrderUpserted = T['io.flow.internal.v0.models.shopify_test_order_upserted'];
|
|
31693
32757
|
export const shopperBreakdown = T['io.flow.internal.v0.models.shopper_breakdown'];
|
|
31694
32758
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
31695
32759
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|
|
@@ -31796,6 +32860,7 @@ export const taxTransaction = T['io.flow.internal.v0.models.tax_transaction'];
|
|
|
31796
32860
|
export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transaction_deleted'];
|
|
31797
32861
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
31798
32862
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
32863
|
+
export const taxTypeTotal = T['io.flow.internal.v0.models.tax_type_total'];
|
|
31799
32864
|
export const taxonomyAlignmentCheckResult = T['io.flow.internal.v0.models.taxonomy_alignment_check_result'];
|
|
31800
32865
|
export const taxonomyCategory = PropTypes.any;
|
|
31801
32866
|
export const taxonomyCategoryClassificationAlignment = T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'];
|