@flowio/types 11.24.107 → 11.24.109

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
@@ -699,6 +699,12 @@ declare namespace io.flow.stripe.v0.models {
699
699
  readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
700
700
  readonly transfer_group?: string;
701
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
+ }
702
708
  interface PaymentMethod {
703
709
  readonly id: string;
704
710
  readonly object: string;
@@ -2488,6 +2494,114 @@ declare namespace io.flow.common.v0.unions {
2488
2494
  type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
2489
2495
  type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
2490
2496
  }
2497
+ declare namespace io.flow.token.v0.models {
2498
+ interface ChannelToken {
2499
+ readonly discriminator: 'channel_token';
2500
+ readonly id: string;
2501
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2502
+ readonly user: io.flow.common.v0.models.UserReference;
2503
+ readonly partial: string;
2504
+ readonly cleartext?: string;
2505
+ readonly created_at: string;
2506
+ readonly description?: string;
2507
+ }
2508
+ interface ChannelTokenForm {
2509
+ readonly channel_id: string;
2510
+ readonly description?: string;
2511
+ }
2512
+ interface ChannelTokenReference {
2513
+ readonly discriminator: 'channel_token_reference';
2514
+ readonly id: string;
2515
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2516
+ readonly user: io.flow.common.v0.models.UserReference;
2517
+ }
2518
+ interface Cleartext {
2519
+ readonly value: string;
2520
+ }
2521
+ interface OrganizationToken {
2522
+ readonly discriminator: 'organization_token';
2523
+ readonly id: string;
2524
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2525
+ readonly user: io.flow.common.v0.models.UserReference;
2526
+ readonly environment: io.flow.common.v0.enums.Environment;
2527
+ readonly partial: string;
2528
+ readonly created_at: string;
2529
+ readonly description?: string;
2530
+ }
2531
+ interface OrganizationTokenForm {
2532
+ readonly environment: io.flow.common.v0.enums.Environment;
2533
+ readonly description?: string;
2534
+ }
2535
+ interface OrganizationTokenFormV2 {
2536
+ readonly organization_id: string;
2537
+ readonly description?: string;
2538
+ }
2539
+ interface OrganizationTokenReference {
2540
+ readonly discriminator: 'organization_token_reference';
2541
+ readonly id: string;
2542
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2543
+ readonly environment: io.flow.common.v0.enums.Environment;
2544
+ readonly user: io.flow.common.v0.models.UserReference;
2545
+ }
2546
+ interface OrganizationTokenV2 {
2547
+ readonly discriminator: 'organization_token_v2';
2548
+ readonly id: string;
2549
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2550
+ readonly user: io.flow.common.v0.models.UserReference;
2551
+ readonly partial: string;
2552
+ readonly cleartext?: string;
2553
+ readonly created_at: string;
2554
+ readonly description?: string;
2555
+ }
2556
+ interface OrganizationTokenV2Reference {
2557
+ readonly discriminator: 'organization_token_v2_reference';
2558
+ readonly id: string;
2559
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2560
+ }
2561
+ interface PartnerToken {
2562
+ readonly discriminator: 'partner_token';
2563
+ readonly id: string;
2564
+ readonly partner: io.flow.token.v0.models.TokenPartnerReference;
2565
+ readonly user: io.flow.common.v0.models.UserReference;
2566
+ readonly environment: io.flow.common.v0.enums.Environment;
2567
+ readonly partial: string;
2568
+ readonly created_at: string;
2569
+ readonly description?: string;
2570
+ }
2571
+ interface PartnerTokenForm {
2572
+ readonly environment: io.flow.common.v0.enums.Environment;
2573
+ readonly description?: string;
2574
+ }
2575
+ interface PartnerTokenReference {
2576
+ readonly discriminator: 'partner_token_reference';
2577
+ readonly id: string;
2578
+ readonly partner: io.flow.token.v0.models.TokenPartnerReference;
2579
+ readonly environment: io.flow.common.v0.enums.Environment;
2580
+ readonly user: io.flow.common.v0.models.UserReference;
2581
+ }
2582
+ interface TokenAuthenticationForm {
2583
+ readonly token: string;
2584
+ }
2585
+ interface TokenPartnerReference {
2586
+ readonly id: string;
2587
+ }
2588
+ interface TokenRbacAuthenticationForm {
2589
+ readonly token: string;
2590
+ readonly method: string;
2591
+ readonly path_pattern: string;
2592
+ readonly path: string;
2593
+ }
2594
+ interface TokenValidation {
2595
+ readonly status: string;
2596
+ }
2597
+ interface TokenValidationForm {
2598
+ readonly token: string;
2599
+ }
2600
+ }
2601
+ declare namespace io.flow.token.v0.unions {
2602
+ type Token = io.flow.token.v0.models.ChannelToken | io.flow.token.v0.models.OrganizationToken | io.flow.token.v0.models.OrganizationTokenV2 | io.flow.token.v0.models.PartnerToken;
2603
+ type TokenReference = io.flow.token.v0.models.ChannelTokenReference | io.flow.token.v0.models.OrganizationTokenReference | io.flow.token.v0.models.OrganizationTokenV2Reference | io.flow.token.v0.models.PartnerTokenReference;
2604
+ }
2491
2605
  declare namespace io.flow.error.v0.enums {
2492
2606
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
2493
2607
  }
@@ -3383,6 +3497,33 @@ declare namespace io.flow.merchant.of.record.v0.enums {
3383
3497
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
3384
3498
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
3385
3499
  }
3500
+ declare namespace io.flow.tech.onboarding.playground.v0.enums {
3501
+ type AldoItemType = 'physical' | 'digital';
3502
+ }
3503
+ declare namespace io.flow.tech.onboarding.playground.v0.models {
3504
+ interface AldoItem {
3505
+ readonly id: string;
3506
+ readonly number: string;
3507
+ readonly amount: io.flow.common.v0.models.Price;
3508
+ readonly description?: string;
3509
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3510
+ readonly added_on: string;
3511
+ }
3512
+ interface AldoItemForm {
3513
+ readonly number: string;
3514
+ readonly amount: io.flow.common.v0.models.Price;
3515
+ readonly description?: string;
3516
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3517
+ readonly added_on: string;
3518
+ }
3519
+ interface JeanDemoItem {
3520
+ readonly id: string;
3521
+ readonly name: string;
3522
+ }
3523
+ interface TechOnboardingDescription {
3524
+ readonly description: string;
3525
+ }
3526
+ }
3386
3527
  declare namespace io.flow.currency.v0.models {
3387
3528
  interface Rate {
3388
3529
  readonly id: string;
@@ -4086,7 +4227,7 @@ declare namespace io.flow.v0.enums {
4086
4227
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4087
4228
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4088
4229
  type Environment = 'sandbox' | 'production';
4089
- 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' | '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';
4230
+ type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_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' | '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';
4090
4231
  type ExceptionType = 'open' | 'closed';
4091
4232
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4092
4233
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4126,7 +4267,6 @@ declare namespace io.flow.v0.enums {
4126
4267
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
4127
4268
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
4128
4269
  type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
4129
- type LevyInclusion = 'tax' | 'duty';
4130
4270
  type LevyStrategy = 'minimum' | 'average' | 'maximum';
4131
4271
  type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
4132
4272
  type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
@@ -4207,6 +4347,7 @@ declare namespace io.flow.v0.enums {
4207
4347
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4208
4348
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
4209
4349
  type ShippingConfigurationType = 'default' | 'variant';
4350
+ 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';
4210
4351
  type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
4211
4352
  type ShopifyLocalizationMethod = 'api' | 'ssr';
4212
4353
  type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
@@ -4220,7 +4361,6 @@ declare namespace io.flow.v0.enums {
4220
4361
  type SyncStreamType = 'submitted_order' | 'placed_order';
4221
4362
  type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
4222
4363
  type TaxApplicability = 'none' | 'all';
4223
- 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';
4224
4364
  type TaxReportType = 'consumer' | 'b2b';
4225
4365
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
4226
4366
  type TaxabilityType = 'tax_rule';
@@ -4250,7 +4390,6 @@ declare namespace io.flow.v0.enums {
4250
4390
  type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
4251
4391
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
4252
4392
  type ZeroAmountIndicator = 'zero' | 'free';
4253
- 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';
4254
4393
  }
4255
4394
  declare namespace io.flow.v0.models {
4256
4395
  interface AbandonedOrderEmailSettings {
@@ -4521,6 +4660,18 @@ declare namespace io.flow.v0.models {
4521
4660
  readonly type: 'fingerprint';
4522
4661
  readonly fingerprint_token: string;
4523
4662
  }
4663
+ interface AldoItemDeleted {
4664
+ readonly discriminator: 'aldo_item_deleted';
4665
+ readonly event_id: string;
4666
+ readonly timestamp: string;
4667
+ readonly id: string;
4668
+ }
4669
+ interface AldoItemUpserted {
4670
+ readonly discriminator: 'aldo_item_upserted';
4671
+ readonly event_id: string;
4672
+ readonly timestamp: string;
4673
+ readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
4674
+ }
4524
4675
  interface Allocation {
4525
4676
  readonly order: io.flow.v0.models.AllocationOrderSummary;
4526
4677
  readonly details: io.flow.v0.unions.AllocationDetail[];
@@ -5966,16 +6117,6 @@ declare namespace io.flow.v0.models {
5966
6117
  readonly email?: string;
5967
6118
  readonly phone?: string;
5968
6119
  }
5969
- interface Context {
5970
- readonly id: string;
5971
- readonly experiments: io.flow.v0.models.SessionContextExperiment[];
5972
- }
5973
- interface ContextForm {
5974
- readonly experiments: io.flow.v0.models.SessionContextExperiment[];
5975
- }
5976
- interface ContextReference {
5977
- readonly id: string;
5978
- }
5979
6120
  interface Country {
5980
6121
  readonly name: string;
5981
6122
  readonly iso_3166_2: string;
@@ -6728,25 +6869,11 @@ declare namespace io.flow.v0.models {
6728
6869
  readonly return: io.flow.v0.models.OrderSummary;
6729
6870
  readonly payment: io.flow.v0.models.EmailPaymentSummary;
6730
6871
  }
6731
- interface EmailNotificationDeleted {
6732
- readonly discriminator: 'email_notification_deleted';
6733
- readonly event_id: string;
6734
- readonly timestamp: string;
6735
- readonly organization: string;
6736
- readonly notification: io.flow.v0.models.EmailNotification;
6737
- }
6738
6872
  interface EmailNotificationForm {
6739
6873
  readonly to: io.flow.v0.models.EmailRecipient;
6740
6874
  readonly created_at: string;
6741
6875
  readonly data: io.flow.v0.unions.EmailNotificationData;
6742
6876
  }
6743
- interface EmailNotificationUpserted {
6744
- readonly discriminator: 'email_notification_upserted';
6745
- readonly event_id: string;
6746
- readonly timestamp: string;
6747
- readonly organization: string;
6748
- readonly notification: io.flow.v0.models.EmailNotification;
6749
- }
6750
6877
  interface EmailPaymentSummary {
6751
6878
  readonly refund: io.flow.v0.models.Refund;
6752
6879
  }
@@ -7063,9 +7190,6 @@ declare namespace io.flow.v0.models {
7063
7190
  readonly type: io.flow.v0.enums.ChangeType;
7064
7191
  readonly experience: io.flow.v0.models.Experience;
7065
7192
  }
7066
- interface ExperimentVariant {
7067
- readonly key: string;
7068
- }
7069
7193
  interface Expiration {
7070
7194
  readonly month: number;
7071
7195
  readonly year: number;
@@ -8271,7 +8395,6 @@ declare namespace io.flow.v0.models {
8271
8395
  readonly language: io.flow.v0.models.Language;
8272
8396
  readonly locale: io.flow.v0.models.Locale;
8273
8397
  readonly experience: io.flow.v0.models.ExperienceGeo;
8274
- readonly experiment?: io.flow.v0.models.SessionExperiment;
8275
8398
  }
8276
8399
  interface Locale {
8277
8400
  readonly id: string;
@@ -9429,8 +9552,6 @@ declare namespace io.flow.v0.models {
9429
9552
  readonly geo?: io.flow.v0.models.SessionGeo;
9430
9553
  readonly experience?: io.flow.v0.models.ExperienceGeo;
9431
9554
  readonly format?: io.flow.v0.models.SessionFormat;
9432
- readonly experiment?: io.flow.v0.models.SessionExperiment;
9433
- readonly context?: io.flow.v0.models.ContextReference;
9434
9555
  }
9435
9556
  interface OrganizationSessionAuthorization {
9436
9557
  readonly discriminator: 'organization_session_authorization';
@@ -10547,6 +10668,16 @@ declare namespace io.flow.v0.models {
10547
10668
  readonly max_date: string;
10548
10669
  readonly source: io.flow.v0.enums.DeliveryWindowComponentSource;
10549
10670
  }
10671
+ interface Product {
10672
+ readonly id: string;
10673
+ readonly organization_id: string;
10674
+ readonly number: string;
10675
+ readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
10676
+ readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
10677
+ readonly item_numbers: string[];
10678
+ readonly updated_at: string;
10679
+ readonly deleted_at?: string;
10680
+ }
10550
10681
  interface ProductRestrictionResult {
10551
10682
  readonly id: string;
10552
10683
  readonly product_id: string;
@@ -10573,6 +10704,14 @@ declare namespace io.flow.v0.models {
10573
10704
  readonly organization: string;
10574
10705
  readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
10575
10706
  }
10707
+ interface ProductTaxonomyCategory {
10708
+ readonly name: string;
10709
+ readonly fullname: string;
10710
+ }
10711
+ interface ProductTaxonomyData {
10712
+ readonly key: string;
10713
+ readonly value: string[];
10714
+ }
10576
10715
  interface PromotionTrigger {
10577
10716
  readonly type: io.flow.v0.enums.PromotionTriggerType;
10578
10717
  readonly min: io.flow.v0.models.Price;
@@ -11411,29 +11550,10 @@ declare namespace io.flow.v0.models {
11411
11550
  interface SessionAuthorizationForm {
11412
11551
  readonly session: string;
11413
11552
  }
11414
- interface SessionContextExperiment {
11415
- readonly key: string;
11416
- readonly variant?: io.flow.v0.models.ExperimentVariant;
11417
- }
11418
11553
  interface SessionCurrencyFormat {
11419
11554
  readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
11420
11555
  readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
11421
11556
  }
11422
- interface SessionExperiment {
11423
- readonly key: string;
11424
- readonly variant?: io.flow.v0.models.SessionExperimentVariant;
11425
- }
11426
- interface SessionExperimentForm {
11427
- readonly key: string;
11428
- readonly variant?: io.flow.v0.models.SessionExperimentVariantForm;
11429
- }
11430
- interface SessionExperimentVariant {
11431
- readonly key: string;
11432
- readonly name: string;
11433
- }
11434
- interface SessionExperimentVariantForm {
11435
- readonly key: string;
11436
- }
11437
11557
  interface SessionExpirationConfig {
11438
11558
  readonly unit: io.flow.v0.enums.UnitOfTime;
11439
11559
  readonly value: number;
@@ -11644,6 +11764,10 @@ declare namespace io.flow.v0.models {
11644
11764
  readonly html?: string;
11645
11765
  readonly required: boolean;
11646
11766
  }
11767
+ interface ShippingLabelError {
11768
+ readonly code: io.flow.v0.enums.ShippingLabelErrorCode;
11769
+ readonly messages: string[];
11770
+ }
11647
11771
  interface ShippingLabelHopCostItemizedEstimate {
11648
11772
  readonly units: io.flow.v0.models.LabelUnits;
11649
11773
  readonly base: io.flow.v0.models.LabelBase;
@@ -12106,13 +12230,6 @@ declare namespace io.flow.v0.models {
12106
12230
  readonly organization: string;
12107
12231
  readonly statement: io.flow.v0.models.Statement;
12108
12232
  }
12109
- interface StreetAddress {
12110
- readonly streets?: string[];
12111
- readonly city?: string;
12112
- readonly province?: string;
12113
- readonly postal?: string;
12114
- readonly country?: string;
12115
- }
12116
12233
  interface StripeAuthenticationData {
12117
12234
  readonly discriminator: 'stripe_authentication_data';
12118
12235
  readonly secret_key_reference: string;
@@ -12306,82 +12423,6 @@ declare namespace io.flow.v0.models {
12306
12423
  readonly components: io.flow.v0.enums.LevyComponent[];
12307
12424
  readonly deminimis?: io.flow.v0.unions.Deminimis;
12308
12425
  }
12309
- interface TaxDutyCalculatorValidationError {
12310
- readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
12311
- readonly messages: string[];
12312
- }
12313
- interface TaxDutyQuote {
12314
- readonly id: string;
12315
- readonly primary_identifier: string;
12316
- readonly attributes?: Record<string, string>;
12317
- readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
12318
- readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
12319
- readonly destination: io.flow.v0.models.StreetAddress;
12320
- readonly quote_date: string;
12321
- readonly currency: string;
12322
- readonly lines: io.flow.v0.models.TaxDutyQuoteLineItem[];
12323
- readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
12324
- readonly total_values: io.flow.v0.models.TaxDutyQuoteValues;
12325
- }
12326
- interface TaxDutyQuoteFeeValue {
12327
- readonly amount: number;
12328
- readonly description: string;
12329
- readonly amount_refundable_on_return: number;
12330
- }
12331
- interface TaxDutyQuoteForm {
12332
- readonly primary_identifier: string;
12333
- readonly attributes?: Record<string, string>;
12334
- readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
12335
- readonly destination: io.flow.v0.models.StreetAddress;
12336
- readonly currency: string;
12337
- readonly lines: io.flow.v0.models.TaxDutyQuoteLineItemForm[];
12338
- readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
12339
- readonly includes?: io.flow.v0.enums.LevyInclusion[];
12340
- }
12341
- interface TaxDutyQuoteLineItem {
12342
- readonly primary_identifier: string;
12343
- readonly attributes?: Record<string, string>;
12344
- readonly ship_from: io.flow.v0.models.StreetAddress;
12345
- readonly quantity: number;
12346
- readonly unit_values: io.flow.v0.models.TaxDutyQuoteValues;
12347
- readonly country_of_origin: string;
12348
- readonly hs_code: string;
12349
- }
12350
- interface TaxDutyQuoteLineItemForm {
12351
- readonly primary_identifier: string;
12352
- readonly attributes?: Record<string, string>;
12353
- readonly ship_from: io.flow.v0.models.StreetAddress;
12354
- readonly quantity: number;
12355
- readonly unit_price: number;
12356
- readonly unit_weight?: io.flow.v0.models.Measurement;
12357
- readonly country_of_origin?: string;
12358
- readonly hs_code?: string;
12359
- readonly includes: io.flow.v0.enums.LevyInclusion[];
12360
- }
12361
- interface TaxDutyQuoteSimpleLevyValue {
12362
- readonly discriminator: 'tax_duty_quote_simple_levy_value';
12363
- readonly amount: number;
12364
- readonly rate: number;
12365
- readonly description: string;
12366
- readonly zero_levy_reason?: io.flow.v0.enums.ZeroLevyReasonCode[];
12367
- readonly amount_refundable_on_return: number;
12368
- }
12369
- interface TaxDutyQuoteSimpleShipping {
12370
- readonly values: io.flow.v0.models.TaxDutyQuoteValues;
12371
- readonly ship_from: io.flow.v0.models.StreetAddress;
12372
- }
12373
- interface TaxDutyQuoteSimpleShippingForm {
12374
- readonly price: number;
12375
- readonly includes: io.flow.v0.enums.LevyInclusion[];
12376
- readonly ship_from?: io.flow.v0.models.StreetAddress;
12377
- }
12378
- interface TaxDutyQuoteValues {
12379
- readonly price: number;
12380
- readonly duty: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
12381
- readonly tax: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
12382
- readonly fees: io.flow.v0.models.TaxDutyQuoteFeeValue;
12383
- readonly total: number;
12384
- }
12385
12426
  interface TaxRegistration {
12386
12427
  readonly id: string;
12387
12428
  readonly key: string;
@@ -12588,6 +12629,7 @@ declare namespace io.flow.v0.models {
12588
12629
  readonly timestamp: string;
12589
12630
  readonly description?: string;
12590
12631
  readonly aggregator_status_code?: string;
12632
+ readonly created_at?: string;
12591
12633
  }
12592
12634
  interface TrackingEventForm {
12593
12635
  readonly tracking_label_id: string;
@@ -13093,7 +13135,7 @@ declare namespace io.flow.v0.unions {
13093
13135
  type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
13094
13136
  type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
13095
13137
  type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
13096
- 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.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;
13138
+ type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | 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;
13097
13139
  type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
13098
13140
  type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
13099
13141
  type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
@@ -13170,7 +13212,6 @@ declare namespace io.flow.v0.unions {
13170
13212
  type ShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm;
13171
13213
  type ShopifyCartAddForm = io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm;
13172
13214
  type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
13173
- type TaxDutyQuoteLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
13174
13215
  type TaxSetting = io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting;
13175
13216
  type ThreedsChallengeAction = io.flow.v0.models.ThreedsTwoChallengeRequest;
13176
13217
  type ThreedsIdentifyAction = io.flow.v0.models.ThreedsTwoMethod;
@@ -13232,6 +13273,8 @@ export declare type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActi
13232
13273
  export declare type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
13233
13274
  export declare type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
13234
13275
  export declare type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
13276
+ export declare type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
13277
+ export declare type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
13235
13278
  export declare type Allocation = io.flow.v0.models.Allocation;
13236
13279
  export declare type AllocationComponent = io.flow.v0.unions.AllocationComponent;
13237
13280
  export declare type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
@@ -13497,9 +13540,6 @@ export declare type ConsumerInvoiceReference = io.flow.v0.models.ConsumerInvoice
13497
13540
  export declare type ConsumerInvoiceStatus = io.flow.v0.enums.ConsumerInvoiceStatus;
13498
13541
  export declare type ConsumerInvoiceUpserted = io.flow.v0.models.ConsumerInvoiceUpserted;
13499
13542
  export declare type Contact = io.flow.v0.models.Contact;
13500
- export declare type Context = io.flow.v0.models.Context;
13501
- export declare type ContextForm = io.flow.v0.models.ContextForm;
13502
- export declare type ContextReference = io.flow.v0.models.ContextReference;
13503
13543
  export declare type CostEstimateSource = io.flow.v0.enums.CostEstimateSource;
13504
13544
  export declare type Country = io.flow.v0.models.Country;
13505
13545
  export declare type CountryAvailability = io.flow.v0.models.CountryAvailability;
@@ -13654,9 +13694,7 @@ export declare type EmailNotification = io.flow.v0.models.EmailNotification;
13654
13694
  export declare type EmailNotificationAbandonedOrder = io.flow.v0.models.EmailNotificationAbandonedOrder;
13655
13695
  export declare type EmailNotificationData = io.flow.v0.unions.EmailNotificationData;
13656
13696
  export declare type EmailNotificationDataRefund = io.flow.v0.models.EmailNotificationDataRefund;
13657
- export declare type EmailNotificationDeleted = io.flow.v0.models.EmailNotificationDeleted;
13658
13697
  export declare type EmailNotificationForm = io.flow.v0.models.EmailNotificationForm;
13659
- export declare type EmailNotificationUpserted = io.flow.v0.models.EmailNotificationUpserted;
13660
13698
  export declare type EmailPaymentSummary = io.flow.v0.models.EmailPaymentSummary;
13661
13699
  export declare type EmailRecipient = io.flow.v0.models.EmailRecipient;
13662
13700
  export declare type EmailVerification = io.flow.v0.models.EmailVerification;
@@ -13733,7 +13771,6 @@ export declare type ExperienceSummary = io.flow.v0.models.ExperienceSummary;
13733
13771
  export declare type ExperienceUpserted = io.flow.v0.models.ExperienceUpserted;
13734
13772
  export declare type ExperienceUpsertedV2 = io.flow.v0.models.ExperienceUpsertedV2;
13735
13773
  export declare type ExperienceVersion = io.flow.v0.models.ExperienceVersion;
13736
- export declare type ExperimentVariant = io.flow.v0.models.ExperimentVariant;
13737
13774
  export declare type Expiration = io.flow.v0.models.Expiration;
13738
13775
  export declare type Export = io.flow.v0.models.Export;
13739
13776
  export declare type ExportDelivery = io.flow.v0.unions.ExportDelivery;
@@ -13961,7 +13998,6 @@ export declare type LaneSummary = io.flow.v0.models.LaneSummary;
13961
13998
  export declare type Language = io.flow.v0.models.Language;
13962
13999
  export declare type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
13963
14000
  export declare type LevyComponent = io.flow.v0.enums.LevyComponent;
13964
- export declare type LevyInclusion = io.flow.v0.enums.LevyInclusion;
13965
14001
  export declare type LevyStrategy = io.flow.v0.enums.LevyStrategy;
13966
14002
  export declare type Line = io.flow.v0.models.Line;
13967
14003
  export declare type LineItem = io.flow.v0.models.LineItem;
@@ -14436,10 +14472,13 @@ export declare type PricingSettings = io.flow.v0.models.PricingSettings;
14436
14472
  export declare type PricingUpserted = io.flow.v0.models.PricingUpserted;
14437
14473
  export declare type PricingVersion = io.flow.v0.models.PricingVersion;
14438
14474
  export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
14475
+ export declare type Product = io.flow.v0.models.Product;
14439
14476
  export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
14440
14477
  export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
14441
14478
  export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
14442
14479
  export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
14480
+ export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
14481
+ export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
14443
14482
  export declare type Promotion = io.flow.v0.unions.Promotion;
14444
14483
  export declare type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
14445
14484
  export declare type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
@@ -14601,12 +14640,7 @@ export declare type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
14601
14640
  export declare type Session = io.flow.v0.unions.Session;
14602
14641
  export declare type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
14603
14642
  export declare type SessionAuthorizationForm = io.flow.v0.models.SessionAuthorizationForm;
14604
- export declare type SessionContextExperiment = io.flow.v0.models.SessionContextExperiment;
14605
14643
  export declare type SessionCurrencyFormat = io.flow.v0.models.SessionCurrencyFormat;
14606
- export declare type SessionExperiment = io.flow.v0.models.SessionExperiment;
14607
- export declare type SessionExperimentForm = io.flow.v0.models.SessionExperimentForm;
14608
- export declare type SessionExperimentVariant = io.flow.v0.models.SessionExperimentVariant;
14609
- export declare type SessionExperimentVariantForm = io.flow.v0.models.SessionExperimentVariantForm;
14610
14644
  export declare type SessionExpirationConfig = io.flow.v0.models.SessionExpirationConfig;
14611
14645
  export declare type SessionForm = io.flow.v0.models.SessionForm;
14612
14646
  export declare type SessionFormat = io.flow.v0.models.SessionFormat;
@@ -14644,6 +14678,8 @@ export declare type ShippingConfigurationUpserted = io.flow.v0.models.ShippingCo
14644
14678
  export declare type ShippingConfigurationVersion = io.flow.v0.models.ShippingConfigurationVersion;
14645
14679
  export declare type ShippingLabel = io.flow.v0.models.ShippingLabel;
14646
14680
  export declare type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
14681
+ export declare type ShippingLabelError = io.flow.v0.models.ShippingLabelError;
14682
+ export declare type ShippingLabelErrorCode = io.flow.v0.enums.ShippingLabelErrorCode;
14647
14683
  export declare type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
14648
14684
  export declare type ShippingLabelHopCostItemizedEstimate = io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
14649
14685
  export declare type ShippingLabelHopSummary = io.flow.v0.models.ShippingLabelHopSummary;
@@ -14720,7 +14756,6 @@ export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
14720
14756
  export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
14721
14757
  export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
14722
14758
  export declare type Strategy = io.flow.v0.enums.Strategy;
14723
- export declare type StreetAddress = io.flow.v0.models.StreetAddress;
14724
14759
  export declare type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
14725
14760
  export declare type StripeAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
14726
14761
  export declare type StripeAuthorizationResultActionDetails = io.flow.v0.models.StripeAuthorizationResultActionDetails;
@@ -14761,18 +14796,6 @@ export declare type SyncStreamType = io.flow.v0.enums.SyncStreamType;
14761
14796
  export declare type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
14762
14797
  export declare type Tax = io.flow.v0.models.Tax;
14763
14798
  export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
14764
- export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
14765
- export declare type TaxDutyCalculatorValidationErrorCode = io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
14766
- export declare type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
14767
- export declare type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
14768
- export declare type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
14769
- export declare type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
14770
- export declare type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
14771
- export declare type TaxDutyQuoteLineItemForm = io.flow.v0.models.TaxDutyQuoteLineItemForm;
14772
- export declare type TaxDutyQuoteSimpleLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
14773
- export declare type TaxDutyQuoteSimpleShipping = io.flow.v0.models.TaxDutyQuoteSimpleShipping;
14774
- export declare type TaxDutyQuoteSimpleShippingForm = io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
14775
- export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
14776
14799
  export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
14777
14800
  export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
14778
14801
  export declare type TaxReport = io.flow.v0.models.TaxReport;
@@ -14919,6 +14942,5 @@ export declare type WebhookStatus = io.flow.v0.enums.WebhookStatus;
14919
14942
  export declare type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
14920
14943
  export declare type WithholdingDeductionType = io.flow.v0.enums.WithholdingDeductionType;
14921
14944
  export declare type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
14922
- export declare type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
14923
14945
  export declare type Zone = io.flow.v0.models.Zone;
14924
14946
  export {};