@flowio/api-internal-prop-types 9.24.115 → 9.24.117
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 +50 -72
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +50 -72
- package/src/api-internal.js +97 -105
package/src/api-internal.js
CHANGED
|
@@ -59,7 +59,12 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
59
59
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
60
60
|
});
|
|
61
61
|
|
|
62
|
-
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
62
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
63
|
+
'insufficient_details',
|
|
64
|
+
'ineligible_category',
|
|
65
|
+
'wait_for_high_fidelity',
|
|
66
|
+
'external_service_unavailable',
|
|
67
|
+
]);
|
|
63
68
|
|
|
64
69
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
65
70
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
@@ -388,8 +393,19 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
388
393
|
|
|
389
394
|
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
390
395
|
|
|
396
|
+
T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
|
|
397
|
+
'order_edit',
|
|
398
|
+
'order_acceptance',
|
|
399
|
+
'mixed_fulfilment_non_lvg',
|
|
400
|
+
'lvg_refund',
|
|
401
|
+
'order_cancellation_above_de_min',
|
|
402
|
+
'wyol_shipment_above_de_min',
|
|
403
|
+
'full_refund_without_shipment',
|
|
404
|
+
]);
|
|
405
|
+
|
|
391
406
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
392
407
|
id: PropTypes.string.isRequired,
|
|
408
|
+
service_id: PropTypes.string,
|
|
393
409
|
tracking_number: PropTypes.string.isRequired,
|
|
394
410
|
});
|
|
395
411
|
|
|
@@ -397,6 +413,11 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
397
413
|
transaction_id: PropTypes.string.isRequired,
|
|
398
414
|
});
|
|
399
415
|
|
|
416
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
417
|
+
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
418
|
+
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
419
|
+
});
|
|
420
|
+
|
|
400
421
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
401
422
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
402
423
|
id: PropTypes.string,
|
|
@@ -3490,27 +3511,6 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3490
3511
|
'logistics_team',
|
|
3491
3512
|
]);
|
|
3492
3513
|
|
|
3493
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3494
|
-
id: PropTypes.string.isRequired,
|
|
3495
|
-
organization_id: PropTypes.string.isRequired,
|
|
3496
|
-
order_number: PropTypes.string.isRequired,
|
|
3497
|
-
channel_id: PropTypes.string.isRequired,
|
|
3498
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
3499
|
-
payment_request_id: PropTypes.string,
|
|
3500
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3501
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3502
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3503
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3504
|
-
order_created_at: PropTypes.string,
|
|
3505
|
-
order_updated_at: PropTypes.string,
|
|
3506
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3507
|
-
});
|
|
3508
|
-
|
|
3509
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3510
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3511
|
-
external_order: PropTypes.object.isRequired,
|
|
3512
|
-
});
|
|
3513
|
-
|
|
3514
3514
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3515
3515
|
message: PropTypes.string.isRequired,
|
|
3516
3516
|
reason: PropTypes.string.isRequired,
|
|
@@ -10171,6 +10171,7 @@ T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
|
10171
10171
|
description: PropTypes.string.isRequired,
|
|
10172
10172
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
10173
10173
|
status: T['io.flow.sellability.v0.enums.sellability_request_status'],
|
|
10174
|
+
dry_run: PropTypes.bool,
|
|
10174
10175
|
});
|
|
10175
10176
|
|
|
10176
10177
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -10920,21 +10921,6 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
10920
10921
|
).isRequired,
|
|
10921
10922
|
});
|
|
10922
10923
|
|
|
10923
|
-
T['io.flow.internal.v0.enums.session_country_status'] = PropTypes.oneOf(['enabled', 'disabled']);
|
|
10924
|
-
|
|
10925
|
-
T['io.flow.internal.v0.models.session_country_form'] = PropTypes.exact({
|
|
10926
|
-
status: T['io.flow.internal.v0.enums.session_country_status'].isRequired,
|
|
10927
|
-
});
|
|
10928
|
-
|
|
10929
|
-
T['io.flow.internal.v0.models.session_country'] = PropTypes.exact({
|
|
10930
|
-
country: PropTypes.string.isRequired,
|
|
10931
|
-
status: T['io.flow.internal.v0.enums.session_country_status'].isRequired,
|
|
10932
|
-
});
|
|
10933
|
-
|
|
10934
|
-
T['io.flow.internal.v0.models.session_countries'] = PropTypes.exact({
|
|
10935
|
-
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.session_country']).isRequired,
|
|
10936
|
-
});
|
|
10937
|
-
|
|
10938
10924
|
T['io.flow.experience.v0.enums.experience_status'] = PropTypes.oneOf(['draft', 'active', 'archiving', 'archived']);
|
|
10939
10925
|
|
|
10940
10926
|
T['io.flow.experience.v0.models.experience_status_form'] = PropTypes.exact({
|
|
@@ -11061,6 +11047,8 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11061
11047
|
account_number: PropTypes.string.isRequired,
|
|
11062
11048
|
});
|
|
11063
11049
|
|
|
11050
|
+
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11051
|
+
|
|
11064
11052
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11065
11053
|
products: PropTypes.bool.isRequired,
|
|
11066
11054
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11236,12 +11224,10 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11236
11224
|
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11237
11225
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11238
11226
|
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11239
|
-
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
11240
11227
|
|
|
11241
|
-
T['io.flow.internal.v0.models.
|
|
11242
|
-
|
|
11243
|
-
|
|
11244
|
-
count: PropTypes.number.isRequired,
|
|
11228
|
+
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11229
|
+
pending_restriction_count: PropTypes.number.isRequired,
|
|
11230
|
+
pending_verification_count: PropTypes.number.isRequired,
|
|
11245
11231
|
});
|
|
11246
11232
|
|
|
11247
11233
|
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
@@ -11664,11 +11650,6 @@ T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
|
|
|
11664
11650
|
description: PropTypes.string.isRequired,
|
|
11665
11651
|
});
|
|
11666
11652
|
|
|
11667
|
-
T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
11668
|
-
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
11669
|
-
count: PropTypes.number.isRequired,
|
|
11670
|
-
});
|
|
11671
|
-
|
|
11672
11653
|
T['io.flow.internal.v0.enums.restriction_state_review_status'] = PropTypes.oneOf(['reviewed', 'in_review']);
|
|
11673
11654
|
|
|
11674
11655
|
T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
@@ -14345,7 +14326,6 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14345
14326
|
]);
|
|
14346
14327
|
|
|
14347
14328
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14348
|
-
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14349
14329
|
|
|
14350
14330
|
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14351
14331
|
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
@@ -15719,6 +15699,7 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
15719
15699
|
id: PropTypes.string.isRequired,
|
|
15720
15700
|
number: PropTypes.string.isRequired,
|
|
15721
15701
|
submitted_at: PropTypes.string.isRequired,
|
|
15702
|
+
payment_source: PropTypes.string,
|
|
15722
15703
|
});
|
|
15723
15704
|
|
|
15724
15705
|
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
@@ -17589,6 +17570,30 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17589
17570
|
'order_missing',
|
|
17590
17571
|
]);
|
|
17591
17572
|
|
|
17573
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17574
|
+
|
|
17575
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17576
|
+
id: PropTypes.string.isRequired,
|
|
17577
|
+
organization_id: PropTypes.string.isRequired,
|
|
17578
|
+
order_number: PropTypes.string.isRequired,
|
|
17579
|
+
channel_id: PropTypes.string.isRequired,
|
|
17580
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
17581
|
+
payment_request_id: PropTypes.string,
|
|
17582
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17583
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17584
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17585
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
17586
|
+
order_created_at: PropTypes.string,
|
|
17587
|
+
order_updated_at: PropTypes.string,
|
|
17588
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
17589
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17590
|
+
});
|
|
17591
|
+
|
|
17592
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
17593
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17594
|
+
external_order: PropTypes.object.isRequired,
|
|
17595
|
+
});
|
|
17596
|
+
|
|
17592
17597
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
17593
17598
|
edited_at: PropTypes.string.isRequired,
|
|
17594
17599
|
});
|
|
@@ -18759,6 +18764,7 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
18759
18764
|
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
18760
18765
|
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'],
|
|
18761
18766
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
18767
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
|
|
18762
18768
|
]);
|
|
18763
18769
|
|
|
18764
18770
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -19136,6 +19142,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19136
19142
|
order_created_at: PropTypes.string,
|
|
19137
19143
|
order_updated_at: PropTypes.string,
|
|
19138
19144
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19145
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
19139
19146
|
});
|
|
19140
19147
|
|
|
19141
19148
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19824,17 +19831,6 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
19824
19831
|
|
|
19825
19832
|
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
19826
19833
|
|
|
19827
|
-
T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
19828
|
-
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
19829
|
-
count: PropTypes.number.isRequired,
|
|
19830
|
-
});
|
|
19831
|
-
|
|
19832
|
-
T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
19833
|
-
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
19834
|
-
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
19835
|
-
count: PropTypes.number.isRequired,
|
|
19836
|
-
});
|
|
19837
|
-
|
|
19838
19834
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
19839
19835
|
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
19840
19836
|
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
@@ -19909,6 +19905,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19909
19905
|
value_threshold_usd: PropTypes.number,
|
|
19910
19906
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19911
19907
|
source: T['io.flow.internal.v0.enums.restriction_organization_source'],
|
|
19908
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19912
19909
|
});
|
|
19913
19910
|
|
|
19914
19911
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -19922,6 +19919,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
19922
19919
|
value_threshold_usd: PropTypes.number,
|
|
19923
19920
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19924
19921
|
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19922
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19925
19923
|
});
|
|
19926
19924
|
|
|
19927
19925
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -19956,6 +19954,14 @@ T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
|
|
|
19956
19954
|
phone: PropTypes.string,
|
|
19957
19955
|
});
|
|
19958
19956
|
|
|
19957
|
+
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
19958
|
+
id: PropTypes.string.isRequired,
|
|
19959
|
+
number: PropTypes.string.isRequired,
|
|
19960
|
+
email: PropTypes.string,
|
|
19961
|
+
name: T['io.flow.common.v0.models.name'],
|
|
19962
|
+
phone: PropTypes.string,
|
|
19963
|
+
});
|
|
19964
|
+
|
|
19959
19965
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
19960
19966
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
19961
19967
|
email: PropTypes.string,
|
|
@@ -20051,22 +20057,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
|
20051
20057
|
updated_at: PropTypes.string.isRequired,
|
|
20052
20058
|
});
|
|
20053
20059
|
|
|
20054
|
-
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
20055
|
-
id: PropTypes.string.isRequired,
|
|
20056
|
-
number: PropTypes.string.isRequired,
|
|
20057
|
-
email: PropTypes.string,
|
|
20058
|
-
name: T['io.flow.common.v0.models.name'],
|
|
20059
|
-
phone: PropTypes.string,
|
|
20060
|
-
});
|
|
20061
|
-
|
|
20062
|
-
T['io.flow.internal.v0.models.customer_purge_upserted'] = PropTypes.exact({
|
|
20063
|
-
discriminator: PropTypes.oneOf(['customer_purge_upserted']).isRequired,
|
|
20064
|
-
event_id: PropTypes.string.isRequired,
|
|
20065
|
-
timestamp: PropTypes.string.isRequired,
|
|
20066
|
-
organization: PropTypes.string.isRequired,
|
|
20067
|
-
customer: T['io.flow.customer.v0.models.customer'].isRequired,
|
|
20068
|
-
});
|
|
20069
|
-
|
|
20070
20060
|
T['io.flow.common.v0.models.contact'] = PropTypes.exact({
|
|
20071
20061
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
20072
20062
|
company: PropTypes.string,
|
|
@@ -22842,8 +22832,7 @@ T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = Prop
|
|
|
22842
22832
|
earliest_pending_date: PropTypes.string.isRequired,
|
|
22843
22833
|
priority_score: PropTypes.number.isRequired,
|
|
22844
22834
|
date: PropTypes.string.isRequired,
|
|
22845
|
-
|
|
22846
|
-
count: PropTypes.number.isRequired,
|
|
22835
|
+
counts: T['io.flow.internal.v0.models.restriction_summary_counts'].isRequired,
|
|
22847
22836
|
});
|
|
22848
22837
|
|
|
22849
22838
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
@@ -24754,6 +24743,23 @@ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
|
|
|
24754
24743
|
created_at: PropTypes.string.isRequired,
|
|
24755
24744
|
});
|
|
24756
24745
|
|
|
24746
|
+
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
24747
|
+
number: PropTypes.string.isRequired,
|
|
24748
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24749
|
+
description: PropTypes.string,
|
|
24750
|
+
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
24751
|
+
added_on: PropTypes.string.isRequired,
|
|
24752
|
+
});
|
|
24753
|
+
|
|
24754
|
+
T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
24755
|
+
id: PropTypes.string.isRequired,
|
|
24756
|
+
number: PropTypes.string.isRequired,
|
|
24757
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24758
|
+
description: PropTypes.string,
|
|
24759
|
+
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
24760
|
+
added_on: PropTypes.string.isRequired,
|
|
24761
|
+
});
|
|
24762
|
+
|
|
24757
24763
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24758
24764
|
id: PropTypes.string.isRequired,
|
|
24759
24765
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -27181,7 +27187,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27181
27187
|
T['io.flow.internal.v0.models.organization_currency_setting_deleted'],
|
|
27182
27188
|
T['io.flow.internal.v0.models.channel_currency_setting_upserted'],
|
|
27183
27189
|
T['io.flow.internal.v0.models.channel_currency_setting_deleted'],
|
|
27184
|
-
T['io.flow.internal.v0.models.customer_purge_upserted'],
|
|
27185
27190
|
T['io.flow.internal.v0.models.customs_description_import'],
|
|
27186
27191
|
T['io.flow.internal.v0.models.customs_description_tariffs_import'],
|
|
27187
27192
|
T['io.flow.internal.v0.models.dispute_upserted'],
|
|
@@ -27705,7 +27710,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27705
27710
|
'organization_currency_setting_deleted',
|
|
27706
27711
|
'channel_currency_setting_upserted',
|
|
27707
27712
|
'channel_currency_setting_deleted',
|
|
27708
|
-
'customer_purge_upserted',
|
|
27709
27713
|
'customs_description_import',
|
|
27710
27714
|
'customs_description_tariffs_import',
|
|
27711
27715
|
'dispute_upserted',
|
|
@@ -27990,6 +27994,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
27990
27994
|
]);
|
|
27991
27995
|
|
|
27992
27996
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
27997
|
+
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
27993
27998
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
27994
27999
|
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27995
28000
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
@@ -28324,11 +28329,6 @@ T['io.flow.internal.v0.models.content_schema_summary'] = PropTypes.exact({
|
|
|
28324
28329
|
description: PropTypes.string,
|
|
28325
28330
|
});
|
|
28326
28331
|
|
|
28327
|
-
T['io.flow.internal.v0.models.customer_secret'] = PropTypes.exact({
|
|
28328
|
-
id: PropTypes.string.isRequired,
|
|
28329
|
-
secret: PropTypes.string.isRequired,
|
|
28330
|
-
});
|
|
28331
|
-
|
|
28332
28332
|
T['io.flow.internal.v0.models.customs_description_statistics'] = PropTypes.exact({
|
|
28333
28333
|
message: PropTypes.string.isRequired,
|
|
28334
28334
|
default_customs_description_total: PropTypes.number.isRequired,
|
|
@@ -28860,6 +28860,14 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28860
28860
|
product_id: PropTypes.string,
|
|
28861
28861
|
});
|
|
28862
28862
|
|
|
28863
|
+
T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exact({
|
|
28864
|
+
id: PropTypes.string.isRequired,
|
|
28865
|
+
rule_id: PropTypes.string.isRequired,
|
|
28866
|
+
description: PropTypes.string.isRequired,
|
|
28867
|
+
origin_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28868
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28869
|
+
});
|
|
28870
|
+
|
|
28863
28871
|
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
28864
28872
|
id: PropTypes.string.isRequired,
|
|
28865
28873
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -28904,15 +28912,6 @@ T['io.flow.internal.v0.models.search_provider_export'] = PropTypes.exact({
|
|
|
28904
28912
|
name: PropTypes.string.isRequired,
|
|
28905
28913
|
});
|
|
28906
28914
|
|
|
28907
|
-
T['io.flow.internal.v0.models.session_rollout'] = PropTypes.exact({
|
|
28908
|
-
id: PropTypes.string.isRequired,
|
|
28909
|
-
percent: PropTypes.number.isRequired,
|
|
28910
|
-
});
|
|
28911
|
-
|
|
28912
|
-
T['io.flow.internal.v0.models.session_rollout_form'] = PropTypes.exact({
|
|
28913
|
-
percent: PropTypes.number.isRequired,
|
|
28914
|
-
});
|
|
28915
|
-
|
|
28916
28915
|
T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28917
28916
|
origin: PropTypes.string.isRequired,
|
|
28918
28917
|
destination: PropTypes.string.isRequired,
|
|
@@ -30826,8 +30825,6 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
30826
30825
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
30827
30826
|
export const csvTransaction = T['io.flow.internal.v0.models.csv_transaction'];
|
|
30828
30827
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
30829
|
-
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
30830
|
-
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
30831
30828
|
export const customsDescriptionImport = T['io.flow.internal.v0.models.customs_description_import'];
|
|
30832
30829
|
export const customsDescriptionStatistics = T['io.flow.internal.v0.models.customs_description_statistics'];
|
|
30833
30830
|
export const customsDescriptionSuggestion = T['io.flow.internal.v0.models.customs_description_suggestion'];
|
|
@@ -31816,7 +31813,6 @@ export const restrictionItemRequestForm = T['io.flow.internal.v0.models.restrict
|
|
|
31816
31813
|
export const restrictionItemReview = T['io.flow.internal.v0.models.restriction_item_review'];
|
|
31817
31814
|
export const restrictionItemReviewDecisionForm = T['io.flow.internal.v0.models.restriction_item_review_decision_form'];
|
|
31818
31815
|
export const restrictionItemReviewSummary = T['io.flow.internal.v0.models.restriction_item_review_summary'];
|
|
31819
|
-
export const restrictionKeywordMetadata = T['io.flow.internal.v0.models.restriction_keyword_metadata'];
|
|
31820
31816
|
export const restrictionKeywords = T['io.flow.internal.v0.models.restriction_keywords'];
|
|
31821
31817
|
export const restrictionOrganization = T['io.flow.internal.v0.models.restriction_organization'];
|
|
31822
31818
|
export const restrictionOrganizationChannel = T['io.flow.internal.v0.enums.restriction_organization_channel'];
|
|
@@ -31826,7 +31822,6 @@ export const restrictionOrganizationStatus = T['io.flow.internal.v0.models.restr
|
|
|
31826
31822
|
export const restrictionOrganizationStatusDeleted = T['io.flow.internal.v0.models.restriction_organization_status_deleted'];
|
|
31827
31823
|
export const restrictionOrganizationStatusUpserted = T['io.flow.internal.v0.models.restriction_organization_status_upserted'];
|
|
31828
31824
|
export const restrictionOrganizationSummary = T['io.flow.internal.v0.models.restriction_organization_summary'];
|
|
31829
|
-
export const restrictionPending = T['io.flow.internal.v0.models.restriction_pending'];
|
|
31830
31825
|
export const restrictionProduct = T['io.flow.internal.v0.models.restriction_product'];
|
|
31831
31826
|
export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.restriction_product_decision_form'];
|
|
31832
31827
|
export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restriction_product_request_form'];
|
|
@@ -31840,13 +31835,13 @@ export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restricti
|
|
|
31840
31835
|
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
31841
31836
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31842
31837
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31843
|
-
export const
|
|
31838
|
+
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
31844
31839
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31845
31840
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31846
31841
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
31847
31842
|
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
31848
31843
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
31849
|
-
export const
|
|
31844
|
+
export const restrictionSummaryCounts = T['io.flow.internal.v0.models.restriction_summary_counts'];
|
|
31850
31845
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
31851
31846
|
export const restrictionsDailyopsDeleted = T['io.flow.internal.v0.models.restrictions_dailyops_deleted'];
|
|
31852
31847
|
export const restrictionsDailyopsUpserted = T['io.flow.internal.v0.models.restrictions_dailyops_upserted'];
|
|
@@ -31870,6 +31865,9 @@ export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_typ
|
|
|
31870
31865
|
export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
|
|
31871
31866
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
31872
31867
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
31868
|
+
export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
|
|
31869
|
+
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
31870
|
+
export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
|
|
31873
31871
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
31874
31872
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
31875
31873
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -31889,13 +31887,7 @@ export const searchItemSummary = T['io.flow.internal.v0.models.search_item_summa
|
|
|
31889
31887
|
export const searchOrderSummary = T['io.flow.internal.v0.models.search_order_summary'];
|
|
31890
31888
|
export const searchProviderExport = T['io.flow.internal.v0.models.search_provider_export'];
|
|
31891
31889
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
31892
|
-
export const sessionCountries = T['io.flow.internal.v0.models.session_countries'];
|
|
31893
|
-
export const sessionCountry = T['io.flow.internal.v0.models.session_country'];
|
|
31894
|
-
export const sessionCountryForm = T['io.flow.internal.v0.models.session_country_form'];
|
|
31895
|
-
export const sessionCountryStatus = T['io.flow.internal.v0.enums.session_country_status'];
|
|
31896
31890
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
31897
|
-
export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
31898
|
-
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31899
31891
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31900
31892
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31901
31893
|
export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_summary'];
|