@flowio/api-prop-types 10.16.88 → 10.16.90
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 +18 -186
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +18 -186
- package/src/api.js +30 -225
package/src/api.js
CHANGED
|
@@ -4609,6 +4609,13 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
|
|
|
4609
4609
|
shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
|
|
4610
4610
|
});
|
|
4611
4611
|
|
|
4612
|
+
T['io.flow.stripe.v0.models.payment_intents'] = PropTypes.exact({
|
|
4613
|
+
object: PropTypes.string.isRequired,
|
|
4614
|
+
data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.payment_intent']).isRequired,
|
|
4615
|
+
has_more: PropTypes.bool.isRequired,
|
|
4616
|
+
url: PropTypes.string,
|
|
4617
|
+
});
|
|
4618
|
+
|
|
4612
4619
|
T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
|
|
4613
4620
|
type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
|
|
4614
4621
|
charge: PropTypes.string,
|
|
@@ -5880,104 +5887,6 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
|
5880
5887
|
interval: PropTypes.number.isRequired,
|
|
5881
5888
|
});
|
|
5882
5889
|
|
|
5883
|
-
T['io.flow.v0.enums.zero_levy_reason_code'] = PropTypes.oneOf([
|
|
5884
|
-
'zero_basis',
|
|
5885
|
-
'zero_rate_on_goods',
|
|
5886
|
-
'value_rounds_to_zero',
|
|
5887
|
-
'order_below_de_minimis_threshold',
|
|
5888
|
-
'amount_below_de_minimis_threshold',
|
|
5889
|
-
'delivered_unpaid',
|
|
5890
|
-
'duty_free_domestic',
|
|
5891
|
-
'duty_free_intra_community',
|
|
5892
|
-
'duty_free_reimport',
|
|
5893
|
-
'duty_free_by_trade_agreement',
|
|
5894
|
-
]);
|
|
5895
|
-
|
|
5896
|
-
T['io.flow.v0.enums.levy_inclusion'] = PropTypes.oneOf(['tax', 'duty']);
|
|
5897
|
-
|
|
5898
|
-
T['io.flow.v0.models.tax_duty_quote_fee_value'] = PropTypes.exact({
|
|
5899
|
-
amount: PropTypes.number.isRequired,
|
|
5900
|
-
description: PropTypes.string.isRequired,
|
|
5901
|
-
amount_refundable_on_return: PropTypes.number.isRequired,
|
|
5902
|
-
});
|
|
5903
|
-
|
|
5904
|
-
T['io.flow.v0.models.tax_duty_quote_simple_levy_value'] = PropTypes.exact({
|
|
5905
|
-
discriminator: PropTypes.oneOf(['tax_duty_quote_simple_levy_value']).isRequired,
|
|
5906
|
-
amount: PropTypes.number.isRequired,
|
|
5907
|
-
rate: PropTypes.number.isRequired,
|
|
5908
|
-
description: PropTypes.string.isRequired,
|
|
5909
|
-
zero_levy_reason: PropTypes.arrayOf(T['io.flow.v0.enums.zero_levy_reason_code']),
|
|
5910
|
-
amount_refundable_on_return: PropTypes.number.isRequired,
|
|
5911
|
-
});
|
|
5912
|
-
|
|
5913
|
-
T['io.flow.v0.unions.tax_duty_quote_levy_value'] = PropTypes.oneOfType([T['io.flow.v0.models.tax_duty_quote_simple_levy_value']]);
|
|
5914
|
-
|
|
5915
|
-
T['io.flow.v0.models.tax_duty_quote_values'] = PropTypes.exact({
|
|
5916
|
-
price: PropTypes.number.isRequired,
|
|
5917
|
-
duty: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
|
|
5918
|
-
tax: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
|
|
5919
|
-
fees: T['io.flow.v0.models.tax_duty_quote_fee_value'].isRequired,
|
|
5920
|
-
total: PropTypes.number.isRequired,
|
|
5921
|
-
});
|
|
5922
|
-
|
|
5923
|
-
T['io.flow.v0.models.street_address'] = PropTypes.exact({
|
|
5924
|
-
streets: PropTypes.arrayOf(PropTypes.string),
|
|
5925
|
-
city: PropTypes.string,
|
|
5926
|
-
province: PropTypes.string,
|
|
5927
|
-
postal: PropTypes.string,
|
|
5928
|
-
country: PropTypes.string,
|
|
5929
|
-
});
|
|
5930
|
-
|
|
5931
|
-
T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'] = PropTypes.exact({
|
|
5932
|
-
price: PropTypes.number.isRequired,
|
|
5933
|
-
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
|
|
5934
|
-
ship_from: T['io.flow.v0.models.street_address'],
|
|
5935
|
-
});
|
|
5936
|
-
|
|
5937
|
-
T['io.flow.v0.models.tax_duty_quote_simple_shipping'] = PropTypes.exact({
|
|
5938
|
-
values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
5939
|
-
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
5940
|
-
});
|
|
5941
|
-
|
|
5942
|
-
T['io.flow.v0.models.tax_duty_quote_line_item'] = PropTypes.exact({
|
|
5943
|
-
primary_identifier: PropTypes.string.isRequired,
|
|
5944
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
5945
|
-
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
5946
|
-
quantity: PropTypes.number.isRequired,
|
|
5947
|
-
unit_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
5948
|
-
country_of_origin: PropTypes.string.isRequired,
|
|
5949
|
-
hs_code: PropTypes.string.isRequired,
|
|
5950
|
-
});
|
|
5951
|
-
|
|
5952
|
-
T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'] = PropTypes.oneOf([
|
|
5953
|
-
'generic_error',
|
|
5954
|
-
'destination_country_not_defined',
|
|
5955
|
-
'destination_address_iso3166_unrecognized',
|
|
5956
|
-
'line_item_shipfrom_shipto_country_invalid',
|
|
5957
|
-
'line_item_ship_from_invalid',
|
|
5958
|
-
'line_item_currency_iso4217_unrecognized',
|
|
5959
|
-
'line_quantity_invalid',
|
|
5960
|
-
'line_item_quantity_invalid',
|
|
5961
|
-
'line_item_unit_price_precision_invalid',
|
|
5962
|
-
'line_item_unit_price_negative',
|
|
5963
|
-
'line_item_discount_amount_precision_invalid',
|
|
5964
|
-
'line_item_discount_amount_positive',
|
|
5965
|
-
'line_item_country_of_origin_iso3166_unrecognized',
|
|
5966
|
-
'line_item_hs_code_invalid',
|
|
5967
|
-
'line_item_duty_provider_invalid',
|
|
5968
|
-
'shipping_unit_price_precision_invalid',
|
|
5969
|
-
'shipping_unit_price_negative',
|
|
5970
|
-
'shipping_discount_amount_precision_invalid',
|
|
5971
|
-
'shipping_discount_amount_invalid',
|
|
5972
|
-
'merchant_of_record_invalid',
|
|
5973
|
-
'wrong_unit_specified',
|
|
5974
|
-
]);
|
|
5975
|
-
|
|
5976
|
-
T['io.flow.v0.models.tax_duty_calculator_validation_error'] = PropTypes.exact({
|
|
5977
|
-
code: T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'].isRequired,
|
|
5978
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
5979
|
-
});
|
|
5980
|
-
|
|
5981
5890
|
T['io.flow.v0.enums.sync_stream_type'] = PropTypes.oneOf(['submitted_order', 'placed_order']);
|
|
5982
5891
|
T['io.flow.v0.enums.sync_record_failure_reason'] = PropTypes.oneOf(['inventory', 'address', 'promotion', 'other']);
|
|
5983
5892
|
|
|
@@ -6259,6 +6168,26 @@ T['io.flow.v0.models.label_base'] = PropTypes.exact({
|
|
|
6259
6168
|
weight: PropTypes.number.isRequired,
|
|
6260
6169
|
});
|
|
6261
6170
|
|
|
6171
|
+
T['io.flow.v0.enums.shipping_label_error_code'] = PropTypes.oneOf([
|
|
6172
|
+
'generic_error',
|
|
6173
|
+
'cancelled_order',
|
|
6174
|
+
'carrier_outage',
|
|
6175
|
+
'catalog_issue',
|
|
6176
|
+
'invalid_destination',
|
|
6177
|
+
'invalid_origin',
|
|
6178
|
+
'invalid_shipping_parameters',
|
|
6179
|
+
'merchant_error',
|
|
6180
|
+
'order_not_found',
|
|
6181
|
+
'order_processing',
|
|
6182
|
+
'restricted_item',
|
|
6183
|
+
'unsupported_lane',
|
|
6184
|
+
]);
|
|
6185
|
+
|
|
6186
|
+
T['io.flow.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
6187
|
+
code: T['io.flow.v0.enums.shipping_label_error_code'].isRequired,
|
|
6188
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6189
|
+
});
|
|
6190
|
+
|
|
6262
6191
|
T['io.flow.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
|
|
6263
6192
|
T['io.flow.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
|
|
6264
6193
|
T['io.flow.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
|
|
@@ -6280,15 +6209,6 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
6280
6209
|
'missing_logistics_contact_info',
|
|
6281
6210
|
]);
|
|
6282
6211
|
|
|
6283
|
-
T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
|
|
6284
|
-
key: PropTypes.string.isRequired,
|
|
6285
|
-
});
|
|
6286
|
-
|
|
6287
|
-
T['io.flow.v0.models.session_experiment_form'] = PropTypes.exact({
|
|
6288
|
-
key: PropTypes.string.isRequired,
|
|
6289
|
-
variant: T['io.flow.v0.models.session_experiment_variant_form'],
|
|
6290
|
-
});
|
|
6291
|
-
|
|
6292
6212
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6293
6213
|
|
|
6294
6214
|
T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
|
|
@@ -7124,10 +7044,6 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
7124
7044
|
id: PropTypes.string.isRequired,
|
|
7125
7045
|
});
|
|
7126
7046
|
|
|
7127
|
-
T['io.flow.v0.models.context_reference'] = PropTypes.exact({
|
|
7128
|
-
id: PropTypes.string.isRequired,
|
|
7129
|
-
});
|
|
7130
|
-
|
|
7131
7047
|
T['io.flow.v0.models.session_visit'] = PropTypes.exact({
|
|
7132
7048
|
id: PropTypes.string.isRequired,
|
|
7133
7049
|
expires_at: PropTypes.string.isRequired,
|
|
@@ -7619,21 +7535,11 @@ T['io.flow.v0.models.order_summary_image'] = PropTypes.exact({
|
|
|
7619
7535
|
url: PropTypes.string.isRequired,
|
|
7620
7536
|
});
|
|
7621
7537
|
|
|
7622
|
-
T['io.flow.v0.models.session_experiment_variant'] = PropTypes.exact({
|
|
7623
|
-
key: PropTypes.string.isRequired,
|
|
7624
|
-
name: PropTypes.string.isRequired,
|
|
7625
|
-
});
|
|
7626
|
-
|
|
7627
7538
|
T['io.flow.v0.models.locale_numbers'] = PropTypes.exact({
|
|
7628
7539
|
decimal: PropTypes.string.isRequired,
|
|
7629
7540
|
group: PropTypes.string.isRequired,
|
|
7630
7541
|
});
|
|
7631
7542
|
|
|
7632
|
-
T['io.flow.v0.models.session_experiment'] = PropTypes.exact({
|
|
7633
|
-
key: PropTypes.string.isRequired,
|
|
7634
|
-
variant: T['io.flow.v0.models.session_experiment_variant'],
|
|
7635
|
-
});
|
|
7636
|
-
|
|
7637
7543
|
T['io.flow.v0.models.locale'] = PropTypes.exact({
|
|
7638
7544
|
id: PropTypes.string.isRequired,
|
|
7639
7545
|
name: PropTypes.string.isRequired,
|
|
@@ -9186,24 +9092,6 @@ T['io.flow.v0.models.country_availability'] = PropTypes.exact({
|
|
|
9186
9092
|
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9187
9093
|
});
|
|
9188
9094
|
|
|
9189
|
-
T['io.flow.v0.models.experiment_variant'] = PropTypes.exact({
|
|
9190
|
-
key: PropTypes.string.isRequired,
|
|
9191
|
-
});
|
|
9192
|
-
|
|
9193
|
-
T['io.flow.v0.models.session_context_experiment'] = PropTypes.exact({
|
|
9194
|
-
key: PropTypes.string.isRequired,
|
|
9195
|
-
variant: T['io.flow.v0.models.experiment_variant'],
|
|
9196
|
-
});
|
|
9197
|
-
|
|
9198
|
-
T['io.flow.v0.models.context_form'] = PropTypes.exact({
|
|
9199
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9200
|
-
});
|
|
9201
|
-
|
|
9202
|
-
T['io.flow.v0.models.context'] = PropTypes.exact({
|
|
9203
|
-
id: PropTypes.string.isRequired,
|
|
9204
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9205
|
-
});
|
|
9206
|
-
|
|
9207
9095
|
T['io.flow.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
9208
9096
|
rate: PropTypes.number.isRequired,
|
|
9209
9097
|
amount: PropTypes.number.isRequired,
|
|
@@ -10177,20 +10065,6 @@ T['io.flow.v0.models.customer_payment'] = PropTypes.exact({
|
|
|
10177
10065
|
|
|
10178
10066
|
T['io.flow.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10179
10067
|
|
|
10180
|
-
T['io.flow.v0.models.tax_duty_quote'] = PropTypes.exact({
|
|
10181
|
-
id: PropTypes.string.isRequired,
|
|
10182
|
-
primary_identifier: PropTypes.string.isRequired,
|
|
10183
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10184
|
-
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
10185
|
-
delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
|
|
10186
|
-
destination: T['io.flow.v0.models.street_address'].isRequired,
|
|
10187
|
-
quote_date: PropTypes.string.isRequired,
|
|
10188
|
-
currency: PropTypes.string.isRequired,
|
|
10189
|
-
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item']).isRequired,
|
|
10190
|
-
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping']).isRequired,
|
|
10191
|
-
total_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
|
|
10192
|
-
});
|
|
10193
|
-
|
|
10194
10068
|
T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
10195
10069
|
id: PropTypes.string.isRequired,
|
|
10196
10070
|
name: PropTypes.string.isRequired,
|
|
@@ -11254,7 +11128,6 @@ T['io.flow.v0.models.local_session'] = PropTypes.exact({
|
|
|
11254
11128
|
language: T['io.flow.v0.models.language'].isRequired,
|
|
11255
11129
|
locale: T['io.flow.v0.models.locale'].isRequired,
|
|
11256
11130
|
experience: T['io.flow.v0.models.experience_geo'].isRequired,
|
|
11257
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11258
11131
|
});
|
|
11259
11132
|
|
|
11260
11133
|
T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
@@ -11270,8 +11143,6 @@ T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
|
11270
11143
|
geo: T['io.flow.v0.models.session_geo'],
|
|
11271
11144
|
experience: T['io.flow.v0.models.experience_geo'],
|
|
11272
11145
|
format: T['io.flow.v0.models.session_format'],
|
|
11273
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11274
|
-
context: T['io.flow.v0.models.context_reference'],
|
|
11275
11146
|
});
|
|
11276
11147
|
|
|
11277
11148
|
T['io.flow.v0.unions.session'] = PropTypes.oneOfType([T['io.flow.v0.models.organization_session']]);
|
|
@@ -12724,6 +12595,7 @@ T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
|
|
|
12724
12595
|
timestamp: PropTypes.string.isRequired,
|
|
12725
12596
|
description: PropTypes.string,
|
|
12726
12597
|
aggregator_status_code: PropTypes.string,
|
|
12598
|
+
created_at: PropTypes.string,
|
|
12727
12599
|
});
|
|
12728
12600
|
|
|
12729
12601
|
T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
|
|
@@ -13772,29 +13644,6 @@ T['io.flow.v0.models.measurement'] = PropTypes.exact({
|
|
|
13772
13644
|
units: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
|
|
13773
13645
|
});
|
|
13774
13646
|
|
|
13775
|
-
T['io.flow.v0.models.tax_duty_quote_line_item_form'] = PropTypes.exact({
|
|
13776
|
-
primary_identifier: PropTypes.string.isRequired,
|
|
13777
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13778
|
-
ship_from: T['io.flow.v0.models.street_address'].isRequired,
|
|
13779
|
-
quantity: PropTypes.number.isRequired,
|
|
13780
|
-
unit_price: PropTypes.number.isRequired,
|
|
13781
|
-
unit_weight: T['io.flow.v0.models.measurement'],
|
|
13782
|
-
country_of_origin: PropTypes.string,
|
|
13783
|
-
hs_code: PropTypes.string,
|
|
13784
|
-
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
|
|
13785
|
-
});
|
|
13786
|
-
|
|
13787
|
-
T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
|
|
13788
|
-
primary_identifier: PropTypes.string.isRequired,
|
|
13789
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13790
|
-
delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
|
|
13791
|
-
destination: T['io.flow.v0.models.street_address'].isRequired,
|
|
13792
|
-
currency: PropTypes.string.isRequired,
|
|
13793
|
-
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
|
|
13794
|
-
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
|
|
13795
|
-
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
|
|
13796
|
-
});
|
|
13797
|
-
|
|
13798
13647
|
T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
13799
13648
|
depth: T['io.flow.v0.models.measurement'].isRequired,
|
|
13800
13649
|
length: T['io.flow.v0.models.measurement'].isRequired,
|
|
@@ -15648,22 +15497,6 @@ T['io.flow.v0.models.email_notification'] = PropTypes.exact({
|
|
|
15648
15497
|
data: T['io.flow.v0.unions.email_notification_data'].isRequired,
|
|
15649
15498
|
});
|
|
15650
15499
|
|
|
15651
|
-
T['io.flow.v0.models.email_notification_upserted'] = PropTypes.exact({
|
|
15652
|
-
discriminator: PropTypes.oneOf(['email_notification_upserted']).isRequired,
|
|
15653
|
-
event_id: PropTypes.string.isRequired,
|
|
15654
|
-
timestamp: PropTypes.string.isRequired,
|
|
15655
|
-
organization: PropTypes.string.isRequired,
|
|
15656
|
-
notification: T['io.flow.v0.models.email_notification'].isRequired,
|
|
15657
|
-
});
|
|
15658
|
-
|
|
15659
|
-
T['io.flow.v0.models.email_notification_deleted'] = PropTypes.exact({
|
|
15660
|
-
discriminator: PropTypes.oneOf(['email_notification_deleted']).isRequired,
|
|
15661
|
-
event_id: PropTypes.string.isRequired,
|
|
15662
|
-
timestamp: PropTypes.string.isRequired,
|
|
15663
|
-
organization: PropTypes.string.isRequired,
|
|
15664
|
-
notification: T['io.flow.v0.models.email_notification'].isRequired,
|
|
15665
|
-
});
|
|
15666
|
-
|
|
15667
15500
|
T['io.flow.v0.models.discounts_form'] = PropTypes.exact({
|
|
15668
15501
|
discounts: PropTypes.arrayOf(T['io.flow.v0.models.discount_form']).isRequired,
|
|
15669
15502
|
});
|
|
@@ -16090,8 +15923,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16090
15923
|
T['io.flow.v0.models.customer_deleted'],
|
|
16091
15924
|
T['io.flow.v0.models.customer_address_book_contact_upserted'],
|
|
16092
15925
|
T['io.flow.v0.models.customer_address_book_contact_deleted'],
|
|
16093
|
-
T['io.flow.v0.models.email_notification_upserted'],
|
|
16094
|
-
T['io.flow.v0.models.email_notification_deleted'],
|
|
16095
15926
|
T['io.flow.v0.models.available_promotions_upserted'],
|
|
16096
15927
|
T['io.flow.v0.models.available_promotions_deleted'],
|
|
16097
15928
|
T['io.flow.v0.models.available_promotions_upserted_v2'],
|
|
@@ -16478,8 +16309,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16478
16309
|
'customer_deleted',
|
|
16479
16310
|
'customer_address_book_contact_upserted',
|
|
16480
16311
|
'customer_address_book_contact_deleted',
|
|
16481
|
-
'email_notification_upserted',
|
|
16482
|
-
'email_notification_deleted',
|
|
16483
16312
|
'available_promotions_upserted',
|
|
16484
16313
|
'available_promotions_deleted',
|
|
16485
16314
|
'available_promotions_upserted_v2',
|
|
@@ -18033,9 +17862,6 @@ export const consumerInvoiceReference = T['io.flow.v0.models.consumer_invoice_re
|
|
|
18033
17862
|
export const consumerInvoiceStatus = T['io.flow.v0.enums.consumer_invoice_status'];
|
|
18034
17863
|
export const consumerInvoiceUpserted = T['io.flow.v0.models.consumer_invoice_upserted'];
|
|
18035
17864
|
export const contact = T['io.flow.v0.models.contact'];
|
|
18036
|
-
export const context = T['io.flow.v0.models.context'];
|
|
18037
|
-
export const contextForm = T['io.flow.v0.models.context_form'];
|
|
18038
|
-
export const contextReference = T['io.flow.v0.models.context_reference'];
|
|
18039
17865
|
export const costEstimateSource = T['io.flow.v0.enums.cost_estimate_source'];
|
|
18040
17866
|
export const country = T['io.flow.v0.models.country'];
|
|
18041
17867
|
export const countryAvailability = T['io.flow.v0.models.country_availability'];
|
|
@@ -18190,9 +18016,7 @@ export const emailNotification = T['io.flow.v0.models.email_notification'];
|
|
|
18190
18016
|
export const emailNotificationAbandonedOrder = T['io.flow.v0.models.email_notification_abandoned_order'];
|
|
18191
18017
|
export const emailNotificationData = T['io.flow.v0.unions.email_notification_data'];
|
|
18192
18018
|
export const emailNotificationDataRefund = T['io.flow.v0.models.email_notification_data_refund'];
|
|
18193
|
-
export const emailNotificationDeleted = T['io.flow.v0.models.email_notification_deleted'];
|
|
18194
18019
|
export const emailNotificationForm = T['io.flow.v0.models.email_notification_form'];
|
|
18195
|
-
export const emailNotificationUpserted = T['io.flow.v0.models.email_notification_upserted'];
|
|
18196
18020
|
export const emailPaymentSummary = T['io.flow.v0.models.email_payment_summary'];
|
|
18197
18021
|
export const emailRecipient = T['io.flow.v0.models.email_recipient'];
|
|
18198
18022
|
export const emailVerification = T['io.flow.v0.models.email_verification'];
|
|
@@ -18269,7 +18093,6 @@ export const experienceSummary = T['io.flow.v0.models.experience_summary'];
|
|
|
18269
18093
|
export const experienceUpserted = T['io.flow.v0.models.experience_upserted'];
|
|
18270
18094
|
export const experienceUpsertedV2 = T['io.flow.v0.models.experience_upserted_v2'];
|
|
18271
18095
|
export const experienceVersion = T['io.flow.v0.models.experience_version'];
|
|
18272
|
-
export const experimentVariant = T['io.flow.v0.models.experiment_variant'];
|
|
18273
18096
|
export const expiration = T['io.flow.v0.models.expiration'];
|
|
18274
18097
|
export const UNSAFE_export = T['io.flow.v0.models.export'];
|
|
18275
18098
|
export const exportDelivery = T['io.flow.v0.unions.export_delivery'];
|
|
@@ -18497,7 +18320,6 @@ export const laneSummary = T['io.flow.v0.models.lane_summary'];
|
|
|
18497
18320
|
export const language = T['io.flow.v0.models.language'];
|
|
18498
18321
|
export const largePackageServiceFee = T['io.flow.v0.models.large_package_service_fee'];
|
|
18499
18322
|
export const levyComponent = T['io.flow.v0.enums.levy_component'];
|
|
18500
|
-
export const levyInclusion = T['io.flow.v0.enums.levy_inclusion'];
|
|
18501
18323
|
export const levyStrategy = T['io.flow.v0.enums.levy_strategy'];
|
|
18502
18324
|
export const line = T['io.flow.v0.models.line'];
|
|
18503
18325
|
export const lineItem = T['io.flow.v0.models.line_item'];
|
|
@@ -19137,12 +18959,7 @@ export const serviceUnknown = T['io.flow.v0.models.service_unknown'];
|
|
|
19137
18959
|
export const session = T['io.flow.v0.unions.session'];
|
|
19138
18960
|
export const sessionAuthorization = T['io.flow.v0.unions.session_authorization'];
|
|
19139
18961
|
export const sessionAuthorizationForm = T['io.flow.v0.models.session_authorization_form'];
|
|
19140
|
-
export const sessionContextExperiment = T['io.flow.v0.models.session_context_experiment'];
|
|
19141
18962
|
export const sessionCurrencyFormat = T['io.flow.v0.models.session_currency_format'];
|
|
19142
|
-
export const sessionExperiment = T['io.flow.v0.models.session_experiment'];
|
|
19143
|
-
export const sessionExperimentForm = T['io.flow.v0.models.session_experiment_form'];
|
|
19144
|
-
export const sessionExperimentVariant = T['io.flow.v0.models.session_experiment_variant'];
|
|
19145
|
-
export const sessionExperimentVariantForm = T['io.flow.v0.models.session_experiment_variant_form'];
|
|
19146
18963
|
export const sessionExpirationConfig = T['io.flow.v0.models.session_expiration_config'];
|
|
19147
18964
|
export const sessionForm = T['io.flow.v0.models.session_form'];
|
|
19148
18965
|
export const sessionFormat = T['io.flow.v0.models.session_format'];
|
|
@@ -19180,6 +18997,8 @@ export const shippingConfigurationUpserted = T['io.flow.v0.models.shipping_confi
|
|
|
19180
18997
|
export const shippingConfigurationVersion = T['io.flow.v0.models.shipping_configuration_version'];
|
|
19181
18998
|
export const shippingLabel = T['io.flow.v0.models.shipping_label'];
|
|
19182
18999
|
export const shippingLabelDocument = T['io.flow.v0.models.shipping_label_document'];
|
|
19000
|
+
export const shippingLabelError = T['io.flow.v0.models.shipping_label_error'];
|
|
19001
|
+
export const shippingLabelErrorCode = T['io.flow.v0.enums.shipping_label_error_code'];
|
|
19183
19002
|
export const shippingLabelForm = T['io.flow.v0.unions.shipping_label_form'];
|
|
19184
19003
|
export const shippingLabelHopCostItemizedEstimate = T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'];
|
|
19185
19004
|
export const shippingLabelHopSummary = T['io.flow.v0.models.shipping_label_hop_summary'];
|
|
@@ -19256,7 +19075,6 @@ export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
|
|
|
19256
19075
|
export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
|
|
19257
19076
|
export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
|
|
19258
19077
|
export const strategy = T['io.flow.v0.enums.strategy'];
|
|
19259
|
-
export const streetAddress = T['io.flow.v0.models.street_address'];
|
|
19260
19078
|
export const stripeAuthenticationData = T['io.flow.v0.models.stripe_authentication_data'];
|
|
19261
19079
|
export const stripeAuthenticationDataForm = T['io.flow.v0.models.stripe_authentication_data_form'];
|
|
19262
19080
|
export const stripeAuthorizationResultActionDetails = T['io.flow.v0.models.stripe_authorization_result_action_details'];
|
|
@@ -19297,18 +19115,6 @@ export const syncStreamType = T['io.flow.v0.enums.sync_stream_type'];
|
|
|
19297
19115
|
export const syncUnitOfTime = T['io.flow.v0.enums.sync_unit_of_time'];
|
|
19298
19116
|
export const tax = T['io.flow.v0.models.tax'];
|
|
19299
19117
|
export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
|
|
19300
|
-
export const taxDutyCalculatorValidationError = T['io.flow.v0.models.tax_duty_calculator_validation_error'];
|
|
19301
|
-
export const taxDutyCalculatorValidationErrorCode = T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'];
|
|
19302
|
-
export const taxDutyQuote = T['io.flow.v0.models.tax_duty_quote'];
|
|
19303
|
-
export const taxDutyQuoteFeeValue = T['io.flow.v0.models.tax_duty_quote_fee_value'];
|
|
19304
|
-
export const taxDutyQuoteForm = T['io.flow.v0.models.tax_duty_quote_form'];
|
|
19305
|
-
export const taxDutyQuoteLevyValue = T['io.flow.v0.unions.tax_duty_quote_levy_value'];
|
|
19306
|
-
export const taxDutyQuoteLineItem = T['io.flow.v0.models.tax_duty_quote_line_item'];
|
|
19307
|
-
export const taxDutyQuoteLineItemForm = T['io.flow.v0.models.tax_duty_quote_line_item_form'];
|
|
19308
|
-
export const taxDutyQuoteSimpleLevyValue = T['io.flow.v0.models.tax_duty_quote_simple_levy_value'];
|
|
19309
|
-
export const taxDutyQuoteSimpleShipping = T['io.flow.v0.models.tax_duty_quote_simple_shipping'];
|
|
19310
|
-
export const taxDutyQuoteSimpleShippingForm = T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'];
|
|
19311
|
-
export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
|
|
19312
19118
|
export const taxRegistration = T['io.flow.v0.models.tax_registration'];
|
|
19313
19119
|
export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
|
|
19314
19120
|
export const taxReport = T['io.flow.v0.models.tax_report'];
|
|
@@ -19455,5 +19261,4 @@ export const webhookStatus = T['io.flow.v0.enums.webhook_status'];
|
|
|
19455
19261
|
export const withholdingDeduction = T['io.flow.v0.models.withholding_deduction'];
|
|
19456
19262
|
export const withholdingDeductionType = T['io.flow.v0.enums.withholding_deduction_type'];
|
|
19457
19263
|
export const zeroAmountIndicator = T['io.flow.v0.enums.zero_amount_indicator'];
|
|
19458
|
-
export const zeroLevyReasonCode = T['io.flow.v0.enums.zero_levy_reason_code'];
|
|
19459
19264
|
export const zone = T['io.flow.v0.models.zone'];
|