@flowio/types 11.24.106 → 11.24.108

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/dist/api.d.ts CHANGED
@@ -146,6 +146,8 @@ declare namespace io.flow.stripe.v0.enums {
146
146
  type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
147
147
  type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
148
148
  type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
149
+ type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
150
+ type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
149
151
  type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
150
152
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
151
153
  type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
@@ -697,6 +699,12 @@ declare namespace io.flow.stripe.v0.models {
697
699
  readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
698
700
  readonly transfer_group?: string;
699
701
  }
702
+ interface PaymentIntents {
703
+ readonly object: string;
704
+ readonly data: io.flow.stripe.v0.models.PaymentIntent[];
705
+ readonly has_more: boolean;
706
+ readonly url?: string;
707
+ }
700
708
  interface PaymentMethod {
701
709
  readonly id: string;
702
710
  readonly object: string;
@@ -1096,6 +1104,16 @@ declare namespace io.flow.stripe.v0.models {
1096
1104
  readonly object: io.flow.stripe.v0.models.Dispute;
1097
1105
  readonly previous_attributes?: any;
1098
1106
  }
1107
+ interface StripeEarlyFraudWarningEvent {
1108
+ readonly id: string;
1109
+ readonly object: io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
1110
+ readonly actionable: boolean;
1111
+ readonly charge: string;
1112
+ readonly created: number;
1113
+ readonly fraud_type: io.flow.stripe.v0.enums.EarlyFraudWarningType;
1114
+ readonly livemode: boolean;
1115
+ readonly payment_intent?: string;
1116
+ }
1099
1117
  interface StripeError {
1100
1118
  readonly type: io.flow.stripe.v0.enums.ErrorType;
1101
1119
  readonly charge?: string;
@@ -2736,9 +2754,6 @@ declare namespace io.flow.ben.test.internal.v0.models {
2736
2754
  readonly organization_id: string;
2737
2755
  readonly num_events: number;
2738
2756
  }
2739
- interface SvitlanaTest {
2740
- readonly name: string;
2741
- }
2742
2757
  interface Test {
2743
2758
  readonly id: string;
2744
2759
  readonly name: string;
@@ -4077,7 +4092,7 @@ declare namespace io.flow.v0.enums {
4077
4092
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4078
4093
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4079
4094
  type Environment = 'sandbox' | 'production';
4080
- type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | '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' | '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' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | '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' | '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' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | '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' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_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' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | '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' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
4095
+ type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | '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' | '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' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | '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' | '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' | 'import_completed_v2' | 'import_failed_v2' | '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' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_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' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | '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' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
4081
4096
  type ExceptionType = 'open' | 'closed';
4082
4097
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4083
4098
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4105,6 +4120,7 @@ declare namespace io.flow.v0.enums {
4105
4120
  type ImportType = 'catalog_items' | 'catalog_items_external' | 'customs_descriptions' | 'customs_description_tariffs' | 'experiences_with_settings' | 'harmonization_codes' | 'item_prices' | 'item_form_overlays' | 'price_book_items' | 'price_book_items_query' | 'ratecard_lanes' | 'order_service_changes';
4106
4121
  type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
4107
4122
  type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
4123
+ type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
4108
4124
  type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
4109
4125
  type InputSpecificationType = 'text' | 'number';
4110
4126
  type InvitationErrorCode = 'expired' | 'invalid_email';
@@ -4116,7 +4132,6 @@ declare namespace io.flow.v0.enums {
4116
4132
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
4117
4133
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
4118
4134
  type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
4119
- type LevyInclusion = 'tax' | 'duty';
4120
4135
  type LevyStrategy = 'minimum' | 'average' | 'maximum';
4121
4136
  type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
4122
4137
  type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
@@ -4197,6 +4212,7 @@ declare namespace io.flow.v0.enums {
4197
4212
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4198
4213
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
4199
4214
  type ShippingConfigurationType = 'default' | 'variant';
4215
+ type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
4200
4216
  type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
4201
4217
  type ShopifyLocalizationMethod = 'api' | 'ssr';
4202
4218
  type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
@@ -4210,7 +4226,6 @@ declare namespace io.flow.v0.enums {
4210
4226
  type SyncStreamType = 'submitted_order' | 'placed_order';
4211
4227
  type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
4212
4228
  type TaxApplicability = 'none' | 'all';
4213
- 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';
4214
4229
  type TaxReportType = 'consumer' | 'b2b';
4215
4230
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
4216
4231
  type TaxabilityType = 'tax_rule';
@@ -4240,7 +4255,6 @@ declare namespace io.flow.v0.enums {
4240
4255
  type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
4241
4256
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
4242
4257
  type ZeroAmountIndicator = 'zero' | 'free';
4243
- 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';
4244
4258
  }
4245
4259
  declare namespace io.flow.v0.models {
4246
4260
  interface AbandonedOrderEmailSettings {
@@ -5956,16 +5970,6 @@ declare namespace io.flow.v0.models {
5956
5970
  readonly email?: string;
5957
5971
  readonly phone?: string;
5958
5972
  }
5959
- interface Context {
5960
- readonly id: string;
5961
- readonly experiments: io.flow.v0.models.SessionContextExperiment[];
5962
- }
5963
- interface ContextForm {
5964
- readonly experiments: io.flow.v0.models.SessionContextExperiment[];
5965
- }
5966
- interface ContextReference {
5967
- readonly id: string;
5968
- }
5969
5973
  interface Country {
5970
5974
  readonly name: string;
5971
5975
  readonly iso_3166_2: string;
@@ -6718,25 +6722,11 @@ declare namespace io.flow.v0.models {
6718
6722
  readonly return: io.flow.v0.models.OrderSummary;
6719
6723
  readonly payment: io.flow.v0.models.EmailPaymentSummary;
6720
6724
  }
6721
- interface EmailNotificationDeleted {
6722
- readonly discriminator: 'email_notification_deleted';
6723
- readonly event_id: string;
6724
- readonly timestamp: string;
6725
- readonly organization: string;
6726
- readonly notification: io.flow.v0.models.EmailNotification;
6727
- }
6728
6725
  interface EmailNotificationForm {
6729
6726
  readonly to: io.flow.v0.models.EmailRecipient;
6730
6727
  readonly created_at: string;
6731
6728
  readonly data: io.flow.v0.unions.EmailNotificationData;
6732
6729
  }
6733
- interface EmailNotificationUpserted {
6734
- readonly discriminator: 'email_notification_upserted';
6735
- readonly event_id: string;
6736
- readonly timestamp: string;
6737
- readonly organization: string;
6738
- readonly notification: io.flow.v0.models.EmailNotification;
6739
- }
6740
6730
  interface EmailPaymentSummary {
6741
6731
  readonly refund: io.flow.v0.models.Refund;
6742
6732
  }
@@ -7053,9 +7043,6 @@ declare namespace io.flow.v0.models {
7053
7043
  readonly type: io.flow.v0.enums.ChangeType;
7054
7044
  readonly experience: io.flow.v0.models.Experience;
7055
7045
  }
7056
- interface ExperimentVariant {
7057
- readonly key: string;
7058
- }
7059
7046
  interface Expiration {
7060
7047
  readonly month: number;
7061
7048
  readonly year: number;
@@ -7648,6 +7635,15 @@ declare namespace io.flow.v0.models {
7648
7635
  readonly key: io.flow.v0.enums.IncludedLevyKey;
7649
7636
  readonly label: string;
7650
7637
  }
7638
+ interface IncotermIncludes {
7639
+ readonly duties: boolean;
7640
+ readonly taxes: boolean;
7641
+ }
7642
+ interface IncotermSummary {
7643
+ readonly configuration: io.flow.v0.enums.IncotermConfiguration;
7644
+ readonly includes: io.flow.v0.models.IncotermIncludes;
7645
+ readonly reason?: string;
7646
+ }
7651
7647
  interface IndirectTax {
7652
7648
  readonly number?: string;
7653
7649
  readonly id?: string;
@@ -8252,7 +8248,6 @@ declare namespace io.flow.v0.models {
8252
8248
  readonly language: io.flow.v0.models.Language;
8253
8249
  readonly locale: io.flow.v0.models.Locale;
8254
8250
  readonly experience: io.flow.v0.models.ExperienceGeo;
8255
- readonly experiment?: io.flow.v0.models.SessionExperiment;
8256
8251
  }
8257
8252
  interface Locale {
8258
8253
  readonly id: string;
@@ -8717,6 +8712,7 @@ declare namespace io.flow.v0.models {
8717
8712
  readonly geo?: io.flow.v0.models.OrderGeo;
8718
8713
  readonly device_details?: io.flow.v0.unions.DeviceDetails;
8719
8714
  readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
8715
+ readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
8720
8716
  }
8721
8717
  interface OrderAddress {
8722
8718
  readonly text?: string;
@@ -9409,8 +9405,6 @@ declare namespace io.flow.v0.models {
9409
9405
  readonly geo?: io.flow.v0.models.SessionGeo;
9410
9406
  readonly experience?: io.flow.v0.models.ExperienceGeo;
9411
9407
  readonly format?: io.flow.v0.models.SessionFormat;
9412
- readonly experiment?: io.flow.v0.models.SessionExperiment;
9413
- readonly context?: io.flow.v0.models.ContextReference;
9414
9408
  }
9415
9409
  interface OrganizationSessionAuthorization {
9416
9410
  readonly discriminator: 'organization_session_authorization';
@@ -11330,19 +11324,6 @@ declare namespace io.flow.v0.models {
11330
11324
  readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
11331
11325
  readonly roles: io.flow.v0.enums.FlowRole[];
11332
11326
  }
11333
- interface RuleDeleted {
11334
- readonly discriminator: 'rule_deleted';
11335
- readonly event_id: string;
11336
- readonly timestamp: string;
11337
- readonly id: string;
11338
- }
11339
- interface RuleUpserted {
11340
- readonly discriminator: 'rule_upserted';
11341
- readonly event_id: string;
11342
- readonly timestamp: string;
11343
- readonly organization_id: string;
11344
- readonly rule: io.flow.inventory.v0.models.InventoryRule;
11345
- }
11346
11327
  interface Schedule {
11347
11328
  readonly calendar?: io.flow.v0.enums.Calendar;
11348
11329
  readonly holiday: io.flow.v0.enums.HolidayCalendar;
@@ -11404,29 +11385,10 @@ declare namespace io.flow.v0.models {
11404
11385
  interface SessionAuthorizationForm {
11405
11386
  readonly session: string;
11406
11387
  }
11407
- interface SessionContextExperiment {
11408
- readonly key: string;
11409
- readonly variant?: io.flow.v0.models.ExperimentVariant;
11410
- }
11411
11388
  interface SessionCurrencyFormat {
11412
11389
  readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
11413
11390
  readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
11414
11391
  }
11415
- interface SessionExperiment {
11416
- readonly key: string;
11417
- readonly variant?: io.flow.v0.models.SessionExperimentVariant;
11418
- }
11419
- interface SessionExperimentForm {
11420
- readonly key: string;
11421
- readonly variant?: io.flow.v0.models.SessionExperimentVariantForm;
11422
- }
11423
- interface SessionExperimentVariant {
11424
- readonly key: string;
11425
- readonly name: string;
11426
- }
11427
- interface SessionExperimentVariantForm {
11428
- readonly key: string;
11429
- }
11430
11392
  interface SessionExpirationConfig {
11431
11393
  readonly unit: io.flow.v0.enums.UnitOfTime;
11432
11394
  readonly value: number;
@@ -11637,6 +11599,10 @@ declare namespace io.flow.v0.models {
11637
11599
  readonly html?: string;
11638
11600
  readonly required: boolean;
11639
11601
  }
11602
+ interface ShippingLabelError {
11603
+ readonly code: io.flow.v0.enums.ShippingLabelErrorCode;
11604
+ readonly messages: string[];
11605
+ }
11640
11606
  interface ShippingLabelHopCostItemizedEstimate {
11641
11607
  readonly units: io.flow.v0.models.LabelUnits;
11642
11608
  readonly base: io.flow.v0.models.LabelBase;
@@ -12067,23 +12033,6 @@ declare namespace io.flow.v0.models {
12067
12033
  readonly service?: string;
12068
12034
  readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
12069
12035
  }
12070
- interface SnapshotDeleted {
12071
- readonly discriminator: 'snapshot_deleted';
12072
- readonly event_id: string;
12073
- readonly timestamp: string;
12074
- readonly snapshot_id: string;
12075
- }
12076
- interface SnapshotUpserted {
12077
- readonly discriminator: 'snapshot_upserted';
12078
- readonly event_id: string;
12079
- readonly timestamp: string;
12080
- readonly organization: string;
12081
- readonly snapshot_id: string;
12082
- readonly available: number;
12083
- readonly center_key: string;
12084
- readonly item_number: string;
12085
- readonly quantity: number;
12086
- }
12087
12036
  interface SolidusProductExportType {
12088
12037
  readonly discriminator: 'solidus_product_export_type';
12089
12038
  readonly numbers?: string[];
@@ -12116,13 +12065,6 @@ declare namespace io.flow.v0.models {
12116
12065
  readonly organization: string;
12117
12066
  readonly statement: io.flow.v0.models.Statement;
12118
12067
  }
12119
- interface StreetAddress {
12120
- readonly streets?: string[];
12121
- readonly city?: string;
12122
- readonly province?: string;
12123
- readonly postal?: string;
12124
- readonly country?: string;
12125
- }
12126
12068
  interface StripeAuthenticationData {
12127
12069
  readonly discriminator: 'stripe_authentication_data';
12128
12070
  readonly secret_key_reference: string;
@@ -12316,82 +12258,6 @@ declare namespace io.flow.v0.models {
12316
12258
  readonly components: io.flow.v0.enums.LevyComponent[];
12317
12259
  readonly deminimis?: io.flow.v0.unions.Deminimis;
12318
12260
  }
12319
- interface TaxDutyCalculatorValidationError {
12320
- readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
12321
- readonly messages: string[];
12322
- }
12323
- interface TaxDutyQuote {
12324
- readonly id: string;
12325
- readonly primary_identifier: string;
12326
- readonly attributes?: Record<string, string>;
12327
- readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
12328
- readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
12329
- readonly destination: io.flow.v0.models.StreetAddress;
12330
- readonly quote_date: string;
12331
- readonly currency: string;
12332
- readonly lines: io.flow.v0.models.TaxDutyQuoteLineItem[];
12333
- readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
12334
- readonly total_values: io.flow.v0.models.TaxDutyQuoteValues;
12335
- }
12336
- interface TaxDutyQuoteFeeValue {
12337
- readonly amount: number;
12338
- readonly description: string;
12339
- readonly amount_refundable_on_return: number;
12340
- }
12341
- interface TaxDutyQuoteForm {
12342
- readonly primary_identifier: string;
12343
- readonly attributes?: Record<string, string>;
12344
- readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
12345
- readonly destination: io.flow.v0.models.StreetAddress;
12346
- readonly currency: string;
12347
- readonly lines: io.flow.v0.models.TaxDutyQuoteLineItemForm[];
12348
- readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
12349
- readonly includes?: io.flow.v0.enums.LevyInclusion[];
12350
- }
12351
- interface TaxDutyQuoteLineItem {
12352
- readonly primary_identifier: string;
12353
- readonly attributes?: Record<string, string>;
12354
- readonly ship_from: io.flow.v0.models.StreetAddress;
12355
- readonly quantity: number;
12356
- readonly unit_values: io.flow.v0.models.TaxDutyQuoteValues;
12357
- readonly country_of_origin: string;
12358
- readonly hs_code: string;
12359
- }
12360
- interface TaxDutyQuoteLineItemForm {
12361
- readonly primary_identifier: string;
12362
- readonly attributes?: Record<string, string>;
12363
- readonly ship_from: io.flow.v0.models.StreetAddress;
12364
- readonly quantity: number;
12365
- readonly unit_price: number;
12366
- readonly unit_weight?: io.flow.v0.models.Measurement;
12367
- readonly country_of_origin?: string;
12368
- readonly hs_code?: string;
12369
- readonly includes: io.flow.v0.enums.LevyInclusion[];
12370
- }
12371
- interface TaxDutyQuoteSimpleLevyValue {
12372
- readonly discriminator: 'tax_duty_quote_simple_levy_value';
12373
- readonly amount: number;
12374
- readonly rate: number;
12375
- readonly description: string;
12376
- readonly zero_levy_reason?: io.flow.v0.enums.ZeroLevyReasonCode[];
12377
- readonly amount_refundable_on_return: number;
12378
- }
12379
- interface TaxDutyQuoteSimpleShipping {
12380
- readonly values: io.flow.v0.models.TaxDutyQuoteValues;
12381
- readonly ship_from: io.flow.v0.models.StreetAddress;
12382
- }
12383
- interface TaxDutyQuoteSimpleShippingForm {
12384
- readonly price: number;
12385
- readonly includes: io.flow.v0.enums.LevyInclusion[];
12386
- readonly ship_from?: io.flow.v0.models.StreetAddress;
12387
- }
12388
- interface TaxDutyQuoteValues {
12389
- readonly price: number;
12390
- readonly duty: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
12391
- readonly tax: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
12392
- readonly fees: io.flow.v0.models.TaxDutyQuoteFeeValue;
12393
- readonly total: number;
12394
- }
12395
12261
  interface TaxRegistration {
12396
12262
  readonly id: string;
12397
12263
  readonly key: string;
@@ -12597,6 +12463,8 @@ declare namespace io.flow.v0.models {
12597
12463
  readonly status: io.flow.v0.enums.TrackingStatus;
12598
12464
  readonly timestamp: string;
12599
12465
  readonly description?: string;
12466
+ readonly aggregator_status_code?: string;
12467
+ readonly created_at?: string;
12600
12468
  }
12601
12469
  interface TrackingEventForm {
12602
12470
  readonly tracking_label_id: string;
@@ -13102,7 +12970,7 @@ declare namespace io.flow.v0.unions {
13102
12970
  type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
13103
12971
  type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
13104
12972
  type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
13105
- type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | 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.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.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | 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.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | 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.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | 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.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.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.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
12973
+ type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | 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.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.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | 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.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | 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.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | 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.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.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.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
13106
12974
  type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
13107
12975
  type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
13108
12976
  type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
@@ -13179,7 +13047,6 @@ declare namespace io.flow.v0.unions {
13179
13047
  type ShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm;
13180
13048
  type ShopifyCartAddForm = io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm;
13181
13049
  type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
13182
- type TaxDutyQuoteLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
13183
13050
  type TaxSetting = io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting;
13184
13051
  type ThreedsChallengeAction = io.flow.v0.models.ThreedsTwoChallengeRequest;
13185
13052
  type ThreedsIdentifyAction = io.flow.v0.models.ThreedsTwoMethod;
@@ -13506,9 +13373,6 @@ export declare type ConsumerInvoiceReference = io.flow.v0.models.ConsumerInvoice
13506
13373
  export declare type ConsumerInvoiceStatus = io.flow.v0.enums.ConsumerInvoiceStatus;
13507
13374
  export declare type ConsumerInvoiceUpserted = io.flow.v0.models.ConsumerInvoiceUpserted;
13508
13375
  export declare type Contact = io.flow.v0.models.Contact;
13509
- export declare type Context = io.flow.v0.models.Context;
13510
- export declare type ContextForm = io.flow.v0.models.ContextForm;
13511
- export declare type ContextReference = io.flow.v0.models.ContextReference;
13512
13376
  export declare type CostEstimateSource = io.flow.v0.enums.CostEstimateSource;
13513
13377
  export declare type Country = io.flow.v0.models.Country;
13514
13378
  export declare type CountryAvailability = io.flow.v0.models.CountryAvailability;
@@ -13663,9 +13527,7 @@ export declare type EmailNotification = io.flow.v0.models.EmailNotification;
13663
13527
  export declare type EmailNotificationAbandonedOrder = io.flow.v0.models.EmailNotificationAbandonedOrder;
13664
13528
  export declare type EmailNotificationData = io.flow.v0.unions.EmailNotificationData;
13665
13529
  export declare type EmailNotificationDataRefund = io.flow.v0.models.EmailNotificationDataRefund;
13666
- export declare type EmailNotificationDeleted = io.flow.v0.models.EmailNotificationDeleted;
13667
13530
  export declare type EmailNotificationForm = io.flow.v0.models.EmailNotificationForm;
13668
- export declare type EmailNotificationUpserted = io.flow.v0.models.EmailNotificationUpserted;
13669
13531
  export declare type EmailPaymentSummary = io.flow.v0.models.EmailPaymentSummary;
13670
13532
  export declare type EmailRecipient = io.flow.v0.models.EmailRecipient;
13671
13533
  export declare type EmailVerification = io.flow.v0.models.EmailVerification;
@@ -13742,7 +13604,6 @@ export declare type ExperienceSummary = io.flow.v0.models.ExperienceSummary;
13742
13604
  export declare type ExperienceUpserted = io.flow.v0.models.ExperienceUpserted;
13743
13605
  export declare type ExperienceUpsertedV2 = io.flow.v0.models.ExperienceUpsertedV2;
13744
13606
  export declare type ExperienceVersion = io.flow.v0.models.ExperienceVersion;
13745
- export declare type ExperimentVariant = io.flow.v0.models.ExperimentVariant;
13746
13607
  export declare type Expiration = io.flow.v0.models.Expiration;
13747
13608
  export declare type Export = io.flow.v0.models.Export;
13748
13609
  export declare type ExportDelivery = io.flow.v0.unions.ExportDelivery;
@@ -13874,6 +13735,9 @@ export declare type InboundCartonFee = io.flow.v0.models.InboundCartonFee;
13874
13735
  export declare type IncludedLevies = io.flow.v0.models.IncludedLevies;
13875
13736
  export declare type IncludedLevyKey = io.flow.v0.enums.IncludedLevyKey;
13876
13737
  export declare type Incoterm = io.flow.v0.enums.Incoterm;
13738
+ export declare type IncotermConfiguration = io.flow.v0.enums.IncotermConfiguration;
13739
+ export declare type IncotermIncludes = io.flow.v0.models.IncotermIncludes;
13740
+ export declare type IncotermSummary = io.flow.v0.models.IncotermSummary;
13877
13741
  export declare type IndirectTax = io.flow.v0.models.IndirectTax;
13878
13742
  export declare type Individual = io.flow.v0.models.Individual;
13879
13743
  export declare type InlineActionConfiguration = io.flow.v0.unions.InlineActionConfiguration;
@@ -13967,7 +13831,6 @@ export declare type LaneSummary = io.flow.v0.models.LaneSummary;
13967
13831
  export declare type Language = io.flow.v0.models.Language;
13968
13832
  export declare type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
13969
13833
  export declare type LevyComponent = io.flow.v0.enums.LevyComponent;
13970
- export declare type LevyInclusion = io.flow.v0.enums.LevyInclusion;
13971
13834
  export declare type LevyStrategy = io.flow.v0.enums.LevyStrategy;
13972
13835
  export declare type Line = io.flow.v0.models.Line;
13973
13836
  export declare type LineItem = io.flow.v0.models.LineItem;
@@ -14590,8 +14453,6 @@ export declare type Rounding = io.flow.v0.models.Rounding;
14590
14453
  export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
14591
14454
  export declare type RoundingType = io.flow.v0.enums.RoundingType;
14592
14455
  export declare type RouteAudit = io.flow.v0.models.RouteAudit;
14593
- export declare type RuleDeleted = io.flow.v0.models.RuleDeleted;
14594
- export declare type RuleUpserted = io.flow.v0.models.RuleUpserted;
14595
14456
  export declare type Schedule = io.flow.v0.models.Schedule;
14596
14457
  export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
14597
14458
  export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
@@ -14609,12 +14470,7 @@ export declare type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
14609
14470
  export declare type Session = io.flow.v0.unions.Session;
14610
14471
  export declare type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
14611
14472
  export declare type SessionAuthorizationForm = io.flow.v0.models.SessionAuthorizationForm;
14612
- export declare type SessionContextExperiment = io.flow.v0.models.SessionContextExperiment;
14613
14473
  export declare type SessionCurrencyFormat = io.flow.v0.models.SessionCurrencyFormat;
14614
- export declare type SessionExperiment = io.flow.v0.models.SessionExperiment;
14615
- export declare type SessionExperimentForm = io.flow.v0.models.SessionExperimentForm;
14616
- export declare type SessionExperimentVariant = io.flow.v0.models.SessionExperimentVariant;
14617
- export declare type SessionExperimentVariantForm = io.flow.v0.models.SessionExperimentVariantForm;
14618
14474
  export declare type SessionExpirationConfig = io.flow.v0.models.SessionExpirationConfig;
14619
14475
  export declare type SessionForm = io.flow.v0.models.SessionForm;
14620
14476
  export declare type SessionFormat = io.flow.v0.models.SessionFormat;
@@ -14652,6 +14508,8 @@ export declare type ShippingConfigurationUpserted = io.flow.v0.models.ShippingCo
14652
14508
  export declare type ShippingConfigurationVersion = io.flow.v0.models.ShippingConfigurationVersion;
14653
14509
  export declare type ShippingLabel = io.flow.v0.models.ShippingLabel;
14654
14510
  export declare type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
14511
+ export declare type ShippingLabelError = io.flow.v0.models.ShippingLabelError;
14512
+ export declare type ShippingLabelErrorCode = io.flow.v0.enums.ShippingLabelErrorCode;
14655
14513
  export declare type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
14656
14514
  export declare type ShippingLabelHopCostItemizedEstimate = io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
14657
14515
  export declare type ShippingLabelHopSummary = io.flow.v0.models.ShippingLabelHopSummary;
@@ -14719,8 +14577,6 @@ export declare type ShopifyVariantFlowMetafield = io.flow.v0.models.ShopifyVaria
14719
14577
  export declare type ShopifyVariantInventoryMetafield = io.flow.v0.models.ShopifyVariantInventoryMetafield;
14720
14578
  export declare type SimplePermissionCheck = io.flow.v0.models.SimplePermissionCheck;
14721
14579
  export declare type SinglePackageShippingNotificationForm = io.flow.v0.models.SinglePackageShippingNotificationForm;
14722
- export declare type SnapshotDeleted = io.flow.v0.models.SnapshotDeleted;
14723
- export declare type SnapshotUpserted = io.flow.v0.models.SnapshotUpserted;
14724
14580
  export declare type SolidusProductExportType = io.flow.v0.models.SolidusProductExportType;
14725
14581
  export declare type SolidusVariantExportType = io.flow.v0.models.SolidusVariantExportType;
14726
14582
  export declare type SortDirection = io.flow.v0.enums.SortDirection;
@@ -14730,7 +14586,6 @@ export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
14730
14586
  export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
14731
14587
  export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
14732
14588
  export declare type Strategy = io.flow.v0.enums.Strategy;
14733
- export declare type StreetAddress = io.flow.v0.models.StreetAddress;
14734
14589
  export declare type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
14735
14590
  export declare type StripeAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
14736
14591
  export declare type StripeAuthorizationResultActionDetails = io.flow.v0.models.StripeAuthorizationResultActionDetails;
@@ -14771,18 +14626,6 @@ export declare type SyncStreamType = io.flow.v0.enums.SyncStreamType;
14771
14626
  export declare type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
14772
14627
  export declare type Tax = io.flow.v0.models.Tax;
14773
14628
  export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
14774
- export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
14775
- export declare type TaxDutyCalculatorValidationErrorCode = io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
14776
- export declare type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
14777
- export declare type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
14778
- export declare type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
14779
- export declare type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
14780
- export declare type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
14781
- export declare type TaxDutyQuoteLineItemForm = io.flow.v0.models.TaxDutyQuoteLineItemForm;
14782
- export declare type TaxDutyQuoteSimpleLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
14783
- export declare type TaxDutyQuoteSimpleShipping = io.flow.v0.models.TaxDutyQuoteSimpleShipping;
14784
- export declare type TaxDutyQuoteSimpleShippingForm = io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
14785
- export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
14786
14629
  export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
14787
14630
  export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
14788
14631
  export declare type TaxReport = io.flow.v0.models.TaxReport;
@@ -14929,6 +14772,5 @@ export declare type WebhookStatus = io.flow.v0.enums.WebhookStatus;
14929
14772
  export declare type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
14930
14773
  export declare type WithholdingDeductionType = io.flow.v0.enums.WithholdingDeductionType;
14931
14774
  export declare type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
14932
- export declare type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
14933
14775
  export declare type Zone = io.flow.v0.models.Zone;
14934
14776
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/types",
3
- "version": "11.24.106",
3
+ "version": "11.24.108",
4
4
  "description": "TypeScript type definitions for custom types found in Flow API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,5 +25,5 @@
25
25
  "maintainers": [
26
26
  "Christian Muñoz <christian.munoz@flow.io>"
27
27
  ],
28
- "gitHead": "d694e06d6eb130c73b2f6aa755ed56447f50a324"
28
+ "gitHead": "5a525b0a21aca779c3ca5bb3f4a759c144095fd5"
29
29
  }