@flowio/api-prop-types 10.16.94 → 10.16.95
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.d.ts +209 -54
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +209 -54
- package/src/api.js +259 -85
package/src/api.js
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category']);
|
|
4
|
+
|
|
5
|
+
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
6
|
+
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
7
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
11
|
+
currency: PropTypes.string.isRequired,
|
|
12
|
+
amount: PropTypes.number.isRequired,
|
|
13
|
+
});
|
|
3
14
|
|
|
4
15
|
T['io.flow.query.builder.v0.models.query_builder_query_form'] = PropTypes.exact({
|
|
5
16
|
discriminator: PropTypes.oneOf(['query']).isRequired,
|
|
@@ -255,6 +266,14 @@ T['io.flow.catalog.v0.models.subcatalog_settings'] = PropTypes.exact({
|
|
|
255
266
|
update_policy: T['io.flow.catalog.v0.enums.update_policy'].isRequired,
|
|
256
267
|
});
|
|
257
268
|
|
|
269
|
+
T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
|
|
270
|
+
id: PropTypes.string.isRequired,
|
|
271
|
+
base: PropTypes.string.isRequired,
|
|
272
|
+
target: PropTypes.string.isRequired,
|
|
273
|
+
effective_at: PropTypes.string.isRequired,
|
|
274
|
+
value: PropTypes.number.isRequired,
|
|
275
|
+
});
|
|
276
|
+
|
|
258
277
|
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
259
278
|
id: PropTypes.string.isRequired,
|
|
260
279
|
key: PropTypes.string.isRequired,
|
|
@@ -582,14 +601,6 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
582
601
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
583
602
|
});
|
|
584
603
|
|
|
585
|
-
T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
|
|
586
|
-
id: PropTypes.string.isRequired,
|
|
587
|
-
base: PropTypes.string.isRequired,
|
|
588
|
-
target: PropTypes.string.isRequired,
|
|
589
|
-
effective_at: PropTypes.string.isRequired,
|
|
590
|
-
value: PropTypes.number.isRequired,
|
|
591
|
-
});
|
|
592
|
-
|
|
593
604
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
594
605
|
|
|
595
606
|
T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
@@ -858,6 +869,13 @@ T['io.flow.fulfillment.v0.models.shipping_configuration_item_availability'] = Pr
|
|
|
858
869
|
|
|
859
870
|
T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
|
|
860
871
|
|
|
872
|
+
T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
|
|
873
|
+
id: PropTypes.string.isRequired,
|
|
874
|
+
timestamp: PropTypes.string.isRequired,
|
|
875
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
876
|
+
rate: T['io.flow.currency.v0.models.rate'].isRequired,
|
|
877
|
+
});
|
|
878
|
+
|
|
861
879
|
T['io.flow.inventory.v0.models.inventory_update_version'] = PropTypes.exact({
|
|
862
880
|
id: PropTypes.string.isRequired,
|
|
863
881
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -900,13 +918,6 @@ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
|
|
|
900
918
|
attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
|
|
901
919
|
});
|
|
902
920
|
|
|
903
|
-
T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
|
|
904
|
-
id: PropTypes.string.isRequired,
|
|
905
|
-
timestamp: PropTypes.string.isRequired,
|
|
906
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
907
|
-
rate: T['io.flow.currency.v0.models.rate'].isRequired,
|
|
908
|
-
});
|
|
909
|
-
|
|
910
921
|
T['io.flow.fulfillment.v0.models.tier_version'] = PropTypes.exact({
|
|
911
922
|
id: PropTypes.string.isRequired,
|
|
912
923
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -1844,6 +1855,9 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
1844
1855
|
'inch',
|
|
1845
1856
|
'foot',
|
|
1846
1857
|
'cubic_inch',
|
|
1858
|
+
'cubic_foot',
|
|
1859
|
+
'cubic_millimeter',
|
|
1860
|
+
'cubic_centimeter',
|
|
1847
1861
|
'cubic_meter',
|
|
1848
1862
|
'gram',
|
|
1849
1863
|
'kilogram',
|
|
@@ -2773,6 +2787,16 @@ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
|
2773
2787
|
full_name: PropTypes.string.isRequired,
|
|
2774
2788
|
});
|
|
2775
2789
|
|
|
2790
|
+
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
2791
|
+
shop_id: PropTypes.string.isRequired,
|
|
2792
|
+
product_id: PropTypes.string,
|
|
2793
|
+
request_id: PropTypes.string.isRequired,
|
|
2794
|
+
name: PropTypes.string.isRequired,
|
|
2795
|
+
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
2796
|
+
description: PropTypes.string.isRequired,
|
|
2797
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
2798
|
+
});
|
|
2799
|
+
|
|
2776
2800
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
2777
2801
|
organization_id: PropTypes.string.isRequired,
|
|
2778
2802
|
number: PropTypes.string.isRequired,
|
|
@@ -3985,23 +4009,6 @@ T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
|
3985
4009
|
'lost',
|
|
3986
4010
|
]);
|
|
3987
4011
|
|
|
3988
|
-
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
3989
|
-
'bank_cannot_process',
|
|
3990
|
-
'check_returned',
|
|
3991
|
-
'credit_not_processed',
|
|
3992
|
-
'customer_initiated',
|
|
3993
|
-
'debit_not_authorized',
|
|
3994
|
-
'duplicate',
|
|
3995
|
-
'fraudulent',
|
|
3996
|
-
'general',
|
|
3997
|
-
'incorrect_account_details',
|
|
3998
|
-
'insufficient_funds',
|
|
3999
|
-
'product_not_received',
|
|
4000
|
-
'product_unacceptable',
|
|
4001
|
-
'subscription_canceled',
|
|
4002
|
-
'unrecognized',
|
|
4003
|
-
]);
|
|
4004
|
-
|
|
4005
4012
|
T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
4006
4013
|
access_activity_log: PropTypes.string,
|
|
4007
4014
|
billing_address: PropTypes.string,
|
|
@@ -4032,6 +4039,48 @@ T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
|
4032
4039
|
uncategorized_text: PropTypes.string,
|
|
4033
4040
|
});
|
|
4034
4041
|
|
|
4042
|
+
T['io.flow.stripe.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
4043
|
+
'ManagedMarketsRefundDebit',
|
|
4044
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
4045
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
4046
|
+
]);
|
|
4047
|
+
|
|
4048
|
+
T['io.flow.stripe.v0.enums.connect_report_shop_plan'] = PropTypes.oneOf(['shopify_plus', 'standard']);
|
|
4049
|
+
|
|
4050
|
+
T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
4051
|
+
shop_id: PropTypes.number,
|
|
4052
|
+
shop_plan: T['io.flow.stripe.v0.enums.connect_report_shop_plan'],
|
|
4053
|
+
checkout_id: PropTypes.string,
|
|
4054
|
+
order_id: PropTypes.number,
|
|
4055
|
+
order_transaction_id: PropTypes.number,
|
|
4056
|
+
transfer_type: T['io.flow.stripe.v0.enums.connect_report_transfer_type'],
|
|
4057
|
+
transfer_exchange_rate: PropTypes.number,
|
|
4058
|
+
charge_total: PropTypes.number,
|
|
4059
|
+
charge_currency: PropTypes.string,
|
|
4060
|
+
charge_exchange_rate: PropTypes.number,
|
|
4061
|
+
duties: PropTypes.number,
|
|
4062
|
+
import_taxes: PropTypes.number,
|
|
4063
|
+
mor_fee: PropTypes.number,
|
|
4064
|
+
fx_fee: PropTypes.number,
|
|
4065
|
+
});
|
|
4066
|
+
|
|
4067
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
4068
|
+
'bank_cannot_process',
|
|
4069
|
+
'check_returned',
|
|
4070
|
+
'credit_not_processed',
|
|
4071
|
+
'customer_initiated',
|
|
4072
|
+
'debit_not_authorized',
|
|
4073
|
+
'duplicate',
|
|
4074
|
+
'fraudulent',
|
|
4075
|
+
'general',
|
|
4076
|
+
'incorrect_account_details',
|
|
4077
|
+
'insufficient_funds',
|
|
4078
|
+
'product_not_received',
|
|
4079
|
+
'product_unacceptable',
|
|
4080
|
+
'subscription_canceled',
|
|
4081
|
+
'unrecognized',
|
|
4082
|
+
]);
|
|
4083
|
+
|
|
4035
4084
|
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
4036
4085
|
id: PropTypes.string.isRequired,
|
|
4037
4086
|
amount: PropTypes.number.isRequired,
|
|
@@ -4069,6 +4118,31 @@ T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
|
4069
4118
|
pending_webhooks: PropTypes.number.isRequired,
|
|
4070
4119
|
});
|
|
4071
4120
|
|
|
4121
|
+
T['io.flow.stripe.v0.enums.connect_report_reporting_category'] = PropTypes.oneOf(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']);
|
|
4122
|
+
|
|
4123
|
+
T['io.flow.stripe.v0.models.connect_report_record'] = PropTypes.exact({
|
|
4124
|
+
created_utc: PropTypes.string.isRequired,
|
|
4125
|
+
charge_id: PropTypes.string,
|
|
4126
|
+
payment_intent_id: PropTypes.string,
|
|
4127
|
+
gross: PropTypes.number.isRequired,
|
|
4128
|
+
fee: PropTypes.number.isRequired,
|
|
4129
|
+
net: PropTypes.number.isRequired,
|
|
4130
|
+
currency: PropTypes.string.isRequired,
|
|
4131
|
+
connected_account: PropTypes.string.isRequired,
|
|
4132
|
+
reporting_category: T['io.flow.stripe.v0.enums.connect_report_reporting_category'].isRequired,
|
|
4133
|
+
dispute_reason: T['io.flow.stripe.v0.enums.dispute_reason'],
|
|
4134
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
4135
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
4136
|
+
source_id: PropTypes.string,
|
|
4137
|
+
customer_facing_amount: PropTypes.number,
|
|
4138
|
+
customer_facing_currency: PropTypes.string,
|
|
4139
|
+
payment_method_type: PropTypes.string,
|
|
4140
|
+
card_brand: PropTypes.string,
|
|
4141
|
+
statement_descriptor: PropTypes.string,
|
|
4142
|
+
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
4143
|
+
transfer_metadata: PropTypes.object,
|
|
4144
|
+
});
|
|
4145
|
+
|
|
4072
4146
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
4073
4147
|
|
|
4074
4148
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -4438,6 +4512,19 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
4438
4512
|
type: PropTypes.string,
|
|
4439
4513
|
});
|
|
4440
4514
|
|
|
4515
|
+
T['io.flow.stripe.v0.enums.capability_status'] = PropTypes.oneOf(['active', 'disabled', 'inactive', 'pending', 'unrequested']);
|
|
4516
|
+
|
|
4517
|
+
T['io.flow.stripe.v0.models.capability'] = PropTypes.exact({
|
|
4518
|
+
id: PropTypes.string.isRequired,
|
|
4519
|
+
account: PropTypes.string.isRequired,
|
|
4520
|
+
requested: PropTypes.bool.isRequired,
|
|
4521
|
+
requirements: PropTypes.object.isRequired,
|
|
4522
|
+
status: T['io.flow.stripe.v0.enums.capability_status'].isRequired,
|
|
4523
|
+
object: PropTypes.string.isRequired,
|
|
4524
|
+
future_requirements: PropTypes.object.isRequired,
|
|
4525
|
+
requested_at: PropTypes.number,
|
|
4526
|
+
});
|
|
4527
|
+
|
|
4441
4528
|
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
4442
4529
|
|
|
4443
4530
|
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
@@ -5243,14 +5330,6 @@ T['io.flow.v0.models.hs6_code_upserted'] = PropTypes.exact({
|
|
|
5243
5330
|
code: PropTypes.string.isRequired,
|
|
5244
5331
|
});
|
|
5245
5332
|
|
|
5246
|
-
T['io.flow.v0.models.ge_product_restriction_result_deleted'] = PropTypes.exact({
|
|
5247
|
-
discriminator: PropTypes.oneOf(['ge_product_restriction_result_deleted']).isRequired,
|
|
5248
|
-
event_id: PropTypes.string.isRequired,
|
|
5249
|
-
timestamp: PropTypes.string.isRequired,
|
|
5250
|
-
organization: PropTypes.string.isRequired,
|
|
5251
|
-
id: PropTypes.string.isRequired,
|
|
5252
|
-
});
|
|
5253
|
-
|
|
5254
5333
|
T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
|
|
5255
5334
|
discriminator: PropTypes.oneOf(['shipping_configuration_deleted']).isRequired,
|
|
5256
5335
|
event_id: PropTypes.string.isRequired,
|
|
@@ -6363,6 +6442,7 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
|
|
|
6363
6442
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6364
6443
|
});
|
|
6365
6444
|
|
|
6445
|
+
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
6366
6446
|
T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
6367
6447
|
|
|
6368
6448
|
T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
@@ -7235,7 +7315,7 @@ T['io.flow.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
|
7235
7315
|
applied: PropTypes.arrayOf(T['io.flow.v0.models.order_rule_reference']).isRequired,
|
|
7236
7316
|
});
|
|
7237
7317
|
|
|
7238
|
-
T['io.flow.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
7318
|
+
T['io.flow.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement', 'edit']);
|
|
7239
7319
|
|
|
7240
7320
|
T['io.flow.v0.models.direct_debit'] = PropTypes.exact({
|
|
7241
7321
|
discriminator: PropTypes.oneOf(['direct_debit']).isRequired,
|
|
@@ -7620,6 +7700,12 @@ T['io.flow.v0.models.label_surcharge'] = PropTypes.exact({
|
|
|
7620
7700
|
detail: T['io.flow.v0.unions.label_surcharge_detail'].isRequired,
|
|
7621
7701
|
});
|
|
7622
7702
|
|
|
7703
|
+
T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
7704
|
+
units: T['io.flow.v0.models.label_units'].isRequired,
|
|
7705
|
+
base: T['io.flow.v0.models.label_base'].isRequired,
|
|
7706
|
+
surcharges: PropTypes.arrayOf(T['io.flow.v0.models.label_surcharge']).isRequired,
|
|
7707
|
+
});
|
|
7708
|
+
|
|
7623
7709
|
T['io.flow.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
7624
7710
|
name: PropTypes.string.isRequired,
|
|
7625
7711
|
description: PropTypes.string,
|
|
@@ -7840,6 +7926,19 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
|
|
|
7840
7926
|
origin: PropTypes.string,
|
|
7841
7927
|
});
|
|
7842
7928
|
|
|
7929
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
7930
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
7931
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7932
|
+
});
|
|
7933
|
+
|
|
7934
|
+
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
7935
|
+
shop_id: PropTypes.string.isRequired,
|
|
7936
|
+
product_id: PropTypes.string,
|
|
7937
|
+
request_id: PropTypes.string.isRequired,
|
|
7938
|
+
hs6_code: PropTypes.string.isRequired,
|
|
7939
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
7940
|
+
});
|
|
7941
|
+
|
|
7843
7942
|
T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
|
|
7844
7943
|
'Adult Products',
|
|
7845
7944
|
'Alcohol',
|
|
@@ -7892,6 +7991,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
|
7892
7991
|
updated_by: PropTypes.string,
|
|
7893
7992
|
product_restriction_id: PropTypes.string,
|
|
7894
7993
|
hs_code: PropTypes.string,
|
|
7994
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
7895
7995
|
});
|
|
7896
7996
|
|
|
7897
7997
|
T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
|
|
@@ -7902,14 +8002,75 @@ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
|
|
|
7902
8002
|
product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
7903
8003
|
});
|
|
7904
8004
|
|
|
7905
|
-
T['io.flow.v0.models.
|
|
7906
|
-
|
|
8005
|
+
T['io.flow.v0.models.ge_input_attributes'] = PropTypes.exact({
|
|
8006
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
8007
|
+
ge_hs6_code: PropTypes.string.isRequired,
|
|
8008
|
+
product_id: PropTypes.string.isRequired,
|
|
8009
|
+
});
|
|
8010
|
+
|
|
8011
|
+
T['io.flow.v0.models.ge_input_price'] = PropTypes.exact({
|
|
8012
|
+
amount: PropTypes.number.isRequired,
|
|
8013
|
+
currency: PropTypes.string.isRequired,
|
|
8014
|
+
label: PropTypes.string.isRequired,
|
|
8015
|
+
});
|
|
8016
|
+
|
|
8017
|
+
T['io.flow.v0.models.ge_catalog_item_input'] = PropTypes.exact({
|
|
7907
8018
|
event_id: PropTypes.string.isRequired,
|
|
7908
|
-
|
|
8019
|
+
number: PropTypes.string.isRequired,
|
|
8020
|
+
organization_id: PropTypes.string.isRequired,
|
|
8021
|
+
name: PropTypes.string.isRequired,
|
|
8022
|
+
description: PropTypes.string.isRequired,
|
|
8023
|
+
price: T['io.flow.v0.models.ge_input_price'].isRequired,
|
|
8024
|
+
attributes: T['io.flow.v0.models.ge_input_attributes'].isRequired,
|
|
8025
|
+
locale: PropTypes.string.isRequired,
|
|
8026
|
+
id: PropTypes.string.isRequired,
|
|
8027
|
+
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8028
|
+
created_at: PropTypes.string.isRequired,
|
|
8029
|
+
updated_at: PropTypes.string.isRequired,
|
|
8030
|
+
images: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8031
|
+
});
|
|
8032
|
+
|
|
8033
|
+
T['io.flow.v0.enums.ge_catalog_item_ingestion_response'] = PropTypes.oneOf(['ge_catalog_item_ingestion_success', 'ge_catalog_item_ingestion_failure']);
|
|
8034
|
+
T['io.flow.v0.enums.ge_environment'] = PropTypes.oneOf(['production', 'sandbox']);
|
|
8035
|
+
T['io.flow.v0.enums.ge_event_type'] = PropTypes.oneOf(['restriction_result', 'ingestion_result']);
|
|
8036
|
+
|
|
8037
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
|
|
8038
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_upsert']).isRequired,
|
|
7909
8039
|
organization: PropTypes.string.isRequired,
|
|
8040
|
+
event_id: PropTypes.string.isRequired,
|
|
8041
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8042
|
+
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8043
|
+
timestamp: PropTypes.string.isRequired,
|
|
7910
8044
|
ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
7911
8045
|
});
|
|
7912
8046
|
|
|
8047
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
|
|
8048
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_delete']).isRequired,
|
|
8049
|
+
organization: PropTypes.string.isRequired,
|
|
8050
|
+
event_id: PropTypes.string.isRequired,
|
|
8051
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8052
|
+
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8053
|
+
timestamp: PropTypes.string.isRequired,
|
|
8054
|
+
id: PropTypes.string.isRequired,
|
|
8055
|
+
});
|
|
8056
|
+
|
|
8057
|
+
T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
|
|
8058
|
+
discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
|
|
8059
|
+
event_id: PropTypes.string.isRequired,
|
|
8060
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8061
|
+
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8062
|
+
timestamp: PropTypes.string.isRequired,
|
|
8063
|
+
source: PropTypes.string.isRequired,
|
|
8064
|
+
response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
|
|
8065
|
+
message: PropTypes.string.isRequired,
|
|
8066
|
+
});
|
|
8067
|
+
|
|
8068
|
+
T['io.flow.v0.unions.ge_restriction_event'] = PropTypes.oneOfType([
|
|
8069
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'],
|
|
8070
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'],
|
|
8071
|
+
T['io.flow.v0.models.ge_catalog_item_ingestion_result'],
|
|
8072
|
+
]);
|
|
8073
|
+
|
|
7913
8074
|
T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
7914
8075
|
|
|
7915
8076
|
T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
@@ -8408,15 +8569,6 @@ T['io.flow.v0.models.exclusion_rule'] = PropTypes.exact({
|
|
|
8408
8569
|
});
|
|
8409
8570
|
|
|
8410
8571
|
T['io.flow.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
|
|
8411
|
-
|
|
8412
|
-
T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
8413
|
-
units: T['io.flow.v0.models.label_units'].isRequired,
|
|
8414
|
-
base: T['io.flow.v0.models.label_base'].isRequired,
|
|
8415
|
-
surcharges: PropTypes.arrayOf(T['io.flow.v0.models.label_surcharge']).isRequired,
|
|
8416
|
-
});
|
|
8417
|
-
|
|
8418
|
-
T['io.flow.v0.enums.estimate_origin'] = PropTypes.oneOf(['Shopify', 'GlobalE', 'Aftership', 'Carrier']);
|
|
8419
|
-
T['io.flow.v0.enums.estimate_type'] = PropTypes.oneOf(['Estimated', 'Final']);
|
|
8420
8572
|
T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
|
|
8421
8573
|
|
|
8422
8574
|
T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
@@ -9490,7 +9642,6 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
9490
9642
|
'tax_refund',
|
|
9491
9643
|
'non_l4l_tax_duty_fx',
|
|
9492
9644
|
'ge_revenue_share',
|
|
9493
|
-
'tax_duty_delta',
|
|
9494
9645
|
]);
|
|
9495
9646
|
|
|
9496
9647
|
T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -10316,6 +10467,12 @@ T['io.flow.v0.models.payment_request_bundle_form'] = PropTypes.exact({
|
|
|
10316
10467
|
billing: T['io.flow.v0.models.payment_request_billing'].isRequired,
|
|
10317
10468
|
});
|
|
10318
10469
|
|
|
10470
|
+
T['io.flow.v0.models.external_card'] = PropTypes.exact({
|
|
10471
|
+
discriminator: PropTypes.oneOf(['external_card']).isRequired,
|
|
10472
|
+
id: PropTypes.string.isRequired,
|
|
10473
|
+
type: T['io.flow.v0.enums.card_type'],
|
|
10474
|
+
});
|
|
10475
|
+
|
|
10319
10476
|
T['io.flow.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
10320
10477
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
10321
10478
|
type: T['io.flow.v0.enums.card_type'],
|
|
@@ -10380,6 +10537,7 @@ T['io.flow.v0.models.capture_error'] = PropTypes.exact({
|
|
|
10380
10537
|
decline_code: T['io.flow.v0.enums.capture_decline_code'].isRequired,
|
|
10381
10538
|
});
|
|
10382
10539
|
|
|
10540
|
+
T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
10383
10541
|
T['io.flow.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
|
|
10384
10542
|
|
|
10385
10543
|
T['io.flow.v0.models.payment_capture_status'] = PropTypes.exact({
|
|
@@ -13311,6 +13469,12 @@ T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
|
13311
13469
|
ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
|
|
13312
13470
|
});
|
|
13313
13471
|
|
|
13472
|
+
T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
13473
|
+
lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
|
|
13474
|
+
cost: T['io.flow.v0.models.money'].isRequired,
|
|
13475
|
+
itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
13476
|
+
});
|
|
13477
|
+
|
|
13314
13478
|
T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
|
|
13315
13479
|
discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
|
|
13316
13480
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
@@ -13473,21 +13637,6 @@ T['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'] = PropTypes.exact(
|
|
|
13473
13637
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
13474
13638
|
});
|
|
13475
13639
|
|
|
13476
|
-
T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
13477
|
-
lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
|
|
13478
|
-
cost: T['io.flow.v0.models.money'].isRequired,
|
|
13479
|
-
itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
13480
|
-
});
|
|
13481
|
-
|
|
13482
|
-
T['io.flow.v0.models.estimate'] = PropTypes.exact({
|
|
13483
|
-
id: PropTypes.string.isRequired,
|
|
13484
|
-
organization_id: PropTypes.string.isRequired,
|
|
13485
|
-
label_id: PropTypes.string.isRequired,
|
|
13486
|
-
estimate: T['io.flow.v0.models.shipping_label_hop_summary'].isRequired,
|
|
13487
|
-
type: T['io.flow.v0.enums.estimate_type'].isRequired,
|
|
13488
|
-
origin: T['io.flow.v0.enums.estimate_origin'],
|
|
13489
|
-
});
|
|
13490
|
-
|
|
13491
13640
|
T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
13492
13641
|
discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
|
|
13493
13642
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
@@ -13507,6 +13656,7 @@ T['io.flow.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
|
|
|
13507
13656
|
T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
|
|
13508
13657
|
discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
|
|
13509
13658
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
13659
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string),
|
|
13510
13660
|
starts_at: PropTypes.string,
|
|
13511
13661
|
ends_at: PropTypes.string,
|
|
13512
13662
|
});
|
|
@@ -13589,6 +13739,12 @@ T['io.flow.v0.models.partner_center'] = PropTypes.exact({
|
|
|
13589
13739
|
fees: PropTypes.arrayOf(T['io.flow.v0.unions.partner_center_fee']),
|
|
13590
13740
|
});
|
|
13591
13741
|
|
|
13742
|
+
T['io.flow.v0.models.payment_fee'] = PropTypes.exact({
|
|
13743
|
+
type: T['io.flow.v0.enums.payment_fee_type'].isRequired,
|
|
13744
|
+
money: T['io.flow.v0.models.money'].isRequired,
|
|
13745
|
+
base: T['io.flow.v0.models.money'],
|
|
13746
|
+
});
|
|
13747
|
+
|
|
13592
13748
|
T['io.flow.v0.models.capture'] = PropTypes.exact({
|
|
13593
13749
|
id: PropTypes.string.isRequired,
|
|
13594
13750
|
key: PropTypes.string.isRequired,
|
|
@@ -13600,6 +13756,7 @@ T['io.flow.v0.models.capture'] = PropTypes.exact({
|
|
|
13600
13756
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13601
13757
|
status: T['io.flow.v0.enums.capture_status'],
|
|
13602
13758
|
base: T['io.flow.v0.models.money'],
|
|
13759
|
+
fees: PropTypes.arrayOf(T['io.flow.v0.models.payment_fee']),
|
|
13603
13760
|
});
|
|
13604
13761
|
|
|
13605
13762
|
T['io.flow.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
@@ -13954,6 +14111,9 @@ T['io.flow.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
13954
14111
|
'inch',
|
|
13955
14112
|
'foot',
|
|
13956
14113
|
'cubic_inch',
|
|
14114
|
+
'cubic_foot',
|
|
14115
|
+
'cubic_millimeter',
|
|
14116
|
+
'cubic_centimeter',
|
|
13957
14117
|
'cubic_meter',
|
|
13958
14118
|
'gram',
|
|
13959
14119
|
'kilogram',
|
|
@@ -15811,6 +15971,7 @@ T['io.flow.v0.unions.expandable_card'] = PropTypes.oneOfType([
|
|
|
15811
15971
|
T['io.flow.v0.models.card'],
|
|
15812
15972
|
T['io.flow.v0.models.card_reference'],
|
|
15813
15973
|
T['io.flow.v0.models.card_summary'],
|
|
15974
|
+
T['io.flow.v0.models.external_card'],
|
|
15814
15975
|
]);
|
|
15815
15976
|
|
|
15816
15977
|
T['io.flow.v0.models.card_authorization'] = PropTypes.exact({
|
|
@@ -16459,8 +16620,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16459
16620
|
T['io.flow.v0.models.ge_item_inserted'],
|
|
16460
16621
|
T['io.flow.v0.models.ge_item_updated'],
|
|
16461
16622
|
T['io.flow.v0.models.ge_item_deleted'],
|
|
16462
|
-
T['io.flow.v0.models.ge_product_restriction_result_upserted'],
|
|
16463
|
-
T['io.flow.v0.models.ge_product_restriction_result_deleted'],
|
|
16464
16623
|
T['io.flow.v0.models.hs6_code_upserted'],
|
|
16465
16624
|
T['io.flow.v0.models.hs6_code_deleted'],
|
|
16466
16625
|
T['io.flow.v0.models.hs10_code_upserted'],
|
|
@@ -16851,8 +17010,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16851
17010
|
'ge_item_inserted',
|
|
16852
17011
|
'ge_item_updated',
|
|
16853
17012
|
'ge_item_deleted',
|
|
16854
|
-
'ge_product_restriction_result_upserted',
|
|
16855
|
-
'ge_product_restriction_result_deleted',
|
|
16856
17013
|
'hs6_code_upserted',
|
|
16857
17014
|
'hs6_code_deleted',
|
|
16858
17015
|
'hs10_code_upserted',
|
|
@@ -17032,7 +17189,15 @@ T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
|
|
|
17032
17189
|
T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
17033
17190
|
T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
17034
17191
|
T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
|
|
17035
|
-
|
|
17192
|
+
|
|
17193
|
+
T['io.flow.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
17194
|
+
'cubic_inch',
|
|
17195
|
+
'cubic_foot',
|
|
17196
|
+
'cubic_millimeter',
|
|
17197
|
+
'cubic_centimeter',
|
|
17198
|
+
'cubic_meter',
|
|
17199
|
+
]);
|
|
17200
|
+
|
|
17036
17201
|
T['io.flow.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
|
|
17037
17202
|
|
|
17038
17203
|
T['io.flow.v0.models.activation_put_form'] = PropTypes.exact({
|
|
@@ -17726,6 +17891,7 @@ T['io.flow.google.pay.v0.models.signed_message'] = PropTypes.exact({
|
|
|
17726
17891
|
});
|
|
17727
17892
|
|
|
17728
17893
|
T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
17894
|
+
'capability.updated',
|
|
17729
17895
|
'charge.captured',
|
|
17730
17896
|
'charge.failed',
|
|
17731
17897
|
'charge.pending',
|
|
@@ -18087,12 +18253,6 @@ T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] =
|
|
|
18087
18253
|
description: PropTypes.string.isRequired,
|
|
18088
18254
|
});
|
|
18089
18255
|
|
|
18090
|
-
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
18091
|
-
base: PropTypes.string.isRequired,
|
|
18092
|
-
target: PropTypes.string.isRequired,
|
|
18093
|
-
effective_at: PropTypes.string.isRequired,
|
|
18094
|
-
});
|
|
18095
|
-
|
|
18096
18256
|
T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
18097
18257
|
id: PropTypes.string.isRequired,
|
|
18098
18258
|
});
|
|
@@ -18144,6 +18304,12 @@ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
|
|
|
18144
18304
|
status: PropTypes.string.isRequired,
|
|
18145
18305
|
});
|
|
18146
18306
|
|
|
18307
|
+
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
18308
|
+
base: PropTypes.string.isRequired,
|
|
18309
|
+
target: PropTypes.string.isRequired,
|
|
18310
|
+
effective_at: PropTypes.string.isRequired,
|
|
18311
|
+
});
|
|
18312
|
+
|
|
18147
18313
|
export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
|
|
18148
18314
|
export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
|
|
18149
18315
|
export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
|
|
@@ -18628,9 +18794,6 @@ export const entity = T['io.flow.v0.unions.entity'];
|
|
|
18628
18794
|
export const entityIdentifier = T['io.flow.v0.models.entity_identifier'];
|
|
18629
18795
|
export const entityIdentifierType = T['io.flow.v0.enums.entity_identifier_type'];
|
|
18630
18796
|
export const environment = T['io.flow.v0.enums.environment'];
|
|
18631
|
-
export const estimate = T['io.flow.v0.models.estimate'];
|
|
18632
|
-
export const estimateOrigin = T['io.flow.v0.enums.estimate_origin'];
|
|
18633
|
-
export const estimateType = T['io.flow.v0.enums.estimate_type'];
|
|
18634
18797
|
export const estimatedDimensions = T['io.flow.v0.models.estimated_dimensions'];
|
|
18635
18798
|
export const estimatedWindow = T['io.flow.v0.models.estimated_window'];
|
|
18636
18799
|
export const event = T['io.flow.v0.unions.event'];
|
|
@@ -18709,6 +18872,7 @@ export const exportStatus = T['io.flow.v0.enums.export_status'];
|
|
|
18709
18872
|
export const exportType = T['io.flow.v0.unions.export_type'];
|
|
18710
18873
|
export const exportVersion = T['io.flow.v0.models.export_version'];
|
|
18711
18874
|
export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
|
|
18875
|
+
export const externalCard = T['io.flow.v0.models.external_card'];
|
|
18712
18876
|
export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
|
|
18713
18877
|
export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
|
|
18714
18878
|
export const feeWeight = T['io.flow.v0.models.fee_weight'];
|
|
@@ -18774,11 +18938,19 @@ export const fulfillmentRouting = T['io.flow.v0.enums.fulfillment_routing'];
|
|
|
18774
18938
|
export const fullyHarmonizedItemUpserted = T['io.flow.v0.models.fully_harmonized_item_upserted'];
|
|
18775
18939
|
export const gatewayAuthenticationData = T['io.flow.v0.unions.gateway_authentication_data'];
|
|
18776
18940
|
export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authentication_data_form'];
|
|
18941
|
+
export const geCatalogItemIngestionResponse = T['io.flow.v0.enums.ge_catalog_item_ingestion_response'];
|
|
18942
|
+
export const geCatalogItemIngestionResult = T['io.flow.v0.models.ge_catalog_item_ingestion_result'];
|
|
18943
|
+
export const geCatalogItemInput = T['io.flow.v0.models.ge_catalog_item_input'];
|
|
18944
|
+
export const geEnvironment = T['io.flow.v0.enums.ge_environment'];
|
|
18945
|
+
export const geEventType = T['io.flow.v0.enums.ge_event_type'];
|
|
18946
|
+
export const geInputAttributes = T['io.flow.v0.models.ge_input_attributes'];
|
|
18947
|
+
export const geInputPrice = T['io.flow.v0.models.ge_input_price'];
|
|
18777
18948
|
export const geItemDeleted = T['io.flow.v0.models.ge_item_deleted'];
|
|
18778
18949
|
export const geItemInserted = T['io.flow.v0.models.ge_item_inserted'];
|
|
18779
18950
|
export const geItemUpdated = T['io.flow.v0.models.ge_item_updated'];
|
|
18780
|
-
export const
|
|
18781
|
-
export const
|
|
18951
|
+
export const geProductRestrictionResultDelete = T['io.flow.v0.models.ge_product_restriction_result_delete'];
|
|
18952
|
+
export const geProductRestrictionResultUpsert = T['io.flow.v0.models.ge_product_restriction_result_upsert'];
|
|
18953
|
+
export const geRestrictionEvent = T['io.flow.v0.unions.ge_restriction_event'];
|
|
18782
18954
|
export const generateLoad = T['io.flow.v0.models.generate_load'];
|
|
18783
18955
|
export const genericError = T['io.flow.v0.models.generic_error'];
|
|
18784
18956
|
export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
|
|
@@ -19217,6 +19389,8 @@ export const paymentError = T['io.flow.v0.models.payment_error'];
|
|
|
19217
19389
|
export const paymentErrorCode = T['io.flow.v0.enums.payment_error_code'];
|
|
19218
19390
|
export const paymentFailure = T['io.flow.v0.models.payment_failure'];
|
|
19219
19391
|
export const paymentFailureCode = T['io.flow.v0.enums.payment_failure_code'];
|
|
19392
|
+
export const paymentFee = T['io.flow.v0.models.payment_fee'];
|
|
19393
|
+
export const paymentFeeType = T['io.flow.v0.enums.payment_fee_type'];
|
|
19220
19394
|
export const paymentForm = T['io.flow.v0.unions.payment_form'];
|
|
19221
19395
|
export const paymentInformation = T['io.flow.v0.models.payment_information'];
|
|
19222
19396
|
export const paymentMethod = T['io.flow.v0.models.payment_method'];
|