@flowio/api-prop-types 10.16.100 → 10.16.101
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 +257 -436
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +257 -436
- package/src/api.js +305 -496
package/lib/api.d.ts
CHANGED
|
@@ -4008,9 +4008,11 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
4008
4008
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
4009
4009
|
type AldoItemType = 'physical' | 'digital';
|
|
4010
4010
|
type AnshItemType = 'physical' | 'digital';
|
|
4011
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
4011
4012
|
type NiallItemType = 'physical' | 'digital';
|
|
4012
4013
|
type PrateekItemType = 'physical' | 'digital';
|
|
4013
4014
|
type RohanItemType = 'physical' | 'digital';
|
|
4015
|
+
type SarveshItemType = 'physical' | 'digital';
|
|
4014
4016
|
}
|
|
4015
4017
|
|
|
4016
4018
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -4048,6 +4050,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4048
4050
|
readonly 'added_on': string;
|
|
4049
4051
|
}
|
|
4050
4052
|
|
|
4053
|
+
interface HoseinItem {
|
|
4054
|
+
readonly 'id': string;
|
|
4055
|
+
readonly 'number': string;
|
|
4056
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4057
|
+
readonly 'description'?: string;
|
|
4058
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
4059
|
+
readonly 'added_on': string;
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
interface HoseinItemForm {
|
|
4063
|
+
readonly 'number': string;
|
|
4064
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4065
|
+
readonly 'description'?: string;
|
|
4066
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
4067
|
+
readonly 'added_on': string;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4051
4070
|
interface JeanDemoItem {
|
|
4052
4071
|
readonly 'id': string;
|
|
4053
4072
|
readonly 'name': string;
|
|
@@ -4104,11 +4123,51 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4104
4123
|
readonly 'added_on': string;
|
|
4105
4124
|
}
|
|
4106
4125
|
|
|
4126
|
+
interface SarveshItem {
|
|
4127
|
+
readonly 'id': string;
|
|
4128
|
+
readonly 'number': string;
|
|
4129
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4130
|
+
readonly 'description'?: string;
|
|
4131
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
4132
|
+
readonly 'added_on': string;
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
interface SarveshItemForm {
|
|
4136
|
+
readonly 'number': string;
|
|
4137
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4138
|
+
readonly 'description'?: string;
|
|
4139
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
4140
|
+
readonly 'added_on': string;
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4107
4143
|
interface TechOnboardingDescription {
|
|
4108
4144
|
readonly 'description': string;
|
|
4109
4145
|
}
|
|
4110
4146
|
}
|
|
4111
4147
|
|
|
4148
|
+
declare namespace io.flow.currency.v0.models {
|
|
4149
|
+
interface Rate {
|
|
4150
|
+
readonly 'id': string;
|
|
4151
|
+
readonly 'base': string;
|
|
4152
|
+
readonly 'target': string;
|
|
4153
|
+
readonly 'effective_at': string;
|
|
4154
|
+
readonly 'value': number;
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
interface RateForm {
|
|
4158
|
+
readonly 'base': string;
|
|
4159
|
+
readonly 'target': string;
|
|
4160
|
+
readonly 'effective_at': string;
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
interface RateVersion {
|
|
4164
|
+
readonly 'id': string;
|
|
4165
|
+
readonly 'timestamp': string;
|
|
4166
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4167
|
+
readonly 'rate': io.flow.currency.v0.models.Rate;
|
|
4168
|
+
}
|
|
4169
|
+
}
|
|
4170
|
+
|
|
4112
4171
|
declare namespace io.flow.organization.v0.enums {
|
|
4113
4172
|
type CountryPickerSource = 'experience' | 'destination';
|
|
4114
4173
|
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
@@ -4376,6 +4435,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
4376
4435
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4377
4436
|
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
4378
4437
|
readonly 'item_numbers': string[];
|
|
4438
|
+
readonly 'highest_value_item_number'?: string;
|
|
4379
4439
|
readonly 'updated_at': string;
|
|
4380
4440
|
readonly 'deleted_at'?: string;
|
|
4381
4441
|
}
|
|
@@ -5017,77 +5077,6 @@ declare namespace io.flow.query.builder.v0.unions {
|
|
|
5017
5077
|
type QueryFilterForm = (io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm);
|
|
5018
5078
|
}
|
|
5019
5079
|
|
|
5020
|
-
declare namespace io.flow.sellability.v0.enums {
|
|
5021
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
5022
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
5023
|
-
type SellabilityRequestStatus = 'commit';
|
|
5024
|
-
}
|
|
5025
|
-
|
|
5026
|
-
declare namespace io.flow.sellability.v0.models {
|
|
5027
|
-
interface ProductSellability {
|
|
5028
|
-
readonly 'discriminator': 'product_sellability';
|
|
5029
|
-
readonly 'shop_id': string;
|
|
5030
|
-
readonly 'product_id'?: string;
|
|
5031
|
-
readonly 'request_id': string;
|
|
5032
|
-
readonly 'hs6_code': string;
|
|
5033
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
5034
|
-
}
|
|
5035
|
-
|
|
5036
|
-
interface ProductSellabilityForm {
|
|
5037
|
-
readonly 'shop_id': string;
|
|
5038
|
-
readonly 'product_id'?: string;
|
|
5039
|
-
readonly 'name': string;
|
|
5040
|
-
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
5041
|
-
readonly 'description': string;
|
|
5042
|
-
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5043
|
-
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
5044
|
-
readonly 'dry_run'?: boolean;
|
|
5045
|
-
}
|
|
5046
|
-
|
|
5047
|
-
interface ProductSellabilityPrice {
|
|
5048
|
-
readonly 'currency': string;
|
|
5049
|
-
readonly 'amount': number;
|
|
5050
|
-
}
|
|
5051
|
-
|
|
5052
|
-
interface SellabilityError {
|
|
5053
|
-
readonly 'discriminator': 'sellability_error';
|
|
5054
|
-
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
5055
|
-
readonly 'messages': string[];
|
|
5056
|
-
}
|
|
5057
|
-
|
|
5058
|
-
interface SellablilityRegionResult {
|
|
5059
|
-
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
5060
|
-
readonly 'regions': string[];
|
|
5061
|
-
}
|
|
5062
|
-
}
|
|
5063
|
-
|
|
5064
|
-
declare namespace io.flow.sellability.v0.unions {
|
|
5065
|
-
type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError);
|
|
5066
|
-
}
|
|
5067
|
-
|
|
5068
|
-
declare namespace io.flow.currency.v0.models {
|
|
5069
|
-
interface Rate {
|
|
5070
|
-
readonly 'id': string;
|
|
5071
|
-
readonly 'base': string;
|
|
5072
|
-
readonly 'target': string;
|
|
5073
|
-
readonly 'effective_at': string;
|
|
5074
|
-
readonly 'value': number;
|
|
5075
|
-
}
|
|
5076
|
-
|
|
5077
|
-
interface RateForm {
|
|
5078
|
-
readonly 'base': string;
|
|
5079
|
-
readonly 'target': string;
|
|
5080
|
-
readonly 'effective_at': string;
|
|
5081
|
-
}
|
|
5082
|
-
|
|
5083
|
-
interface RateVersion {
|
|
5084
|
-
readonly 'id': string;
|
|
5085
|
-
readonly 'timestamp': string;
|
|
5086
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
5087
|
-
readonly 'rate': io.flow.currency.v0.models.Rate;
|
|
5088
|
-
}
|
|
5089
|
-
}
|
|
5090
|
-
|
|
5091
5080
|
declare namespace io.flow.v0.enums {
|
|
5092
5081
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
5093
5082
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -5144,7 +5133,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5144
5133
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
5145
5134
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
5146
5135
|
type Environment = 'sandbox' | 'production';
|
|
5147
|
-
type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | '
|
|
5136
|
+
type EventType = 'test_upserted' | 'generate_load' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
5148
5137
|
type ExceptionType = 'open' | 'closed';
|
|
5149
5138
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
5150
5139
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -5186,6 +5175,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5186
5175
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
5187
5176
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
5188
5177
|
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
5178
|
+
type LevyInclusion = 'tax' | 'duty';
|
|
5189
5179
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
5190
5180
|
type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
|
|
5191
5181
|
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
@@ -5236,6 +5226,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5236
5226
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
5237
5227
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
5238
5228
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
5229
|
+
type PreferentialRateEligibility = 'baby_clothing' | 'kids_clothing';
|
|
5239
5230
|
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
5240
5231
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
5241
5232
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
@@ -5243,7 +5234,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5243
5234
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
5244
5235
|
type PriceFacetBoundary = 'min' | 'max';
|
|
5245
5236
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
5246
|
-
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Weapon' | 'Wood';
|
|
5237
|
+
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Pending Classification' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Unknown Bundles' | 'Weapon' | 'Wood';
|
|
5247
5238
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
5248
5239
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
5249
5240
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -5263,7 +5254,10 @@ declare namespace io.flow.v0.enums {
|
|
|
5263
5254
|
type Role = 'admin' | 'member';
|
|
5264
5255
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
5265
5256
|
type RoundingType = 'pattern' | 'multiple';
|
|
5257
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
5266
5258
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
5259
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
5260
|
+
type SellabilityRequestStatus = 'commit';
|
|
5267
5261
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5268
5262
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5269
5263
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -5279,6 +5273,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5279
5273
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
5280
5274
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
5281
5275
|
type TaxApplicability = 'none' | 'all';
|
|
5276
|
+
type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
|
|
5282
5277
|
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
5283
5278
|
type TaxReportType = 'consumer' | 'b2b';
|
|
5284
5279
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -5294,7 +5289,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5294
5289
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
5295
5290
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
5296
5291
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
5297
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
5292
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share';
|
|
5298
5293
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5299
5294
|
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
5300
5295
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -5311,6 +5306,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5311
5306
|
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
5312
5307
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
5313
5308
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
5309
|
+
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
5314
5310
|
}
|
|
5315
5311
|
|
|
5316
5312
|
declare namespace io.flow.v0.models {
|
|
@@ -6028,39 +6024,6 @@ declare namespace io.flow.v0.models {
|
|
|
6028
6024
|
readonly 'promotions': io.flow.v0.unions.Promotion[];
|
|
6029
6025
|
}
|
|
6030
6026
|
|
|
6031
|
-
interface AvailablePromotionsDeleted {
|
|
6032
|
-
readonly 'discriminator': 'available_promotions_deleted';
|
|
6033
|
-
readonly 'event_id': string;
|
|
6034
|
-
readonly 'timestamp': string;
|
|
6035
|
-
readonly 'organization': string;
|
|
6036
|
-
readonly 'experience_key': string;
|
|
6037
|
-
}
|
|
6038
|
-
|
|
6039
|
-
interface AvailablePromotionsDeletedV2 {
|
|
6040
|
-
readonly 'discriminator': 'available_promotions_deleted_v2';
|
|
6041
|
-
readonly 'event_id': string;
|
|
6042
|
-
readonly 'timestamp': string;
|
|
6043
|
-
readonly 'organization': string;
|
|
6044
|
-
readonly 'available_promotion': io.flow.v0.models.AvailablePromotion;
|
|
6045
|
-
}
|
|
6046
|
-
|
|
6047
|
-
interface AvailablePromotionsUpserted {
|
|
6048
|
-
readonly 'discriminator': 'available_promotions_upserted';
|
|
6049
|
-
readonly 'event_id': string;
|
|
6050
|
-
readonly 'timestamp': string;
|
|
6051
|
-
readonly 'organization': string;
|
|
6052
|
-
readonly 'experience_key': string;
|
|
6053
|
-
readonly 'available_promotions': any/*object*/[];
|
|
6054
|
-
}
|
|
6055
|
-
|
|
6056
|
-
interface AvailablePromotionsUpsertedV2 {
|
|
6057
|
-
readonly 'discriminator': 'available_promotions_upserted_v2';
|
|
6058
|
-
readonly 'event_id': string;
|
|
6059
|
-
readonly 'timestamp': string;
|
|
6060
|
-
readonly 'organization': string;
|
|
6061
|
-
readonly 'available_promotion': io.flow.v0.models.AvailablePromotion;
|
|
6062
|
-
}
|
|
6063
|
-
|
|
6064
6027
|
interface AvailableService {
|
|
6065
6028
|
readonly 'service': string;
|
|
6066
6029
|
readonly 'scheduled_pickups'?: io.flow.v0.models.ScheduledPickup[];
|
|
@@ -7354,26 +7317,10 @@ declare namespace io.flow.v0.models {
|
|
|
7354
7317
|
readonly 'status': io.flow.v0.enums.ExperienceCountryStatus;
|
|
7355
7318
|
}
|
|
7356
7319
|
|
|
7357
|
-
interface CountryStatusDeleted {
|
|
7358
|
-
readonly 'discriminator': 'country_status_deleted';
|
|
7359
|
-
readonly 'event_id': string;
|
|
7360
|
-
readonly 'timestamp': string;
|
|
7361
|
-
readonly 'organization': string;
|
|
7362
|
-
readonly 'country_status': io.flow.v0.models.CountryStatus;
|
|
7363
|
-
}
|
|
7364
|
-
|
|
7365
7320
|
interface CountryStatusForm {
|
|
7366
7321
|
readonly 'status': io.flow.v0.enums.ExperienceCountryStatus;
|
|
7367
7322
|
}
|
|
7368
7323
|
|
|
7369
|
-
interface CountryStatusUpserted {
|
|
7370
|
-
readonly 'discriminator': 'country_status_upserted';
|
|
7371
|
-
readonly 'event_id': string;
|
|
7372
|
-
readonly 'timestamp': string;
|
|
7373
|
-
readonly 'organization': string;
|
|
7374
|
-
readonly 'country_status': io.flow.v0.models.CountryStatus;
|
|
7375
|
-
}
|
|
7376
|
-
|
|
7377
7324
|
interface CreditMemo {
|
|
7378
7325
|
readonly 'id': string;
|
|
7379
7326
|
readonly 'number'?: string;
|
|
@@ -7504,25 +7451,6 @@ declare namespace io.flow.v0.models {
|
|
|
7504
7451
|
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
7505
7452
|
}
|
|
7506
7453
|
|
|
7507
|
-
interface CurrencyFormatDeleted {
|
|
7508
|
-
readonly 'discriminator': 'currency_format_deleted';
|
|
7509
|
-
readonly 'event_id': string;
|
|
7510
|
-
readonly 'timestamp': string;
|
|
7511
|
-
readonly 'organization': string;
|
|
7512
|
-
readonly 'id': string;
|
|
7513
|
-
}
|
|
7514
|
-
|
|
7515
|
-
interface CurrencyFormatUpserted {
|
|
7516
|
-
readonly 'discriminator': 'currency_format_upserted';
|
|
7517
|
-
readonly 'event_id': string;
|
|
7518
|
-
readonly 'timestamp': string;
|
|
7519
|
-
readonly 'organization': string;
|
|
7520
|
-
readonly 'id': string;
|
|
7521
|
-
readonly 'experience_key': string;
|
|
7522
|
-
readonly 'symbol': io.flow.v0.enums.CurrencySymbolFormat;
|
|
7523
|
-
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
7524
|
-
}
|
|
7525
|
-
|
|
7526
7454
|
interface CurrencySymbols {
|
|
7527
7455
|
readonly 'primary': string;
|
|
7528
7456
|
readonly 'narrow'?: string;
|
|
@@ -8317,23 +8245,6 @@ declare namespace io.flow.v0.models {
|
|
|
8317
8245
|
readonly 'measurement_system': io.flow.v0.enums.MeasurementSystem;
|
|
8318
8246
|
}
|
|
8319
8247
|
|
|
8320
|
-
interface ExperienceDeleted {
|
|
8321
|
-
readonly 'discriminator': 'experience_deleted';
|
|
8322
|
-
readonly 'event_id': string;
|
|
8323
|
-
readonly 'timestamp': string;
|
|
8324
|
-
readonly 'organization': string;
|
|
8325
|
-
readonly 'key': string;
|
|
8326
|
-
readonly 'subcatalog_id': string;
|
|
8327
|
-
}
|
|
8328
|
-
|
|
8329
|
-
interface ExperienceDeletedV2 {
|
|
8330
|
-
readonly 'discriminator': 'experience_deleted_v2';
|
|
8331
|
-
readonly 'event_id': string;
|
|
8332
|
-
readonly 'timestamp': string;
|
|
8333
|
-
readonly 'organization': string;
|
|
8334
|
-
readonly 'experience': io.flow.v0.models.Experience;
|
|
8335
|
-
}
|
|
8336
|
-
|
|
8337
8248
|
interface ExperienceExportType {
|
|
8338
8249
|
readonly 'discriminator': 'experience_export_type';
|
|
8339
8250
|
readonly 'organization_id': string;
|
|
@@ -8370,26 +8281,10 @@ declare namespace io.flow.v0.models {
|
|
|
8370
8281
|
readonly 'shipping_configuration': io.flow.v0.models.ShippingConfigurationReference;
|
|
8371
8282
|
}
|
|
8372
8283
|
|
|
8373
|
-
interface ExperienceLogisticsSettingsDeleted {
|
|
8374
|
-
readonly 'discriminator': 'experience_logistics_settings_deleted';
|
|
8375
|
-
readonly 'event_id': string;
|
|
8376
|
-
readonly 'timestamp': string;
|
|
8377
|
-
readonly 'organization': string;
|
|
8378
|
-
readonly 'logistics_settings': io.flow.v0.models.ExperienceLogisticsSettings;
|
|
8379
|
-
}
|
|
8380
|
-
|
|
8381
8284
|
interface ExperienceLogisticsSettingsPutForm {
|
|
8382
8285
|
readonly 'shipping_configuration_key': string;
|
|
8383
8286
|
}
|
|
8384
8287
|
|
|
8385
|
-
interface ExperienceLogisticsSettingsUpserted {
|
|
8386
|
-
readonly 'discriminator': 'experience_logistics_settings_upserted';
|
|
8387
|
-
readonly 'event_id': string;
|
|
8388
|
-
readonly 'timestamp': string;
|
|
8389
|
-
readonly 'organization': string;
|
|
8390
|
-
readonly 'logistics_settings': io.flow.v0.models.ExperienceLogisticsSettings;
|
|
8391
|
-
}
|
|
8392
|
-
|
|
8393
8288
|
interface ExperienceLogisticsSummary {
|
|
8394
8289
|
readonly 'outbound'?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
8395
8290
|
readonly 'return'?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
@@ -8426,14 +8321,6 @@ declare namespace io.flow.v0.models {
|
|
|
8426
8321
|
readonly 'position': number;
|
|
8427
8322
|
}
|
|
8428
8323
|
|
|
8429
|
-
interface ExperiencePriceBookMappingDeleted {
|
|
8430
|
-
readonly 'discriminator': 'experience_price_book_mapping_deleted';
|
|
8431
|
-
readonly 'event_id': string;
|
|
8432
|
-
readonly 'timestamp': string;
|
|
8433
|
-
readonly 'organization': string;
|
|
8434
|
-
readonly 'id': string;
|
|
8435
|
-
}
|
|
8436
|
-
|
|
8437
8324
|
interface ExperiencePriceBookMappingForm {
|
|
8438
8325
|
readonly 'price_book_key': string;
|
|
8439
8326
|
readonly 'position'?: number;
|
|
@@ -8443,14 +8330,6 @@ declare namespace io.flow.v0.models {
|
|
|
8443
8330
|
readonly 'price_books': io.flow.v0.models.ExperiencePriceBookMappingForm[];
|
|
8444
8331
|
}
|
|
8445
8332
|
|
|
8446
|
-
interface ExperiencePriceBookMappingUpserted {
|
|
8447
|
-
readonly 'discriminator': 'experience_price_book_mapping_upserted';
|
|
8448
|
-
readonly 'event_id': string;
|
|
8449
|
-
readonly 'timestamp': string;
|
|
8450
|
-
readonly 'organization': string;
|
|
8451
|
-
readonly 'experience_price_book_mapping': io.flow.v0.models.ExperiencePriceBookMapping;
|
|
8452
|
-
}
|
|
8453
|
-
|
|
8454
8333
|
interface ExperiencePriceConversion {
|
|
8455
8334
|
readonly 'request': io.flow.v0.models.ExperiencePriceConversionRequest;
|
|
8456
8335
|
readonly 'price': io.flow.v0.models.PriceWithBase;
|
|
@@ -8507,32 +8386,6 @@ declare namespace io.flow.v0.models {
|
|
|
8507
8386
|
readonly 'language'?: string;
|
|
8508
8387
|
}
|
|
8509
8388
|
|
|
8510
|
-
interface ExperienceUpserted {
|
|
8511
|
-
readonly 'discriminator': 'experience_upserted';
|
|
8512
|
-
readonly 'event_id': string;
|
|
8513
|
-
readonly 'timestamp': string;
|
|
8514
|
-
readonly 'organization': string;
|
|
8515
|
-
readonly 'key': string;
|
|
8516
|
-
readonly 'name': string;
|
|
8517
|
-
readonly 'delivered_duty': string;
|
|
8518
|
-
readonly 'subcatalog_id': string;
|
|
8519
|
-
readonly 'region_id': string;
|
|
8520
|
-
readonly 'country': string;
|
|
8521
|
-
readonly 'currency': string;
|
|
8522
|
-
readonly 'language': string;
|
|
8523
|
-
readonly 'measurement_system': string;
|
|
8524
|
-
readonly 'position': number;
|
|
8525
|
-
readonly 'status'?: string;
|
|
8526
|
-
}
|
|
8527
|
-
|
|
8528
|
-
interface ExperienceUpsertedV2 {
|
|
8529
|
-
readonly 'discriminator': 'experience_upserted_v2';
|
|
8530
|
-
readonly 'event_id': string;
|
|
8531
|
-
readonly 'timestamp': string;
|
|
8532
|
-
readonly 'organization': string;
|
|
8533
|
-
readonly 'experience': io.flow.v0.models.Experience;
|
|
8534
|
-
}
|
|
8535
|
-
|
|
8536
8389
|
interface ExperienceVersion {
|
|
8537
8390
|
readonly 'id': string;
|
|
8538
8391
|
readonly 'timestamp': string;
|
|
@@ -9175,6 +9028,20 @@ declare namespace io.flow.v0.models {
|
|
|
9175
9028
|
readonly 'hop_estimate': io.flow.v0.models.HopEstimateV2;
|
|
9176
9029
|
}
|
|
9177
9030
|
|
|
9031
|
+
interface HoseinItemDeleted {
|
|
9032
|
+
readonly 'discriminator': 'hosein_item_deleted';
|
|
9033
|
+
readonly 'event_id': string;
|
|
9034
|
+
readonly 'timestamp': string;
|
|
9035
|
+
readonly 'id': string;
|
|
9036
|
+
}
|
|
9037
|
+
|
|
9038
|
+
interface HoseinItemUpserted {
|
|
9039
|
+
readonly 'discriminator': 'hosein_item_upserted';
|
|
9040
|
+
readonly 'event_id': string;
|
|
9041
|
+
readonly 'timestamp': string;
|
|
9042
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
9043
|
+
}
|
|
9044
|
+
|
|
9178
9045
|
interface Hs10 {
|
|
9179
9046
|
readonly 'id': string;
|
|
9180
9047
|
readonly 'item': io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -9264,22 +9131,6 @@ declare namespace io.flow.v0.models {
|
|
|
9264
9131
|
readonly 'deliveries': io.flow.v0.unions.ExportDelivery[];
|
|
9265
9132
|
}
|
|
9266
9133
|
|
|
9267
|
-
interface ImportCompletedV2 {
|
|
9268
|
-
readonly 'discriminator': 'import_completed_v2';
|
|
9269
|
-
readonly 'event_id': string;
|
|
9270
|
-
readonly 'timestamp': string;
|
|
9271
|
-
readonly 'organization': string;
|
|
9272
|
-
readonly 'import': io.flow.v0.models.Import;
|
|
9273
|
-
}
|
|
9274
|
-
|
|
9275
|
-
interface ImportFailedV2 {
|
|
9276
|
-
readonly 'discriminator': 'import_failed_v2';
|
|
9277
|
-
readonly 'event_id': string;
|
|
9278
|
-
readonly 'timestamp': string;
|
|
9279
|
-
readonly 'organization': string;
|
|
9280
|
-
readonly 'import': io.flow.v0.models.Import;
|
|
9281
|
-
}
|
|
9282
|
-
|
|
9283
9134
|
interface ImportForm {
|
|
9284
9135
|
readonly 'type': io.flow.v0.enums.ImportType;
|
|
9285
9136
|
readonly 'source_url': string;
|
|
@@ -9542,14 +9393,6 @@ declare namespace io.flow.v0.models {
|
|
|
9542
9393
|
readonly 'experience'?: io.flow.v0.models.ExperienceReference;
|
|
9543
9394
|
}
|
|
9544
9395
|
|
|
9545
|
-
interface ItemMarginDeletedV2 {
|
|
9546
|
-
readonly 'discriminator': 'item_margin_deleted_v2';
|
|
9547
|
-
readonly 'event_id': string;
|
|
9548
|
-
readonly 'timestamp': string;
|
|
9549
|
-
readonly 'organization': string;
|
|
9550
|
-
readonly 'item_margin': io.flow.v0.models.ItemMargin;
|
|
9551
|
-
}
|
|
9552
|
-
|
|
9553
9396
|
interface ItemMarginPostForm {
|
|
9554
9397
|
readonly 'name': string;
|
|
9555
9398
|
readonly 'q': string;
|
|
@@ -9567,14 +9410,6 @@ declare namespace io.flow.v0.models {
|
|
|
9567
9410
|
readonly 'position'?: number;
|
|
9568
9411
|
}
|
|
9569
9412
|
|
|
9570
|
-
interface ItemMarginUpsertedV2 {
|
|
9571
|
-
readonly 'discriminator': 'item_margin_upserted_v2';
|
|
9572
|
-
readonly 'event_id': string;
|
|
9573
|
-
readonly 'timestamp': string;
|
|
9574
|
-
readonly 'organization': string;
|
|
9575
|
-
readonly 'item_margin': io.flow.v0.models.ItemMargin;
|
|
9576
|
-
}
|
|
9577
|
-
|
|
9578
9413
|
interface ItemMarginVersion {
|
|
9579
9414
|
readonly 'id': string;
|
|
9580
9415
|
readonly 'timestamp': string;
|
|
@@ -9622,29 +9457,6 @@ declare namespace io.flow.v0.models {
|
|
|
9622
9457
|
readonly 'number': string;
|
|
9623
9458
|
}
|
|
9624
9459
|
|
|
9625
|
-
interface ItemSalesMarginDeleted {
|
|
9626
|
-
readonly 'discriminator': 'item_sales_margin_deleted';
|
|
9627
|
-
readonly 'event_id': string;
|
|
9628
|
-
readonly 'timestamp': string;
|
|
9629
|
-
readonly 'item_sales_margin_id': string;
|
|
9630
|
-
readonly 'organization_id': string;
|
|
9631
|
-
readonly 'experience_key': string;
|
|
9632
|
-
}
|
|
9633
|
-
|
|
9634
|
-
interface ItemSalesMarginUpserted {
|
|
9635
|
-
readonly 'discriminator': 'item_sales_margin_upserted';
|
|
9636
|
-
readonly 'event_id': string;
|
|
9637
|
-
readonly 'timestamp': string;
|
|
9638
|
-
readonly 'item_sales_margin_id': string;
|
|
9639
|
-
readonly 'organization_id': string;
|
|
9640
|
-
readonly 'experience_key': string;
|
|
9641
|
-
readonly 'name': string;
|
|
9642
|
-
readonly 'q': string;
|
|
9643
|
-
readonly 'fixed': number;
|
|
9644
|
-
readonly 'percent': number;
|
|
9645
|
-
readonly 'position': number;
|
|
9646
|
-
}
|
|
9647
|
-
|
|
9648
9460
|
interface ItemShippingPricing {
|
|
9649
9461
|
readonly 'min': io.flow.v0.models.Price;
|
|
9650
9462
|
readonly 'max'?: io.flow.v0.models.Price;
|
|
@@ -9759,23 +9571,6 @@ declare namespace io.flow.v0.models {
|
|
|
9759
9571
|
readonly 'label': io.flow.v0.models.ShippingLabel;
|
|
9760
9572
|
}
|
|
9761
9573
|
|
|
9762
|
-
interface LabelFormatDeleted {
|
|
9763
|
-
readonly 'discriminator': 'label_format_deleted';
|
|
9764
|
-
readonly 'event_id': string;
|
|
9765
|
-
readonly 'timestamp': string;
|
|
9766
|
-
readonly 'organization': string;
|
|
9767
|
-
readonly 'experience_key': string;
|
|
9768
|
-
}
|
|
9769
|
-
|
|
9770
|
-
interface LabelFormatUpserted {
|
|
9771
|
-
readonly 'discriminator': 'label_format_upserted';
|
|
9772
|
-
readonly 'event_id': string;
|
|
9773
|
-
readonly 'timestamp': string;
|
|
9774
|
-
readonly 'organization': string;
|
|
9775
|
-
readonly 'experience_key': string;
|
|
9776
|
-
readonly 'format': string;
|
|
9777
|
-
}
|
|
9778
|
-
|
|
9779
9574
|
interface LabelOrderSummary {
|
|
9780
9575
|
readonly 'id': string;
|
|
9781
9576
|
readonly 'number': string;
|
|
@@ -10631,14 +10426,6 @@ declare namespace io.flow.v0.models {
|
|
|
10631
10426
|
readonly 'invoice'?: io.flow.v0.models.CustomerInvoice;
|
|
10632
10427
|
}
|
|
10633
10428
|
|
|
10634
|
-
interface OrderDeleted {
|
|
10635
|
-
readonly 'discriminator': 'order_deleted';
|
|
10636
|
-
readonly 'event_id': string;
|
|
10637
|
-
readonly 'timestamp': string;
|
|
10638
|
-
readonly 'organization': string;
|
|
10639
|
-
readonly 'number': string;
|
|
10640
|
-
}
|
|
10641
|
-
|
|
10642
10429
|
interface OrderDeletedV2 {
|
|
10643
10430
|
readonly 'discriminator': 'order_deleted_v2';
|
|
10644
10431
|
readonly 'event_id': string;
|
|
@@ -10733,13 +10520,6 @@ declare namespace io.flow.v0.models {
|
|
|
10733
10520
|
readonly 'number'?: string;
|
|
10734
10521
|
}
|
|
10735
10522
|
|
|
10736
|
-
interface OrderIdentifierDeleted {
|
|
10737
|
-
readonly 'discriminator': 'order_identifier_deleted';
|
|
10738
|
-
readonly 'event_id': string;
|
|
10739
|
-
readonly 'timestamp': string;
|
|
10740
|
-
readonly 'id': string;
|
|
10741
|
-
}
|
|
10742
|
-
|
|
10743
10523
|
interface OrderIdentifierDeletedV2 {
|
|
10744
10524
|
readonly 'discriminator': 'order_identifier_deleted_v2';
|
|
10745
10525
|
readonly 'event_id': string;
|
|
@@ -10762,27 +10542,6 @@ declare namespace io.flow.v0.models {
|
|
|
10762
10542
|
readonly 'primary'?: boolean;
|
|
10763
10543
|
}
|
|
10764
10544
|
|
|
10765
|
-
interface OrderIdentifierUpserted {
|
|
10766
|
-
readonly 'discriminator': 'order_identifier_upserted';
|
|
10767
|
-
readonly 'event_id': string;
|
|
10768
|
-
readonly 'timestamp': string;
|
|
10769
|
-
readonly 'id': string;
|
|
10770
|
-
readonly 'organization': string;
|
|
10771
|
-
readonly 'number': string;
|
|
10772
|
-
readonly 'order_number': string;
|
|
10773
|
-
}
|
|
10774
|
-
|
|
10775
|
-
interface OrderIdentifierUpsertedV2 {
|
|
10776
|
-
readonly 'discriminator': 'order_identifier_upserted_v2';
|
|
10777
|
-
readonly 'event_id': string;
|
|
10778
|
-
readonly 'timestamp': string;
|
|
10779
|
-
readonly 'organization': string;
|
|
10780
|
-
readonly 'id': string;
|
|
10781
|
-
readonly 'order_number': string;
|
|
10782
|
-
readonly 'identifier': string;
|
|
10783
|
-
readonly 'primary': boolean;
|
|
10784
|
-
}
|
|
10785
|
-
|
|
10786
10545
|
interface OrderIdentifierUpsertedV3 {
|
|
10787
10546
|
readonly 'discriminator': 'order_identifier_upserted_v3';
|
|
10788
10547
|
readonly 'event_id': string;
|
|
@@ -10980,26 +10739,10 @@ declare namespace io.flow.v0.models {
|
|
|
10980
10739
|
readonly 'replacement_order': io.flow.v0.models.Order;
|
|
10981
10740
|
}
|
|
10982
10741
|
|
|
10983
|
-
interface OrderReplacementDeleted {
|
|
10984
|
-
readonly 'discriminator': 'order_replacement_deleted';
|
|
10985
|
-
readonly 'event_id': string;
|
|
10986
|
-
readonly 'timestamp': string;
|
|
10987
|
-
readonly 'organization': string;
|
|
10988
|
-
readonly 'order_replacement': io.flow.v0.models.OrderReplacement;
|
|
10989
|
-
}
|
|
10990
|
-
|
|
10991
10742
|
interface OrderReplacementForm {
|
|
10992
10743
|
readonly 'items'?: io.flow.v0.models.LineItemForm[];
|
|
10993
10744
|
}
|
|
10994
10745
|
|
|
10995
|
-
interface OrderReplacementUpserted {
|
|
10996
|
-
readonly 'discriminator': 'order_replacement_upserted';
|
|
10997
|
-
readonly 'event_id': string;
|
|
10998
|
-
readonly 'timestamp': string;
|
|
10999
|
-
readonly 'organization': string;
|
|
11000
|
-
readonly 'order_replacement': io.flow.v0.models.OrderReplacement;
|
|
11001
|
-
}
|
|
11002
|
-
|
|
11003
10746
|
interface OrderRuleReference {
|
|
11004
10747
|
readonly 'id': string;
|
|
11005
10748
|
readonly 'key': string;
|
|
@@ -11020,14 +10763,6 @@ declare namespace io.flow.v0.models {
|
|
|
11020
10763
|
readonly 'to_service_id': string;
|
|
11021
10764
|
}
|
|
11022
10765
|
|
|
11023
|
-
interface OrderServiceChangeRequest {
|
|
11024
|
-
readonly 'discriminator': 'order_service_change_request';
|
|
11025
|
-
readonly 'event_id': string;
|
|
11026
|
-
readonly 'timestamp': string;
|
|
11027
|
-
readonly 'organization': string;
|
|
11028
|
-
readonly 'request': io.flow.v0.models.OrderServiceChangeRequestData;
|
|
11029
|
-
}
|
|
11030
|
-
|
|
11031
10766
|
interface OrderServiceChangeRequestData {
|
|
11032
10767
|
readonly 'id': string;
|
|
11033
10768
|
readonly 'source_url': string;
|
|
@@ -11102,36 +10837,6 @@ declare namespace io.flow.v0.models {
|
|
|
11102
10837
|
readonly 'rate_label'?: string;
|
|
11103
10838
|
}
|
|
11104
10839
|
|
|
11105
|
-
interface OrderUpserted {
|
|
11106
|
-
readonly 'discriminator': 'order_upserted';
|
|
11107
|
-
readonly 'event_id': string;
|
|
11108
|
-
readonly 'timestamp': string;
|
|
11109
|
-
readonly 'organization': string;
|
|
11110
|
-
readonly 'number': string;
|
|
11111
|
-
readonly 'environment': string;
|
|
11112
|
-
readonly 'experience_id': string;
|
|
11113
|
-
readonly 'expires_at': string;
|
|
11114
|
-
readonly 'customer': io.flow.v0.models.OrderCustomer;
|
|
11115
|
-
readonly 'selections': string[];
|
|
11116
|
-
readonly 'items': io.flow.v0.models.LocalizedLineItem[];
|
|
11117
|
-
readonly 'destination': io.flow.v0.models.OrderAddress;
|
|
11118
|
-
readonly 'deliveries': io.flow.v0.unions.Delivery[];
|
|
11119
|
-
readonly 'prices': io.flow.v0.models.OrderPriceDetail[];
|
|
11120
|
-
readonly 'order_id'?: string;
|
|
11121
|
-
readonly 'payments'?: io.flow.v0.models.OrderPayment[];
|
|
11122
|
-
readonly 'discount'?: io.flow.v0.models.Money;
|
|
11123
|
-
readonly 'delivered_duty'?: string;
|
|
11124
|
-
readonly 'total': io.flow.v0.models.LocalizedTotal;
|
|
11125
|
-
readonly 'created_at'?: string;
|
|
11126
|
-
readonly 'updated_at'?: string;
|
|
11127
|
-
readonly 'submitted_at'?: string;
|
|
11128
|
-
readonly 'lines'?: io.flow.v0.models.Line[];
|
|
11129
|
-
readonly 'attributes'?: Record<string, string>;
|
|
11130
|
-
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
11131
|
-
readonly 'merchant_of_record'?: io.flow.v0.enums.OrderMerchantOfRecord;
|
|
11132
|
-
readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
|
|
11133
|
-
}
|
|
11134
|
-
|
|
11135
10840
|
interface OrderUpsertedV2 {
|
|
11136
10841
|
readonly 'discriminator': 'order_upserted_v2';
|
|
11137
10842
|
readonly 'event_id': string;
|
|
@@ -12617,33 +12322,12 @@ declare namespace io.flow.v0.models {
|
|
|
12617
12322
|
readonly 'rounding'?: io.flow.v0.models.Rounding;
|
|
12618
12323
|
}
|
|
12619
12324
|
|
|
12620
|
-
interface PricingDeleted {
|
|
12621
|
-
readonly 'discriminator': 'pricing_deleted';
|
|
12622
|
-
readonly 'event_id': string;
|
|
12623
|
-
readonly 'timestamp': string;
|
|
12624
|
-
readonly 'organization': string;
|
|
12625
|
-
readonly 'experience_key': string;
|
|
12626
|
-
}
|
|
12627
|
-
|
|
12628
12325
|
interface PricingSettings {
|
|
12629
12326
|
readonly 'editable': boolean;
|
|
12630
12327
|
readonly 'default_tax_display': io.flow.v0.enums.PricingLevySetting;
|
|
12631
12328
|
readonly 'default_duty_display': io.flow.v0.enums.PricingLevySetting;
|
|
12632
12329
|
}
|
|
12633
12330
|
|
|
12634
|
-
interface PricingUpserted {
|
|
12635
|
-
readonly 'discriminator': 'pricing_upserted';
|
|
12636
|
-
readonly 'event_id': string;
|
|
12637
|
-
readonly 'timestamp': string;
|
|
12638
|
-
readonly 'organization': string;
|
|
12639
|
-
readonly 'experience_key': string;
|
|
12640
|
-
readonly 'vat': string;
|
|
12641
|
-
readonly 'duty': string;
|
|
12642
|
-
readonly 'rounding_type'?: string;
|
|
12643
|
-
readonly 'rounding_method'?: string;
|
|
12644
|
-
readonly 'rounding_value'?: number;
|
|
12645
|
-
}
|
|
12646
|
-
|
|
12647
12331
|
interface PricingVersion {
|
|
12648
12332
|
readonly 'id': string;
|
|
12649
12333
|
readonly 'timestamp': string;
|
|
@@ -12664,6 +12348,7 @@ declare namespace io.flow.v0.models {
|
|
|
12664
12348
|
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12665
12349
|
readonly 'taxonomy_data'?: io.flow.v0.models.ProductTaxonomyData[];
|
|
12666
12350
|
readonly 'item_numbers': string[];
|
|
12351
|
+
readonly 'highest_value_item_number'?: string;
|
|
12667
12352
|
readonly 'updated_at': string;
|
|
12668
12353
|
readonly 'deleted_at'?: string;
|
|
12669
12354
|
}
|
|
@@ -12696,7 +12381,7 @@ declare namespace io.flow.v0.models {
|
|
|
12696
12381
|
readonly 'updated_by'?: string;
|
|
12697
12382
|
readonly 'product_restriction_id'?: string;
|
|
12698
12383
|
readonly 'hs_code'?: string;
|
|
12699
|
-
readonly 'restricted_regions_by_type'?: io.flow.
|
|
12384
|
+
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellablilityRegionResult[];
|
|
12700
12385
|
}
|
|
12701
12386
|
|
|
12702
12387
|
interface ProductRestrictionResultDeleted {
|
|
@@ -12715,6 +12400,26 @@ declare namespace io.flow.v0.models {
|
|
|
12715
12400
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
12716
12401
|
}
|
|
12717
12402
|
|
|
12403
|
+
interface ProductSellability {
|
|
12404
|
+
readonly 'discriminator': 'product_sellability';
|
|
12405
|
+
readonly 'shop_id': string;
|
|
12406
|
+
readonly 'product_id'?: string;
|
|
12407
|
+
readonly 'request_id': string;
|
|
12408
|
+
readonly 'hs6_code': string;
|
|
12409
|
+
readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
12410
|
+
}
|
|
12411
|
+
|
|
12412
|
+
interface ProductSellabilityForm {
|
|
12413
|
+
readonly 'shop_id': string;
|
|
12414
|
+
readonly 'product_id'?: string;
|
|
12415
|
+
readonly 'name': string;
|
|
12416
|
+
readonly 'price': io.flow.v0.models.Money;
|
|
12417
|
+
readonly 'description': string;
|
|
12418
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
12419
|
+
readonly 'status'?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
12420
|
+
readonly 'dry_run'?: boolean;
|
|
12421
|
+
}
|
|
12422
|
+
|
|
12718
12423
|
interface ProductTaxonomyCategory {
|
|
12719
12424
|
readonly 'name': string;
|
|
12720
12425
|
readonly 'full_name': string;
|
|
@@ -13613,6 +13318,20 @@ declare namespace io.flow.v0.models {
|
|
|
13613
13318
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
13614
13319
|
}
|
|
13615
13320
|
|
|
13321
|
+
interface SarveshItemDeleted {
|
|
13322
|
+
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
13323
|
+
readonly 'event_id': string;
|
|
13324
|
+
readonly 'timestamp': string;
|
|
13325
|
+
readonly 'id': string;
|
|
13326
|
+
}
|
|
13327
|
+
|
|
13328
|
+
interface SarveshItemUpserted {
|
|
13329
|
+
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
13330
|
+
readonly 'event_id': string;
|
|
13331
|
+
readonly 'timestamp': string;
|
|
13332
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
13333
|
+
}
|
|
13334
|
+
|
|
13616
13335
|
interface Schedule {
|
|
13617
13336
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
13618
13337
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13664,6 +13383,17 @@ declare namespace io.flow.v0.models {
|
|
|
13664
13383
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
13665
13384
|
}
|
|
13666
13385
|
|
|
13386
|
+
interface SellabilityError {
|
|
13387
|
+
readonly 'discriminator': 'sellability_error';
|
|
13388
|
+
readonly 'code': io.flow.v0.enums.SellabilityErrorCode;
|
|
13389
|
+
readonly 'messages': string[];
|
|
13390
|
+
}
|
|
13391
|
+
|
|
13392
|
+
interface SellablilityRegionResult {
|
|
13393
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
13394
|
+
readonly 'regions': string[];
|
|
13395
|
+
}
|
|
13396
|
+
|
|
13667
13397
|
interface ServiceReference {
|
|
13668
13398
|
readonly 'id': string;
|
|
13669
13399
|
}
|
|
@@ -14465,6 +14195,14 @@ declare namespace io.flow.v0.models {
|
|
|
14465
14195
|
readonly 'statement': io.flow.v0.models.Statement;
|
|
14466
14196
|
}
|
|
14467
14197
|
|
|
14198
|
+
interface StreetAddress {
|
|
14199
|
+
readonly 'streets'?: string[];
|
|
14200
|
+
readonly 'city'?: string;
|
|
14201
|
+
readonly 'province'?: string;
|
|
14202
|
+
readonly 'postal'?: string;
|
|
14203
|
+
readonly 'country'?: string;
|
|
14204
|
+
}
|
|
14205
|
+
|
|
14468
14206
|
interface StripeAuthenticationData {
|
|
14469
14207
|
readonly 'discriminator': 'stripe_authentication_data';
|
|
14470
14208
|
readonly 'secret_key_reference': string;
|
|
@@ -14619,6 +14357,93 @@ declare namespace io.flow.v0.models {
|
|
|
14619
14357
|
readonly 'deminimis'?: io.flow.v0.unions.Deminimis;
|
|
14620
14358
|
}
|
|
14621
14359
|
|
|
14360
|
+
interface TaxDutyCalculatorValidationError {
|
|
14361
|
+
readonly 'code': io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
14362
|
+
readonly 'messages': string[];
|
|
14363
|
+
}
|
|
14364
|
+
|
|
14365
|
+
interface TaxDutyQuote {
|
|
14366
|
+
readonly 'id': string;
|
|
14367
|
+
readonly 'primary_identifier': string;
|
|
14368
|
+
readonly 'attributes'?: Record<string, string>;
|
|
14369
|
+
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
14370
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
14371
|
+
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
14372
|
+
readonly 'quote_date': string;
|
|
14373
|
+
readonly 'currency': string;
|
|
14374
|
+
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItem[];
|
|
14375
|
+
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
|
|
14376
|
+
readonly 'total_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14377
|
+
}
|
|
14378
|
+
|
|
14379
|
+
interface TaxDutyQuoteFeeValue {
|
|
14380
|
+
readonly 'amount': number;
|
|
14381
|
+
readonly 'description': string;
|
|
14382
|
+
readonly 'amount_refundable_on_return': number;
|
|
14383
|
+
}
|
|
14384
|
+
|
|
14385
|
+
interface TaxDutyQuoteForm {
|
|
14386
|
+
readonly 'primary_identifier': string;
|
|
14387
|
+
readonly 'attributes'?: Record<string, string>;
|
|
14388
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
14389
|
+
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
14390
|
+
readonly 'currency': string;
|
|
14391
|
+
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
14392
|
+
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
14393
|
+
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
14394
|
+
}
|
|
14395
|
+
|
|
14396
|
+
interface TaxDutyQuoteLineItem {
|
|
14397
|
+
readonly 'primary_identifier': string;
|
|
14398
|
+
readonly 'attributes'?: Record<string, string>;
|
|
14399
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14400
|
+
readonly 'quantity': number;
|
|
14401
|
+
readonly 'unit_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14402
|
+
readonly 'country_of_origin': string;
|
|
14403
|
+
readonly 'hs_code': string;
|
|
14404
|
+
}
|
|
14405
|
+
|
|
14406
|
+
interface TaxDutyQuoteLineItemForm {
|
|
14407
|
+
readonly 'primary_identifier': string;
|
|
14408
|
+
readonly 'attributes'?: Record<string, string>;
|
|
14409
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14410
|
+
readonly 'quantity': number;
|
|
14411
|
+
readonly 'unit_price': number;
|
|
14412
|
+
readonly 'unit_weight'?: io.flow.v0.models.Measurement;
|
|
14413
|
+
readonly 'country_of_origin'?: string;
|
|
14414
|
+
readonly 'hs_code'?: string;
|
|
14415
|
+
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
14416
|
+
readonly 'preferential_rate_eligibilities'?: io.flow.v0.enums.PreferentialRateEligibility[];
|
|
14417
|
+
}
|
|
14418
|
+
|
|
14419
|
+
interface TaxDutyQuoteSimpleLevyValue {
|
|
14420
|
+
readonly 'discriminator': 'tax_duty_quote_simple_levy_value';
|
|
14421
|
+
readonly 'amount': number;
|
|
14422
|
+
readonly 'rate': number;
|
|
14423
|
+
readonly 'description': string;
|
|
14424
|
+
readonly 'zero_levy_reason'?: io.flow.v0.enums.ZeroLevyReasonCode[];
|
|
14425
|
+
readonly 'amount_refundable_on_return': number;
|
|
14426
|
+
}
|
|
14427
|
+
|
|
14428
|
+
interface TaxDutyQuoteSimpleShipping {
|
|
14429
|
+
readonly 'values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14430
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14431
|
+
}
|
|
14432
|
+
|
|
14433
|
+
interface TaxDutyQuoteSimpleShippingForm {
|
|
14434
|
+
readonly 'price': number;
|
|
14435
|
+
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
14436
|
+
readonly 'ship_from'?: io.flow.v0.models.StreetAddress;
|
|
14437
|
+
}
|
|
14438
|
+
|
|
14439
|
+
interface TaxDutyQuoteValues {
|
|
14440
|
+
readonly 'price': number;
|
|
14441
|
+
readonly 'duty': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
14442
|
+
readonly 'tax': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
14443
|
+
readonly 'fees': io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
14444
|
+
readonly 'total': number;
|
|
14445
|
+
}
|
|
14446
|
+
|
|
14622
14447
|
interface TaxRegistration {
|
|
14623
14448
|
readonly 'id': string;
|
|
14624
14449
|
readonly 'key': string;
|
|
@@ -15472,7 +15297,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15472
15297
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15473
15298
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15474
15299
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15475
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.
|
|
15300
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.SarveshItemUpserted | io.flow.v0.models.SarveshItemDeleted | io.flow.v0.models.HoseinItemUpserted | io.flow.v0.models.HoseinItemDeleted | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
15476
15301
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
15477
15302
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15478
15303
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15543,6 +15368,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15543
15368
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
15544
15369
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
15545
15370
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
15371
|
+
type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError);
|
|
15546
15372
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
15547
15373
|
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee);
|
|
15548
15374
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
@@ -15552,6 +15378,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15552
15378
|
type ShippingNotificationForm = (io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm);
|
|
15553
15379
|
type ShopifyCartAddForm = (io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm);
|
|
15554
15380
|
type ShopifyEventBucket = (io.flow.v0.models.ShopifyItemEventBucket);
|
|
15381
|
+
type TaxDutyQuoteLevyValue = (io.flow.v0.models.TaxDutyQuoteSimpleLevyValue);
|
|
15555
15382
|
type TaxSetting = (io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting);
|
|
15556
15383
|
type ThreedsChallengeAction = (io.flow.v0.models.ThreedsTwoChallengeRequest);
|
|
15557
15384
|
type ThreedsIdentifyAction = (io.flow.v0.models.ThreedsTwoMethod);
|
|
@@ -15661,6 +15488,7 @@ export const laneDirection: PropTypes.Requireable<io.flow.v0.enums.LaneDirection
|
|
|
15661
15488
|
export const lanePreselectPreference: PropTypes.Requireable<io.flow.v0.enums.LanePreselectPreference>;
|
|
15662
15489
|
export const laneStrategy: PropTypes.Requireable<io.flow.v0.enums.LaneStrategy>;
|
|
15663
15490
|
export const levyComponent: PropTypes.Requireable<io.flow.v0.enums.LevyComponent>;
|
|
15491
|
+
export const levyInclusion: PropTypes.Requireable<io.flow.v0.enums.LevyInclusion>;
|
|
15664
15492
|
export const levyStrategy: PropTypes.Requireable<io.flow.v0.enums.LevyStrategy>;
|
|
15665
15493
|
export const locationErrorCode: PropTypes.Requireable<io.flow.v0.enums.LocationErrorCode>;
|
|
15666
15494
|
export const logisticsFormatPreference: PropTypes.Requireable<io.flow.v0.enums.LogisticsFormatPreference>;
|
|
@@ -15711,6 +15539,7 @@ export const pendingPayoutTransactionReasonCode: PropTypes.Requireable<io.flow.v
|
|
|
15711
15539
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
15712
15540
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
15713
15541
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
15542
|
+
export const preferentialRateEligibility: PropTypes.Requireable<io.flow.v0.enums.PreferentialRateEligibility>;
|
|
15714
15543
|
export const preferredServiceSelectionStrategy: PropTypes.Requireable<io.flow.v0.enums.PreferredServiceSelectionStrategy>;
|
|
15715
15544
|
export const priceAccuracy: PropTypes.Requireable<io.flow.v0.enums.PriceAccuracy>;
|
|
15716
15545
|
export const priceBookStatus: PropTypes.Requireable<io.flow.v0.enums.PriceBookStatus>;
|
|
@@ -15738,7 +15567,10 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
|
|
|
15738
15567
|
export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
|
|
15739
15568
|
export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
|
|
15740
15569
|
export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
|
|
15570
|
+
export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
|
|
15741
15571
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
15572
|
+
export const sellabilityErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityErrorCode>;
|
|
15573
|
+
export const sellabilityRequestStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityRequestStatus>;
|
|
15742
15574
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
15743
15575
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
15744
15576
|
export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
|
|
@@ -15754,6 +15586,7 @@ export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.Subcat
|
|
|
15754
15586
|
export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
|
|
15755
15587
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
15756
15588
|
export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
|
|
15589
|
+
export const taxDutyCalculatorValidationErrorCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode>;
|
|
15757
15590
|
export const taxDutyTransactionReasonCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyTransactionReasonCode>;
|
|
15758
15591
|
export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
|
|
15759
15592
|
export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
|
|
@@ -15786,6 +15619,7 @@ export const visibility: PropTypes.Requireable<io.flow.v0.enums.Visibility>;
|
|
|
15786
15619
|
export const webhookStatus: PropTypes.Requireable<io.flow.v0.enums.WebhookStatus>;
|
|
15787
15620
|
export const withholdingDeductionType: PropTypes.Requireable<io.flow.v0.enums.WithholdingDeductionType>;
|
|
15788
15621
|
export const zeroAmountIndicator: PropTypes.Requireable<io.flow.v0.enums.ZeroAmountIndicator>;
|
|
15622
|
+
export const zeroLevyReasonCode: PropTypes.Requireable<io.flow.v0.enums.ZeroLevyReasonCode>;
|
|
15789
15623
|
export const abandonedOrderEmailSettings: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderEmailSettings>;
|
|
15790
15624
|
export const abandonedOrderPromotion: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotion>;
|
|
15791
15625
|
export const abandonedOrderPromotionDiscountDetails: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotionDiscountDetails>;
|
|
@@ -15884,10 +15718,6 @@ export const authorizationVersion: PropTypes.Requireable<io.flow.v0.models.Autho
|
|
|
15884
15718
|
export const availableFilterStructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterStructured>;
|
|
15885
15719
|
export const availableFilterUnstructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterUnstructured>;
|
|
15886
15720
|
export const availablePromotion: PropTypes.Requireable<io.flow.v0.models.AvailablePromotion>;
|
|
15887
|
-
export const availablePromotionsDeleted: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsDeleted>;
|
|
15888
|
-
export const availablePromotionsDeletedV2: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsDeletedV2>;
|
|
15889
|
-
export const availablePromotionsUpserted: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsUpserted>;
|
|
15890
|
-
export const availablePromotionsUpsertedV2: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsUpsertedV2>;
|
|
15891
15721
|
export const availableService: PropTypes.Requireable<io.flow.v0.models.AvailableService>;
|
|
15892
15722
|
export const avalaraTaxCsvSetting: PropTypes.Requireable<io.flow.v0.models.AvalaraTaxCsvSetting>;
|
|
15893
15723
|
export const avalaraTaxSetting: PropTypes.Requireable<io.flow.v0.models.AvalaraTaxSetting>;
|
|
@@ -16064,9 +15894,7 @@ export const countryPicker: PropTypes.Requireable<io.flow.v0.models.CountryPicke
|
|
|
16064
15894
|
export const countryPickerForm: PropTypes.Requireable<io.flow.v0.models.CountryPickerForm>;
|
|
16065
15895
|
export const countryShippingPricing: PropTypes.Requireable<io.flow.v0.models.CountryShippingPricing>;
|
|
16066
15896
|
export const countryStatus: PropTypes.Requireable<io.flow.v0.models.CountryStatus>;
|
|
16067
|
-
export const countryStatusDeleted: PropTypes.Requireable<io.flow.v0.models.CountryStatusDeleted>;
|
|
16068
15897
|
export const countryStatusForm: PropTypes.Requireable<io.flow.v0.models.CountryStatusForm>;
|
|
16069
|
-
export const countryStatusUpserted: PropTypes.Requireable<io.flow.v0.models.CountryStatusUpserted>;
|
|
16070
15898
|
export const creditMemo: PropTypes.Requireable<io.flow.v0.models.CreditMemo>;
|
|
16071
15899
|
export const creditMemoDeleted: PropTypes.Requireable<io.flow.v0.models.CreditMemoDeleted>;
|
|
16072
15900
|
export const creditMemoForm: PropTypes.Requireable<io.flow.v0.models.CreditMemoForm>;
|
|
@@ -16083,8 +15911,6 @@ export const csvPriceBookItemExportRowByItemNumber: PropTypes.Requireable<io.flo
|
|
|
16083
15911
|
export const csvPriceBookItemExportRowBySku: PropTypes.Requireable<io.flow.v0.models.CsvPriceBookItemExportRowBySku>;
|
|
16084
15912
|
export const currency: PropTypes.Requireable<io.flow.v0.models.Currency>;
|
|
16085
15913
|
export const currencyFormat: PropTypes.Requireable<io.flow.v0.models.CurrencyFormat>;
|
|
16086
|
-
export const currencyFormatDeleted: PropTypes.Requireable<io.flow.v0.models.CurrencyFormatDeleted>;
|
|
16087
|
-
export const currencyFormatUpserted: PropTypes.Requireable<io.flow.v0.models.CurrencyFormatUpserted>;
|
|
16088
15914
|
export const currencySymbols: PropTypes.Requireable<io.flow.v0.models.CurrencySymbols>;
|
|
16089
15915
|
export const customer: PropTypes.Requireable<io.flow.v0.models.Customer>;
|
|
16090
15916
|
export const customerAddressBook: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBook>;
|
|
@@ -16202,15 +16028,11 @@ export const experienceConfigurationReference: PropTypes.Requireable<io.flow.v0.
|
|
|
16202
16028
|
export const experienceCurrencyFormat: PropTypes.Requireable<io.flow.v0.models.ExperienceCurrencyFormat>;
|
|
16203
16029
|
export const experienceCurrencyFormatForm: PropTypes.Requireable<io.flow.v0.models.ExperienceCurrencyFormatForm>;
|
|
16204
16030
|
export const experienceDefaults: PropTypes.Requireable<io.flow.v0.models.ExperienceDefaults>;
|
|
16205
|
-
export const experienceDeleted: PropTypes.Requireable<io.flow.v0.models.ExperienceDeleted>;
|
|
16206
|
-
export const experienceDeletedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceDeletedV2>;
|
|
16207
16031
|
export const experienceExportType: PropTypes.Requireable<io.flow.v0.models.ExperienceExportType>;
|
|
16208
16032
|
export const experienceForm: PropTypes.Requireable<io.flow.v0.models.ExperienceForm>;
|
|
16209
16033
|
export const experienceGeo: PropTypes.Requireable<io.flow.v0.models.ExperienceGeo>;
|
|
16210
16034
|
export const experienceLogisticsSettings: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettings>;
|
|
16211
|
-
export const experienceLogisticsSettingsDeleted: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsDeleted>;
|
|
16212
16035
|
export const experienceLogisticsSettingsPutForm: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsPutForm>;
|
|
16213
|
-
export const experienceLogisticsSettingsUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsUpserted>;
|
|
16214
16036
|
export const experienceLogisticsSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSummary>;
|
|
16215
16037
|
export const experienceLogisticsTierSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsTierSummary>;
|
|
16216
16038
|
export const experienceLogisticsTierSummaryPrices: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsTierSummaryPrices>;
|
|
@@ -16218,10 +16040,8 @@ export const experienceOverview: PropTypes.Requireable<io.flow.v0.models.Experie
|
|
|
16218
16040
|
export const experiencePaymentMethodRule: PropTypes.Requireable<io.flow.v0.models.ExperiencePaymentMethodRule>;
|
|
16219
16041
|
export const experiencePaymentMethodRuleForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePaymentMethodRuleForm>;
|
|
16220
16042
|
export const experiencePriceBookMapping: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMapping>;
|
|
16221
|
-
export const experiencePriceBookMappingDeleted: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingDeleted>;
|
|
16222
16043
|
export const experiencePriceBookMappingForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingForm>;
|
|
16223
16044
|
export const experiencePriceBookMappingPutForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingPutForm>;
|
|
16224
|
-
export const experiencePriceBookMappingUpserted: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingUpserted>;
|
|
16225
16045
|
export const experiencePriceConversion: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversion>;
|
|
16226
16046
|
export const experiencePriceConversionRequest: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversionRequest>;
|
|
16227
16047
|
export const experiencePriceConversionResponse: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversionResponse>;
|
|
@@ -16232,8 +16052,6 @@ export const experienceReference: PropTypes.Requireable<io.flow.v0.models.Experi
|
|
|
16232
16052
|
export const experienceSettings: PropTypes.Requireable<io.flow.v0.models.ExperienceSettings>;
|
|
16233
16053
|
export const experienceStatusForm: PropTypes.Requireable<io.flow.v0.models.ExperienceStatusForm>;
|
|
16234
16054
|
export const experienceSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceSummary>;
|
|
16235
|
-
export const experienceUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceUpserted>;
|
|
16236
|
-
export const experienceUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceUpsertedV2>;
|
|
16237
16055
|
export const experienceVersion: PropTypes.Requireable<io.flow.v0.models.ExperienceVersion>;
|
|
16238
16056
|
export const expiration: PropTypes.Requireable<io.flow.v0.models.Expiration>;
|
|
16239
16057
|
export const UNSAFE_export: PropTypes.Requireable<io.flow.v0.models.Export>;
|
|
@@ -16326,6 +16144,8 @@ export const hop: PropTypes.Requireable<io.flow.v0.models.Hop>;
|
|
|
16326
16144
|
export const hopEstimate: PropTypes.Requireable<io.flow.v0.models.HopEstimate>;
|
|
16327
16145
|
export const hopEstimateV2: PropTypes.Requireable<io.flow.v0.models.HopEstimateV2>;
|
|
16328
16146
|
export const hopV2: PropTypes.Requireable<io.flow.v0.models.HopV2>;
|
|
16147
|
+
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.v0.models.HoseinItemDeleted>;
|
|
16148
|
+
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.v0.models.HoseinItemUpserted>;
|
|
16329
16149
|
export const hs10: PropTypes.Requireable<io.flow.v0.models.Hs10>;
|
|
16330
16150
|
export const hs10CodeDeleted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeDeleted>;
|
|
16331
16151
|
export const hs10CodeUpserted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeUpserted>;
|
|
@@ -16337,8 +16157,6 @@ export const identifierForm: PropTypes.Requireable<io.flow.v0.models.IdentifierF
|
|
|
16337
16157
|
export const image: PropTypes.Requireable<io.flow.v0.models.Image>;
|
|
16338
16158
|
export const imageForm: PropTypes.Requireable<io.flow.v0.models.ImageForm>;
|
|
16339
16159
|
export const UNSAFE_import: PropTypes.Requireable<io.flow.v0.models.Import>;
|
|
16340
|
-
export const importCompletedV2: PropTypes.Requireable<io.flow.v0.models.ImportCompletedV2>;
|
|
16341
|
-
export const importFailedV2: PropTypes.Requireable<io.flow.v0.models.ImportFailedV2>;
|
|
16342
16160
|
export const importForm: PropTypes.Requireable<io.flow.v0.models.ImportForm>;
|
|
16343
16161
|
export const importResults: PropTypes.Requireable<io.flow.v0.models.ImportResults>;
|
|
16344
16162
|
export const importTemplate: PropTypes.Requireable<io.flow.v0.models.ImportTemplate>;
|
|
@@ -16376,10 +16194,8 @@ export const itemFormOverlay: PropTypes.Requireable<io.flow.v0.models.ItemFormOv
|
|
|
16376
16194
|
export const itemFormOverlayForm: PropTypes.Requireable<io.flow.v0.models.ItemFormOverlayForm>;
|
|
16377
16195
|
export const itemInserted: PropTypes.Requireable<io.flow.v0.models.ItemInserted>;
|
|
16378
16196
|
export const itemMargin: PropTypes.Requireable<io.flow.v0.models.ItemMargin>;
|
|
16379
|
-
export const itemMarginDeletedV2: PropTypes.Requireable<io.flow.v0.models.ItemMarginDeletedV2>;
|
|
16380
16197
|
export const itemMarginPostForm: PropTypes.Requireable<io.flow.v0.models.ItemMarginPostForm>;
|
|
16381
16198
|
export const itemMarginPutForm: PropTypes.Requireable<io.flow.v0.models.ItemMarginPutForm>;
|
|
16382
|
-
export const itemMarginUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ItemMarginUpsertedV2>;
|
|
16383
16199
|
export const itemMarginVersion: PropTypes.Requireable<io.flow.v0.models.ItemMarginVersion>;
|
|
16384
16200
|
export const itemOriginDeleted: PropTypes.Requireable<io.flow.v0.models.ItemOriginDeleted>;
|
|
16385
16201
|
export const itemOriginUpserted: PropTypes.Requireable<io.flow.v0.models.ItemOriginUpserted>;
|
|
@@ -16387,8 +16203,6 @@ export const itemPriceUpdateForm: PropTypes.Requireable<io.flow.v0.models.ItemPr
|
|
|
16387
16203
|
export const itemPriceUpdatePutForm: PropTypes.Requireable<io.flow.v0.models.ItemPriceUpdatePutForm>;
|
|
16388
16204
|
export const itemQuerySuggestion: PropTypes.Requireable<io.flow.v0.models.ItemQuerySuggestion>;
|
|
16389
16205
|
export const itemReference: PropTypes.Requireable<io.flow.v0.models.ItemReference>;
|
|
16390
|
-
export const itemSalesMarginDeleted: PropTypes.Requireable<io.flow.v0.models.ItemSalesMarginDeleted>;
|
|
16391
|
-
export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.v0.models.ItemSalesMarginUpserted>;
|
|
16392
16206
|
export const itemShippingPricing: PropTypes.Requireable<io.flow.v0.models.ItemShippingPricing>;
|
|
16393
16207
|
export const itemStatistics: PropTypes.Requireable<io.flow.v0.models.ItemStatistics>;
|
|
16394
16208
|
export const itemUpdated: PropTypes.Requireable<io.flow.v0.models.ItemUpdated>;
|
|
@@ -16405,8 +16219,6 @@ export const knowYourBusinessUsaForm: PropTypes.Requireable<io.flow.v0.models.Kn
|
|
|
16405
16219
|
export const kubeHealthcheck: PropTypes.Requireable<io.flow.v0.models.KubeHealthcheck>;
|
|
16406
16220
|
export const labelBase: PropTypes.Requireable<io.flow.v0.models.LabelBase>;
|
|
16407
16221
|
export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDeletedV2>;
|
|
16408
|
-
export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
|
|
16409
|
-
export const labelFormatUpserted: PropTypes.Requireable<io.flow.v0.models.LabelFormatUpserted>;
|
|
16410
16222
|
export const labelOrderSummary: PropTypes.Requireable<io.flow.v0.models.LabelOrderSummary>;
|
|
16411
16223
|
export const labelProcessingModification: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModification>;
|
|
16412
16224
|
export const labelProcessingModificationDeleted: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModificationDeleted>;
|
|
@@ -16524,7 +16336,6 @@ export const orderBuilderDestinationForm: PropTypes.Requireable<io.flow.v0.model
|
|
|
16524
16336
|
export const orderBuilderSelectionsForm: PropTypes.Requireable<io.flow.v0.models.OrderBuilderSelectionsForm>;
|
|
16525
16337
|
export const orderCustomer: PropTypes.Requireable<io.flow.v0.models.OrderCustomer>;
|
|
16526
16338
|
export const orderCustomerForm: PropTypes.Requireable<io.flow.v0.models.OrderCustomerForm>;
|
|
16527
|
-
export const orderDeleted: PropTypes.Requireable<io.flow.v0.models.OrderDeleted>;
|
|
16528
16339
|
export const orderDeletedV2: PropTypes.Requireable<io.flow.v0.models.OrderDeletedV2>;
|
|
16529
16340
|
export const orderDestinationPutForm: PropTypes.Requireable<io.flow.v0.models.OrderDestinationPutForm>;
|
|
16530
16341
|
export const orderDetails: PropTypes.Requireable<io.flow.v0.models.OrderDetails>;
|
|
@@ -16536,12 +16347,9 @@ export const orderForm: PropTypes.Requireable<io.flow.v0.models.OrderForm>;
|
|
|
16536
16347
|
export const orderFraudStatus: PropTypes.Requireable<io.flow.v0.models.OrderFraudStatus>;
|
|
16537
16348
|
export const orderGeo: PropTypes.Requireable<io.flow.v0.models.OrderGeo>;
|
|
16538
16349
|
export const orderIdentifier: PropTypes.Requireable<io.flow.v0.models.OrderIdentifier>;
|
|
16539
|
-
export const orderIdentifierDeleted: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierDeleted>;
|
|
16540
16350
|
export const orderIdentifierDeletedV2: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierDeletedV2>;
|
|
16541
16351
|
export const orderIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierForm>;
|
|
16542
16352
|
export const orderIdentifierPutForm: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierPutForm>;
|
|
16543
|
-
export const orderIdentifierUpserted: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpserted>;
|
|
16544
|
-
export const orderIdentifierUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpsertedV2>;
|
|
16545
16353
|
export const orderIdentifierUpsertedV3: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpsertedV3>;
|
|
16546
16354
|
export const orderIdentifierVersion: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierVersion>;
|
|
16547
16355
|
export const orderInformationDetails: PropTypes.Requireable<io.flow.v0.models.OrderInformationDetails>;
|
|
@@ -16570,14 +16378,11 @@ export const orderRefundSummaryItem: PropTypes.Requireable<io.flow.v0.models.Ord
|
|
|
16570
16378
|
export const orderRefundSummaryPartialForm: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryPartialForm>;
|
|
16571
16379
|
export const orderRefundSummaryPartialIncludes: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryPartialIncludes>;
|
|
16572
16380
|
export const orderReplacement: PropTypes.Requireable<io.flow.v0.models.OrderReplacement>;
|
|
16573
|
-
export const orderReplacementDeleted: PropTypes.Requireable<io.flow.v0.models.OrderReplacementDeleted>;
|
|
16574
16381
|
export const orderReplacementForm: PropTypes.Requireable<io.flow.v0.models.OrderReplacementForm>;
|
|
16575
|
-
export const orderReplacementUpserted: PropTypes.Requireable<io.flow.v0.models.OrderReplacementUpserted>;
|
|
16576
16382
|
export const orderRuleReference: PropTypes.Requireable<io.flow.v0.models.OrderRuleReference>;
|
|
16577
16383
|
export const orderRulesSummary: PropTypes.Requireable<io.flow.v0.models.OrderRulesSummary>;
|
|
16578
16384
|
export const orderServiceChange: PropTypes.Requireable<io.flow.v0.models.OrderServiceChange>;
|
|
16579
16385
|
export const orderServiceChangeForm: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeForm>;
|
|
16580
|
-
export const orderServiceChangeRequest: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeRequest>;
|
|
16581
16386
|
export const orderServiceChangeRequestData: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeRequestData>;
|
|
16582
16387
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionForm>;
|
|
16583
16388
|
export const orderSubmissionIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionIdentifierForm>;
|
|
@@ -16587,7 +16392,6 @@ export const orderSummaryItem: PropTypes.Requireable<io.flow.v0.models.OrderSumm
|
|
|
16587
16392
|
export const orderSummaryLevy: PropTypes.Requireable<io.flow.v0.models.OrderSummaryLevy>;
|
|
16588
16393
|
export const orderSummaryLineItem: PropTypes.Requireable<io.flow.v0.models.OrderSummaryLineItem>;
|
|
16589
16394
|
export const orderSummaryPriceDetail: PropTypes.Requireable<io.flow.v0.models.OrderSummaryPriceDetail>;
|
|
16590
|
-
export const orderUpserted: PropTypes.Requireable<io.flow.v0.models.OrderUpserted>;
|
|
16591
16395
|
export const orderUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrderUpsertedV2>;
|
|
16592
16396
|
export const orderVersion: PropTypes.Requireable<io.flow.v0.models.OrderVersion>;
|
|
16593
16397
|
export const orderWithDiscountsForm: PropTypes.Requireable<io.flow.v0.models.OrderWithDiscountsForm>;
|
|
@@ -16803,9 +16607,7 @@ export const priceSourceProvided: PropTypes.Requireable<io.flow.v0.models.PriceS
|
|
|
16803
16607
|
export const priceWithBase: PropTypes.Requireable<io.flow.v0.models.PriceWithBase>;
|
|
16804
16608
|
export const priceWithBaseAndDetails: PropTypes.Requireable<io.flow.v0.models.PriceWithBaseAndDetails>;
|
|
16805
16609
|
export const pricing: PropTypes.Requireable<io.flow.v0.models.Pricing>;
|
|
16806
|
-
export const pricingDeleted: PropTypes.Requireable<io.flow.v0.models.PricingDeleted>;
|
|
16807
16610
|
export const pricingSettings: PropTypes.Requireable<io.flow.v0.models.PricingSettings>;
|
|
16808
|
-
export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUpserted>;
|
|
16809
16611
|
export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
|
|
16810
16612
|
export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
|
|
16811
16613
|
export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
|
|
@@ -16814,6 +16616,8 @@ export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductIns
|
|
|
16814
16616
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16815
16617
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16816
16618
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
16619
|
+
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
16620
|
+
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
16817
16621
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16818
16622
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
16819
16623
|
export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
|
|
@@ -16933,6 +16737,8 @@ export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>
|
|
|
16933
16737
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
16934
16738
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
16935
16739
|
export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
|
|
16740
|
+
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.v0.models.SarveshItemDeleted>;
|
|
16741
|
+
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.v0.models.SarveshItemUpserted>;
|
|
16936
16742
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
16937
16743
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
16938
16744
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -16940,6 +16746,8 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
16940
16746
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
16941
16747
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
16942
16748
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
16749
|
+
export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
|
|
16750
|
+
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
16943
16751
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
16944
16752
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
16945
16753
|
export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
|
|
@@ -17044,6 +16852,7 @@ export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.S
|
|
|
17044
16852
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
17045
16853
|
export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
|
|
17046
16854
|
export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
|
|
16855
|
+
export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
|
|
17047
16856
|
export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
|
|
17048
16857
|
export const stripeAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationDataForm>;
|
|
17049
16858
|
export const stripeAuthorizationResultActionDetails: PropTypes.Requireable<io.flow.v0.models.StripeAuthorizationResultActionDetails>;
|
|
@@ -17067,6 +16876,16 @@ export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.
|
|
|
17067
16876
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
17068
16877
|
export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
|
|
17069
16878
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
16879
|
+
export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
|
|
16880
|
+
export const taxDutyQuote: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuote>;
|
|
16881
|
+
export const taxDutyQuoteFeeValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteFeeValue>;
|
|
16882
|
+
export const taxDutyQuoteForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteForm>;
|
|
16883
|
+
export const taxDutyQuoteLineItem: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItem>;
|
|
16884
|
+
export const taxDutyQuoteLineItemForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItemForm>;
|
|
16885
|
+
export const taxDutyQuoteSimpleLevyValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleLevyValue>;
|
|
16886
|
+
export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShipping>;
|
|
16887
|
+
export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
|
|
16888
|
+
export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
|
|
17070
16889
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
17071
16890
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
17072
16891
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
@@ -17272,6 +17091,7 @@ export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
|
|
|
17272
17091
|
export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
|
|
17273
17092
|
export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
|
|
17274
17093
|
export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
|
|
17094
|
+
export const sellabilityResponse: PropTypes.Requireable<io.flow.v0.unions.SellabilityResponse>;
|
|
17275
17095
|
export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
|
|
17276
17096
|
export const serviceFee: PropTypes.Requireable<io.flow.v0.unions.ServiceFee>;
|
|
17277
17097
|
export const session: PropTypes.Requireable<io.flow.v0.unions.Session>;
|
|
@@ -17281,6 +17101,7 @@ export const shippingLabelForm: PropTypes.Requireable<io.flow.v0.unions.Shipping
|
|
|
17281
17101
|
export const shippingNotificationForm: PropTypes.Requireable<io.flow.v0.unions.ShippingNotificationForm>;
|
|
17282
17102
|
export const shopifyCartAddForm: PropTypes.Requireable<io.flow.v0.unions.ShopifyCartAddForm>;
|
|
17283
17103
|
export const shopifyEventBucket: PropTypes.Requireable<io.flow.v0.unions.ShopifyEventBucket>;
|
|
17104
|
+
export const taxDutyQuoteLevyValue: PropTypes.Requireable<io.flow.v0.unions.TaxDutyQuoteLevyValue>;
|
|
17284
17105
|
export const taxSetting: PropTypes.Requireable<io.flow.v0.unions.TaxSetting>;
|
|
17285
17106
|
export const threedsChallengeAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsChallengeAction>;
|
|
17286
17107
|
export const threedsIdentifyAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsIdentifyAction>;
|