@flowio/api-internal-prop-types 9.24.129 → 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 +986 -95
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +986 -95
- package/src/api-internal.js +1247 -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,7 @@ 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']);
|
|
110
130
|
|
|
111
131
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
112
132
|
base: PropTypes.number,
|
|
@@ -133,6 +153,8 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
133
153
|
transaction_id: PropTypes.string.isRequired,
|
|
134
154
|
});
|
|
135
155
|
|
|
156
|
+
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
157
|
+
|
|
136
158
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
137
159
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
138
160
|
id: PropTypes.string,
|
|
@@ -182,7 +204,7 @@ T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.
|
|
|
182
204
|
id: PropTypes.string.isRequired,
|
|
183
205
|
});
|
|
184
206
|
|
|
185
|
-
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']);
|
|
186
208
|
|
|
187
209
|
T['io.flow.billing.v0.models.attachment'] = PropTypes.exact({
|
|
188
210
|
type: T['io.flow.billing.v0.enums.statement_attachment_type'].isRequired,
|
|
@@ -516,6 +538,11 @@ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
|
|
|
516
538
|
label: PropTypes.string.isRequired,
|
|
517
539
|
});
|
|
518
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
|
+
|
|
519
546
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'] = PropTypes.exact({
|
|
520
547
|
discriminator: PropTypes.oneOf(['shopify_merchant_applications_summary']).isRequired,
|
|
521
548
|
total: PropTypes.number.isRequired,
|
|
@@ -523,6 +550,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary']
|
|
|
523
550
|
|
|
524
551
|
T['io.flow.merchant.onboarding.v0.unions.merchant_applications_summary'] = PropTypes.oneOfType([
|
|
525
552
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_applications_summary'],
|
|
553
|
+
T['io.flow.merchant.onboarding.v0.models.common_merchant_applications_summary'],
|
|
526
554
|
]);
|
|
527
555
|
|
|
528
556
|
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'] = PropTypes.exact({
|
|
@@ -545,12 +573,6 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'] = P
|
|
|
545
573
|
to: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_time'].isRequired,
|
|
546
574
|
});
|
|
547
575
|
|
|
548
|
-
T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
549
|
-
amount: PropTypes.number,
|
|
550
|
-
currency: PropTypes.string,
|
|
551
|
-
});
|
|
552
|
-
|
|
553
|
-
T['io.flow.merchant.onboarding.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
|
|
554
576
|
T['io.flow.merchant.onboarding.v0.enums.logistics_format_preference'] = PropTypes.oneOf(['shopify_console', 'existing_3pl_integration', 'byo_integration']);
|
|
555
577
|
|
|
556
578
|
T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
@@ -558,6 +580,13 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
558
580
|
description: PropTypes.string,
|
|
559
581
|
});
|
|
560
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
|
+
|
|
561
590
|
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
562
591
|
decimal: PropTypes.string.isRequired,
|
|
563
592
|
group: PropTypes.string.isRequired,
|
|
@@ -663,6 +692,18 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
663
692
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
664
693
|
]);
|
|
665
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
|
+
|
|
666
707
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
667
708
|
|
|
668
709
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -750,6 +791,11 @@ T['io.flow.token.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
750
791
|
id: PropTypes.string.isRequired,
|
|
751
792
|
});
|
|
752
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
|
+
|
|
753
799
|
T['io.flow.ratecard.v0.models.ratecard_rate_form'] = PropTypes.exact({
|
|
754
800
|
amount: PropTypes.number.isRequired,
|
|
755
801
|
weight: PropTypes.number.isRequired,
|
|
@@ -761,15 +807,7 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
761
807
|
weight: PropTypes.number.isRequired,
|
|
762
808
|
});
|
|
763
809
|
|
|
764
|
-
T['io.flow.
|
|
765
|
-
id: PropTypes.string.isRequired,
|
|
766
|
-
name: PropTypes.string.isRequired,
|
|
767
|
-
});
|
|
768
|
-
|
|
769
|
-
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
770
|
-
from: PropTypes.number.isRequired,
|
|
771
|
-
to: PropTypes.number.isRequired,
|
|
772
|
-
});
|
|
810
|
+
T['io.flow.label.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
|
|
773
811
|
|
|
774
812
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
775
813
|
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
@@ -3314,6 +3352,88 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3314
3352
|
notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
|
|
3315
3353
|
});
|
|
3316
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']);
|
|
3317
3437
|
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3318
3438
|
|
|
3319
3439
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -3355,6 +3475,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company
|
|
|
3355
3475
|
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
3356
3476
|
});
|
|
3357
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
|
+
|
|
3358
3485
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
3359
3486
|
total_order_count: PropTypes.number.isRequired,
|
|
3360
3487
|
});
|
|
@@ -3407,6 +3534,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3407
3534
|
'unsupported_virtual_goods',
|
|
3408
3535
|
'non_matching_currencies',
|
|
3409
3536
|
'unsupported_order_edit',
|
|
3537
|
+
'order_allocation_duties_mismatch',
|
|
3410
3538
|
'order_missing',
|
|
3411
3539
|
]);
|
|
3412
3540
|
|
|
@@ -3485,29 +3613,6 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3485
3613
|
'logistics_team',
|
|
3486
3614
|
]);
|
|
3487
3615
|
|
|
3488
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3489
|
-
id: PropTypes.string.isRequired,
|
|
3490
|
-
organization_id: PropTypes.string.isRequired,
|
|
3491
|
-
order_number: PropTypes.string.isRequired,
|
|
3492
|
-
channel_id: PropTypes.string.isRequired,
|
|
3493
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
3494
|
-
payment_request_id: PropTypes.string,
|
|
3495
|
-
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3496
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3497
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3498
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3499
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3500
|
-
order_created_at: PropTypes.string,
|
|
3501
|
-
order_updated_at: PropTypes.string,
|
|
3502
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3503
|
-
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
3504
|
-
});
|
|
3505
|
-
|
|
3506
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3507
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3508
|
-
external_order: PropTypes.object.isRequired,
|
|
3509
|
-
});
|
|
3510
|
-
|
|
3511
3616
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3512
3617
|
message: PropTypes.string.isRequired,
|
|
3513
3618
|
reason: PropTypes.string.isRequired,
|
|
@@ -7252,6 +7357,22 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7252
7357
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7253
7358
|
});
|
|
7254
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
|
+
|
|
7255
7376
|
T['io.flow.ftp.v0.models.ftp_user'] = PropTypes.exact({
|
|
7256
7377
|
username: PropTypes.string.isRequired,
|
|
7257
7378
|
password: PropTypes.string,
|
|
@@ -8072,12 +8193,6 @@ T['io.flow.label.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
|
8072
8193
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8073
8194
|
});
|
|
8074
8195
|
|
|
8075
|
-
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
8076
|
-
id: PropTypes.string.isRequired,
|
|
8077
|
-
name: PropTypes.string.isRequired,
|
|
8078
|
-
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
8079
|
-
});
|
|
8080
|
-
|
|
8081
8196
|
T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
8082
8197
|
postals: PropTypes.arrayOf(PropTypes.string),
|
|
8083
8198
|
provinces: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -8170,6 +8285,7 @@ T['io.flow.merchant.onboarding.v0.models.merchant_info'] = PropTypes.exact({
|
|
|
8170
8285
|
region: T['io.flow.merchant.onboarding.v0.enums.region_type'],
|
|
8171
8286
|
region_value: PropTypes.string,
|
|
8172
8287
|
category_code: PropTypes.string,
|
|
8288
|
+
description: PropTypes.string,
|
|
8173
8289
|
});
|
|
8174
8290
|
|
|
8175
8291
|
T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
|
|
@@ -8179,8 +8295,14 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form']
|
|
|
8179
8295
|
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'],
|
|
8180
8296
|
});
|
|
8181
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
|
+
|
|
8182
8303
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
|
|
8183
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'],
|
|
8184
8306
|
]);
|
|
8185
8307
|
|
|
8186
8308
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
@@ -8447,6 +8569,62 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8447
8569
|
id: PropTypes.string.isRequired,
|
|
8448
8570
|
});
|
|
8449
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
|
+
|
|
8450
8628
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8451
8629
|
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8452
8630
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9813,6 +9991,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9813
9991
|
'order_edit',
|
|
9814
9992
|
'mixed_fulfilment_non_lvg',
|
|
9815
9993
|
'lvg_refund',
|
|
9994
|
+
'us_inbound_tax_refund',
|
|
9816
9995
|
'order_cancellation_above_de_min',
|
|
9817
9996
|
'wyol_shipment_above_de_min',
|
|
9818
9997
|
'full_refund_without_shipment',
|
|
@@ -10648,6 +10827,13 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = Prop
|
|
|
10648
10827
|
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
10649
10828
|
});
|
|
10650
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
|
+
|
|
10651
10837
|
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
10652
10838
|
total_order_count: PropTypes.number.isRequired,
|
|
10653
10839
|
});
|
|
@@ -10840,6 +11026,22 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
10840
11026
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10841
11027
|
});
|
|
10842
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
|
+
|
|
10843
11045
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10844
11046
|
|
|
10845
11047
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -11022,6 +11224,7 @@ T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
|
11022
11224
|
T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
11023
11225
|
lvg: PropTypes.bool.isRequired,
|
|
11024
11226
|
manual: PropTypes.bool.isRequired,
|
|
11227
|
+
managed_pricing: PropTypes.bool,
|
|
11025
11228
|
});
|
|
11026
11229
|
|
|
11027
11230
|
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
@@ -11114,23 +11317,12 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
11114
11317
|
oldest_pv_product_date_transacting: PropTypes.string.isRequired,
|
|
11115
11318
|
oldest_pc_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11116
11319
|
oldest_pc_product_date_transacting: PropTypes.string.isRequired,
|
|
11117
|
-
num_orgs_setup_complete_prs: PropTypes.number.isRequired,
|
|
11118
|
-
num_products_setup_complete_prs: PropTypes.number.isRequired,
|
|
11119
|
-
num_orgs_transacting_prs: PropTypes.number.isRequired,
|
|
11120
|
-
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
11121
|
-
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
11122
|
-
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
11123
11320
|
percent_products_reviewed_transacting: PropTypes.number,
|
|
11124
11321
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11125
11322
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11126
11323
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11127
11324
|
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11128
|
-
num_pr_inflow_net_new: PropTypes.number.isRequired,
|
|
11129
|
-
num_pr_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11130
|
-
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11131
|
-
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11132
11325
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11133
|
-
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11134
11326
|
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11135
11327
|
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11136
11328
|
num_products_with_fs_result: PropTypes.number,
|
|
@@ -11187,99 +11379,24 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
|
11187
11379
|
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
11188
11380
|
});
|
|
11189
11381
|
|
|
11190
|
-
T['io.flow.
|
|
11191
|
-
name: PropTypes.string.isRequired,
|
|
11192
|
-
full_name: PropTypes.string.isRequired,
|
|
11193
|
-
});
|
|
11382
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11194
11383
|
|
|
11195
|
-
T['io.flow.
|
|
11196
|
-
|
|
11197
|
-
|
|
11198
|
-
|
|
11199
|
-
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
11200
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11201
|
-
highest_value_item_number: PropTypes.string,
|
|
11202
|
-
updated_at: PropTypes.string.isRequired,
|
|
11203
|
-
deleted_at: PropTypes.string,
|
|
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,
|
|
11204
11388
|
});
|
|
11205
11389
|
|
|
11206
|
-
T['io.flow.
|
|
11207
|
-
id: PropTypes.number.isRequired,
|
|
11208
|
-
handle: PropTypes.string.isRequired,
|
|
11209
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
11210
|
-
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
11211
|
-
title: PropTypes.string.isRequired,
|
|
11212
|
-
vendor: PropTypes.string,
|
|
11213
|
-
body_html: PropTypes.string,
|
|
11214
|
-
product_type: PropTypes.string,
|
|
11215
|
-
status: PropTypes.string,
|
|
11216
|
-
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
11217
|
-
tags: PropTypes.string,
|
|
11218
|
-
template_suffix: PropTypes.string,
|
|
11219
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
11220
|
-
published_at: PropTypes.string,
|
|
11221
|
-
created_at: PropTypes.string.isRequired,
|
|
11222
|
-
updated_at: PropTypes.string.isRequired,
|
|
11223
|
-
has_variants_that_requires_components: PropTypes.bool,
|
|
11224
|
-
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
11225
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
11226
|
-
});
|
|
11390
|
+
T['io.flow.restrictions.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
|
|
11227
11391
|
|
|
11228
|
-
T['io.flow.
|
|
11229
|
-
|
|
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,
|
|
11230
11397
|
});
|
|
11231
11398
|
|
|
11232
|
-
T['io.flow.
|
|
11233
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11234
|
-
});
|
|
11235
|
-
|
|
11236
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11237
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11238
|
-
deleted_at: PropTypes.string,
|
|
11239
|
-
});
|
|
11240
|
-
|
|
11241
|
-
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
11242
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11243
|
-
deleted_at: PropTypes.string,
|
|
11244
|
-
});
|
|
11245
|
-
|
|
11246
|
-
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
11247
|
-
id: PropTypes.string.isRequired,
|
|
11248
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11249
|
-
domain: PropTypes.string.isRequired,
|
|
11250
|
-
api_version: PropTypes.string.isRequired,
|
|
11251
|
-
});
|
|
11252
|
-
|
|
11253
|
-
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
11254
|
-
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
11255
|
-
event_id: PropTypes.string.isRequired,
|
|
11256
|
-
timestamp: PropTypes.string.isRequired,
|
|
11257
|
-
organization: PropTypes.string.isRequired,
|
|
11258
|
-
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
11259
|
-
});
|
|
11260
|
-
|
|
11261
|
-
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
11262
|
-
id: PropTypes.string.isRequired,
|
|
11263
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
11264
|
-
});
|
|
11265
|
-
|
|
11266
|
-
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
11267
|
-
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
11268
|
-
event_id: PropTypes.string.isRequired,
|
|
11269
|
-
timestamp: PropTypes.string.isRequired,
|
|
11270
|
-
organization: PropTypes.string.isRequired,
|
|
11271
|
-
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
11272
|
-
});
|
|
11273
|
-
|
|
11274
|
-
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['smb', 'enterprise']);
|
|
11275
|
-
|
|
11276
|
-
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11277
|
-
pending_restriction_count: PropTypes.number.isRequired,
|
|
11278
|
-
pending_verification_count: PropTypes.number.isRequired,
|
|
11279
|
-
pending_classification_count: PropTypes.number.isRequired,
|
|
11280
|
-
});
|
|
11281
|
-
|
|
11282
|
-
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
11399
|
+
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
11283
11400
|
|
|
11284
11401
|
T['io.flow.internal.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
|
|
11285
11402
|
rule_id: PropTypes.string.isRequired,
|
|
@@ -11410,6 +11527,11 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11410
11527
|
organization_id: PropTypes.string.isRequired,
|
|
11411
11528
|
});
|
|
11412
11529
|
|
|
11530
|
+
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11531
|
+
min: PropTypes.number,
|
|
11532
|
+
max: PropTypes.number,
|
|
11533
|
+
});
|
|
11534
|
+
|
|
11413
11535
|
T['io.flow.internal.v0.enums.source_type_filter'] = PropTypes.oneOf(['organization', 'channel']);
|
|
11414
11536
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11415
11537
|
|
|
@@ -11418,6 +11540,12 @@ T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
|
11418
11540
|
'global_e_united_kingdom',
|
|
11419
11541
|
'global_e_canada',
|
|
11420
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',
|
|
11421
11549
|
]);
|
|
11422
11550
|
|
|
11423
11551
|
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
@@ -11457,6 +11585,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11457
11585
|
'trueup_overview',
|
|
11458
11586
|
'non_channel_payment_bank_account',
|
|
11459
11587
|
'scheduled_payment',
|
|
11588
|
+
'scheduled_payment_citi',
|
|
11460
11589
|
'account_quarterly_balances',
|
|
11461
11590
|
'invariants',
|
|
11462
11591
|
'payments',
|
|
@@ -11721,30 +11850,6 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11721
11850
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11722
11851
|
});
|
|
11723
11852
|
|
|
11724
|
-
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11725
|
-
|
|
11726
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11727
|
-
rule_id: PropTypes.string.isRequired,
|
|
11728
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11729
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11730
|
-
description: PropTypes.string,
|
|
11731
|
-
});
|
|
11732
|
-
|
|
11733
|
-
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11734
|
-
id: PropTypes.string.isRequired,
|
|
11735
|
-
rule_id: PropTypes.string.isRequired,
|
|
11736
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11737
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11738
|
-
description: PropTypes.string,
|
|
11739
|
-
});
|
|
11740
|
-
|
|
11741
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11742
|
-
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11743
|
-
event_id: PropTypes.string.isRequired,
|
|
11744
|
-
timestamp: PropTypes.string.isRequired,
|
|
11745
|
-
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11746
|
-
});
|
|
11747
|
-
|
|
11748
11853
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11749
11854
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11750
11855
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11836,6 +11941,205 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11836
11941
|
classification_model_id: PropTypes.string.isRequired,
|
|
11837
11942
|
});
|
|
11838
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
|
+
|
|
11839
12143
|
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11840
12144
|
|
|
11841
12145
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
@@ -12398,10 +12702,6 @@ T['io.flow.internal.v0.models.organization_business_entity_deleted'] = PropTypes
|
|
|
12398
12702
|
id: PropTypes.string.isRequired,
|
|
12399
12703
|
});
|
|
12400
12704
|
|
|
12401
|
-
T['io.flow.internal.v0.models.feature_id_reference'] = PropTypes.exact({
|
|
12402
|
-
id: PropTypes.string.isRequired,
|
|
12403
|
-
});
|
|
12404
|
-
|
|
12405
12705
|
T['io.flow.billing.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
12406
12706
|
id: PropTypes.string.isRequired,
|
|
12407
12707
|
key: PropTypes.string.isRequired,
|
|
@@ -12620,7 +12920,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12620
12920
|
'fraud',
|
|
12621
12921
|
'logistics',
|
|
12622
12922
|
'payments',
|
|
12623
|
-
'shopify_markets',
|
|
12624
12923
|
'integration_partner',
|
|
12625
12924
|
'dtce',
|
|
12626
12925
|
'restrictions',
|
|
@@ -12780,6 +13079,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
12780
13079
|
health_score: PropTypes.number,
|
|
12781
13080
|
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
|
|
12782
13081
|
blocked_since: PropTypes.string,
|
|
13082
|
+
onboarding_segment: PropTypes.string,
|
|
12783
13083
|
});
|
|
12784
13084
|
|
|
12785
13085
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
@@ -13234,6 +13534,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
13234
13534
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield']),
|
|
13235
13535
|
merchant_of_record_app_id: PropTypes.number,
|
|
13236
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'],
|
|
13237
13538
|
total_tip_received: PropTypes.string,
|
|
13238
13539
|
});
|
|
13239
13540
|
|
|
@@ -13440,6 +13741,25 @@ T['io.flow.harmonization.v0.models.hs10'] = PropTypes.exact({
|
|
|
13440
13741
|
code: PropTypes.string.isRequired,
|
|
13441
13742
|
});
|
|
13442
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
|
+
|
|
13443
13763
|
T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
|
|
13444
13764
|
amount: PropTypes.number.isRequired,
|
|
13445
13765
|
description: PropTypes.string,
|
|
@@ -13536,8 +13856,6 @@ T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
|
13536
13856
|
eori_number: PropTypes.string,
|
|
13537
13857
|
});
|
|
13538
13858
|
|
|
13539
|
-
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13540
|
-
|
|
13541
13859
|
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13542
13860
|
'consumer',
|
|
13543
13861
|
'to_non_registered_business',
|
|
@@ -13651,29 +13969,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13651
13969
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13652
13970
|
});
|
|
13653
13971
|
|
|
13654
|
-
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13655
|
-
id: PropTypes.string.isRequired,
|
|
13656
|
-
order_number: PropTypes.string.isRequired,
|
|
13657
|
-
created_at: PropTypes.string.isRequired,
|
|
13658
|
-
reference_id: PropTypes.string.isRequired,
|
|
13659
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
13660
|
-
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
13661
|
-
order_identifier: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13662
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
|
|
13663
|
-
carrier_id: PropTypes.string,
|
|
13664
|
-
service_id: PropTypes.string,
|
|
13665
|
-
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13666
|
-
direction: T['io.flow.label.v0.enums.direction'],
|
|
13667
|
-
});
|
|
13668
|
-
|
|
13669
|
-
T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
|
|
13670
|
-
discriminator: PropTypes.oneOf(['label_request_error_upserted']).isRequired,
|
|
13671
|
-
event_id: PropTypes.string.isRequired,
|
|
13672
|
-
timestamp: PropTypes.string.isRequired,
|
|
13673
|
-
organization: PropTypes.string.isRequired,
|
|
13674
|
-
label_request_error: T['io.flow.internal.v0.models.label_request_error'].isRequired,
|
|
13675
|
-
});
|
|
13676
|
-
|
|
13677
13972
|
T['io.flow.internal.v0.models.metadata_proposition'] = PropTypes.exact({
|
|
13678
13973
|
shipping_method: T['io.flow.internal.v0.models.shipping_method_reference'].isRequired,
|
|
13679
13974
|
name: PropTypes.string.isRequired,
|
|
@@ -13907,6 +14202,7 @@ T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
|
13907
14202
|
narrow: PropTypes.string,
|
|
13908
14203
|
});
|
|
13909
14204
|
|
|
14205
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13910
14206
|
T['io.flow.internal.v0.enums.commercial_invoice_version'] = PropTypes.oneOf(['v2_2_1']);
|
|
13911
14207
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13912
14208
|
|
|
@@ -13931,7 +14227,7 @@ T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
|
13931
14227
|
tariff_code: PropTypes.string.isRequired,
|
|
13932
14228
|
country_of_origin: PropTypes.string.isRequired,
|
|
13933
14229
|
display_country_of_origin: PropTypes.string.isRequired,
|
|
13934
|
-
|
|
14230
|
+
remitter: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
13935
14231
|
gst_paid_text: PropTypes.string.isRequired,
|
|
13936
14232
|
unit_price: PropTypes.number.isRequired,
|
|
13937
14233
|
vat_price: PropTypes.number.isRequired,
|
|
@@ -14469,6 +14765,8 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
|
14469
14765
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14470
14766
|
});
|
|
14471
14767
|
|
|
14768
|
+
T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14769
|
+
|
|
14472
14770
|
T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.exact({
|
|
14473
14771
|
value: PropTypes.number.isRequired,
|
|
14474
14772
|
});
|
|
@@ -14662,23 +14960,6 @@ T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
|
14662
14960
|
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14663
14961
|
]);
|
|
14664
14962
|
|
|
14665
|
-
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
14666
|
-
id: PropTypes.string.isRequired,
|
|
14667
|
-
order_number: PropTypes.string.isRequired,
|
|
14668
|
-
organization_id: PropTypes.string.isRequired,
|
|
14669
|
-
fulfilled_at: PropTypes.string.isRequired,
|
|
14670
|
-
sequence_number: PropTypes.number.isRequired,
|
|
14671
|
-
completes_order: PropTypes.bool.isRequired,
|
|
14672
|
-
});
|
|
14673
|
-
|
|
14674
|
-
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
14675
|
-
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
14676
|
-
event_id: PropTypes.string.isRequired,
|
|
14677
|
-
timestamp: PropTypes.string.isRequired,
|
|
14678
|
-
organization: PropTypes.string.isRequired,
|
|
14679
|
-
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
14680
|
-
});
|
|
14681
|
-
|
|
14682
14963
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
14683
14964
|
transaction: PropTypes.number.isRequired,
|
|
14684
14965
|
merchant: PropTypes.number.isRequired,
|
|
@@ -14690,6 +14971,7 @@ T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
|
14690
14971
|
|
|
14691
14972
|
T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
14692
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'],
|
|
14693
14975
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14694
14976
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14695
14977
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -14877,6 +15159,24 @@ T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
|
14877
15159
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
14878
15160
|
]);
|
|
14879
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
|
+
|
|
14880
15180
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
14881
15181
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
14882
15182
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -15348,7 +15648,7 @@ T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
|
15348
15648
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15349
15649
|
});
|
|
15350
15650
|
|
|
15351
|
-
T['io.flow.sellability.v0.models.
|
|
15651
|
+
T['io.flow.sellability.v0.models.sellability_region_result'] = PropTypes.exact({
|
|
15352
15652
|
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
15353
15653
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15354
15654
|
});
|
|
@@ -15359,27 +15659,44 @@ T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
|
15359
15659
|
product_id: PropTypes.string,
|
|
15360
15660
|
request_id: PropTypes.string.isRequired,
|
|
15361
15661
|
hs6_code: PropTypes.string.isRequired,
|
|
15362
|
-
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,
|
|
15363
15663
|
});
|
|
15364
15664
|
|
|
15365
15665
|
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
15366
15666
|
T['io.flow.sellability.v0.models.product_sellability'],
|
|
15367
15667
|
T['io.flow.sellability.v0.models.sellability_error'],
|
|
15668
|
+
T['io.flow.sellability.v0.models.sellability_screening'],
|
|
15368
15669
|
]);
|
|
15369
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
|
+
|
|
15370
15687
|
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
15371
15688
|
shop_id: PropTypes.string.isRequired,
|
|
15372
15689
|
product_number: PropTypes.string.isRequired,
|
|
15373
15690
|
request_id: PropTypes.string.isRequired,
|
|
15374
15691
|
hs6_code: PropTypes.string.isRequired,
|
|
15375
15692
|
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15376
|
-
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']),
|
|
15377
15694
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15378
15695
|
taxonomy_category: PropTypes.string,
|
|
15379
15696
|
});
|
|
15380
15697
|
|
|
15381
15698
|
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15382
|
-
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,
|
|
15383
15700
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15384
15701
|
});
|
|
15385
15702
|
|
|
@@ -15388,7 +15705,7 @@ T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
|
15388
15705
|
product_id: PropTypes.string,
|
|
15389
15706
|
request_id: PropTypes.string.isRequired,
|
|
15390
15707
|
hs6_code: PropTypes.string.isRequired,
|
|
15391
|
-
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,
|
|
15392
15709
|
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15393
15710
|
});
|
|
15394
15711
|
|
|
@@ -15868,6 +16185,7 @@ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
|
15868
16185
|
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
15869
16186
|
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
15870
16187
|
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16188
|
+
client_secret: PropTypes.string,
|
|
15871
16189
|
});
|
|
15872
16190
|
|
|
15873
16191
|
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
@@ -16351,6 +16669,7 @@ T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['g
|
|
|
16351
16669
|
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
16352
16670
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16353
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'],
|
|
16354
16673
|
});
|
|
16355
16674
|
|
|
16356
16675
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -16825,6 +17144,8 @@ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
|
16825
17144
|
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
16826
17145
|
number: PropTypes.string.isRequired,
|
|
16827
17146
|
country: PropTypes.string.isRequired,
|
|
17147
|
+
province_number: PropTypes.string,
|
|
17148
|
+
province: PropTypes.string,
|
|
16828
17149
|
});
|
|
16829
17150
|
|
|
16830
17151
|
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
@@ -16897,7 +17218,7 @@ T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact(
|
|
|
16897
17218
|
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16898
17219
|
});
|
|
16899
17220
|
|
|
16900
|
-
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']);
|
|
16901
17222
|
|
|
16902
17223
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
16903
17224
|
productId: PropTypes.string.isRequired,
|
|
@@ -17398,9 +17719,9 @@ T['io.flow.internal.v0.models.sellability_check_result'] = PropTypes.exact({
|
|
|
17398
17719
|
status: T['io.flow.internal.v0.enums.sellability_check_status'].isRequired,
|
|
17399
17720
|
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17400
17721
|
current_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17401
|
-
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']),
|
|
17402
17723
|
merchant_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17403
|
-
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']),
|
|
17404
17725
|
current_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17405
17726
|
merchant_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17406
17727
|
});
|
|
@@ -17640,9 +17961,47 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17640
17961
|
'unsupported_virtual_goods',
|
|
17641
17962
|
'non_matching_currencies',
|
|
17642
17963
|
'unsupported_order_edit',
|
|
17964
|
+
'order_allocation_duties_mismatch',
|
|
17643
17965
|
'order_missing',
|
|
17644
17966
|
]);
|
|
17645
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
|
+
|
|
17646
18005
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17647
18006
|
|
|
17648
18007
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -17857,13 +18216,6 @@ T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
|
17857
18216
|
snooze_id: PropTypes.string,
|
|
17858
18217
|
});
|
|
17859
18218
|
|
|
17860
|
-
T['io.flow.internal.v0.models.restriction_organization_summary'] = PropTypes.exact({
|
|
17861
|
-
id: PropTypes.string.isRequired,
|
|
17862
|
-
name: PropTypes.string.isRequired,
|
|
17863
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
17864
|
-
source: T['io.flow.internal.v0.enums.organization_source'].isRequired,
|
|
17865
|
-
});
|
|
17866
|
-
|
|
17867
18219
|
T['io.flow.internal.v0.models.partner_form'] = PropTypes.exact({
|
|
17868
18220
|
id: PropTypes.string,
|
|
17869
18221
|
name: PropTypes.string,
|
|
@@ -18297,6 +18649,17 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
18297
18649
|
longitude: PropTypes.string,
|
|
18298
18650
|
});
|
|
18299
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
|
+
|
|
18300
18663
|
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
18301
18664
|
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
18302
18665
|
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
@@ -18326,6 +18689,13 @@ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropType
|
|
|
18326
18689
|
|
|
18327
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']]);
|
|
18328
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
|
+
|
|
18329
18699
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
18330
18700
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18331
18701
|
order_note: PropTypes.string,
|
|
@@ -19158,6 +19528,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19158
19528
|
order_updated_at: PropTypes.string,
|
|
19159
19529
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19160
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'],
|
|
19161
19532
|
});
|
|
19162
19533
|
|
|
19163
19534
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19442,6 +19813,10 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_orders_metrics'] =
|
|
|
19442
19813
|
shopify: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19443
19814
|
internal: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19444
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
|
+
),
|
|
19445
19820
|
});
|
|
19446
19821
|
|
|
19447
19822
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19488,6 +19863,7 @@ T['io.flow.internal.v0.models.shopify_markets_orders_metrics'] = PropTypes.exact
|
|
|
19488
19863
|
shopify: T['io.flow.internal.v0.models.shopify_markets_shopify_order_metrics'].isRequired,
|
|
19489
19864
|
internal: T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'].isRequired,
|
|
19490
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']),
|
|
19491
19867
|
});
|
|
19492
19868
|
|
|
19493
19869
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'] = PropTypes.exact({
|
|
@@ -19615,6 +19991,8 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19615
19991
|
'merchant_refund',
|
|
19616
19992
|
'ge_revenue_share',
|
|
19617
19993
|
'merchant_fee',
|
|
19994
|
+
'b2b_tax',
|
|
19995
|
+
'b2b_tax_refund',
|
|
19618
19996
|
]);
|
|
19619
19997
|
|
|
19620
19998
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19679,6 +20057,11 @@ T['io.flow.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
|
|
|
19679
20057
|
|
|
19680
20058
|
T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
|
|
19681
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
|
+
|
|
19682
20065
|
T['io.flow.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
19683
20066
|
id: PropTypes.string.isRequired,
|
|
19684
20067
|
});
|
|
@@ -19836,6 +20219,9 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
19836
20219
|
account: T['io.flow.internal.v0.models.bank_account'].isRequired,
|
|
19837
20220
|
});
|
|
19838
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']);
|
|
19839
20225
|
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
19840
20226
|
|
|
19841
20227
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
@@ -20217,6 +20603,31 @@ T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
|
20217
20603
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20218
20604
|
});
|
|
20219
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
|
+
|
|
20220
20631
|
T['io.flow.internal.v0.models.validated_address'] = PropTypes.exact({
|
|
20221
20632
|
company_name: PropTypes.string.isRequired,
|
|
20222
20633
|
person_name: PropTypes.string.isRequired,
|
|
@@ -20274,6 +20685,14 @@ T['io.flow.common.v0.models.billing_address'] = PropTypes.exact({
|
|
|
20274
20685
|
company: PropTypes.string,
|
|
20275
20686
|
});
|
|
20276
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
|
+
|
|
20277
20696
|
T['io.flow.experience.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
|
|
20278
20697
|
address: T['io.flow.common.v0.models.billing_address'].isRequired,
|
|
20279
20698
|
});
|
|
@@ -20796,7 +21215,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
20796
21215
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20797
21216
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20798
21217
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20799
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21218
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20800
21219
|
});
|
|
20801
21220
|
|
|
20802
21221
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -20816,7 +21235,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
20816
21235
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20817
21236
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20818
21237
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20819
|
-
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
21238
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
20820
21239
|
});
|
|
20821
21240
|
|
|
20822
21241
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -21874,7 +22293,22 @@ T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
|
21874
22293
|
currency: PropTypes.string.isRequired,
|
|
21875
22294
|
});
|
|
21876
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
|
+
|
|
21877
22310
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
22311
|
+
discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
|
|
21878
22312
|
shop_id: PropTypes.string.isRequired,
|
|
21879
22313
|
product_id: PropTypes.string,
|
|
21880
22314
|
name: PropTypes.string.isRequired,
|
|
@@ -21885,41 +22319,109 @@ T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
|
21885
22319
|
dry_run: PropTypes.bool,
|
|
21886
22320
|
});
|
|
21887
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
|
+
|
|
21888
22327
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
|
|
21889
22328
|
discriminator: PropTypes.oneOf(['shopify_merchant_application_form']).isRequired,
|
|
21890
22329
|
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
21891
22330
|
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
21892
|
-
beneficiary: PropTypes.string,
|
|
22331
|
+
beneficiary: PropTypes.string,
|
|
22332
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22333
|
+
business_url: PropTypes.string,
|
|
22334
|
+
business_description: PropTypes.string,
|
|
22335
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22336
|
+
refund_percentage: PropTypes.number,
|
|
22337
|
+
chargeback_percentage: PropTypes.number,
|
|
22338
|
+
bank_account_number: PropTypes.string,
|
|
22339
|
+
aba_routing_transit_number: PropTypes.string,
|
|
22340
|
+
other_trade_sector: PropTypes.string,
|
|
22341
|
+
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22342
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22343
|
+
average_order_weight: PropTypes.number,
|
|
22344
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22345
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22346
|
+
monthly_average_volume_amount: PropTypes.number,
|
|
22347
|
+
monthly_average_volume_currency: PropTypes.string,
|
|
22348
|
+
monthly_average_number_transactions: PropTypes.number,
|
|
22349
|
+
default_country_of_origin: 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'],
|
|
21893
22401
|
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
21894
22402
|
business_url: PropTypes.string,
|
|
21895
22403
|
business_description: PropTypes.string,
|
|
21896
22404
|
business_address: T['io.flow.common.v0.models.address'],
|
|
21897
22405
|
refund_percentage: PropTypes.number,
|
|
21898
22406
|
chargeback_percentage: PropTypes.number,
|
|
21899
|
-
|
|
21900
|
-
aba_routing_transit_number: PropTypes.string,
|
|
22407
|
+
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
21901
22408
|
other_trade_sector: PropTypes.string,
|
|
21902
|
-
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
21903
22409
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22410
|
+
center_address: T['io.flow.common.v0.models.address'],
|
|
21904
22411
|
average_order_weight: PropTypes.number,
|
|
22412
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
21905
22413
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
21906
|
-
|
|
21907
|
-
monthly_average_volume_currency: PropTypes.string,
|
|
21908
|
-
monthly_average_number_transactions: PropTypes.number,
|
|
22414
|
+
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
21909
22415
|
default_country_of_origin: PropTypes.string,
|
|
21910
|
-
ratecard_id: PropTypes.string,
|
|
21911
22416
|
rate_card: PropTypes.string.isRequired,
|
|
21912
22417
|
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22418
|
+
created_at: PropTypes.string.isRequired,
|
|
21913
22419
|
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21914
22420
|
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
21915
22421
|
average_order_value: T['io.flow.common.v0.models.money'],
|
|
21916
22422
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
21917
22423
|
});
|
|
21918
22424
|
|
|
21919
|
-
T['io.flow.merchant.onboarding.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
|
|
21920
|
-
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_form'],
|
|
21921
|
-
]);
|
|
21922
|
-
|
|
21923
22425
|
T['io.flow.tracking.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
21924
22426
|
tracking_id: PropTypes.string.isRequired,
|
|
21925
22427
|
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
@@ -22064,6 +22566,7 @@ T['io.flow.ratecard.v0.models.emergency_situation_surcharge_service_fee'] = Prop
|
|
|
22064
22566
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22065
22567
|
origin_region: T['io.flow.ratecard.v0.models.ratecard_region_reference'],
|
|
22066
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']),
|
|
22067
22570
|
interval_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22068
22571
|
});
|
|
22069
22572
|
|
|
@@ -22119,6 +22622,27 @@ T['io.flow.ratecard.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
|
|
|
22119
22622
|
T['io.flow.ratecard.v0.models.fixed_currency_conversion_ratecard_fee'],
|
|
22120
22623
|
]);
|
|
22121
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
|
+
|
|
22122
22646
|
T['io.flow.ratecard.v0.models.ratecard_lane_form'] = PropTypes.exact({
|
|
22123
22647
|
ratecard_id: PropTypes.string.isRequired,
|
|
22124
22648
|
currency: PropTypes.string.isRequired,
|
|
@@ -22350,6 +22874,19 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22350
22874
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22351
22875
|
});
|
|
22352
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
|
+
|
|
22353
22890
|
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22354
22891
|
id: PropTypes.string.isRequired,
|
|
22355
22892
|
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
@@ -22683,6 +23220,7 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22683
23220
|
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22684
23221
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22685
23222
|
average_order_weight: PropTypes.number,
|
|
23223
|
+
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22686
23224
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22687
23225
|
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22688
23226
|
default_country_of_origin: PropTypes.string,
|
|
@@ -22699,7 +23237,40 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22699
23237
|
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22700
23238
|
});
|
|
22701
23239
|
|
|
22702
|
-
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
|
+
});
|
|
22703
23274
|
|
|
22704
23275
|
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
22705
23276
|
lane_id: PropTypes.string,
|
|
@@ -22717,7 +23288,7 @@ T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
|
22717
23288
|
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
22718
23289
|
id: PropTypes.string.isRequired,
|
|
22719
23290
|
name: PropTypes.string.isRequired,
|
|
22720
|
-
environment: T['io.flow.
|
|
23291
|
+
environment: T['io.flow.restrictions.v0.enums.restriction_environment'].isRequired,
|
|
22721
23292
|
url: PropTypes.string,
|
|
22722
23293
|
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
22723
23294
|
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
@@ -22745,6 +23316,21 @@ T['io.flow.internal.v0.models.product_sellability_internal_form'] = PropTypes.ex
|
|
|
22745
23316
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22746
23317
|
});
|
|
22747
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
|
+
|
|
22748
23334
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
22749
23335
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22750
23336
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -22814,6 +23400,17 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
22814
23400
|
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22815
23401
|
});
|
|
22816
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
|
+
|
|
22817
23414
|
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22818
23415
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22819
23416
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
@@ -22886,6 +23483,7 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_form'] = PropTypes.exact({
|
|
|
22886
23483
|
center_id: PropTypes.string,
|
|
22887
23484
|
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
22888
23485
|
duties_owed: T['io.flow.common.v0.models.money'],
|
|
23486
|
+
commercial_invoice_mode: T['io.flow.label.v0.enums.commercial_invoice_mode'],
|
|
22889
23487
|
});
|
|
22890
23488
|
|
|
22891
23489
|
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
@@ -22979,6 +23577,21 @@ T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
|
22979
23577
|
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
22980
23578
|
});
|
|
22981
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
|
+
|
|
22982
23595
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
22983
23596
|
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
22984
23597
|
volumetric_weight: PropTypes.number,
|
|
@@ -23342,6 +23955,47 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
23342
23955
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
23343
23956
|
});
|
|
23344
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
|
+
|
|
23345
23999
|
T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
|
|
23346
24000
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23347
24001
|
});
|
|
@@ -23753,27 +24407,6 @@ T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result']
|
|
|
23753
24407
|
organization_onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'],
|
|
23754
24408
|
});
|
|
23755
24409
|
|
|
23756
|
-
T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
|
|
23757
|
-
id: PropTypes.string.isRequired,
|
|
23758
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
23759
|
-
feature: T['io.flow.internal.v0.models.feature_id_reference'].isRequired,
|
|
23760
|
-
value: PropTypes.bool.isRequired,
|
|
23761
|
-
});
|
|
23762
|
-
|
|
23763
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'] = PropTypes.exact({
|
|
23764
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_upserted']).isRequired,
|
|
23765
|
-
event_id: PropTypes.string.isRequired,
|
|
23766
|
-
timestamp: PropTypes.string.isRequired,
|
|
23767
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23768
|
-
});
|
|
23769
|
-
|
|
23770
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.exact({
|
|
23771
|
-
discriminator: PropTypes.oneOf(['organization_boolean_value_deleted']).isRequired,
|
|
23772
|
-
event_id: PropTypes.string.isRequired,
|
|
23773
|
-
timestamp: PropTypes.string.isRequired,
|
|
23774
|
-
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
23775
|
-
});
|
|
23776
|
-
|
|
23777
24410
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
23778
24411
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
23779
24412
|
id: PropTypes.string.isRequired,
|
|
@@ -24006,8 +24639,6 @@ T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
|
24006
24639
|
customs_value: PropTypes.number.isRequired,
|
|
24007
24640
|
total_value: PropTypes.number.isRequired,
|
|
24008
24641
|
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
24009
|
-
feature_israel_notes_import_duty_and_taxes_due: PropTypes.bool.isRequired,
|
|
24010
|
-
feature_new_export_declaration: PropTypes.bool.isRequired,
|
|
24011
24642
|
});
|
|
24012
24643
|
|
|
24013
24644
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
@@ -24148,6 +24779,12 @@ T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact(
|
|
|
24148
24779
|
created_at: PropTypes.string.isRequired,
|
|
24149
24780
|
});
|
|
24150
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
|
+
|
|
24151
24788
|
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
24152
24789
|
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
24153
24790
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
@@ -24155,6 +24792,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
24155
24792
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
24156
24793
|
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
24157
24794
|
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
24795
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
|
|
24158
24796
|
]);
|
|
24159
24797
|
|
|
24160
24798
|
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
@@ -24407,6 +25045,136 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
24407
25045
|
name: PropTypes.string,
|
|
24408
25046
|
});
|
|
24409
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
|
+
|
|
24410
25178
|
T['io.flow.payment.v0.models.virtual_card'] = PropTypes.exact({
|
|
24411
25179
|
id: PropTypes.string.isRequired,
|
|
24412
25180
|
key: PropTypes.string.isRequired,
|
|
@@ -24710,6 +25478,13 @@ T['io.flow.internal.v0.models.sarvesh_item'] = PropTypes.exact({
|
|
|
24710
25478
|
added_on: PropTypes.string.isRequired,
|
|
24711
25479
|
});
|
|
24712
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
|
+
|
|
24713
25488
|
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
24714
25489
|
number: PropTypes.string.isRequired,
|
|
24715
25490
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24727,6 +25502,13 @@ T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
|
24727
25502
|
added_on: PropTypes.string.isRequired,
|
|
24728
25503
|
});
|
|
24729
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
|
+
|
|
24730
25512
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24731
25513
|
id: PropTypes.string.isRequired,
|
|
24732
25514
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24848,6 +25630,13 @@ T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
|
24848
25630
|
added_on: PropTypes.string.isRequired,
|
|
24849
25631
|
});
|
|
24850
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
|
+
|
|
24851
25640
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
24852
25641
|
id: PropTypes.string.isRequired,
|
|
24853
25642
|
description: PropTypes.string.isRequired,
|
|
@@ -24871,6 +25660,13 @@ T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
|
|
|
24871
25660
|
added_on: PropTypes.string.isRequired,
|
|
24872
25661
|
});
|
|
24873
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
|
+
|
|
24874
25670
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
24875
25671
|
id: PropTypes.string.isRequired,
|
|
24876
25672
|
number: PropTypes.string.isRequired,
|
|
@@ -24892,6 +25688,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24892
25688
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24893
25689
|
});
|
|
24894
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
|
+
|
|
24895
25715
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
24896
25716
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
24897
25717
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24955,6 +25775,8 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24955
25775
|
non_l4l_tax_duty_fx: T['io.flow.common.v0.models.price'].isRequired,
|
|
24956
25776
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24957
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,
|
|
24958
25780
|
});
|
|
24959
25781
|
|
|
24960
25782
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -25667,6 +26489,13 @@ T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
|
25667
26489
|
added_on: PropTypes.string.isRequired,
|
|
25668
26490
|
});
|
|
25669
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
|
+
|
|
25670
26499
|
T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
25671
26500
|
number: PropTypes.string.isRequired,
|
|
25672
26501
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25684,6 +26513,13 @@ T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
|
|
|
25684
26513
|
added_on: PropTypes.string.isRequired,
|
|
25685
26514
|
});
|
|
25686
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
|
+
|
|
25687
26523
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25688
26524
|
number: PropTypes.string.isRequired,
|
|
25689
26525
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25701,6 +26537,13 @@ T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
|
|
|
25701
26537
|
added_on: PropTypes.string.isRequired,
|
|
25702
26538
|
});
|
|
25703
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
|
+
|
|
25704
26547
|
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
25705
26548
|
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
25706
26549
|
});
|
|
@@ -26202,6 +27045,8 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26202
27045
|
'merchant_fee',
|
|
26203
27046
|
'merchant_payout',
|
|
26204
27047
|
'merchant_refund',
|
|
27048
|
+
'b2b_tax',
|
|
27049
|
+
'b2b_tax_refund',
|
|
26205
27050
|
]);
|
|
26206
27051
|
|
|
26207
27052
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27025,8 +27870,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27025
27870
|
T['io.flow.internal.v0.models.export_failed'],
|
|
27026
27871
|
T['io.flow.internal.v0.models.feature_upserted'],
|
|
27027
27872
|
T['io.flow.internal.v0.models.feature_deleted'],
|
|
27028
|
-
T['io.flow.internal.v0.models.organization_boolean_value_upserted'],
|
|
27029
|
-
T['io.flow.internal.v0.models.organization_boolean_value_deleted'],
|
|
27030
27873
|
T['io.flow.internal.v0.models.account_settings_upserted'],
|
|
27031
27874
|
T['io.flow.internal.v0.models.account_settings_deleted'],
|
|
27032
27875
|
T['io.flow.internal.v0.models.account_processing_rates_upserted'],
|
|
@@ -27262,6 +28105,22 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27262
28105
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
27263
28106
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27264
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'],
|
|
27265
28124
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
27266
28125
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
27267
28126
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -27564,8 +28423,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27564
28423
|
'export_failed',
|
|
27565
28424
|
'feature_upserted',
|
|
27566
28425
|
'feature_deleted',
|
|
27567
|
-
'organization_boolean_value_upserted',
|
|
27568
|
-
'organization_boolean_value_deleted',
|
|
27569
28426
|
'account_settings_upserted',
|
|
27570
28427
|
'account_settings_deleted',
|
|
27571
28428
|
'account_processing_rates_upserted',
|
|
@@ -27801,6 +28658,22 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27801
28658
|
'stripe_connect_report_record_deleted',
|
|
27802
28659
|
'liability_remittance_plan_upserted',
|
|
27803
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',
|
|
27804
28677
|
'tracking_processing_error_upserted',
|
|
27805
28678
|
'tracking_processing_error_deleted',
|
|
27806
28679
|
'tracking_label_event_upserted_v2',
|
|
@@ -27894,7 +28767,15 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
27894
28767
|
]);
|
|
27895
28768
|
|
|
27896
28769
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
27897
|
-
|
|
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
|
+
|
|
27898
28779
|
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
27899
28780
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
27900
28781
|
|
|
@@ -27973,6 +28854,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27973
28854
|
'payment',
|
|
27974
28855
|
'rate_levels',
|
|
27975
28856
|
'center_defaults',
|
|
28857
|
+
'item_dimensions',
|
|
27976
28858
|
]);
|
|
27977
28859
|
|
|
27978
28860
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -28057,6 +28939,10 @@ T['io.flow.internal.v0.models.brick_webhook_event_response'] = PropTypes.exact({
|
|
|
28057
28939
|
status: PropTypes.string.isRequired,
|
|
28058
28940
|
});
|
|
28059
28941
|
|
|
28942
|
+
T['io.flow.internal.v0.models.cafe24_markets_webhook'] = PropTypes.exact({
|
|
28943
|
+
placeholder: PropTypes.string,
|
|
28944
|
+
});
|
|
28945
|
+
|
|
28060
28946
|
T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropTypes.exact({
|
|
28061
28947
|
default_country_of_origin: PropTypes.string,
|
|
28062
28948
|
default_hs_code: PropTypes.string,
|
|
@@ -28586,6 +29472,14 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
28586
29472
|
phrase_id: PropTypes.string.isRequired,
|
|
28587
29473
|
});
|
|
28588
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
|
+
|
|
28589
29483
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
28590
29484
|
center_key: PropTypes.string.isRequired,
|
|
28591
29485
|
position: PropTypes.number.isRequired,
|
|
@@ -28943,6 +29837,11 @@ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTyp
|
|
|
28943
29837
|
organization_id: PropTypes.string.isRequired,
|
|
28944
29838
|
});
|
|
28945
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
|
+
|
|
28946
29845
|
T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
|
|
28947
29846
|
|
|
28948
29847
|
T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
|
|
@@ -29359,6 +30258,24 @@ T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
|
|
|
29359
30258
|
placeholder: PropTypes.string,
|
|
29360
30259
|
});
|
|
29361
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
|
+
|
|
29362
30279
|
T['io.flow.adyen.v0.enums.payment_record_type'] = PropTypes.oneOf([
|
|
29363
30280
|
'Authorised',
|
|
29364
30281
|
'AuthorisedPending',
|
|
@@ -30060,8 +30977,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
30060
30977
|
paymentData: PropTypes.object.isRequired,
|
|
30061
30978
|
});
|
|
30062
30979
|
|
|
30063
|
-
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
30064
|
-
|
|
30065
30980
|
T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropTypes.exact({
|
|
30066
30981
|
placeholder: PropTypes.bool,
|
|
30067
30982
|
});
|
|
@@ -30077,6 +30992,14 @@ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
|
30077
30992
|
effective_at: PropTypes.string.isRequired,
|
|
30078
30993
|
});
|
|
30079
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
|
+
|
|
30080
31003
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
30081
31004
|
export const accountContact = T['io.flow.internal.v0.models.account_contact'];
|
|
30082
31005
|
export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
|
|
@@ -30170,18 +31093,24 @@ export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refu
|
|
|
30170
31093
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
30171
31094
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
30172
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'];
|
|
30173
31097
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
30174
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'];
|
|
30175
31100
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
30176
31101
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
30177
31102
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
30178
31103
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
30179
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'];
|
|
30180
31106
|
export const anirbanItemForm = T['io.flow.internal.v0.models.anirban_item_form'];
|
|
30181
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'];
|
|
30182
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'];
|
|
30183
31111
|
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
30184
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'];
|
|
30185
31114
|
export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
|
|
30186
31115
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30187
31116
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
@@ -30204,6 +31133,10 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
30204
31133
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
30205
31134
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
30206
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'];
|
|
30207
31140
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
30208
31141
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
30209
31142
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
@@ -30269,6 +31202,7 @@ export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_eve
|
|
|
30269
31202
|
export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
|
|
30270
31203
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30271
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'];
|
|
30272
31206
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30273
31207
|
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
30274
31208
|
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
@@ -30443,6 +31377,7 @@ export const classificationDecision = T['io.flow.internal.v0.enums.classificatio
|
|
|
30443
31377
|
export const classificationDetails = T['io.flow.internal.v0.models.classification_details'];
|
|
30444
31378
|
export const classificationError = T['io.flow.internal.v0.models.classification_error'];
|
|
30445
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'];
|
|
30446
31381
|
export const classificationForm = T['io.flow.internal.v0.unions.classification_form'];
|
|
30447
31382
|
export const classificationFormWrapper = T['io.flow.internal.v0.models.classification_form_wrapper'];
|
|
30448
31383
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
@@ -30680,7 +31615,6 @@ export const featureDefaultValue = T['io.flow.internal.v0.unions.feature_default
|
|
|
30680
31615
|
export const featureDeleted = T['io.flow.internal.v0.models.feature_deleted'];
|
|
30681
31616
|
export const featureForm = T['io.flow.internal.v0.models.feature_form'];
|
|
30682
31617
|
export const featureGeoForm = T['io.flow.internal.v0.models.feature_geo_form'];
|
|
30683
|
-
export const featureIdReference = T['io.flow.internal.v0.models.feature_id_reference'];
|
|
30684
31618
|
export const featureReference = T['io.flow.internal.v0.models.feature_reference'];
|
|
30685
31619
|
export const featureReleaseForm = T['io.flow.internal.v0.models.feature_release_form'];
|
|
30686
31620
|
export const featureRule = T['io.flow.internal.v0.unions.feature_rule'];
|
|
@@ -30798,6 +31732,11 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
30798
31732
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
30799
31733
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
30800
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'];
|
|
30801
31740
|
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
30802
31741
|
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
30803
31742
|
export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
|
|
@@ -30833,9 +31772,12 @@ export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models
|
|
|
30833
31772
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
30834
31773
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
30835
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'];
|
|
30836
31776
|
export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
|
|
30837
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'];
|
|
30838
31779
|
export const hs6 = T['io.flow.internal.v0.models.hs6'];
|
|
31780
|
+
export const hs6CodeSource = T['io.flow.internal.v0.enums.hs6_code_source'];
|
|
30839
31781
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
30840
31782
|
export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
|
|
30841
31783
|
export const importCompleted = T['io.flow.internal.v0.models.import_completed'];
|
|
@@ -30963,6 +31905,10 @@ export const labelsPrediction = T['io.flow.internal.v0.models.labels_prediction'
|
|
|
30963
31905
|
export const landedCostItem = T['io.flow.internal.v0.models.landed_cost_item'];
|
|
30964
31906
|
export const landmark = T['io.flow.internal.v0.models.landmark'];
|
|
30965
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'];
|
|
30966
31912
|
export const levyRateSummary = T['io.flow.internal.v0.models.levy_rate_summary'];
|
|
30967
31913
|
export const levyRateSummaryUpserted = T['io.flow.internal.v0.models.levy_rate_summary_upserted'];
|
|
30968
31914
|
export const liability = T['io.flow.internal.v0.models.liability'];
|
|
@@ -31042,8 +31988,10 @@ export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
|
31042
31988
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31043
31989
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31044
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'];
|
|
31045
31992
|
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
31046
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'];
|
|
31047
31995
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31048
31996
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31049
31997
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
@@ -31130,9 +32078,6 @@ export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organ
|
|
|
31130
32078
|
export const organizationBankAccountDeleted = T['io.flow.internal.v0.models.organization_bank_account_deleted'];
|
|
31131
32079
|
export const organizationBankAccountUpserted = T['io.flow.internal.v0.models.organization_bank_account_upserted'];
|
|
31132
32080
|
export const organizationBillingStatement = T['io.flow.internal.v0.models.organization_billing_statement'];
|
|
31133
|
-
export const organizationBooleanValue = T['io.flow.internal.v0.models.organization_boolean_value'];
|
|
31134
|
-
export const organizationBooleanValueDeleted = T['io.flow.internal.v0.models.organization_boolean_value_deleted'];
|
|
31135
|
-
export const organizationBooleanValueUpserted = T['io.flow.internal.v0.models.organization_boolean_value_upserted'];
|
|
31136
32081
|
export const organizationBusinessEntity = T['io.flow.internal.v0.models.organization_business_entity'];
|
|
31137
32082
|
export const organizationBusinessEntityDeleted = T['io.flow.internal.v0.models.organization_business_entity_deleted'];
|
|
31138
32083
|
export const organizationBusinessEntityUpserted = T['io.flow.internal.v0.models.organization_business_entity_upserted'];
|
|
@@ -31289,6 +32234,16 @@ export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form']
|
|
|
31289
32234
|
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31290
32235
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31291
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'];
|
|
31292
32247
|
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
31293
32248
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31294
32249
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
@@ -31341,6 +32296,7 @@ export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_po
|
|
|
31341
32296
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
31342
32297
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
31343
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'];
|
|
31344
32300
|
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
31345
32301
|
export const pspDistribution = T['io.flow.internal.v0.models.psp_distribution'];
|
|
31346
32302
|
export const pspRoutingDistribution = T['io.flow.internal.v0.models.psp_routing_distribution'];
|
|
@@ -31412,6 +32368,7 @@ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
|
31412
32368
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
31413
32369
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
31414
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'];
|
|
31415
32372
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31416
32373
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31417
32374
|
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
@@ -31542,8 +32499,10 @@ export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_recor
|
|
|
31542
32499
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
31543
32500
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
31544
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'];
|
|
31545
32503
|
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
31546
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'];
|
|
31547
32506
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
31548
32507
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
31549
32508
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -31552,8 +32511,10 @@ export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_re
|
|
|
31552
32511
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
31553
32512
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
31554
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'];
|
|
31555
32515
|
export const sarveshItemForm = T['io.flow.internal.v0.models.sarvesh_item_form'];
|
|
31556
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'];
|
|
31557
32518
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
31558
32519
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
31559
32520
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -31577,6 +32538,9 @@ export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_s
|
|
|
31577
32538
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31578
32539
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31579
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'];
|
|
31580
32544
|
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
31581
32545
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
31582
32546
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
@@ -31616,6 +32580,7 @@ export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_
|
|
|
31616
32580
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
31617
32581
|
export const shopifyMarketsOrderVersionWithShopId = T['io.flow.internal.v0.models.shopify_markets_order_version_with_shop_id'];
|
|
31618
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'];
|
|
31619
32584
|
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
31620
32585
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
31621
32586
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
@@ -31796,6 +32761,7 @@ export const taxTransaction = T['io.flow.internal.v0.models.tax_transaction'];
|
|
|
31796
32761
|
export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transaction_deleted'];
|
|
31797
32762
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
31798
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'];
|
|
31799
32765
|
export const taxonomyAlignmentCheckResult = T['io.flow.internal.v0.models.taxonomy_alignment_check_result'];
|
|
31800
32766
|
export const taxonomyCategory = PropTypes.any;
|
|
31801
32767
|
export const taxonomyCategoryClassificationAlignment = T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'];
|