@flowio/api-internal-prop-types 9.24.128 → 9.24.130
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 +1033 -95
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1033 -95
- package/src/api-internal.js +1296 -281
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,14 @@ 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_needs_action_attributes'] = PropTypes.exact({
|
|
71
|
+
reason_code: PropTypes.string.isRequired,
|
|
72
|
+
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
73
|
+
require_msds: PropTypes.bool,
|
|
74
|
+
});
|
|
75
|
+
|
|
56
76
|
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
57
77
|
T['io.flow.fraud.v0.enums.fraud_email_rule_decision'] = PropTypes.oneOf(['approved', 'declined']);
|
|
58
78
|
|
|
@@ -106,7 +126,22 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
106
126
|
weight: PropTypes.number.isRequired,
|
|
107
127
|
});
|
|
108
128
|
|
|
109
|
-
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
129
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
130
|
+
|
|
131
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
132
|
+
base: PropTypes.number,
|
|
133
|
+
local: PropTypes.number,
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_estimate'] = PropTypes.exact({
|
|
137
|
+
base: PropTypes.number,
|
|
138
|
+
local: PropTypes.number,
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'] = PropTypes.exact({
|
|
142
|
+
base: PropTypes.number,
|
|
143
|
+
local: PropTypes.number,
|
|
144
|
+
});
|
|
110
145
|
|
|
111
146
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
112
147
|
id: PropTypes.string.isRequired,
|
|
@@ -118,6 +153,8 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
118
153
|
transaction_id: PropTypes.string.isRequired,
|
|
119
154
|
});
|
|
120
155
|
|
|
156
|
+
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
157
|
+
|
|
121
158
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
122
159
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
123
160
|
id: PropTypes.string,
|
|
@@ -167,7 +204,7 @@ T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.
|
|
|
167
204
|
id: PropTypes.string.isRequired,
|
|
168
205
|
});
|
|
169
206
|
|
|
170
|
-
T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
|
|
207
|
+
T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv', 'pdf']);
|
|
171
208
|
|
|
172
209
|
T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
|
|
173
210
|
type: T['io.flow.billing.v0.enums.statement_attachment_type'].isRequired,
|
|
@@ -501,6 +538,11 @@ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
|
|
|
501
538
|
label: PropTypes.string.isRequired,
|
|
502
539
|
});
|
|
503
540
|
|
|
541
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_applications_summary'] = PropTypes.exact({
|
|
542
|
+
discriminator: PropTypes.oneOf(['common_merchant_applications_summary']).isRequired,
|
|
543
|
+
total: PropTypes.number.isRequired,
|
|
544
|
+
});
|
|
545
|
+
|
|
504
546
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'] = PropTypes.exact({
|
|
505
547
|
discriminator: PropTypes.oneOf(['shopify_merchant_applications_summary']).isRequired,
|
|
506
548
|
total: PropTypes.number.isRequired,
|
|
@@ -508,6 +550,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary']
|
|
|
508
550
|
|
|
509
551
|
T['io.flow.merchant.onboarding.v0.unions.merchant_applications_summary'] = PropTypes.oneOfType([
|
|
510
552
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'],
|
|
553
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_applications_summary'],
|
|
511
554
|
]);
|
|
512
555
|
|
|
513
556
|
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'] = PropTypes.exact({
|
|
@@ -530,12 +573,6 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'] = P
|
|
|
530
573
|
to: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_time'].isRequired,
|
|
531
574
|
});
|
|
532
575
|
|
|
533
|
-
T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
534
|
-
amount: PropTypes.number,
|
|
535
|
-
currency: PropTypes.string,
|
|
536
|
-
});
|
|
537
|
-
|
|
538
|
-
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
539
576
|
T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'] = PropTypes.oneOf(['shopify_console', 'existing_3pl_integration', 'byo_integration']);
|
|
540
577
|
|
|
541
578
|
T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
@@ -543,6 +580,13 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
543
580
|
description: PropTypes.string,
|
|
544
581
|
});
|
|
545
582
|
|
|
583
|
+
T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
584
|
+
amount: PropTypes.number,
|
|
585
|
+
currency: PropTypes.string,
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
589
|
+
|
|
546
590
|
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
547
591
|
decimal: PropTypes.string.isRequired,
|
|
548
592
|
group: PropTypes.string.isRequired,
|
|
@@ -648,6 +692,18 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
648
692
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
649
693
|
]);
|
|
650
694
|
|
|
695
|
+
T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
|
|
696
|
+
|
|
697
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
|
|
698
|
+
code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
|
|
699
|
+
message: PropTypes.string.isRequired,
|
|
700
|
+
});
|
|
701
|
+
|
|
702
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
|
|
703
|
+
order_id: PropTypes.number.isRequired,
|
|
704
|
+
shop_id: PropTypes.number.isRequired,
|
|
705
|
+
});
|
|
706
|
+
|
|
651
707
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
652
708
|
|
|
653
709
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -735,6 +791,11 @@ T['io.flow.token.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
735
791
|
id: PropTypes.string.isRequired,
|
|
736
792
|
});
|
|
737
793
|
|
|
794
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_unavailable'] = PropTypes.exact({
|
|
795
|
+
service: PropTypes.string.isRequired,
|
|
796
|
+
reason: PropTypes.string.isRequired,
|
|
797
|
+
});
|
|
798
|
+
|
|
738
799
|
T['io.flow.ratecard.v0.models.ratecard_rate_form'] = PropTypes.exact({
|
|
739
800
|
amount: PropTypes.number.isRequired,
|
|
740
801
|
weight: PropTypes.number.isRequired,
|
|
@@ -746,15 +807,7 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
746
807
|
weight: PropTypes.number.isRequired,
|
|
747
808
|
});
|
|
748
809
|
|
|
749
|
-
T['io.flow.
|
|
750
|
-
id: PropTypes.string.isRequired,
|
|
751
|
-
name: PropTypes.string.isRequired,
|
|
752
|
-
});
|
|
753
|
-
|
|
754
|
-
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
755
|
-
from: PropTypes.number.isRequired,
|
|
756
|
-
to: PropTypes.number.isRequired,
|
|
757
|
-
});
|
|
810
|
+
T['io.flow.label.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
|
|
758
811
|
|
|
759
812
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
760
813
|
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
@@ -1459,13 +1512,13 @@ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
|
|
|
1459
1512
|
number: PropTypes.string.isRequired,
|
|
1460
1513
|
});
|
|
1461
1514
|
|
|
1462
|
-
T['io.flow.channel.internal.v0.models.
|
|
1515
|
+
T['io.flow.channel.internal.v0.models.channel_organization_domains'] = PropTypes.exact({
|
|
1463
1516
|
internal: PropTypes.string.isRequired,
|
|
1464
|
-
|
|
1517
|
+
external: PropTypes.string.isRequired,
|
|
1465
1518
|
});
|
|
1466
1519
|
|
|
1467
1520
|
T['io.flow.channel.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
1468
|
-
domain: T['io.flow.channel.internal.v0.models.
|
|
1521
|
+
domain: T['io.flow.channel.internal.v0.models.channel_organization_domains'].isRequired,
|
|
1469
1522
|
token: PropTypes.string.isRequired,
|
|
1470
1523
|
});
|
|
1471
1524
|
|
|
@@ -3299,6 +3352,88 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3299
3352
|
notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
|
|
3300
3353
|
});
|
|
3301
3354
|
|
|
3355
|
+
T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
|
|
3356
|
+
|
|
3357
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
|
|
3358
|
+
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
3359
|
+
price: PropTypes.number.isRequired,
|
|
3360
|
+
});
|
|
3361
|
+
|
|
3362
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'] = PropTypes.exact({
|
|
3363
|
+
id: PropTypes.string.isRequired,
|
|
3364
|
+
key: PropTypes.string.isRequired,
|
|
3365
|
+
number: PropTypes.string.isRequired,
|
|
3366
|
+
});
|
|
3367
|
+
|
|
3368
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
3369
|
+
rate: PropTypes.number.isRequired,
|
|
3370
|
+
amount: PropTypes.number.isRequired,
|
|
3371
|
+
});
|
|
3372
|
+
|
|
3373
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip_form'] = PropTypes.exact({
|
|
3374
|
+
discriminator: PropTypes.oneOf(['tip']).isRequired,
|
|
3375
|
+
price: PropTypes.number.isRequired,
|
|
3376
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3377
|
+
});
|
|
3378
|
+
|
|
3379
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'] = PropTypes.exact({
|
|
3380
|
+
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
3381
|
+
price: PropTypes.number.isRequired,
|
|
3382
|
+
discount: PropTypes.number,
|
|
3383
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3384
|
+
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3385
|
+
});
|
|
3386
|
+
|
|
3387
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'] = PropTypes.exact({
|
|
3388
|
+
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
3389
|
+
item_number: PropTypes.string.isRequired,
|
|
3390
|
+
quantity: PropTypes.number.isRequired,
|
|
3391
|
+
unit_price: PropTypes.number.isRequired,
|
|
3392
|
+
unit_discount: PropTypes.number,
|
|
3393
|
+
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3394
|
+
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
3395
|
+
});
|
|
3396
|
+
|
|
3397
|
+
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form'] = PropTypes.oneOfType([
|
|
3398
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'],
|
|
3399
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'],
|
|
3400
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'],
|
|
3401
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip_form'],
|
|
3402
|
+
]);
|
|
3403
|
+
|
|
3404
|
+
T['io.flow.consumer.invoice.v0.models.credit_memo_form'] = PropTypes.exact({
|
|
3405
|
+
refund_id: PropTypes.string,
|
|
3406
|
+
refund_key: PropTypes.string,
|
|
3407
|
+
refund_identifier: PropTypes.string,
|
|
3408
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form']).isRequired,
|
|
3409
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
3410
|
+
});
|
|
3411
|
+
|
|
3412
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
|
|
3413
|
+
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
3414
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
|
|
3415
|
+
|
|
3416
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
|
|
3417
|
+
id: PropTypes.string.isRequired,
|
|
3418
|
+
number: PropTypes.string.isRequired,
|
|
3419
|
+
submitted_at: PropTypes.string.isRequired,
|
|
3420
|
+
});
|
|
3421
|
+
|
|
3422
|
+
T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
|
|
3423
|
+
|
|
3424
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_document'] = PropTypes.exact({
|
|
3425
|
+
type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'].isRequired,
|
|
3426
|
+
language: PropTypes.string.isRequired,
|
|
3427
|
+
url: PropTypes.string.isRequired,
|
|
3428
|
+
});
|
|
3429
|
+
|
|
3430
|
+
T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact({
|
|
3431
|
+
id: PropTypes.string.isRequired,
|
|
3432
|
+
key: PropTypes.string.isRequired,
|
|
3433
|
+
number: PropTypes.string.isRequired,
|
|
3434
|
+
});
|
|
3435
|
+
|
|
3436
|
+
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'] = PropTypes.oneOf(['pending', 'available', 'invalid']);
|
|
3302
3437
|
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3303
3438
|
|
|
3304
3439
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -3340,6 +3475,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company
|
|
|
3340
3475
|
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
3341
3476
|
});
|
|
3342
3477
|
|
|
3478
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_organization_order_metrics'] = PropTypes.exact({
|
|
3479
|
+
organization_id: PropTypes.string.isRequired,
|
|
3480
|
+
shopify_order_count: PropTypes.number.isRequired,
|
|
3481
|
+
internal_order_count: PropTypes.number.isRequired,
|
|
3482
|
+
discrepancy_count: PropTypes.number,
|
|
3483
|
+
});
|
|
3484
|
+
|
|
3343
3485
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
3344
3486
|
total_order_count: PropTypes.number.isRequired,
|
|
3345
3487
|
});
|
|
@@ -3392,6 +3534,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3392
3534
|
'unsupported_virtual_goods',
|
|
3393
3535
|
'non_matching_currencies',
|
|
3394
3536
|
'unsupported_order_edit',
|
|
3537
|
+
'order_allocation_duties_mismatch',
|
|
3395
3538
|
'order_missing',
|
|
3396
3539
|
]);
|
|
3397
3540
|
|
|
@@ -3470,29 +3613,6 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3470
3613
|
'logistics_team',
|
|
3471
3614
|
]);
|
|
3472
3615
|
|
|
3473
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3474
|
-
id: PropTypes.string.isRequired,
|
|
3475
|
-
organization_id: PropTypes.string.isRequired,
|
|
3476
|
-
order_number: PropTypes.string.isRequired,
|
|
3477
|
-
channel_id: PropTypes.string.isRequired,
|
|
3478
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
3479
|
-
payment_request_id: PropTypes.string,
|
|
3480
|
-
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3481
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3482
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3483
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3484
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3485
|
-
order_created_at: PropTypes.string,
|
|
3486
|
-
order_updated_at: PropTypes.string,
|
|
3487
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3488
|
-
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
3489
|
-
});
|
|
3490
|
-
|
|
3491
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3492
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3493
|
-
external_order: PropTypes.object.isRequired,
|
|
3494
|
-
});
|
|
3495
|
-
|
|
3496
3616
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3497
3617
|
message: PropTypes.string.isRequired,
|
|
3498
3618
|
reason: PropTypes.string.isRequired,
|
|
@@ -7237,6 +7357,22 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7237
7357
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7238
7358
|
});
|
|
7239
7359
|
|
|
7360
|
+
T['io.flow.restrictions.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
7361
|
+
|
|
7362
|
+
T['io.flow.restrictions.v0.models.needs_action_attributes'] = PropTypes.exact({
|
|
7363
|
+
reason_code: PropTypes.string.isRequired,
|
|
7364
|
+
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7365
|
+
require_msds: PropTypes.bool,
|
|
7366
|
+
});
|
|
7367
|
+
|
|
7368
|
+
T['io.flow.restrictions.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
|
|
7369
|
+
|
|
7370
|
+
T['io.flow.restrictions.v0.models.reasons_per_region'] = PropTypes.exact({
|
|
7371
|
+
region: PropTypes.string.isRequired,
|
|
7372
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7373
|
+
review_status: T['io.flow.restrictions.v0.enums.restricted_review_status'].isRequired,
|
|
7374
|
+
});
|
|
7375
|
+
|
|
7240
7376
|
T['io.flow.ftp.v0.models.ftp_user'] = PropTypes.exact({
|
|
7241
7377
|
username: PropTypes.string.isRequired,
|
|
7242
7378
|
password: PropTypes.string,
|
|
@@ -8057,12 +8193,6 @@ T['io.flow.label.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
|
8057
8193
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8058
8194
|
});
|
|
8059
8195
|
|
|
8060
|
-
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
8061
|
-
id: PropTypes.string.isRequired,
|
|
8062
|
-
name: PropTypes.string.isRequired,
|
|
8063
|
-
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
8064
|
-
});
|
|
8065
|
-
|
|
8066
8196
|
T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
8067
8197
|
postals: PropTypes.arrayOf(PropTypes.string),
|
|
8068
8198
|
provinces: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -8155,6 +8285,7 @@ T['io.flow.merchant.onboarding.v0.models.merchant_info'] = PropTypes.exact({
|
|
|
8155
8285
|
region: T['io.flow.merchant.onboarding.v0.enums.region_type'],
|
|
8156
8286
|
region_value: PropTypes.string,
|
|
8157
8287
|
category_code: PropTypes.string,
|
|
8288
|
+
description: PropTypes.string,
|
|
8158
8289
|
});
|
|
8159
8290
|
|
|
8160
8291
|
T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
|
|
@@ -8164,8 +8295,14 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form']
|
|
|
8164
8295
|
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'],
|
|
8165
8296
|
});
|
|
8166
8297
|
|
|
8298
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_put_form'] = PropTypes.exact({
|
|
8299
|
+
discriminator: PropTypes.oneOf(['common_merchant_application_put_form']).isRequired,
|
|
8300
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'],
|
|
8301
|
+
});
|
|
8302
|
+
|
|
8167
8303
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
|
|
8168
8304
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
8305
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_put_form'],
|
|
8169
8306
|
]);
|
|
8170
8307
|
|
|
8171
8308
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
@@ -8432,6 +8569,62 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8432
8569
|
id: PropTypes.string.isRequired,
|
|
8433
8570
|
});
|
|
8434
8571
|
|
|
8572
|
+
T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
|
|
8573
|
+
discriminator: PropTypes.oneOf(['gabriel_item_deleted']).isRequired,
|
|
8574
|
+
event_id: PropTypes.string.isRequired,
|
|
8575
|
+
timestamp: PropTypes.string.isRequired,
|
|
8576
|
+
id: PropTypes.string.isRequired,
|
|
8577
|
+
});
|
|
8578
|
+
|
|
8579
|
+
T['io.flow.internal.v0.models.ansh_item_deleted'] = PropTypes.exact({
|
|
8580
|
+
discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
|
|
8581
|
+
event_id: PropTypes.string.isRequired,
|
|
8582
|
+
timestamp: PropTypes.string.isRequired,
|
|
8583
|
+
id: PropTypes.string.isRequired,
|
|
8584
|
+
});
|
|
8585
|
+
|
|
8586
|
+
T['io.flow.internal.v0.models.aldo_item_deleted'] = PropTypes.exact({
|
|
8587
|
+
discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
|
|
8588
|
+
event_id: PropTypes.string.isRequired,
|
|
8589
|
+
timestamp: PropTypes.string.isRequired,
|
|
8590
|
+
id: PropTypes.string.isRequired,
|
|
8591
|
+
});
|
|
8592
|
+
|
|
8593
|
+
T['io.flow.internal.v0.models.rohan_item_deleted'] = PropTypes.exact({
|
|
8594
|
+
discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
|
|
8595
|
+
event_id: PropTypes.string.isRequired,
|
|
8596
|
+
timestamp: PropTypes.string.isRequired,
|
|
8597
|
+
id: PropTypes.string.isRequired,
|
|
8598
|
+
});
|
|
8599
|
+
|
|
8600
|
+
T['io.flow.internal.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
8601
|
+
discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
|
|
8602
|
+
event_id: PropTypes.string.isRequired,
|
|
8603
|
+
timestamp: PropTypes.string.isRequired,
|
|
8604
|
+
id: PropTypes.string.isRequired,
|
|
8605
|
+
});
|
|
8606
|
+
|
|
8607
|
+
T['io.flow.internal.v0.models.hosein_item_deleted'] = PropTypes.exact({
|
|
8608
|
+
discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
|
|
8609
|
+
event_id: PropTypes.string.isRequired,
|
|
8610
|
+
timestamp: PropTypes.string.isRequired,
|
|
8611
|
+
id: PropTypes.string.isRequired,
|
|
8612
|
+
});
|
|
8613
|
+
|
|
8614
|
+
T['io.flow.internal.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
|
|
8615
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
|
|
8616
|
+
event_id: PropTypes.string.isRequired,
|
|
8617
|
+
timestamp: PropTypes.string.isRequired,
|
|
8618
|
+
id: PropTypes.string.isRequired,
|
|
8619
|
+
});
|
|
8620
|
+
|
|
8621
|
+
T['io.flow.internal.v0.models.anirban_item_deleted'] = PropTypes.exact({
|
|
8622
|
+
discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
|
|
8623
|
+
event_id: PropTypes.string.isRequired,
|
|
8624
|
+
timestamp: PropTypes.string.isRequired,
|
|
8625
|
+
id: PropTypes.string.isRequired,
|
|
8626
|
+
});
|
|
8627
|
+
|
|
8435
8628
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8436
8629
|
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8437
8630
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9798,6 +9991,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9798
9991
|
'order_edit',
|
|
9799
9992
|
'mixed_fulfilment_non_lvg',
|
|
9800
9993
|
'lvg_refund',
|
|
9994
|
+
'us_inbound_tax_refund',
|
|
9801
9995
|
'order_cancellation_above_de_min',
|
|
9802
9996
|
'wyol_shipment_above_de_min',
|
|
9803
9997
|
'full_refund_without_shipment',
|
|
@@ -9807,6 +10001,10 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9807
10001
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
9808
10002
|
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
9809
10003
|
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
10004
|
+
local_currency: PropTypes.string,
|
|
10005
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'],
|
|
10006
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_estimate'],
|
|
10007
|
+
delta: T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'],
|
|
9810
10008
|
});
|
|
9811
10009
|
|
|
9812
10010
|
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'] = PropTypes.exact({
|
|
@@ -10629,6 +10827,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = Prop
|
|
|
10629
10827
|
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
10630
10828
|
});
|
|
10631
10829
|
|
|
10830
|
+
T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics'] = PropTypes.exact({
|
|
10831
|
+
organization_id: PropTypes.string.isRequired,
|
|
10832
|
+
shopify_order_count: PropTypes.number.isRequired,
|
|
10833
|
+
internal_order_count: PropTypes.number.isRequired,
|
|
10834
|
+
discrepancy_count: PropTypes.number,
|
|
10835
|
+
});
|
|
10836
|
+
|
|
10632
10837
|
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
10633
10838
|
total_order_count: PropTypes.number.isRequired,
|
|
10634
10839
|
});
|
|
@@ -10821,6 +11026,22 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
10821
11026
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10822
11027
|
});
|
|
10823
11028
|
|
|
11029
|
+
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11030
|
+
id: PropTypes.string.isRequired,
|
|
11031
|
+
name: PropTypes.string.isRequired,
|
|
11032
|
+
});
|
|
11033
|
+
|
|
11034
|
+
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
11035
|
+
from: PropTypes.number.isRequired,
|
|
11036
|
+
to: PropTypes.number.isRequired,
|
|
11037
|
+
});
|
|
11038
|
+
|
|
11039
|
+
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
11040
|
+
id: PropTypes.string.isRequired,
|
|
11041
|
+
name: PropTypes.string.isRequired,
|
|
11042
|
+
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
11043
|
+
});
|
|
11044
|
+
|
|
10824
11045
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10825
11046
|
|
|
10826
11047
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -11003,6 +11224,7 @@ T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
|
11003
11224
|
T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
11004
11225
|
lvg: PropTypes.bool.isRequired,
|
|
11005
11226
|
manual: PropTypes.bool.isRequired,
|
|
11227
|
+
managed_pricing: PropTypes.bool,
|
|
11006
11228
|
});
|
|
11007
11229
|
|
|
11008
11230
|
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
@@ -11095,23 +11317,12 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
11095
11317
|
oldest_pv_product_date_transacting: PropTypes.string.isRequired,
|
|
11096
11318
|
oldest_pc_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11097
11319
|
oldest_pc_product_date_transacting: PropTypes.string.isRequired,
|
|
11098
|
-
num_orgs_setup_complete_prs: PropTypes.number.isRequired,
|
|
11099
|
-
num_products_setup_complete_prs: PropTypes.number.isRequired,
|
|
11100
|
-
num_orgs_transacting_prs: PropTypes.number.isRequired,
|
|
11101
|
-
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
11102
|
-
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11103
|
-
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
11104
11320
|
percent_products_reviewed_transacting: PropTypes.number,
|
|
11105
11321
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11106
11322
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11107
11323
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11108
11324
|
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11109
|
-
num_pr_inflow_net_new: PropTypes.number.isRequired,
|
|
11110
|
-
num_pr_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11111
|
-
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11112
|
-
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11113
11325
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11114
|
-
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11115
11326
|
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11116
11327
|
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11117
11328
|
num_products_with_fs_result: PropTypes.number,
|
|
@@ -11154,7 +11365,7 @@ T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTy
|
|
|
11154
11365
|
is_rule_active: PropTypes.bool,
|
|
11155
11366
|
});
|
|
11156
11367
|
|
|
11157
|
-
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['
|
|
11368
|
+
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11158
11369
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11159
11370
|
|
|
11160
11371
|
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
@@ -11168,96 +11379,21 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
|
11168
11379
|
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
11169
11380
|
});
|
|
11170
11381
|
|
|
11171
|
-
T['io.flow.
|
|
11172
|
-
name: PropTypes.string.isRequired,
|
|
11173
|
-
full_name: PropTypes.string.isRequired,
|
|
11174
|
-
});
|
|
11382
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11175
11383
|
|
|
11176
|
-
T['io.flow.
|
|
11177
|
-
|
|
11178
|
-
|
|
11179
|
-
|
|
11180
|
-
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
11181
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11182
|
-
highest_value_item_number: PropTypes.string,
|
|
11183
|
-
updated_at: PropTypes.string.isRequired,
|
|
11184
|
-
deleted_at: PropTypes.string,
|
|
11384
|
+
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11385
|
+
pending_restriction_count: PropTypes.number.isRequired,
|
|
11386
|
+
pending_verification_count: PropTypes.number.isRequired,
|
|
11387
|
+
pending_classification_count: PropTypes.number.isRequired,
|
|
11185
11388
|
});
|
|
11186
11389
|
|
|
11187
|
-
T['io.flow.
|
|
11188
|
-
id: PropTypes.number.isRequired,
|
|
11189
|
-
handle: PropTypes.string.isRequired,
|
|
11190
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
11191
|
-
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
11192
|
-
title: PropTypes.string.isRequired,
|
|
11193
|
-
vendor: PropTypes.string,
|
|
11194
|
-
body_html: PropTypes.string,
|
|
11195
|
-
product_type: PropTypes.string,
|
|
11196
|
-
status: PropTypes.string,
|
|
11197
|
-
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
11198
|
-
tags: PropTypes.string,
|
|
11199
|
-
template_suffix: PropTypes.string,
|
|
11200
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
11201
|
-
published_at: PropTypes.string,
|
|
11202
|
-
created_at: PropTypes.string.isRequired,
|
|
11203
|
-
updated_at: PropTypes.string.isRequired,
|
|
11204
|
-
has_variants_that_requires_components: PropTypes.bool,
|
|
11205
|
-
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
11206
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
11207
|
-
});
|
|
11390
|
+
T['io.flow.restrictions.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
|
|
11208
11391
|
|
|
11209
|
-
T['io.flow.
|
|
11210
|
-
|
|
11211
|
-
|
|
11212
|
-
|
|
11213
|
-
T['io.flow.
|
|
11214
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11215
|
-
});
|
|
11216
|
-
|
|
11217
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11218
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11219
|
-
deleted_at: PropTypes.string,
|
|
11220
|
-
});
|
|
11221
|
-
|
|
11222
|
-
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11223
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11224
|
-
deleted_at: PropTypes.string,
|
|
11225
|
-
});
|
|
11226
|
-
|
|
11227
|
-
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
11228
|
-
id: PropTypes.string.isRequired,
|
|
11229
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11230
|
-
domain: PropTypes.string.isRequired,
|
|
11231
|
-
api_version: PropTypes.string.isRequired,
|
|
11232
|
-
});
|
|
11233
|
-
|
|
11234
|
-
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
11235
|
-
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
11236
|
-
event_id: PropTypes.string.isRequired,
|
|
11237
|
-
timestamp: PropTypes.string.isRequired,
|
|
11238
|
-
organization: PropTypes.string.isRequired,
|
|
11239
|
-
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
11240
|
-
});
|
|
11241
|
-
|
|
11242
|
-
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
11243
|
-
id: PropTypes.string.isRequired,
|
|
11244
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11245
|
-
});
|
|
11246
|
-
|
|
11247
|
-
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
11248
|
-
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
11249
|
-
event_id: PropTypes.string.isRequired,
|
|
11250
|
-
timestamp: PropTypes.string.isRequired,
|
|
11251
|
-
organization: PropTypes.string.isRequired,
|
|
11252
|
-
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
11253
|
-
});
|
|
11254
|
-
|
|
11255
|
-
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'smb', 'enterprise']);
|
|
11256
|
-
|
|
11257
|
-
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11258
|
-
pending_restriction_count: PropTypes.number.isRequired,
|
|
11259
|
-
pending_verification_count: PropTypes.number.isRequired,
|
|
11260
|
-
pending_classification_count: PropTypes.number.isRequired,
|
|
11392
|
+
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
11393
|
+
id: PropTypes.string.isRequired,
|
|
11394
|
+
name: PropTypes.string.isRequired,
|
|
11395
|
+
environment: T['io.flow.restrictions.v0.enums.restriction_environment'].isRequired,
|
|
11396
|
+
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
11261
11397
|
});
|
|
11262
11398
|
|
|
11263
11399
|
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
@@ -11391,6 +11527,11 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11391
11527
|
organization_id: PropTypes.string.isRequired,
|
|
11392
11528
|
});
|
|
11393
11529
|
|
|
11530
|
+
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11531
|
+
min: PropTypes.number,
|
|
11532
|
+
max: PropTypes.number,
|
|
11533
|
+
});
|
|
11534
|
+
|
|
11394
11535
|
T['io.flow.internal.v0.enums.source_type_filter'] = PropTypes.oneOf(['organization', 'channel']);
|
|
11395
11536
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11396
11537
|
|
|
@@ -11399,6 +11540,12 @@ T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
|
11399
11540
|
'global_e_united_kingdom',
|
|
11400
11541
|
'global_e_canada',
|
|
11401
11542
|
'global_e_netherlands',
|
|
11543
|
+
'uk_global_e_canada',
|
|
11544
|
+
'uk_global_e_netherlands',
|
|
11545
|
+
'uk_global_e_united_states',
|
|
11546
|
+
'ca_global_e_united_kingdom',
|
|
11547
|
+
'ca_global_e_netherlands',
|
|
11548
|
+
'ca_global_e_united_states',
|
|
11402
11549
|
]);
|
|
11403
11550
|
|
|
11404
11551
|
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
@@ -11438,6 +11585,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11438
11585
|
'trueup_overview',
|
|
11439
11586
|
'non_channel_payment_bank_account',
|
|
11440
11587
|
'scheduled_payment',
|
|
11588
|
+
'scheduled_payment_citi',
|
|
11441
11589
|
'account_quarterly_balances',
|
|
11442
11590
|
'invariants',
|
|
11443
11591
|
'payments',
|
|
@@ -11702,30 +11850,6 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11702
11850
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11703
11851
|
});
|
|
11704
11852
|
|
|
11705
|
-
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11706
|
-
|
|
11707
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11708
|
-
rule_id: PropTypes.string.isRequired,
|
|
11709
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11710
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11711
|
-
description: PropTypes.string,
|
|
11712
|
-
});
|
|
11713
|
-
|
|
11714
|
-
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11715
|
-
id: PropTypes.string.isRequired,
|
|
11716
|
-
rule_id: PropTypes.string.isRequired,
|
|
11717
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11718
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11719
|
-
description: PropTypes.string,
|
|
11720
|
-
});
|
|
11721
|
-
|
|
11722
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11723
|
-
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11724
|
-
event_id: PropTypes.string.isRequired,
|
|
11725
|
-
timestamp: PropTypes.string.isRequired,
|
|
11726
|
-
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11727
|
-
});
|
|
11728
|
-
|
|
11729
11853
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11730
11854
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11731
11855
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11817,6 +11941,205 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11817
11941
|
classification_model_id: PropTypes.string.isRequired,
|
|
11818
11942
|
});
|
|
11819
11943
|
|
|
11944
|
+
T['io.flow.sellability.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
|
|
11945
|
+
region: PropTypes.string.isRequired,
|
|
11946
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11947
|
+
});
|
|
11948
|
+
|
|
11949
|
+
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11950
|
+
|
|
11951
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11952
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11953
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11954
|
+
});
|
|
11955
|
+
|
|
11956
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11957
|
+
rule_id: PropTypes.string.isRequired,
|
|
11958
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11959
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11960
|
+
description: PropTypes.string,
|
|
11961
|
+
});
|
|
11962
|
+
|
|
11963
|
+
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11964
|
+
id: PropTypes.string.isRequired,
|
|
11965
|
+
rule_id: PropTypes.string.isRequired,
|
|
11966
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11967
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11968
|
+
description: PropTypes.string,
|
|
11969
|
+
});
|
|
11970
|
+
|
|
11971
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11972
|
+
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11973
|
+
event_id: PropTypes.string.isRequired,
|
|
11974
|
+
timestamp: PropTypes.string.isRequired,
|
|
11975
|
+
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11976
|
+
});
|
|
11977
|
+
|
|
11978
|
+
T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout']);
|
|
11979
|
+
|
|
11980
|
+
T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exact({
|
|
11981
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11982
|
+
regions_with_reasons: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_with_reasons']).isRequired,
|
|
11983
|
+
});
|
|
11984
|
+
|
|
11985
|
+
T['io.flow.sellability.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
11986
|
+
merchant_id: PropTypes.string,
|
|
11987
|
+
product_id: PropTypes.string.isRequired,
|
|
11988
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']).isRequired,
|
|
11989
|
+
needs_action_attributes: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_needs_action_attributes']),
|
|
11990
|
+
request_id: PropTypes.string,
|
|
11991
|
+
});
|
|
11992
|
+
|
|
11993
|
+
T['io.flow.internal.v0.enums.hs6_code_source'] = PropTypes.oneOf(['sellability', 'classification', 'human']);
|
|
11994
|
+
T['io.flow.sellability.v0.enums.sellability_result_error_code'] = PropTypes.oneOf(['insufficient_details', 'generic_error']);
|
|
11995
|
+
T['io.flow.sellability.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
|
|
11996
|
+
|
|
11997
|
+
T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
11998
|
+
discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
|
|
11999
|
+
sellability_result: T['io.flow.sellability.v0.models.product_sellability_result'],
|
|
12000
|
+
request_id: PropTypes.string.isRequired,
|
|
12001
|
+
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12002
|
+
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
12003
|
+
error_message: PropTypes.string,
|
|
12004
|
+
});
|
|
12005
|
+
|
|
12006
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12007
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12008
|
+
|
|
12009
|
+
T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.exact({
|
|
12010
|
+
id: PropTypes.string.isRequired,
|
|
12011
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12012
|
+
product_id: PropTypes.string.isRequired,
|
|
12013
|
+
channel: PropTypes.string.isRequired,
|
|
12014
|
+
hs6_code: PropTypes.string,
|
|
12015
|
+
probability: PropTypes.number,
|
|
12016
|
+
classification_decision: T['io.flow.internal.v0.enums.preonboarding_classification_decision'].isRequired,
|
|
12017
|
+
classification_type: T['io.flow.internal.v0.enums.preonboarding_classification_type'].isRequired,
|
|
12018
|
+
});
|
|
12019
|
+
|
|
12020
|
+
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12021
|
+
name: PropTypes.string.isRequired,
|
|
12022
|
+
full_name: PropTypes.string.isRequired,
|
|
12023
|
+
});
|
|
12024
|
+
|
|
12025
|
+
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
12026
|
+
organization_id: PropTypes.string.isRequired,
|
|
12027
|
+
number: PropTypes.string.isRequired,
|
|
12028
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12029
|
+
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
12030
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12031
|
+
highest_value_item_number: PropTypes.string,
|
|
12032
|
+
updated_at: PropTypes.string.isRequired,
|
|
12033
|
+
deleted_at: PropTypes.string,
|
|
12034
|
+
});
|
|
12035
|
+
|
|
12036
|
+
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
12037
|
+
id: PropTypes.number.isRequired,
|
|
12038
|
+
handle: PropTypes.string.isRequired,
|
|
12039
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
12040
|
+
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
12041
|
+
title: PropTypes.string.isRequired,
|
|
12042
|
+
vendor: PropTypes.string,
|
|
12043
|
+
body_html: PropTypes.string,
|
|
12044
|
+
product_type: PropTypes.string,
|
|
12045
|
+
status: PropTypes.string,
|
|
12046
|
+
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
12047
|
+
tags: PropTypes.string,
|
|
12048
|
+
template_suffix: PropTypes.string,
|
|
12049
|
+
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
12050
|
+
published_at: PropTypes.string,
|
|
12051
|
+
created_at: PropTypes.string.isRequired,
|
|
12052
|
+
updated_at: PropTypes.string.isRequired,
|
|
12053
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
12054
|
+
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12055
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
12056
|
+
});
|
|
12057
|
+
|
|
12058
|
+
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
12059
|
+
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
12060
|
+
});
|
|
12061
|
+
|
|
12062
|
+
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
12063
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12064
|
+
});
|
|
12065
|
+
|
|
12066
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12067
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12068
|
+
deleted_at: PropTypes.string,
|
|
12069
|
+
});
|
|
12070
|
+
|
|
12071
|
+
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12072
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12073
|
+
deleted_at: PropTypes.string,
|
|
12074
|
+
});
|
|
12075
|
+
|
|
12076
|
+
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
12077
|
+
id: PropTypes.string.isRequired,
|
|
12078
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12079
|
+
domain: PropTypes.string.isRequired,
|
|
12080
|
+
api_version: PropTypes.string.isRequired,
|
|
12081
|
+
});
|
|
12082
|
+
|
|
12083
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
12084
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
12085
|
+
event_id: PropTypes.string.isRequired,
|
|
12086
|
+
timestamp: PropTypes.string.isRequired,
|
|
12087
|
+
organization: PropTypes.string.isRequired,
|
|
12088
|
+
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
12089
|
+
});
|
|
12090
|
+
|
|
12091
|
+
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
12092
|
+
id: PropTypes.string.isRequired,
|
|
12093
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12094
|
+
});
|
|
12095
|
+
|
|
12096
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
12097
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
12098
|
+
event_id: PropTypes.string.isRequired,
|
|
12099
|
+
timestamp: PropTypes.string.isRequired,
|
|
12100
|
+
organization: PropTypes.string.isRequired,
|
|
12101
|
+
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
12102
|
+
});
|
|
12103
|
+
|
|
12104
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12105
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12106
|
+
product_id: PropTypes.string.isRequired,
|
|
12107
|
+
channel: PropTypes.string.isRequired,
|
|
12108
|
+
request_id: PropTypes.string.isRequired,
|
|
12109
|
+
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12110
|
+
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
12111
|
+
hs6_code: PropTypes.string,
|
|
12112
|
+
hs6_code_source: T['io.flow.internal.v0.enums.hs6_code_source'],
|
|
12113
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
|
|
12114
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
12115
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12116
|
+
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12117
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12118
|
+
fingerprint: PropTypes.string.isRequired,
|
|
12119
|
+
});
|
|
12120
|
+
|
|
12121
|
+
T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
|
|
12122
|
+
T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
|
|
12123
|
+
|
|
12124
|
+
T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'] = PropTypes.exact({
|
|
12125
|
+
MerchantId: PropTypes.string.isRequired,
|
|
12126
|
+
ProductName: PropTypes.string.isRequired,
|
|
12127
|
+
ProductDescription: PropTypes.string.isRequired,
|
|
12128
|
+
ProductIdInternal: PropTypes.string.isRequired,
|
|
12129
|
+
ProductIdExternal: PropTypes.string.isRequired,
|
|
12130
|
+
ProductGroupCode: PropTypes.string,
|
|
12131
|
+
ProductUrl: PropTypes.string,
|
|
12132
|
+
ProductImage: PropTypes.string,
|
|
12133
|
+
ProductAttributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
12134
|
+
Categories: PropTypes.arrayOf(PropTypes.string),
|
|
12135
|
+
PlatformId: T['io.flow.internal.v0.enums.preonboarding_classification_platform'].isRequired,
|
|
12136
|
+
});
|
|
12137
|
+
|
|
12138
|
+
T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'] = PropTypes.exact({
|
|
12139
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12140
|
+
message: T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'].isRequired,
|
|
12141
|
+
});
|
|
12142
|
+
|
|
11820
12143
|
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11821
12144
|
|
|
11822
12145
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
@@ -12379,10 +12702,6 @@ T['io.flow.internal.v0.models.organization_business_entity_deleted'] = PropTypes
|
|
|
12379
12702
|
id: PropTypes.string.isRequired,
|
|
12380
12703
|
});
|
|
12381
12704
|
|
|
12382
|
-
T['io.flow.internal.v0.models.feature_id_reference'] = PropTypes.exact({
|
|
12383
|
-
id: PropTypes.string.isRequired,
|
|
12384
|
-
});
|
|
12385
|
-
|
|
12386
12705
|
T['io.flow.billing.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
12387
12706
|
id: PropTypes.string.isRequired,
|
|
12388
12707
|
key: PropTypes.string.isRequired,
|
|
@@ -12601,7 +12920,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12601
12920
|
'fraud',
|
|
12602
12921
|
'logistics',
|
|
12603
12922
|
'payments',
|
|
12604
|
-
'shopify_markets',
|
|
12605
12923
|
'integration_partner',
|
|
12606
12924
|
'dtce',
|
|
12607
12925
|
'restrictions',
|
|
@@ -12761,6 +13079,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
12761
13079
|
health_score: PropTypes.number,
|
|
12762
13080
|
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
|
|
12763
13081
|
blocked_since: PropTypes.string,
|
|
13082
|
+
onboarding_segment: PropTypes.string,
|
|
12764
13083
|
});
|
|
12765
13084
|
|
|
12766
13085
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
@@ -13215,6 +13534,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
13215
13534
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
|
|
13216
13535
|
merchant_of_record_app_id: PropTypes.number,
|
|
13217
13536
|
total_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
13537
|
+
current_shipping_price_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
13218
13538
|
total_tip_received: PropTypes.string,
|
|
13219
13539
|
});
|
|
13220
13540
|
|
|
@@ -13421,6 +13741,25 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
|
|
|
13421
13741
|
code: PropTypes.string.isRequired,
|
|
13422
13742
|
});
|
|
13423
13743
|
|
|
13744
|
+
T['io.flow.internal.v0.enums.ledger_report_url_type'] = PropTypes.oneOf(['sharepoint', 's3']);
|
|
13745
|
+
|
|
13746
|
+
T['io.flow.internal.v0.models.ledger_report_url'] = PropTypes.exact({
|
|
13747
|
+
url: PropTypes.string.isRequired,
|
|
13748
|
+
type: T['io.flow.internal.v0.enums.ledger_report_url_type'].isRequired,
|
|
13749
|
+
});
|
|
13750
|
+
|
|
13751
|
+
T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf(['periodic_mor_jurisdiction_report']);
|
|
13752
|
+
|
|
13753
|
+
T['io.flow.internal.v0.models.ledger_report'] = PropTypes.exact({
|
|
13754
|
+
id: PropTypes.string.isRequired,
|
|
13755
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
13756
|
+
jurisdiction: PropTypes.string.isRequired,
|
|
13757
|
+
start_date: PropTypes.string.isRequired,
|
|
13758
|
+
end_date: PropTypes.string.isRequired,
|
|
13759
|
+
report_type: T['io.flow.internal.v0.enums.ledger_report_type'].isRequired,
|
|
13760
|
+
urls: PropTypes.arrayOf(T['io.flow.internal.v0.models.ledger_report_url']).isRequired,
|
|
13761
|
+
});
|
|
13762
|
+
|
|
13424
13763
|
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
13425
13764
|
amount: PropTypes.number.isRequired,
|
|
13426
13765
|
description: PropTypes.string,
|
|
@@ -13517,8 +13856,6 @@ T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
|
13517
13856
|
eori_number: PropTypes.string,
|
|
13518
13857
|
});
|
|
13519
13858
|
|
|
13520
|
-
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13521
|
-
|
|
13522
13859
|
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13523
13860
|
'consumer',
|
|
13524
13861
|
'to_non_registered_business',
|
|
@@ -13632,29 +13969,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13632
13969
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13633
13970
|
});
|
|
13634
13971
|
|
|
13635
|
-
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13636
|
-
id: PropTypes.string.isRequired,
|
|
13637
|
-
order_number: PropTypes.string.isRequired,
|
|
13638
|
-
created_at: PropTypes.string.isRequired,
|
|
13639
|
-
reference_id: PropTypes.string.isRequired,
|
|
13640
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13641
|
-
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
13642
|
-
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13643
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
13644
|
-
carrier_id: PropTypes.string,
|
|
13645
|
-
service_id: PropTypes.string,
|
|
13646
|
-
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13647
|
-
direction: T['io.flow.label.v0.enums.direction'],
|
|
13648
|
-
});
|
|
13649
|
-
|
|
13650
|
-
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
13651
|
-
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
13652
|
-
event_id: PropTypes.string.isRequired,
|
|
13653
|
-
timestamp: PropTypes.string.isRequired,
|
|
13654
|
-
organization: PropTypes.string.isRequired,
|
|
13655
|
-
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
13656
|
-
});
|
|
13657
|
-
|
|
13658
13972
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
13659
13973
|
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
13660
13974
|
name: PropTypes.string.isRequired,
|
|
@@ -13888,6 +14202,7 @@ T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
|
13888
14202
|
narrow: PropTypes.string,
|
|
13889
14203
|
});
|
|
13890
14204
|
|
|
14205
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13891
14206
|
T['io.flow.internal.v0.enums.commercial_invoice_version'] = PropTypes.oneOf(['v2_2_1']);
|
|
13892
14207
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13893
14208
|
|
|
@@ -13912,7 +14227,7 @@ T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
|
13912
14227
|
tariff_code: PropTypes.string.isRequired,
|
|
13913
14228
|
country_of_origin: PropTypes.string.isRequired,
|
|
13914
14229
|
display_country_of_origin: PropTypes.string.isRequired,
|
|
13915
|
-
|
|
14230
|
+
remitter: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
13916
14231
|
gst_paid_text: PropTypes.string.isRequired,
|
|
13917
14232
|
unit_price: PropTypes.number.isRequired,
|
|
13918
14233
|
vat_price: PropTypes.number.isRequired,
|
|
@@ -14450,6 +14765,8 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
|
14450
14765
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14451
14766
|
});
|
|
14452
14767
|
|
|
14768
|
+
T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14769
|
+
|
|
14453
14770
|
T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.exact({
|
|
14454
14771
|
value: PropTypes.number.isRequired,
|
|
14455
14772
|
});
|
|
@@ -14643,23 +14960,6 @@ T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
|
14643
14960
|
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14644
14961
|
]);
|
|
14645
14962
|
|
|
14646
|
-
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
14647
|
-
id: PropTypes.string.isRequired,
|
|
14648
|
-
order_number: PropTypes.string.isRequired,
|
|
14649
|
-
organization_id: PropTypes.string.isRequired,
|
|
14650
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
14651
|
-
sequence_number: PropTypes.number.isRequired,
|
|
14652
|
-
completes_order: PropTypes.bool.isRequired,
|
|
14653
|
-
});
|
|
14654
|
-
|
|
14655
|
-
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
14656
|
-
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
14657
|
-
event_id: PropTypes.string.isRequired,
|
|
14658
|
-
timestamp: PropTypes.string.isRequired,
|
|
14659
|
-
organization: PropTypes.string.isRequired,
|
|
14660
|
-
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
14661
|
-
});
|
|
14662
|
-
|
|
14663
14963
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
14664
14964
|
transaction: PropTypes.number.isRequired,
|
|
14665
14965
|
merchant: PropTypes.number.isRequired,
|
|
@@ -14671,6 +14971,7 @@ T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
|
14671
14971
|
|
|
14672
14972
|
T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
14673
14973
|
product: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14974
|
+
product_purchase_price: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14674
14975
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14675
14976
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14676
14977
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -14858,6 +15159,24 @@ T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
|
14858
15159
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
14859
15160
|
]);
|
|
14860
15161
|
|
|
15162
|
+
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
15163
|
+
id: PropTypes.string.isRequired,
|
|
15164
|
+
order_number: PropTypes.string.isRequired,
|
|
15165
|
+
organization_id: PropTypes.string.isRequired,
|
|
15166
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
15167
|
+
sequence_number: PropTypes.number.isRequired,
|
|
15168
|
+
completes_order: PropTypes.bool.isRequired,
|
|
15169
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'],
|
|
15170
|
+
});
|
|
15171
|
+
|
|
15172
|
+
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
15173
|
+
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
15174
|
+
event_id: PropTypes.string.isRequired,
|
|
15175
|
+
timestamp: PropTypes.string.isRequired,
|
|
15176
|
+
organization: PropTypes.string.isRequired,
|
|
15177
|
+
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
15178
|
+
});
|
|
15179
|
+
|
|
14861
15180
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
14862
15181
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
14863
15182
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -15329,7 +15648,7 @@ T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
|
15329
15648
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15330
15649
|
});
|
|
15331
15650
|
|
|
15332
|
-
T['io.flow.sellability.v0.models.
|
|
15651
|
+
T['io.flow.sellability.v0.models.sellability_region_result'] = PropTypes.exact({
|
|
15333
15652
|
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
15334
15653
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15335
15654
|
});
|
|
@@ -15340,27 +15659,44 @@ T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
|
15340
15659
|
product_id: PropTypes.string,
|
|
15341
15660
|
request_id: PropTypes.string.isRequired,
|
|
15342
15661
|
hs6_code: PropTypes.string.isRequired,
|
|
15343
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15662
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15344
15663
|
});
|
|
15345
15664
|
|
|
15346
15665
|
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
15347
15666
|
T['io.flow.sellability.v0.models.product_sellability'],
|
|
15348
15667
|
T['io.flow.sellability.v0.models.sellability_error'],
|
|
15668
|
+
T['io.flow.sellability.v0.models.sellability_screening'],
|
|
15349
15669
|
]);
|
|
15350
15670
|
|
|
15671
|
+
T['io.flow.restrictions.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
15672
|
+
id: PropTypes.string.isRequired,
|
|
15673
|
+
product_id: PropTypes.string.isRequired,
|
|
15674
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15675
|
+
prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15676
|
+
sellability_restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15677
|
+
reasons_per_region: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.reasons_per_region']),
|
|
15678
|
+
review_status: T['io.flow.restrictions.v0.enums.review_status'],
|
|
15679
|
+
rules: PropTypes.arrayOf(PropTypes.string),
|
|
15680
|
+
updated_by: PropTypes.string,
|
|
15681
|
+
product_restriction_id: PropTypes.string,
|
|
15682
|
+
hs_code: PropTypes.string,
|
|
15683
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15684
|
+
needs_action_attributes: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.needs_action_attributes']),
|
|
15685
|
+
});
|
|
15686
|
+
|
|
15351
15687
|
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
15352
15688
|
shop_id: PropTypes.string.isRequired,
|
|
15353
15689
|
product_number: PropTypes.string.isRequired,
|
|
15354
15690
|
request_id: PropTypes.string.isRequired,
|
|
15355
15691
|
hs6_code: PropTypes.string.isRequired,
|
|
15356
15692
|
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15357
|
-
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15693
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15358
15694
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15359
15695
|
taxonomy_category: PropTypes.string,
|
|
15360
15696
|
});
|
|
15361
15697
|
|
|
15362
15698
|
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15363
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15699
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15364
15700
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15365
15701
|
});
|
|
15366
15702
|
|
|
@@ -15369,7 +15705,7 @@ T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
|
15369
15705
|
product_id: PropTypes.string,
|
|
15370
15706
|
request_id: PropTypes.string.isRequired,
|
|
15371
15707
|
hs6_code: PropTypes.string.isRequired,
|
|
15372
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
15708
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15373
15709
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15374
15710
|
});
|
|
15375
15711
|
|
|
@@ -15849,6 +16185,7 @@ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
|
15849
16185
|
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
15850
16186
|
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
15851
16187
|
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16188
|
+
client_secret: PropTypes.string,
|
|
15852
16189
|
});
|
|
15853
16190
|
|
|
15854
16191
|
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
@@ -16332,6 +16669,7 @@ T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['g
|
|
|
16332
16669
|
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
16333
16670
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16334
16671
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16672
|
+
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
16335
16673
|
});
|
|
16336
16674
|
|
|
16337
16675
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -16361,6 +16699,8 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
16361
16699
|
order_total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
16362
16700
|
shopper_breakdown: T['io.flow.internal.v0.models.shopper_breakdown'].isRequired,
|
|
16363
16701
|
payment: T['io.flow.internal.v0.models.reporting_payment'].isRequired,
|
|
16702
|
+
tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
16703
|
+
duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
16364
16704
|
fees: T['io.flow.internal.v0.models.reporting_fees'].isRequired,
|
|
16365
16705
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
16366
16706
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
@@ -16804,6 +17144,8 @@ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
|
16804
17144
|
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
16805
17145
|
number: PropTypes.string.isRequired,
|
|
16806
17146
|
country: PropTypes.string.isRequired,
|
|
17147
|
+
province_number: PropTypes.string,
|
|
17148
|
+
province: PropTypes.string,
|
|
16807
17149
|
});
|
|
16808
17150
|
|
|
16809
17151
|
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
@@ -16876,7 +17218,7 @@ T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact(
|
|
|
16876
17218
|
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16877
17219
|
});
|
|
16878
17220
|
|
|
16879
|
-
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
17221
|
+
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'FlowOnboarding', 'Borderfree']);
|
|
16880
17222
|
|
|
16881
17223
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
16882
17224
|
productId: PropTypes.string.isRequired,
|
|
@@ -17360,6 +17702,8 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17360
17702
|
'additional_handling',
|
|
17361
17703
|
'large_package_surcharge',
|
|
17362
17704
|
'peak_surcharge',
|
|
17705
|
+
'fuel_surcharge',
|
|
17706
|
+
'delivery_area_surcharge',
|
|
17363
17707
|
]);
|
|
17364
17708
|
|
|
17365
17709
|
T['io.flow.internal.v0.enums.evaluation_check_result'] = PropTypes.oneOf(['pass', 'fail']);
|
|
@@ -17375,9 +17719,9 @@ T['io.flow.internal.v0.models.sellability_check_result'] = PropTypes.exact({
|
|
|
17375
17719
|
status: T['io.flow.internal.v0.enums.sellability_check_status'].isRequired,
|
|
17376
17720
|
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17377
17721
|
current_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17378
|
-
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
17722
|
+
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
17379
17723
|
merchant_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17380
|
-
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.
|
|
17724
|
+
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
17381
17725
|
current_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17382
17726
|
merchant_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17383
17727
|
});
|
|
@@ -17431,6 +17775,11 @@ T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'] = PropTypes
|
|
|
17431
17775
|
trigger_type: T['io.flow.internal.v0.enums.channel_transaction_trigger_type'].isRequired,
|
|
17432
17776
|
});
|
|
17433
17777
|
|
|
17778
|
+
T['io.flow.internal.v0.models.tokens'] = PropTypes.exact({
|
|
17779
|
+
webhook_signature_verification: PropTypes.string.isRequired,
|
|
17780
|
+
api: PropTypes.string.isRequired,
|
|
17781
|
+
});
|
|
17782
|
+
|
|
17434
17783
|
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17435
17784
|
|
|
17436
17785
|
T['io.flow.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
@@ -17485,13 +17834,21 @@ T['io.flow.internal.v0.models.channel_organization_publication_owner'] = PropTyp
|
|
|
17485
17834
|
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17486
17835
|
});
|
|
17487
17836
|
|
|
17488
|
-
T['io.flow.internal.v0.models.
|
|
17837
|
+
T['io.flow.internal.v0.models.channel_organization_domains'] = PropTypes.exact({
|
|
17489
17838
|
internal: PropTypes.string.isRequired,
|
|
17490
|
-
|
|
17839
|
+
external: PropTypes.string.isRequired,
|
|
17840
|
+
});
|
|
17841
|
+
|
|
17842
|
+
T['io.flow.internal.v0.models.channel_shop_form'] = PropTypes.exact({
|
|
17843
|
+
channel_id: PropTypes.string.isRequired,
|
|
17844
|
+
external_id: PropTypes.string.isRequired,
|
|
17845
|
+
name: PropTypes.string.isRequired,
|
|
17846
|
+
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
17847
|
+
tokens: T['io.flow.internal.v0.models.tokens'].isRequired,
|
|
17491
17848
|
});
|
|
17492
17849
|
|
|
17493
17850
|
T['io.flow.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
17494
|
-
domain: T['io.flow.internal.v0.models.
|
|
17851
|
+
domain: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
17495
17852
|
token: PropTypes.string.isRequired,
|
|
17496
17853
|
});
|
|
17497
17854
|
|
|
@@ -17604,9 +17961,47 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17604
17961
|
'unsupported_virtual_goods',
|
|
17605
17962
|
'non_matching_currencies',
|
|
17606
17963
|
'unsupported_order_edit',
|
|
17964
|
+
'order_allocation_duties_mismatch',
|
|
17607
17965
|
'order_missing',
|
|
17608
17966
|
]);
|
|
17609
17967
|
|
|
17968
|
+
T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
|
|
17969
|
+
id: PropTypes.string.isRequired,
|
|
17970
|
+
edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17971
|
+
});
|
|
17972
|
+
|
|
17973
|
+
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
|
|
17974
|
+
id: PropTypes.string.isRequired,
|
|
17975
|
+
shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
|
|
17976
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17977
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
|
|
17978
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
17979
|
+
});
|
|
17980
|
+
|
|
17981
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17982
|
+
id: PropTypes.string.isRequired,
|
|
17983
|
+
organization_id: PropTypes.string.isRequired,
|
|
17984
|
+
order_number: PropTypes.string.isRequired,
|
|
17985
|
+
channel_id: PropTypes.string.isRequired,
|
|
17986
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
17987
|
+
payment_request_id: PropTypes.string,
|
|
17988
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17989
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17990
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17991
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17992
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
17993
|
+
order_created_at: PropTypes.string,
|
|
17994
|
+
order_updated_at: PropTypes.string,
|
|
17995
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
17996
|
+
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
17997
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
17998
|
+
});
|
|
17999
|
+
|
|
18000
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
18001
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18002
|
+
external_order: PropTypes.object.isRequired,
|
|
18003
|
+
});
|
|
18004
|
+
|
|
17610
18005
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17611
18006
|
|
|
17612
18007
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -17821,13 +18216,6 @@ T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
|
17821
18216
|
snooze_id: PropTypes.string,
|
|
17822
18217
|
});
|
|
17823
18218
|
|
|
17824
|
-
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
17825
|
-
id: PropTypes.string.isRequired,
|
|
17826
|
-
name: PropTypes.string.isRequired,
|
|
17827
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
17828
|
-
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
17829
|
-
});
|
|
17830
|
-
|
|
17831
18219
|
T['io.flow.internal.v0.models.partner_form'] = PropTypes.exact({
|
|
17832
18220
|
id: PropTypes.string,
|
|
17833
18221
|
name: PropTypes.string,
|
|
@@ -18261,6 +18649,17 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
18261
18649
|
longitude: PropTypes.string,
|
|
18262
18650
|
});
|
|
18263
18651
|
|
|
18652
|
+
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
|
|
18653
|
+
name: PropTypes.string,
|
|
18654
|
+
address: T['io.flow.common.v0.models.address'],
|
|
18655
|
+
phone: PropTypes.string,
|
|
18656
|
+
email: PropTypes.string,
|
|
18657
|
+
bank_account_number: PropTypes.string,
|
|
18658
|
+
bank_routing_number: PropTypes.string,
|
|
18659
|
+
bank_name: PropTypes.string,
|
|
18660
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
18661
|
+
});
|
|
18662
|
+
|
|
18264
18663
|
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
18265
18664
|
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
18266
18665
|
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
@@ -18290,6 +18689,13 @@ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropType
|
|
|
18290
18689
|
|
|
18291
18690
|
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']]);
|
|
18292
18691
|
|
|
18692
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
|
|
18693
|
+
id: PropTypes.string.isRequired,
|
|
18694
|
+
key: PropTypes.string.isRequired,
|
|
18695
|
+
name: PropTypes.string.isRequired,
|
|
18696
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18697
|
+
});
|
|
18698
|
+
|
|
18293
18699
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
18294
18700
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18295
18701
|
order_note: PropTypes.string,
|
|
@@ -19122,6 +19528,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19122
19528
|
order_updated_at: PropTypes.string,
|
|
19123
19529
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19124
19530
|
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
19531
|
+
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
19125
19532
|
});
|
|
19126
19533
|
|
|
19127
19534
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19406,6 +19813,10 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_orders_metrics'] =
|
|
|
19406
19813
|
shopify: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19407
19814
|
internal: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19408
19815
|
discrepancy_data: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
19816
|
+
|
|
19817
|
+
organization_metrics: PropTypes.arrayOf(
|
|
19818
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_organization_order_metrics'],
|
|
19819
|
+
),
|
|
19409
19820
|
});
|
|
19410
19821
|
|
|
19411
19822
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19452,6 +19863,7 @@ T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact
|
|
|
19452
19863
|
shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19453
19864
|
internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19454
19865
|
discrepancy_data: T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'].isRequired,
|
|
19866
|
+
organization_metrics: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics']),
|
|
19455
19867
|
});
|
|
19456
19868
|
|
|
19457
19869
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19579,6 +19991,8 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19579
19991
|
'merchant_refund',
|
|
19580
19992
|
'ge_revenue_share',
|
|
19581
19993
|
'merchant_fee',
|
|
19994
|
+
'b2b_tax',
|
|
19995
|
+
'b2b_tax_refund',
|
|
19582
19996
|
]);
|
|
19583
19997
|
|
|
19584
19998
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19643,6 +20057,11 @@ T['io.flow.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
|
|
|
19643
20057
|
|
|
19644
20058
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
19645
20059
|
|
|
20060
|
+
T['io.flow.billing.v0.models.statement_status_form'] = PropTypes.exact({
|
|
20061
|
+
code: T['io.flow.billing.v0.enums.statement_status_code'].isRequired,
|
|
20062
|
+
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
20063
|
+
});
|
|
20064
|
+
|
|
19646
20065
|
T['io.flow.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
19647
20066
|
id: PropTypes.string.isRequired,
|
|
19648
20067
|
});
|
|
@@ -19800,6 +20219,9 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
19800
20219
|
account: T['io.flow.internal.v0.models.bank_account'].isRequired,
|
|
19801
20220
|
});
|
|
19802
20221
|
|
|
20222
|
+
T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf(['b2b_invoice', 'b2b_credit_memo']);
|
|
20223
|
+
T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
|
|
20224
|
+
T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
|
|
19803
20225
|
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
19804
20226
|
|
|
19805
20227
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
@@ -20181,6 +20603,31 @@ T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
|
20181
20603
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20182
20604
|
});
|
|
20183
20605
|
|
|
20606
|
+
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
20607
|
+
id: PropTypes.string.isRequired,
|
|
20608
|
+
order_number: PropTypes.string.isRequired,
|
|
20609
|
+
created_at: PropTypes.string.isRequired,
|
|
20610
|
+
reference_id: PropTypes.string.isRequired,
|
|
20611
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
20612
|
+
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
20613
|
+
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20614
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
20615
|
+
carrier_id: PropTypes.string,
|
|
20616
|
+
service_id: PropTypes.string,
|
|
20617
|
+
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20618
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
20619
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
20620
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
20621
|
+
});
|
|
20622
|
+
|
|
20623
|
+
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
20624
|
+
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
20625
|
+
event_id: PropTypes.string.isRequired,
|
|
20626
|
+
timestamp: PropTypes.string.isRequired,
|
|
20627
|
+
organization: PropTypes.string.isRequired,
|
|
20628
|
+
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
20629
|
+
});
|
|
20630
|
+
|
|
20184
20631
|
T['io.flow.internal.v0.models.validated_address'] = PropTypes.exact({
|
|
20185
20632
|
company_name: PropTypes.string.isRequired,
|
|
20186
20633
|
person_name: PropTypes.string.isRequired,
|
|
@@ -20238,6 +20685,14 @@ T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
|
|
|
20238
20685
|
company: PropTypes.string,
|
|
20239
20686
|
});
|
|
20240
20687
|
|
|
20688
|
+
T['io.flow.organization.v0.models.organization_tax_registration'] = PropTypes.exact({
|
|
20689
|
+
id: PropTypes.string.isRequired,
|
|
20690
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20691
|
+
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
20692
|
+
registration: T['io.flow.organization.v0.models.tax_registration_detail'].isRequired,
|
|
20693
|
+
self_billing_agreement: T['io.flow.organization.v0.models.self_billing_agreement'].isRequired,
|
|
20694
|
+
});
|
|
20695
|
+
|
|
20241
20696
|
T['io.flow.experience.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
|
|
20242
20697
|
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
20243
20698
|
});
|
|
@@ -20741,6 +21196,7 @@ T['io.flow.internal.v0.models.restriction_attribute_rule'] = PropTypes.exact({
|
|
|
20741
21196
|
T['io.flow.internal.v0.models.attribute_rule'] = PropTypes.exact({
|
|
20742
21197
|
restriction_attribute_rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_attribute_rule']).isRequired,
|
|
20743
21198
|
default_result: T['io.flow.internal.v0.enums.restriction_attribute_result'],
|
|
21199
|
+
require_msds: PropTypes.bool,
|
|
20744
21200
|
});
|
|
20745
21201
|
|
|
20746
21202
|
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
@@ -20759,7 +21215,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
20759
21215
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20760
21216
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20761
21217
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20762
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21218
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20763
21219
|
});
|
|
20764
21220
|
|
|
20765
21221
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -20779,7 +21235,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
20779
21235
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20780
21236
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20781
21237
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20782
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21238
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20783
21239
|
});
|
|
20784
21240
|
|
|
20785
21241
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -21837,7 +22293,22 @@ T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
|
21837
22293
|
currency: PropTypes.string.isRequired,
|
|
21838
22294
|
});
|
|
21839
22295
|
|
|
22296
|
+
T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact({
|
|
22297
|
+
discriminator: PropTypes.oneOf(['sellability_screening_form']).isRequired,
|
|
22298
|
+
merchant_id: PropTypes.string.isRequired,
|
|
22299
|
+
product_id: PropTypes.string.isRequired,
|
|
22300
|
+
name: PropTypes.string.isRequired,
|
|
22301
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
22302
|
+
description: PropTypes.string.isRequired,
|
|
22303
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
22304
|
+
mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
|
|
22305
|
+
catalog_size: PropTypes.number,
|
|
22306
|
+
relative_ranking: PropTypes.number,
|
|
22307
|
+
dry_run: PropTypes.bool,
|
|
22308
|
+
});
|
|
22309
|
+
|
|
21840
22310
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
22311
|
+
discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
|
|
21841
22312
|
shop_id: PropTypes.string.isRequired,
|
|
21842
22313
|
product_id: PropTypes.string,
|
|
21843
22314
|
name: PropTypes.string.isRequired,
|
|
@@ -21848,6 +22319,11 @@ T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
|
21848
22319
|
dry_run: PropTypes.bool,
|
|
21849
22320
|
});
|
|
21850
22321
|
|
|
22322
|
+
T['io.flow.sellability.v0.unions.sellability_request'] = PropTypes.oneOfType([
|
|
22323
|
+
T['io.flow.sellability.v0.models.product_sellability_form'],
|
|
22324
|
+
T['io.flow.sellability.v0.models.sellability_screening_form'],
|
|
22325
|
+
]);
|
|
22326
|
+
|
|
21851
22327
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
|
|
21852
22328
|
discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
|
|
21853
22329
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
@@ -21865,24 +22341,87 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = P
|
|
|
21865
22341
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
21866
22342
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
21867
22343
|
average_order_weight: PropTypes.number,
|
|
22344
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
21868
22345
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
21869
22346
|
monthly_average_volume_amount: PropTypes.number,
|
|
21870
22347
|
monthly_average_volume_currency: PropTypes.string,
|
|
21871
22348
|
monthly_average_number_transactions: PropTypes.number,
|
|
21872
22349
|
default_country_of_origin: PropTypes.string,
|
|
21873
|
-
ratecard_id: PropTypes.string,
|
|
22350
|
+
ratecard_id: PropTypes.string,
|
|
22351
|
+
rate_card: PropTypes.string.isRequired,
|
|
22352
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22353
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22354
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22355
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22356
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22357
|
+
});
|
|
22358
|
+
|
|
22359
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'] = PropTypes.exact({
|
|
22360
|
+
discriminator: PropTypes.oneOf(['common_merchant_application_form']).isRequired,
|
|
22361
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22362
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22363
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22364
|
+
business_url: PropTypes.string,
|
|
22365
|
+
business_description: PropTypes.string,
|
|
22366
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22367
|
+
refund_percentage: PropTypes.number,
|
|
22368
|
+
chargeback_percentage: PropTypes.number,
|
|
22369
|
+
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22370
|
+
other_trade_sector: PropTypes.string,
|
|
22371
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22372
|
+
center_address: T['io.flow.common.v0.models.address'],
|
|
22373
|
+
average_order_weight: PropTypes.number,
|
|
22374
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22375
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22376
|
+
monthly_average_volume_amount: PropTypes.number,
|
|
22377
|
+
monthly_average_volume_currency: PropTypes.string,
|
|
22378
|
+
monthly_average_number_transactions: PropTypes.number,
|
|
22379
|
+
default_country_of_origin: PropTypes.string,
|
|
22380
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22381
|
+
rate_card: PropTypes.string,
|
|
22382
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22383
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22384
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22385
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22386
|
+
});
|
|
22387
|
+
|
|
22388
|
+
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
22389
|
+
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'],
|
|
22390
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'],
|
|
22391
|
+
]);
|
|
22392
|
+
|
|
22393
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application'] = PropTypes.exact({
|
|
22394
|
+
discriminator: PropTypes.oneOf(['common_merchant_application']).isRequired,
|
|
22395
|
+
id: PropTypes.string.isRequired,
|
|
22396
|
+
organization_id: PropTypes.string.isRequired,
|
|
22397
|
+
organization_reference: T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'].isRequired,
|
|
22398
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22399
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22400
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22401
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22402
|
+
business_url: PropTypes.string,
|
|
22403
|
+
business_description: PropTypes.string,
|
|
22404
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22405
|
+
refund_percentage: PropTypes.number,
|
|
22406
|
+
chargeback_percentage: PropTypes.number,
|
|
22407
|
+
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22408
|
+
other_trade_sector: PropTypes.string,
|
|
22409
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22410
|
+
center_address: T['io.flow.common.v0.models.address'],
|
|
22411
|
+
average_order_weight: PropTypes.number,
|
|
22412
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22413
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22414
|
+
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22415
|
+
default_country_of_origin: PropTypes.string,
|
|
21874
22416
|
rate_card: PropTypes.string.isRequired,
|
|
21875
22417
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22418
|
+
created_at: PropTypes.string.isRequired,
|
|
21876
22419
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21877
22420
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21878
22421
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
21879
22422
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
21880
22423
|
});
|
|
21881
22424
|
|
|
21882
|
-
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
21883
|
-
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'],
|
|
21884
|
-
]);
|
|
21885
|
-
|
|
21886
22425
|
T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
21887
22426
|
tracking_id: PropTypes.string.isRequired,
|
|
21888
22427
|
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
@@ -22027,6 +22566,7 @@ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'] = Prop
|
|
|
22027
22566
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22028
22567
|
origin_region: T['io.flow.ratecard.v0.models.ratecard_region_reference'],
|
|
22029
22568
|
destination_region: T['io.flow.ratecard.v0.models.ratecard_region_reference'],
|
|
22569
|
+
destination_regions: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_region_reference']),
|
|
22030
22570
|
interval_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22031
22571
|
});
|
|
22032
22572
|
|
|
@@ -22082,6 +22622,27 @@ T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
|
22082
22622
|
T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'],
|
|
22083
22623
|
]);
|
|
22084
22624
|
|
|
22625
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_available'] = PropTypes.exact({
|
|
22626
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22627
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22628
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22629
|
+
total_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22630
|
+
base_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22631
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22632
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22633
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22634
|
+
weight_break: PropTypes.number,
|
|
22635
|
+
});
|
|
22636
|
+
|
|
22637
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate'] = PropTypes.exact({
|
|
22638
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22639
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22640
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
22641
|
+
services: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22642
|
+
available: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.shipping_rate_estimate_available']).isRequired,
|
|
22643
|
+
unavailable: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.shipping_rate_estimate_unavailable']),
|
|
22644
|
+
});
|
|
22645
|
+
|
|
22085
22646
|
T['io.flow.ratecard.v0.models.ratecard_lane_form'] = PropTypes.exact({
|
|
22086
22647
|
ratecard_id: PropTypes.string.isRequired,
|
|
22087
22648
|
currency: PropTypes.string.isRequired,
|
|
@@ -22313,6 +22874,19 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22313
22874
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22314
22875
|
});
|
|
22315
22876
|
|
|
22877
|
+
T['io.flow.consumer.invoice.v0.models.tax_breakdown'] = PropTypes.exact({
|
|
22878
|
+
label: PropTypes.string.isRequired,
|
|
22879
|
+
calculated_tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
22880
|
+
rate: PropTypes.number.isRequired,
|
|
22881
|
+
line_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22882
|
+
jurisdiction_type: T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'].isRequired,
|
|
22883
|
+
});
|
|
22884
|
+
|
|
22885
|
+
T['io.flow.consumer.invoice.v0.models.invoice_tax_line'] = PropTypes.exact({
|
|
22886
|
+
line_id: PropTypes.string.isRequired,
|
|
22887
|
+
tax_breakdown: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.tax_breakdown']).isRequired,
|
|
22888
|
+
});
|
|
22889
|
+
|
|
22316
22890
|
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22317
22891
|
id: PropTypes.string.isRequired,
|
|
22318
22892
|
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
@@ -22646,6 +23220,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22646
23220
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22647
23221
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22648
23222
|
average_order_weight: PropTypes.number,
|
|
23223
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22649
23224
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22650
23225
|
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22651
23226
|
default_country_of_origin: PropTypes.string,
|
|
@@ -22662,7 +23237,40 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22662
23237
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22663
23238
|
});
|
|
22664
23239
|
|
|
22665
|
-
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([
|
|
23240
|
+
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([
|
|
23241
|
+
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'],
|
|
23242
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_application'],
|
|
23243
|
+
]);
|
|
23244
|
+
|
|
23245
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'] = PropTypes.exact({
|
|
23246
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
23247
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
23248
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
23249
|
+
total_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23250
|
+
base_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23251
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
23252
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
23253
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
23254
|
+
weight_break: PropTypes.number,
|
|
23255
|
+
ratecard_id: PropTypes.string,
|
|
23256
|
+
lane_id: PropTypes.string,
|
|
23257
|
+
rate_level_key: PropTypes.string,
|
|
23258
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
23259
|
+
glbe_proposition_name: PropTypes.string,
|
|
23260
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
23261
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23262
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23263
|
+
});
|
|
23264
|
+
|
|
23265
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_internal'] = PropTypes.exact({
|
|
23266
|
+
channel_id: PropTypes.string.isRequired,
|
|
23267
|
+
organization_id: PropTypes.string.isRequired,
|
|
23268
|
+
service: PropTypes.string.isRequired,
|
|
23269
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23270
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23271
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23272
|
+
available: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']).isRequired,
|
|
23273
|
+
});
|
|
22666
23274
|
|
|
22667
23275
|
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
22668
23276
|
lane_id: PropTypes.string,
|
|
@@ -22680,7 +23288,7 @@ T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
|
22680
23288
|
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
22681
23289
|
id: PropTypes.string.isRequired,
|
|
22682
23290
|
name: PropTypes.string.isRequired,
|
|
22683
|
-
environment: T['io.flow.
|
|
23291
|
+
environment: T['io.flow.restrictions.v0.enums.restriction_environment'].isRequired,
|
|
22684
23292
|
url: PropTypes.string,
|
|
22685
23293
|
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
22686
23294
|
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
@@ -22708,6 +23316,21 @@ T['io.flow.internal.v0.models.product_sellability_internal_form'] = PropTypes.ex
|
|
|
22708
23316
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22709
23317
|
});
|
|
22710
23318
|
|
|
23319
|
+
T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes.exact({
|
|
23320
|
+
id: PropTypes.string.isRequired,
|
|
23321
|
+
merchant_id: PropTypes.string.isRequired,
|
|
23322
|
+
product_id: PropTypes.string.isRequired,
|
|
23323
|
+
channel: PropTypes.string.isRequired,
|
|
23324
|
+
request_id: PropTypes.string.isRequired,
|
|
23325
|
+
status: T['io.flow.internal.v0.enums.preonboarding_request_status'].isRequired,
|
|
23326
|
+
name: PropTypes.string.isRequired,
|
|
23327
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
23328
|
+
description: PropTypes.string.isRequired,
|
|
23329
|
+
relative_ranking: PropTypes.number.isRequired,
|
|
23330
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23331
|
+
fingerprint: PropTypes.string.isRequired,
|
|
23332
|
+
});
|
|
23333
|
+
|
|
22711
23334
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
22712
23335
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22713
23336
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -22777,6 +23400,17 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
22777
23400
|
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22778
23401
|
});
|
|
22779
23402
|
|
|
23403
|
+
T['io.flow.ratecard.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
|
|
23404
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23405
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23406
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23407
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23408
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23409
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23410
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23411
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23412
|
+
});
|
|
23413
|
+
|
|
22780
23414
|
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22781
23415
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22782
23416
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
@@ -22849,6 +23483,7 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_form'] = PropTypes.exact({
|
|
|
22849
23483
|
center_id: PropTypes.string,
|
|
22850
23484
|
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
22851
23485
|
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23486
|
+
commercial_invoice_mode: T['io.flow.label.v0.enums.commercial_invoice_mode'],
|
|
22852
23487
|
});
|
|
22853
23488
|
|
|
22854
23489
|
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
@@ -22942,6 +23577,21 @@ T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
|
22942
23577
|
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
22943
23578
|
});
|
|
22944
23579
|
|
|
23580
|
+
T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'] = PropTypes.exact({
|
|
23581
|
+
channel_id: PropTypes.string.isRequired,
|
|
23582
|
+
organization_id: PropTypes.string.isRequired,
|
|
23583
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23584
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23585
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23586
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
23587
|
+
service: PropTypes.string.isRequired,
|
|
23588
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23589
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23590
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23591
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23592
|
+
include_unpublished: PropTypes.bool,
|
|
23593
|
+
});
|
|
23594
|
+
|
|
22945
23595
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
22946
23596
|
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
22947
23597
|
volumetric_weight: PropTypes.number,
|
|
@@ -23305,6 +23955,47 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
23305
23955
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
23306
23956
|
});
|
|
23307
23957
|
|
|
23958
|
+
T['io.flow.internal.v0.models.tax_type_total'] = PropTypes.exact({
|
|
23959
|
+
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
23960
|
+
});
|
|
23961
|
+
|
|
23962
|
+
T['io.flow.internal.v0.models.b2b_tax_ledger_form'] = PropTypes.exact({
|
|
23963
|
+
total_amount: T['io.flow.internal.v0.models.tax_type_total'].isRequired,
|
|
23964
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23965
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
23966
|
+
tax_rate: PropTypes.number.isRequired,
|
|
23967
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
23968
|
+
organization_id: PropTypes.string.isRequired,
|
|
23969
|
+
organization_country: PropTypes.string.isRequired,
|
|
23970
|
+
organization_province: PropTypes.string,
|
|
23971
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
23972
|
+
mor_country: PropTypes.string.isRequired,
|
|
23973
|
+
mor_province: PropTypes.string,
|
|
23974
|
+
document_id: PropTypes.string.isRequired,
|
|
23975
|
+
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
23976
|
+
document_date: PropTypes.string.isRequired,
|
|
23977
|
+
ledger_report_id: PropTypes.string,
|
|
23978
|
+
});
|
|
23979
|
+
|
|
23980
|
+
T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
|
|
23981
|
+
id: PropTypes.string.isRequired,
|
|
23982
|
+
total_amount: T['io.flow.internal.v0.models.tax_type_total'].isRequired,
|
|
23983
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23984
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
23985
|
+
tax_rate: PropTypes.number.isRequired,
|
|
23986
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
23987
|
+
organization_id: PropTypes.string.isRequired,
|
|
23988
|
+
organization_country: PropTypes.string.isRequired,
|
|
23989
|
+
organization_province: PropTypes.string,
|
|
23990
|
+
mor_tax_number: PropTypes.string.isRequired,
|
|
23991
|
+
mor_country: PropTypes.string.isRequired,
|
|
23992
|
+
mor_province: PropTypes.string,
|
|
23993
|
+
document_id: PropTypes.string.isRequired,
|
|
23994
|
+
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
23995
|
+
document_date: PropTypes.string.isRequired,
|
|
23996
|
+
ledger_report_id: PropTypes.string,
|
|
23997
|
+
});
|
|
23998
|
+
|
|
23308
23999
|
T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
|
|
23309
24000
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23310
24001
|
});
|
|
@@ -23716,27 +24407,6 @@ T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result']
|
|
|
23716
24407
|
organization_onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'],
|
|
23717
24408
|
});
|
|
23718
24409
|
|
|
23719
|
-
T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
|
|
23720
|
-
id: PropTypes.string.isRequired,
|
|
23721
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
23722
|
-
feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
|
|
23723
|
-
value: PropTypes.bool.isRequired,
|
|
23724
|
-
});
|
|
23725
|
-
|
|
23726
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
|
|
23727
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
|
|
23728
|
-
event_id: PropTypes.string.isRequired,
|
|
23729
|
-
timestamp: PropTypes.string.isRequired,
|
|
23730
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23731
|
-
});
|
|
23732
|
-
|
|
23733
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
|
|
23734
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
|
|
23735
|
-
event_id: PropTypes.string.isRequired,
|
|
23736
|
-
timestamp: PropTypes.string.isRequired,
|
|
23737
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23738
|
-
});
|
|
23739
|
-
|
|
23740
24410
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
23741
24411
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
23742
24412
|
id: PropTypes.string.isRequired,
|
|
@@ -23969,8 +24639,6 @@ T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
|
23969
24639
|
customs_value: PropTypes.number.isRequired,
|
|
23970
24640
|
total_value: PropTypes.number.isRequired,
|
|
23971
24641
|
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
23972
|
-
feature_israel_notes_import_duty_and_taxes_due: PropTypes.bool.isRequired,
|
|
23973
|
-
feature_new_export_declaration: PropTypes.bool.isRequired,
|
|
23974
24642
|
});
|
|
23975
24643
|
|
|
23976
24644
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
@@ -24027,6 +24695,15 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes
|
|
|
24027
24695
|
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
24028
24696
|
});
|
|
24029
24697
|
|
|
24698
|
+
T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
|
|
24699
|
+
id: PropTypes.string.isRequired,
|
|
24700
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24701
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
24702
|
+
external_id: PropTypes.string.isRequired,
|
|
24703
|
+
name: PropTypes.string.isRequired,
|
|
24704
|
+
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
24705
|
+
});
|
|
24706
|
+
|
|
24030
24707
|
T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
24031
24708
|
id: PropTypes.string.isRequired,
|
|
24032
24709
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -24102,6 +24779,12 @@ T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact(
|
|
|
24102
24779
|
created_at: PropTypes.string.isRequired,
|
|
24103
24780
|
});
|
|
24104
24781
|
|
|
24782
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
|
|
24783
|
+
discriminator: PropTypes.oneOf(['synthetic']).isRequired,
|
|
24784
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24785
|
+
created_at: PropTypes.string.isRequired,
|
|
24786
|
+
});
|
|
24787
|
+
|
|
24105
24788
|
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
24106
24789
|
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
24107
24790
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
@@ -24109,6 +24792,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
24109
24792
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
24110
24793
|
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
24111
24794
|
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
24795
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
|
|
24112
24796
|
]);
|
|
24113
24797
|
|
|
24114
24798
|
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
@@ -24361,6 +25045,136 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
24361
25045
|
name: PropTypes.string,
|
|
24362
25046
|
});
|
|
24363
25047
|
|
|
25048
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
25049
|
+
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
25050
|
+
line_id: PropTypes.string,
|
|
25051
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25052
|
+
});
|
|
25053
|
+
|
|
25054
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'] = PropTypes.exact({
|
|
25055
|
+
rate: PropTypes.number.isRequired,
|
|
25056
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25057
|
+
});
|
|
25058
|
+
|
|
25059
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'] = PropTypes.exact({
|
|
25060
|
+
discriminator: PropTypes.oneOf(['tip']).isRequired,
|
|
25061
|
+
line_id: PropTypes.string,
|
|
25062
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25063
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25064
|
+
});
|
|
25065
|
+
|
|
25066
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
|
|
25067
|
+
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
25068
|
+
line_id: PropTypes.string,
|
|
25069
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25070
|
+
discount: T['io.flow.common.v0.models.price'],
|
|
25071
|
+
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25072
|
+
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25073
|
+
});
|
|
25074
|
+
|
|
25075
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
|
|
25076
|
+
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
25077
|
+
line_id: PropTypes.string,
|
|
25078
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
25079
|
+
description: PropTypes.string.isRequired,
|
|
25080
|
+
quantity: PropTypes.number.isRequired,
|
|
25081
|
+
unit_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25082
|
+
unit_discount: T['io.flow.common.v0.models.price'],
|
|
25083
|
+
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25084
|
+
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
25085
|
+
});
|
|
25086
|
+
|
|
25087
|
+
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
|
|
25088
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'],
|
|
25089
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'],
|
|
25090
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'],
|
|
25091
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
|
|
25092
|
+
]);
|
|
25093
|
+
|
|
25094
|
+
T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
25095
|
+
id: PropTypes.string.isRequired,
|
|
25096
|
+
number: PropTypes.string.isRequired,
|
|
25097
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25098
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25099
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25100
|
+
date: PropTypes.string.isRequired,
|
|
25101
|
+
key: PropTypes.string.isRequired,
|
|
25102
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
25103
|
+
economic_title_location: T['io.flow.merchant.of.record.v0.enums.economic_title_location'].isRequired,
|
|
25104
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25105
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
25106
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
25107
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25108
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25109
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25110
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25111
|
+
estimated_delivery_date: PropTypes.string,
|
|
25112
|
+
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
25113
|
+
});
|
|
25114
|
+
|
|
25115
|
+
T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
25116
|
+
id: PropTypes.string.isRequired,
|
|
25117
|
+
number: PropTypes.string.isRequired,
|
|
25118
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25119
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25120
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25121
|
+
date: PropTypes.string.isRequired,
|
|
25122
|
+
key: PropTypes.string.isRequired,
|
|
25123
|
+
invoice: T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'].isRequired,
|
|
25124
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25125
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25126
|
+
tax: T['io.flow.common.v0.models.money'],
|
|
25127
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25128
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25129
|
+
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
25130
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25131
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
25132
|
+
});
|
|
25133
|
+
|
|
25134
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'] = PropTypes.exact({
|
|
25135
|
+
date: PropTypes.string.isRequired,
|
|
25136
|
+
description: PropTypes.string.isRequired,
|
|
25137
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25138
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
25139
|
+
});
|
|
25140
|
+
|
|
25141
|
+
T['io.flow.consumer.invoice.v0.models.credit_memo'] = PropTypes.exact({
|
|
25142
|
+
id: PropTypes.string.isRequired,
|
|
25143
|
+
number: PropTypes.string,
|
|
25144
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25145
|
+
date: PropTypes.string.isRequired,
|
|
25146
|
+
key: PropTypes.string.isRequired,
|
|
25147
|
+
invoice: T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'].isRequired,
|
|
25148
|
+
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25149
|
+
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
25150
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25151
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25152
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25153
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25154
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25155
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
25156
|
+
});
|
|
25157
|
+
|
|
25158
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice'] = PropTypes.exact({
|
|
25159
|
+
id: PropTypes.string.isRequired,
|
|
25160
|
+
number: PropTypes.string.isRequired,
|
|
25161
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
25162
|
+
date: PropTypes.string.isRequired,
|
|
25163
|
+
key: PropTypes.string.isRequired,
|
|
25164
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
25165
|
+
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25166
|
+
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
25167
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25168
|
+
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
25169
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
25170
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25171
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25172
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25173
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25174
|
+
customer_type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'],
|
|
25175
|
+
estimated_delivery_date: PropTypes.string,
|
|
25176
|
+
});
|
|
25177
|
+
|
|
24364
25178
|
T['io.flow.payment.v0.models.virtual_card'] = PropTypes.exact({
|
|
24365
25179
|
id: PropTypes.string.isRequired,
|
|
24366
25180
|
key: PropTypes.string.isRequired,
|
|
@@ -24664,6 +25478,13 @@ T['io.flow.internal.v0.models.sarvesh_item'] = PropTypes.exact({
|
|
|
24664
25478
|
added_on: PropTypes.string.isRequired,
|
|
24665
25479
|
});
|
|
24666
25480
|
|
|
25481
|
+
T['io.flow.internal.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
|
|
25482
|
+
discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
|
|
25483
|
+
event_id: PropTypes.string.isRequired,
|
|
25484
|
+
timestamp: PropTypes.string.isRequired,
|
|
25485
|
+
item: T['io.flow.internal.v0.models.sarvesh_item'].isRequired,
|
|
25486
|
+
});
|
|
25487
|
+
|
|
24667
25488
|
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
24668
25489
|
number: PropTypes.string.isRequired,
|
|
24669
25490
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24681,6 +25502,13 @@ T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
|
24681
25502
|
added_on: PropTypes.string.isRequired,
|
|
24682
25503
|
});
|
|
24683
25504
|
|
|
25505
|
+
T['io.flow.internal.v0.models.rohan_item_upserted'] = PropTypes.exact({
|
|
25506
|
+
discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
|
|
25507
|
+
event_id: PropTypes.string.isRequired,
|
|
25508
|
+
timestamp: PropTypes.string.isRequired,
|
|
25509
|
+
item: T['io.flow.internal.v0.models.rohan_item'].isRequired,
|
|
25510
|
+
});
|
|
25511
|
+
|
|
24684
25512
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24685
25513
|
id: PropTypes.string.isRequired,
|
|
24686
25514
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24802,6 +25630,13 @@ T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
|
24802
25630
|
added_on: PropTypes.string.isRequired,
|
|
24803
25631
|
});
|
|
24804
25632
|
|
|
25633
|
+
T['io.flow.internal.v0.models.niall_item_upserted'] = PropTypes.exact({
|
|
25634
|
+
discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
|
|
25635
|
+
event_id: PropTypes.string.isRequired,
|
|
25636
|
+
timestamp: PropTypes.string.isRequired,
|
|
25637
|
+
item: T['io.flow.internal.v0.models.niall_item'].isRequired,
|
|
25638
|
+
});
|
|
25639
|
+
|
|
24805
25640
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
24806
25641
|
id: PropTypes.string.isRequired,
|
|
24807
25642
|
description: PropTypes.string.isRequired,
|
|
@@ -24825,6 +25660,13 @@ T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
|
|
|
24825
25660
|
added_on: PropTypes.string.isRequired,
|
|
24826
25661
|
});
|
|
24827
25662
|
|
|
25663
|
+
T['io.flow.internal.v0.models.hosein_item_upserted'] = PropTypes.exact({
|
|
25664
|
+
discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
|
|
25665
|
+
event_id: PropTypes.string.isRequired,
|
|
25666
|
+
timestamp: PropTypes.string.isRequired,
|
|
25667
|
+
item: T['io.flow.internal.v0.models.hosein_item'].isRequired,
|
|
25668
|
+
});
|
|
25669
|
+
|
|
24828
25670
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
24829
25671
|
id: PropTypes.string.isRequired,
|
|
24830
25672
|
number: PropTypes.string.isRequired,
|
|
@@ -24846,6 +25688,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24846
25688
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24847
25689
|
});
|
|
24848
25690
|
|
|
25691
|
+
T['io.flow.internal.v0.models.gabriel_item_form'] = PropTypes.exact({
|
|
25692
|
+
number: PropTypes.string.isRequired,
|
|
25693
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25694
|
+
description: PropTypes.string,
|
|
25695
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
25696
|
+
added_on: PropTypes.string.isRequired,
|
|
25697
|
+
});
|
|
25698
|
+
|
|
25699
|
+
T['io.flow.internal.v0.models.gabriel_item'] = PropTypes.exact({
|
|
25700
|
+
id: PropTypes.string.isRequired,
|
|
25701
|
+
number: PropTypes.string.isRequired,
|
|
25702
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25703
|
+
description: PropTypes.string,
|
|
25704
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
25705
|
+
added_on: PropTypes.string.isRequired,
|
|
25706
|
+
});
|
|
25707
|
+
|
|
25708
|
+
T['io.flow.internal.v0.models.gabriel_item_upserted'] = PropTypes.exact({
|
|
25709
|
+
discriminator: PropTypes.oneOf(['gabriel_item_upserted']).isRequired,
|
|
25710
|
+
event_id: PropTypes.string.isRequired,
|
|
25711
|
+
timestamp: PropTypes.string.isRequired,
|
|
25712
|
+
item: T['io.flow.internal.v0.models.gabriel_item'].isRequired,
|
|
25713
|
+
});
|
|
25714
|
+
|
|
24849
25715
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
24850
25716
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
24851
25717
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24909,6 +25775,8 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24909
25775
|
non_l4l_tax_duty_fx: T['io.flow.common.v0.models.price'].isRequired,
|
|
24910
25776
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24911
25777
|
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
25778
|
+
b2b_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25779
|
+
b2b_tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24912
25780
|
});
|
|
24913
25781
|
|
|
24914
25782
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -25621,6 +26489,13 @@ T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
|
25621
26489
|
added_on: PropTypes.string.isRequired,
|
|
25622
26490
|
});
|
|
25623
26491
|
|
|
26492
|
+
T['io.flow.internal.v0.models.ansh_item_upserted'] = PropTypes.exact({
|
|
26493
|
+
discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
|
|
26494
|
+
event_id: PropTypes.string.isRequired,
|
|
26495
|
+
timestamp: PropTypes.string.isRequired,
|
|
26496
|
+
item: T['io.flow.internal.v0.models.ansh_item'].isRequired,
|
|
26497
|
+
});
|
|
26498
|
+
|
|
25624
26499
|
T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
25625
26500
|
number: PropTypes.string.isRequired,
|
|
25626
26501
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25638,6 +26513,13 @@ T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
|
|
|
25638
26513
|
added_on: PropTypes.string.isRequired,
|
|
25639
26514
|
});
|
|
25640
26515
|
|
|
26516
|
+
T['io.flow.internal.v0.models.anirban_item_upserted'] = PropTypes.exact({
|
|
26517
|
+
discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
|
|
26518
|
+
event_id: PropTypes.string.isRequired,
|
|
26519
|
+
timestamp: PropTypes.string.isRequired,
|
|
26520
|
+
item: T['io.flow.internal.v0.models.anirban_item'].isRequired,
|
|
26521
|
+
});
|
|
26522
|
+
|
|
25641
26523
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25642
26524
|
number: PropTypes.string.isRequired,
|
|
25643
26525
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25655,6 +26537,13 @@ T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
|
|
|
25655
26537
|
added_on: PropTypes.string.isRequired,
|
|
25656
26538
|
});
|
|
25657
26539
|
|
|
26540
|
+
T['io.flow.internal.v0.models.aldo_item_upserted'] = PropTypes.exact({
|
|
26541
|
+
discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
|
|
26542
|
+
event_id: PropTypes.string.isRequired,
|
|
26543
|
+
timestamp: PropTypes.string.isRequired,
|
|
26544
|
+
item: T['io.flow.internal.v0.models.aldo_item'].isRequired,
|
|
26545
|
+
});
|
|
26546
|
+
|
|
25658
26547
|
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
25659
26548
|
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
25660
26549
|
});
|
|
@@ -26156,6 +27045,8 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26156
27045
|
'merchant_fee',
|
|
26157
27046
|
'merchant_payout',
|
|
26158
27047
|
'merchant_refund',
|
|
27048
|
+
'b2b_tax',
|
|
27049
|
+
'b2b_tax_refund',
|
|
26159
27050
|
]);
|
|
26160
27051
|
|
|
26161
27052
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26979,8 +27870,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26979
27870
|
T['io.flow.internal.v0.models.export_failed'],
|
|
26980
27871
|
T['io.flow.internal.v0.models.feature_upserted'],
|
|
26981
27872
|
T['io.flow.internal.v0.models.feature_deleted'],
|
|
26982
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'],
|
|
26983
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'],
|
|
26984
27873
|
T['io.flow.internal.v0.models.account_settings_upserted'],
|
|
26985
27874
|
T['io.flow.internal.v0.models.account_settings_deleted'],
|
|
26986
27875
|
T['io.flow.internal.v0.models.account_processing_rates_upserted'],
|
|
@@ -27216,6 +28105,22 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27216
28105
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
27217
28106
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27218
28107
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28108
|
+
T['io.flow.internal.v0.models.anirban_item_upserted'],
|
|
28109
|
+
T['io.flow.internal.v0.models.anirban_item_deleted'],
|
|
28110
|
+
T['io.flow.internal.v0.models.sarvesh_item_upserted'],
|
|
28111
|
+
T['io.flow.internal.v0.models.sarvesh_item_deleted'],
|
|
28112
|
+
T['io.flow.internal.v0.models.hosein_item_upserted'],
|
|
28113
|
+
T['io.flow.internal.v0.models.hosein_item_deleted'],
|
|
28114
|
+
T['io.flow.internal.v0.models.niall_item_upserted'],
|
|
28115
|
+
T['io.flow.internal.v0.models.niall_item_deleted'],
|
|
28116
|
+
T['io.flow.internal.v0.models.rohan_item_upserted'],
|
|
28117
|
+
T['io.flow.internal.v0.models.rohan_item_deleted'],
|
|
28118
|
+
T['io.flow.internal.v0.models.aldo_item_upserted'],
|
|
28119
|
+
T['io.flow.internal.v0.models.aldo_item_deleted'],
|
|
28120
|
+
T['io.flow.internal.v0.models.ansh_item_upserted'],
|
|
28121
|
+
T['io.flow.internal.v0.models.ansh_item_deleted'],
|
|
28122
|
+
T['io.flow.internal.v0.models.gabriel_item_upserted'],
|
|
28123
|
+
T['io.flow.internal.v0.models.gabriel_item_deleted'],
|
|
27219
28124
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
27220
28125
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
27221
28126
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -27518,8 +28423,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27518
28423
|
'export_failed',
|
|
27519
28424
|
'feature_upserted',
|
|
27520
28425
|
'feature_deleted',
|
|
27521
|
-
'organization_boolean_value_upserted',
|
|
27522
|
-
'organization_boolean_value_deleted',
|
|
27523
28426
|
'account_settings_upserted',
|
|
27524
28427
|
'account_settings_deleted',
|
|
27525
28428
|
'account_processing_rates_upserted',
|
|
@@ -27755,6 +28658,22 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27755
28658
|
'stripe_connect_report_record_deleted',
|
|
27756
28659
|
'liability_remittance_plan_upserted',
|
|
27757
28660
|
'liability_remittance_plan_deleted',
|
|
28661
|
+
'anirban_item_upserted',
|
|
28662
|
+
'anirban_item_deleted',
|
|
28663
|
+
'sarvesh_item_upserted',
|
|
28664
|
+
'sarvesh_item_deleted',
|
|
28665
|
+
'hosein_item_upserted',
|
|
28666
|
+
'hosein_item_deleted',
|
|
28667
|
+
'niall_item_upserted',
|
|
28668
|
+
'niall_item_deleted',
|
|
28669
|
+
'rohan_item_upserted',
|
|
28670
|
+
'rohan_item_deleted',
|
|
28671
|
+
'aldo_item_upserted',
|
|
28672
|
+
'aldo_item_deleted',
|
|
28673
|
+
'ansh_item_upserted',
|
|
28674
|
+
'ansh_item_deleted',
|
|
28675
|
+
'gabriel_item_upserted',
|
|
28676
|
+
'gabriel_item_deleted',
|
|
27758
28677
|
'tracking_processing_error_upserted',
|
|
27759
28678
|
'tracking_processing_error_deleted',
|
|
27760
28679
|
'tracking_label_event_upserted_v2',
|
|
@@ -27848,7 +28767,15 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
27848
28767
|
]);
|
|
27849
28768
|
|
|
27850
28769
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
27851
|
-
|
|
28770
|
+
|
|
28771
|
+
T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneOf([
|
|
28772
|
+
'shopify',
|
|
28773
|
+
'enterprise',
|
|
28774
|
+
'shopify-sandbox',
|
|
28775
|
+
'enterprise-sandbox',
|
|
28776
|
+
'enterprise-qa',
|
|
28777
|
+
]);
|
|
28778
|
+
|
|
27852
28779
|
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
27853
28780
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
27854
28781
|
|
|
@@ -27927,6 +28854,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27927
28854
|
'payment',
|
|
27928
28855
|
'rate_levels',
|
|
27929
28856
|
'center_defaults',
|
|
28857
|
+
'item_dimensions',
|
|
27930
28858
|
]);
|
|
27931
28859
|
|
|
27932
28860
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -28011,6 +28939,10 @@ T['io.flow.internal.v0.models.brick_webhook_event_response'] = PropTypes.exact({
|
|
|
28011
28939
|
status: PropTypes.string.isRequired,
|
|
28012
28940
|
});
|
|
28013
28941
|
|
|
28942
|
+
T['io.flow.internal.v0.models.cafe24_markets_webhook'] = PropTypes.exact({
|
|
28943
|
+
placeholder: PropTypes.string,
|
|
28944
|
+
});
|
|
28945
|
+
|
|
28014
28946
|
T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropTypes.exact({
|
|
28015
28947
|
default_country_of_origin: PropTypes.string,
|
|
28016
28948
|
default_hs_code: PropTypes.string,
|
|
@@ -28540,6 +29472,14 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
28540
29472
|
phrase_id: PropTypes.string.isRequired,
|
|
28541
29473
|
});
|
|
28542
29474
|
|
|
29475
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
29476
|
+
merchant_id: PropTypes.string.isRequired,
|
|
29477
|
+
channel: PropTypes.string.isRequired,
|
|
29478
|
+
catalog_size: PropTypes.number.isRequired,
|
|
29479
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
29480
|
+
last_request: PropTypes.string.isRequired,
|
|
29481
|
+
});
|
|
29482
|
+
|
|
28543
29483
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
28544
29484
|
center_key: PropTypes.string.isRequired,
|
|
28545
29485
|
position: PropTypes.number.isRequired,
|
|
@@ -28897,6 +29837,11 @@ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTyp
|
|
|
28897
29837
|
organization_id: PropTypes.string.isRequired,
|
|
28898
29838
|
});
|
|
28899
29839
|
|
|
29840
|
+
T['io.flow.restrictions.v0.models.carrier_restrictions'] = PropTypes.exact({
|
|
29841
|
+
carrier: PropTypes.string.isRequired,
|
|
29842
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29843
|
+
});
|
|
29844
|
+
|
|
28900
29845
|
T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
|
|
28901
29846
|
|
|
28902
29847
|
T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
|
|
@@ -29313,6 +30258,24 @@ T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
|
|
|
29313
30258
|
placeholder: PropTypes.string,
|
|
29314
30259
|
});
|
|
29315
30260
|
|
|
30261
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form'] = PropTypes.exact({
|
|
30262
|
+
order_number: PropTypes.string.isRequired,
|
|
30263
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30264
|
+
});
|
|
30265
|
+
|
|
30266
|
+
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form_by_order'] = PropTypes.exact({
|
|
30267
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30268
|
+
});
|
|
30269
|
+
|
|
30270
|
+
T['io.flow.consumer.invoice.v0.models.invoice_export'] = PropTypes.exact({
|
|
30271
|
+
id: PropTypes.string.isRequired,
|
|
30272
|
+
});
|
|
30273
|
+
|
|
30274
|
+
T['io.flow.consumer.invoice.v0.models.invoice_export_form'] = PropTypes.exact({
|
|
30275
|
+
date_from: PropTypes.string,
|
|
30276
|
+
date_to: PropTypes.string,
|
|
30277
|
+
});
|
|
30278
|
+
|
|
29316
30279
|
T['io.flow.adyen.v0.enums.payment_record_type'] = PropTypes.oneOf([
|
|
29317
30280
|
'Authorised',
|
|
29318
30281
|
'AuthorisedPending',
|
|
@@ -30014,8 +30977,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
30014
30977
|
paymentData: PropTypes.object.isRequired,
|
|
30015
30978
|
});
|
|
30016
30979
|
|
|
30017
|
-
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
30018
|
-
|
|
30019
30980
|
T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropTypes.exact({
|
|
30020
30981
|
placeholder: PropTypes.bool,
|
|
30021
30982
|
});
|
|
@@ -30031,6 +30992,14 @@ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
|
30031
30992
|
effective_at: PropTypes.string.isRequired,
|
|
30032
30993
|
});
|
|
30033
30994
|
|
|
30995
|
+
T['io.flow.organization.v0.models.organization_tax_registration_form'] = PropTypes.exact({
|
|
30996
|
+
tax_number: PropTypes.string.isRequired,
|
|
30997
|
+
country: PropTypes.string.isRequired,
|
|
30998
|
+
province: PropTypes.string,
|
|
30999
|
+
self_billing_agreement_effective_at: PropTypes.string.isRequired,
|
|
31000
|
+
self_billing_agreement_expires_at: PropTypes.string,
|
|
31001
|
+
});
|
|
31002
|
+
|
|
30034
31003
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
30035
31004
|
export const accountContact = T['io.flow.internal.v0.models.account_contact'];
|
|
30036
31005
|
export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
|
|
@@ -30124,18 +31093,24 @@ export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refu
|
|
|
30124
31093
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
30125
31094
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
30126
31095
|
export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
|
|
31096
|
+
export const aldoItemDeleted = T['io.flow.internal.v0.models.aldo_item_deleted'];
|
|
30127
31097
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
30128
31098
|
export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
|
|
31099
|
+
export const aldoItemUpserted = T['io.flow.internal.v0.models.aldo_item_upserted'];
|
|
30129
31100
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
30130
31101
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
30131
31102
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
30132
31103
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
30133
31104
|
export const anirbanItem = T['io.flow.internal.v0.models.anirban_item'];
|
|
31105
|
+
export const anirbanItemDeleted = T['io.flow.internal.v0.models.anirban_item_deleted'];
|
|
30134
31106
|
export const anirbanItemForm = T['io.flow.internal.v0.models.anirban_item_form'];
|
|
30135
31107
|
export const anirbanItemType = T['io.flow.internal.v0.enums.anirban_item_type'];
|
|
31108
|
+
export const anirbanItemUpserted = T['io.flow.internal.v0.models.anirban_item_upserted'];
|
|
30136
31109
|
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
31110
|
+
export const anshItemDeleted = T['io.flow.internal.v0.models.ansh_item_deleted'];
|
|
30137
31111
|
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
30138
31112
|
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
31113
|
+
export const anshItemUpserted = T['io.flow.internal.v0.models.ansh_item_upserted'];
|
|
30139
31114
|
export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
|
|
30140
31115
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30141
31116
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
@@ -30158,6 +31133,10 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
30158
31133
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
30159
31134
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
30160
31135
|
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
31136
|
+
export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
|
|
31137
|
+
export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
|
|
31138
|
+
export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
|
|
31139
|
+
export const b2BTaxRateType = T['io.flow.internal.v0.enums.b2b_tax_rate_type'];
|
|
30161
31140
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
30162
31141
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
30163
31142
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
@@ -30223,6 +31202,7 @@ export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_eve
|
|
|
30223
31202
|
export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
|
|
30224
31203
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30225
31204
|
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
31205
|
+
export const cafe24MarketsWebhook = T['io.flow.internal.v0.models.cafe24_markets_webhook'];
|
|
30226
31206
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30227
31207
|
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
30228
31208
|
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
@@ -30329,7 +31309,7 @@ export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_s
|
|
|
30329
31309
|
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
30330
31310
|
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
30331
31311
|
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
30332
|
-
export const
|
|
31312
|
+
export const channelOrganizationDomains = T['io.flow.internal.v0.models.channel_organization_domains'];
|
|
30333
31313
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
30334
31314
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
30335
31315
|
export const channelOrganizationIdentifierUpserted = T['io.flow.internal.v0.models.channel_organization_identifier_upserted'];
|
|
@@ -30349,6 +31329,8 @@ export const channelRateMetadata = T['io.flow.internal.v0.unions.channel_rate_me
|
|
|
30349
31329
|
export const channelRateMetadataIdentity = T['io.flow.internal.v0.models.channel_rate_metadata_identity'];
|
|
30350
31330
|
export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rate_metadata_rate'];
|
|
30351
31331
|
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
31332
|
+
export const channelShop = T['io.flow.internal.v0.models.channel_shop'];
|
|
31333
|
+
export const channelShopForm = T['io.flow.internal.v0.models.channel_shop_form'];
|
|
30352
31334
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
30353
31335
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
30354
31336
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
@@ -30395,6 +31377,7 @@ export const classificationDecision = T['io.flow.internal.v0.enums.classificatio
|
|
|
30395
31377
|
export const classificationDetails = T['io.flow.internal.v0.models.classification_details'];
|
|
30396
31378
|
export const classificationError = T['io.flow.internal.v0.models.classification_error'];
|
|
30397
31379
|
export const classificationErrorCode = T['io.flow.internal.v0.enums.classification_error_code'];
|
|
31380
|
+
export const classificationFailureReason = T['io.flow.internal.v0.enums.classification_failure_reason'];
|
|
30398
31381
|
export const classificationForm = T['io.flow.internal.v0.unions.classification_form'];
|
|
30399
31382
|
export const classificationFormWrapper = T['io.flow.internal.v0.models.classification_form_wrapper'];
|
|
30400
31383
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
@@ -30632,7 +31615,6 @@ export const featureDefaultValue = T['io.flow.internal.v0.unions.feature_default
|
|
|
30632
31615
|
export const featureDeleted = T['io.flow.internal.v0.models.feature_deleted'];
|
|
30633
31616
|
export const featureForm = T['io.flow.internal.v0.models.feature_form'];
|
|
30634
31617
|
export const featureGeoForm = T['io.flow.internal.v0.models.feature_geo_form'];
|
|
30635
|
-
export const featureIdReference = T['io.flow.internal.v0.models.feature_id_reference'];
|
|
30636
31618
|
export const featureReference = T['io.flow.internal.v0.models.feature_reference'];
|
|
30637
31619
|
export const featureReleaseForm = T['io.flow.internal.v0.models.feature_release_form'];
|
|
30638
31620
|
export const featureRule = T['io.flow.internal.v0.unions.feature_rule'];
|
|
@@ -30750,6 +31732,11 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
30750
31732
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
30751
31733
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
30752
31734
|
export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
|
|
31735
|
+
export const gabrielItem = T['io.flow.internal.v0.models.gabriel_item'];
|
|
31736
|
+
export const gabrielItemDeleted = T['io.flow.internal.v0.models.gabriel_item_deleted'];
|
|
31737
|
+
export const gabrielItemForm = T['io.flow.internal.v0.models.gabriel_item_form'];
|
|
31738
|
+
export const gabrielItemType = T['io.flow.internal.v0.enums.gabriel_item_type'];
|
|
31739
|
+
export const gabrielItemUpserted = T['io.flow.internal.v0.models.gabriel_item_upserted'];
|
|
30753
31740
|
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
30754
31741
|
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
30755
31742
|
export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
|
|
@@ -30785,9 +31772,12 @@ export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models
|
|
|
30785
31772
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
30786
31773
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
30787
31774
|
export const hoseinItem = T['io.flow.internal.v0.models.hosein_item'];
|
|
31775
|
+
export const hoseinItemDeleted = T['io.flow.internal.v0.models.hosein_item_deleted'];
|
|
30788
31776
|
export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
|
|
30789
31777
|
export const hoseinItemType = T['io.flow.internal.v0.enums.hosein_item_type'];
|
|
31778
|
+
export const hoseinItemUpserted = T['io.flow.internal.v0.models.hosein_item_upserted'];
|
|
30790
31779
|
export const hs6 = T['io.flow.internal.v0.models.hs6'];
|
|
31780
|
+
export const hs6CodeSource = T['io.flow.internal.v0.enums.hs6_code_source'];
|
|
30791
31781
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
30792
31782
|
export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
|
|
30793
31783
|
export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
|
|
@@ -30915,6 +31905,10 @@ export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'
|
|
|
30915
31905
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
30916
31906
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
30917
31907
|
export const lastFailureSummary = T['io.flow.internal.v0.models.last_failure_summary'];
|
|
31908
|
+
export const ledgerReport = T['io.flow.internal.v0.models.ledger_report'];
|
|
31909
|
+
export const ledgerReportType = T['io.flow.internal.v0.enums.ledger_report_type'];
|
|
31910
|
+
export const ledgerReportUrl = T['io.flow.internal.v0.models.ledger_report_url'];
|
|
31911
|
+
export const ledgerReportUrlType = T['io.flow.internal.v0.enums.ledger_report_url_type'];
|
|
30918
31912
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
30919
31913
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
30920
31914
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -30994,8 +31988,10 @@ export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
|
30994
31988
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
30995
31989
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
30996
31990
|
export const niallItem = T['io.flow.internal.v0.models.niall_item'];
|
|
31991
|
+
export const niallItemDeleted = T['io.flow.internal.v0.models.niall_item_deleted'];
|
|
30997
31992
|
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
30998
31993
|
export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
|
|
31994
|
+
export const niallItemUpserted = T['io.flow.internal.v0.models.niall_item_upserted'];
|
|
30999
31995
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31000
31996
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31001
31997
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
@@ -31082,9 +32078,6 @@ export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organ
|
|
|
31082
32078
|
export const organizationBankAccountDeleted = T['io.flow.internal.v0.models.organization_bank_account_deleted'];
|
|
31083
32079
|
export const organizationBankAccountUpserted = T['io.flow.internal.v0.models.organization_bank_account_upserted'];
|
|
31084
32080
|
export const organizationBillingStatement = T['io.flow.internal.v0.models.organization_billing_statement'];
|
|
31085
|
-
export const organizationBooleanValue = T['io.flow.internal.v0.models.organization_boolean_value'];
|
|
31086
|
-
export const organizationBooleanValueDeleted = T['io.flow.internal.v0.models.organization_boolean_value_deleted'];
|
|
31087
|
-
export const organizationBooleanValueUpserted = T['io.flow.internal.v0.models.organization_boolean_value_upserted'];
|
|
31088
32081
|
export const organizationBusinessEntity = T['io.flow.internal.v0.models.organization_business_entity'];
|
|
31089
32082
|
export const organizationBusinessEntityDeleted = T['io.flow.internal.v0.models.organization_business_entity_deleted'];
|
|
31090
32083
|
export const organizationBusinessEntityUpserted = T['io.flow.internal.v0.models.organization_business_entity_upserted'];
|
|
@@ -31241,6 +32234,16 @@ export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form']
|
|
|
31241
32234
|
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31242
32235
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31243
32236
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
32237
|
+
export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
|
|
32238
|
+
export const preonboardingClassificationPlatform = T['io.flow.internal.v0.enums.preonboarding_classification_platform'];
|
|
32239
|
+
export const preonboardingClassificationRabbitmqEnvelope = T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'];
|
|
32240
|
+
export const preonboardingClassificationRabbitmqMessage = T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'];
|
|
32241
|
+
export const preonboardingClassificationRequest = T['io.flow.internal.v0.models.preonboarding_classification_request'];
|
|
32242
|
+
export const preonboardingClassificationResult = T['io.flow.internal.v0.models.preonboarding_classification_result'];
|
|
32243
|
+
export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preonboarding_classification_type'];
|
|
32244
|
+
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
32245
|
+
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32246
|
+
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
31244
32247
|
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
31245
32248
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31246
32249
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
@@ -31293,6 +32296,7 @@ export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_po
|
|
|
31293
32296
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
31294
32297
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
31295
32298
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
32299
|
+
export const proofOfPostingSynthetic = T['io.flow.internal.v0.models.proof_of_posting_synthetic'];
|
|
31296
32300
|
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
31297
32301
|
export const pspDistribution = T['io.flow.internal.v0.models.psp_distribution'];
|
|
31298
32302
|
export const pspRoutingDistribution = T['io.flow.internal.v0.models.psp_routing_distribution'];
|
|
@@ -31364,6 +32368,7 @@ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
|
31364
32368
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
31365
32369
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
31366
32370
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
32371
|
+
export const reportAmountRange = T['io.flow.internal.v0.models.report_amount_range'];
|
|
31367
32372
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31368
32373
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31369
32374
|
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
@@ -31494,8 +32499,10 @@ export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_recor
|
|
|
31494
32499
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
31495
32500
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
31496
32501
|
export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
|
|
32502
|
+
export const rohanItemDeleted = T['io.flow.internal.v0.models.rohan_item_deleted'];
|
|
31497
32503
|
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
31498
32504
|
export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
|
|
32505
|
+
export const rohanItemUpserted = T['io.flow.internal.v0.models.rohan_item_upserted'];
|
|
31499
32506
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
31500
32507
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
31501
32508
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -31504,8 +32511,10 @@ export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_re
|
|
|
31504
32511
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
31505
32512
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
31506
32513
|
export const sarveshItem = T['io.flow.internal.v0.models.sarvesh_item'];
|
|
32514
|
+
export const sarveshItemDeleted = T['io.flow.internal.v0.models.sarvesh_item_deleted'];
|
|
31507
32515
|
export const sarveshItemForm = T['io.flow.internal.v0.models.sarvesh_item_form'];
|
|
31508
32516
|
export const sarveshItemType = T['io.flow.internal.v0.enums.sarvesh_item_type'];
|
|
32517
|
+
export const sarveshItemUpserted = T['io.flow.internal.v0.models.sarvesh_item_upserted'];
|
|
31509
32518
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
31510
32519
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
31511
32520
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -31529,6 +32538,9 @@ export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_s
|
|
|
31529
32538
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31530
32539
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31531
32540
|
export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
32541
|
+
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
32542
|
+
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
32543
|
+
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
31532
32544
|
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
31533
32545
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
31534
32546
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
@@ -31568,6 +32580,7 @@ export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_
|
|
|
31568
32580
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
31569
32581
|
export const shopifyMarketsOrderVersionWithShopId = T['io.flow.internal.v0.models.shopify_markets_order_version_with_shop_id'];
|
|
31570
32582
|
export const shopifyMarketsOrdersMetrics = T['io.flow.internal.v0.models.shopify_markets_orders_metrics'];
|
|
32583
|
+
export const shopifyMarketsOrganizationOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_organization_order_metrics'];
|
|
31571
32584
|
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
31572
32585
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
31573
32586
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
@@ -31748,6 +32761,7 @@ export const taxTransaction = T['io.flow.internal.v0.models.tax_transaction'];
|
|
|
31748
32761
|
export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transaction_deleted'];
|
|
31749
32762
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
31750
32763
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
32764
|
+
export const taxTypeTotal = T['io.flow.internal.v0.models.tax_type_total'];
|
|
31751
32765
|
export const taxonomyAlignmentCheckResult = T['io.flow.internal.v0.models.taxonomy_alignment_check_result'];
|
|
31752
32766
|
export const taxonomyCategory = PropTypes.any;
|
|
31753
32767
|
export const taxonomyCategoryClassificationAlignment = T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'];
|
|
@@ -31769,6 +32783,7 @@ export const timeToClassifyAggregatedUpserted = T['io.flow.internal.v0.models.ti
|
|
|
31769
32783
|
export const timeToClassifyDeleted = T['io.flow.internal.v0.models.time_to_classify_deleted'];
|
|
31770
32784
|
export const timeToClassifyUpserted = T['io.flow.internal.v0.models.time_to_classify_upserted'];
|
|
31771
32785
|
export const timeWithTimezone = T['io.flow.internal.v0.models.time_with_timezone'];
|
|
32786
|
+
export const tokens = T['io.flow.internal.v0.models.tokens'];
|
|
31772
32787
|
export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
31773
32788
|
export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
|
|
31774
32789
|
export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
|