@flowio/api-internal-prop-types 9.24.104 → 9.24.105

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.
@@ -2604,6 +2604,8 @@ declare namespace io.flow.stripe.v0.enums {
2604
2604
  type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
2605
2605
  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';
2606
2606
  type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
2607
+ type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
2608
+ 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';
2607
2609
  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';
2608
2610
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
2609
2611
  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';
@@ -3662,6 +3664,17 @@ declare namespace io.flow.stripe.v0.models {
3662
3664
  readonly 'previous_attributes'?: any/*object*/;
3663
3665
  }
3664
3666
 
3667
+ interface StripeEarlyFraudWarningEvent {
3668
+ readonly 'id': string;
3669
+ readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
3670
+ readonly 'actionable': boolean;
3671
+ readonly 'charge': string;
3672
+ readonly 'created': number;
3673
+ readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
3674
+ readonly 'livemode': boolean;
3675
+ readonly 'payment_intent'?: string;
3676
+ }
3677
+
3665
3678
  interface StripeError {
3666
3679
  readonly 'type': io.flow.stripe.v0.enums.ErrorType;
3667
3680
  readonly 'charge'?: string;
@@ -3866,6 +3879,7 @@ declare namespace io.flow.label.v0.enums {
3866
3879
  type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
3867
3880
  type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
3868
3881
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
3882
+ 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';
3869
3883
  type TrackingNumberType = 'flow' | 'carrier';
3870
3884
  }
3871
3885
 
@@ -4009,6 +4023,11 @@ declare namespace io.flow.label.v0.models {
4009
4023
  readonly 'required': boolean;
4010
4024
  }
4011
4025
 
4026
+ interface ShippingLabelError {
4027
+ readonly 'code': io.flow.label.v0.enums.ShippingLabelErrorCode;
4028
+ readonly 'messages': string[];
4029
+ }
4030
+
4012
4031
  interface ShippingLabelHopCostItemizedEstimate {
4013
4032
  readonly 'units': io.flow.trueup.v0.models.LabelUnits;
4014
4033
  readonly 'base': io.flow.trueup.v0.models.LabelBase;
@@ -5074,6 +5093,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5074
5093
  readonly 'destination': string;
5075
5094
  }
5076
5095
 
5096
+ interface ShopifyMarketsBestSellingProduct {
5097
+ readonly 'id': string;
5098
+ }
5099
+
5077
5100
  interface ShopifyMarketsDiscrepancy {
5078
5101
  readonly 'organization_id': string;
5079
5102
  readonly 'count': number;
@@ -7418,35 +7441,6 @@ declare namespace io.flow.shopify.markets.v0.models {
7418
7441
  }
7419
7442
  }
7420
7443
 
7421
- declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
7422
- type PricingIndicatorStatus = 'complete' | 'in_progress';
7423
- type ServiceName = 'catalog' | 'demandware' | 'metric';
7424
- }
7425
-
7426
- declare namespace io.flow.pricing.indicator.internal.event.v0.models {
7427
- interface Details {
7428
- readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
7429
- readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
7430
- readonly 'upserted_at': string;
7431
- readonly 'time_elapsed_since_upserted': number;
7432
- }
7433
-
7434
- interface PricingIndicator {
7435
- readonly 'discriminator': 'pricing_indicator';
7436
- readonly 'event_id': string;
7437
- readonly 'timestamp': string;
7438
- readonly 'organization': string;
7439
- readonly 'published_from': io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
7440
- readonly 'status': io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
7441
- readonly 'event_identifier': string;
7442
- readonly 'details': io.flow.pricing.indicator.internal.event.v0.models.Details;
7443
- }
7444
- }
7445
-
7446
- declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
7447
- type PricingIndicatorEvent = (io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator);
7448
- }
7449
-
7450
7444
  declare namespace io.flow.order.price.v0.enums {
7451
7445
  type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
7452
7446
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
@@ -7480,7 +7474,7 @@ declare namespace io.flow.channel.internal.v0.enums {
7480
7474
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
7481
7475
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
7482
7476
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
7483
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
7477
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
7484
7478
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
7485
7479
  }
7486
7480
 
@@ -7527,6 +7521,7 @@ declare namespace io.flow.channel.internal.v0.models {
7527
7521
  readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
7528
7522
  readonly 'order_created_at'?: string;
7529
7523
  readonly 'order_updated_at'?: string;
7524
+ readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
7530
7525
  }
7531
7526
 
7532
7527
  interface ChannelOrderAcceptanceDetails {
@@ -7555,6 +7550,11 @@ declare namespace io.flow.channel.internal.v0.models {
7555
7550
  interface FlowChannelOrganization {
7556
7551
  readonly 'placeholder'?: string;
7557
7552
  }
7553
+
7554
+ interface OrderEditSummary {
7555
+ readonly 'external_order_edit_reference': string;
7556
+ readonly 'edited_at': string;
7557
+ }
7558
7558
  }
7559
7559
 
7560
7560
  declare namespace io.flow.partner.v0.enums {
@@ -8278,6 +8278,10 @@ declare namespace io.flow.ftp.v0.models {
8278
8278
  }
8279
8279
  }
8280
8280
 
8281
+ declare namespace io.flow.shopify.markets.internal.event.v0.enums {
8282
+ type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
8283
+ }
8284
+
8281
8285
  declare namespace io.flow.shopify.markets.internal.event.v0.models {
8282
8286
  interface ChannelOrderSummaryDeleted {
8283
8287
  readonly 'discriminator': 'channel_order_summary_deleted';
@@ -8326,6 +8330,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
8326
8330
  readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
8327
8331
  }
8328
8332
 
8333
+ interface ShopifyIncotermIncludes {
8334
+ readonly 'duties': boolean;
8335
+ readonly 'taxes': boolean;
8336
+ }
8337
+
8338
+ interface ShopifyIncotermSummaryErrorData {
8339
+ readonly 'id': string;
8340
+ readonly 'shopify_order_id': string;
8341
+ readonly 'order_number': string;
8342
+ readonly 'configuration': io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
8343
+ readonly 'includes': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
8344
+ readonly 'reason': string;
8345
+ readonly 'order_submitted_at': string;
8346
+ }
8347
+
8348
+ interface ShopifyIncotermSummaryErrorPublished {
8349
+ readonly 'discriminator': 'shopify_incoterm_summary_error_published';
8350
+ readonly 'event_id': string;
8351
+ readonly 'timestamp': string;
8352
+ readonly 'organization': string;
8353
+ readonly 'data': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
8354
+ }
8355
+
8356
+ interface ShopifyMarketsBestSellingProductDeleted {
8357
+ readonly 'discriminator': 'shopify_markets_best_selling_product_deleted';
8358
+ readonly 'event_id': string;
8359
+ readonly 'timestamp': string;
8360
+ readonly 'organization': string;
8361
+ readonly 'id': string;
8362
+ }
8363
+
8364
+ interface ShopifyMarketsBestSellingProductUpserted {
8365
+ readonly 'discriminator': 'shopify_markets_best_selling_product_upserted';
8366
+ readonly 'event_id': string;
8367
+ readonly 'timestamp': string;
8368
+ readonly 'organization': string;
8369
+ readonly 'shopify_markets_best_selling_product': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
8370
+ }
8371
+
8329
8372
  interface ShopifyMarketsMetricsDeleted {
8330
8373
  readonly 'discriminator': 'shopify_markets_metrics_deleted';
8331
8374
  readonly 'event_id': string;
@@ -8353,6 +8396,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
8353
8396
  readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
8354
8397
  }
8355
8398
 
8399
+ interface ShopifyMarketsOrderEditSummaryData {
8400
+ readonly 'channel_order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
8401
+ readonly 'edited_at': string;
8402
+ }
8403
+
8404
+ interface ShopifyMarketsOrderEditSummaryPublished {
8405
+ readonly 'discriminator': 'shopify_markets_order_edit_summary_published';
8406
+ readonly 'event_id': string;
8407
+ readonly 'timestamp': string;
8408
+ readonly 'organization': string;
8409
+ readonly 'data': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
8410
+ }
8411
+
8356
8412
  interface ShopifyMarketsOrderUpserted {
8357
8413
  readonly 'discriminator': 'shopify_markets_order_upserted';
8358
8414
  readonly 'event_id': string;
@@ -8427,7 +8483,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
8427
8483
  }
8428
8484
 
8429
8485
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
8430
- type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted);
8486
+ type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted);
8431
8487
  }
8432
8488
 
8433
8489
  declare namespace io.flow.experience.v0.enums {
@@ -8440,6 +8496,7 @@ declare namespace io.flow.experience.v0.enums {
8440
8496
  type ExperienceCountryStatus = 'enabled' | 'disabled';
8441
8497
  type ExperiencePaymentMethodTag = 'display';
8442
8498
  type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
8499
+ type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
8443
8500
  type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
8444
8501
  type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
8445
8502
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
@@ -8949,6 +9006,17 @@ declare namespace io.flow.experience.v0.models {
8949
9006
  readonly 'attributes'?: Record<string, string>;
8950
9007
  }
8951
9008
 
9009
+ interface IncotermIncludes {
9010
+ readonly 'duties': boolean;
9011
+ readonly 'taxes': boolean;
9012
+ }
9013
+
9014
+ interface IncotermSummary {
9015
+ readonly 'configuration': io.flow.experience.v0.enums.IncotermConfiguration;
9016
+ readonly 'includes': io.flow.experience.v0.models.IncotermIncludes;
9017
+ readonly 'reason'?: string;
9018
+ }
9019
+
8952
9020
  interface ItemMargin {
8953
9021
  readonly 'id': string;
8954
9022
  readonly 'key': string;
@@ -9050,6 +9118,7 @@ declare namespace io.flow.experience.v0.models {
9050
9118
  readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
9051
9119
  readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
9052
9120
  readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
9121
+ readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
9053
9122
  }
9054
9123
 
9055
9124
  interface OrderAddress {
@@ -10729,6 +10798,7 @@ declare namespace io.flow.tracking.v0.models {
10729
10798
  readonly 'status': io.flow.tracking.v0.enums.TrackingStatus;
10730
10799
  readonly 'timestamp': string;
10731
10800
  readonly 'description'?: string;
10801
+ readonly 'aggregator_status_code'?: string;
10732
10802
  }
10733
10803
 
10734
10804
  interface TrackingEventForm {
@@ -13941,6 +14011,7 @@ declare namespace io.flow.internal.v0.enums {
13941
14011
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
13942
14012
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
13943
14013
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
14014
+ type BankAccountStatus = 'on_hold' | 'not_on_hold';
13944
14015
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
13945
14016
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
13946
14017
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
@@ -13949,7 +14020,7 @@ declare namespace io.flow.internal.v0.enums {
13949
14020
  type BillingTransactionStatus = 'pending_proof' | 'posted';
13950
14021
  type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund' | 'duty_refund';
13951
14022
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
13952
- type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
14023
+ type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
13953
14024
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
13954
14025
  type CarrierChargeType = 'label' | 'tax' | 'other';
13955
14026
  type CarrierFileType = 'freight' | 'tax';
@@ -13960,7 +14031,7 @@ declare namespace io.flow.internal.v0.enums {
13960
14031
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
13961
14032
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
13962
14033
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
13963
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
14034
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
13964
14035
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
13965
14036
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
13966
14037
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
@@ -13986,7 +14057,6 @@ declare namespace io.flow.internal.v0.enums {
13986
14057
  type ContentStatus = 'draft' | 'live' | 'archived';
13987
14058
  type ContentType = 'text' | 'html';
13988
14059
  type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
13989
- type CostType = 'payment_processing' | 'fx' | 'negative_balance' | 'solution' | 'hosting' | 'duty_guarantee' | 'transfer' | 'fraud';
13990
14060
  type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
13991
14061
  type DebugAccountingTransactionType = 'fulfillment';
13992
14062
  type DeliveredDutyOptionMessageType = 'warning' | 'notification';
@@ -14011,10 +14081,9 @@ declare namespace io.flow.internal.v0.enums {
14011
14081
  type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
14012
14082
  type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
14013
14083
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
14014
- type EldarItemType = 'digital' | 'physical';
14015
14084
  type EmptyAttribute = 'irrelevant';
14016
14085
  type ErpFileType = 'vendor';
14017
- type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'sanjay_item_upserted' | 'sanjay_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
14086
+ type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_markets_order_edit_summary_published' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
14018
14087
  type ExperienceImportType = 'experience_with_settings';
14019
14088
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
14020
14089
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -14033,7 +14102,6 @@ declare namespace io.flow.internal.v0.enums {
14033
14102
  type FtpProtocol = 'sftp' | 'ftp';
14034
14103
  type GoogleAnalyticsPlugin = 'ec';
14035
14104
  type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
14036
- type HarinathItemType = 'digital' | 'physical';
14037
14105
  type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
14038
14106
  type HttpMethod = 'get' | 'post';
14039
14107
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
@@ -14042,7 +14110,6 @@ declare namespace io.flow.internal.v0.enums {
14042
14110
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
14043
14111
  type ItemType = 'standard' | 'multi_product';
14044
14112
  type KeywordType = 'positive' | 'negative';
14045
- type KonstantinItemType = 'physical' | 'digital';
14046
14113
  type LabelBillingStrategy = 'quote' | 'carrier';
14047
14114
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
14048
14115
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
@@ -14065,10 +14132,6 @@ declare namespace io.flow.internal.v0.enums {
14065
14132
  type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
14066
14133
  type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
14067
14134
  type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
14068
- type MatiasItemType = 'physical' | 'digital';
14069
- type MerchantCohort = 'channel_merchant_pre_cutoff' | 'channel_merchant_post_cutoff' | 'global_e_merchant_pre_cutoff' | 'global_e_merchant_post_cutoff';
14070
- type MichaelyanItemType = 'physical' | 'digital';
14071
- type MiljenkoItemType = 'physical' | 'digital';
14072
14135
  type MixedBagWeight = '0' | '1' | '2';
14073
14136
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
14074
14137
  type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
@@ -14096,19 +14159,15 @@ declare namespace io.flow.internal.v0.enums {
14096
14159
  type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
14097
14160
  type OutputStyle = 'flow' | 'shopify_p1';
14098
14161
  type Owner = 'flow' | 'organization';
14099
- type Party = 'merchant' | 'channel_partner' | 'global_e';
14100
14162
  type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
14101
14163
  type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
14102
14164
  type PaymentTerm = 'net7' | 'net15' | 'net30';
14103
14165
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
14104
14166
  type PriceSelector = 'minimum' | 'maximum';
14105
- type PricingIndicatorStatus = 'complete' | 'in_progress';
14106
- type PrincipalType = 'total_order_value' | 'product_order_value' | 'label_value';
14107
14167
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
14108
14168
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
14109
14169
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
14110
14170
  type ProductStatus = 'active' | 'archived' | 'draft';
14111
- type ProfitStreamKey = 'pre_profit_share' | 'channel_pre_cutoff' | 'channel_post_cutoff' | 'global_e_pre_cutoff' | 'global_e_post_cutoff' | 'duty_assurance';
14112
14171
  type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
14113
14172
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
14114
14173
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
@@ -14130,14 +14189,12 @@ declare namespace io.flow.internal.v0.enums {
14130
14189
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
14131
14190
  type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
14132
14191
  type RevenueRecordType = 'pending' | 'sales' | 'refund';
14133
- type RevenueType = 'mor' | 'fx' | 'duty_assurance';
14134
14192
  type RiskCheck = 'three_d_secure';
14135
14193
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
14136
- type SanjayItemType = 'digital' | 'physical';
14137
- type ServiceName = 'catalog' | 'demandware' | 'metric';
14138
14194
  type SessionCountryStatus = 'enabled' | 'disabled';
14139
14195
  type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
14140
14196
  type ShopifyGrantStatus = 'pass' | 'fail';
14197
+ type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
14141
14198
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
14142
14199
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
14143
14200
  type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion' | 'bulk_duty_update';
@@ -14149,7 +14206,6 @@ declare namespace io.flow.internal.v0.enums {
14149
14206
  type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
14150
14207
  type ShopifyPromotionStatus = 'active' | 'inactive';
14151
14208
  type ShopifyService = 'payment' | 'duty_tax_calculator';
14152
- type ShrutiDemoType = 'digital' | 'physical';
14153
14209
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
14154
14210
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
14155
14211
  type SnoozeSourceType = 'task' | 'invariant';
@@ -14158,15 +14214,12 @@ declare namespace io.flow.internal.v0.enums {
14158
14214
  type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
14159
14215
  type SubscriptionFrequency = 'yearly' | 'monthly';
14160
14216
  type SuggestionAction = 'accept' | 'validate' | 'review';
14161
- type SvitlanaType = 'physical' | 'digital';
14162
- type TamItemType = 'physical' | 'digital';
14163
14217
  type TariffEligibilityType = 'rex';
14164
14218
  type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
14165
14219
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
14166
14220
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
14167
14221
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
14168
14222
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
14169
- type ThiagoItemType = 'digital' | 'physical';
14170
14223
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
14171
14224
  type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
14172
14225
  type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
@@ -14337,8 +14390,6 @@ declare namespace io.flow.internal.v0.models {
14337
14390
  readonly 'enable_fee_reversals': boolean;
14338
14391
  readonly 'record_reason_for_transactions_pending_payout': boolean;
14339
14392
  readonly 'enable_negative_debits': boolean;
14340
- readonly 'setup_completed_at'?: string;
14341
- readonly 'cohort'?: io.flow.internal.v0.enums.MerchantCohort;
14342
14393
  }
14343
14394
 
14344
14395
  interface AccountSettingsDeleted {
@@ -14920,12 +14971,6 @@ declare namespace io.flow.internal.v0.models {
14920
14971
  readonly 'count': number;
14921
14972
  }
14922
14973
 
14923
- interface AlgoliaIndexAssignment {
14924
- readonly 'id': string;
14925
- readonly 'name': string;
14926
- readonly 'application_id': string;
14927
- }
14928
-
14929
14974
  interface AllItemsExport {
14930
14975
  readonly 'discriminator': 'all_items_export';
14931
14976
  readonly 'event_id': string;
@@ -15049,6 +15094,13 @@ declare namespace io.flow.internal.v0.models {
15049
15094
  readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
15050
15095
  }
15051
15096
 
15097
+ interface BankAccount {
15098
+ readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
15099
+ readonly 'hold_created_at'?: string;
15100
+ readonly 'updated_at': string;
15101
+ readonly 'last4': string;
15102
+ }
15103
+
15052
15104
  interface BankAccountReference {
15053
15105
  readonly 'id': string;
15054
15106
  }
@@ -16072,6 +16124,7 @@ declare namespace io.flow.internal.v0.models {
16072
16124
  readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
16073
16125
  readonly 'order_created_at'?: string;
16074
16126
  readonly 'order_updated_at'?: string;
16127
+ readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
16075
16128
  }
16076
16129
 
16077
16130
  interface ChannelOrderAcceptanceDeleted {
@@ -16751,13 +16804,6 @@ declare namespace io.flow.internal.v0.models {
16751
16804
  readonly 'added_on': string;
16752
16805
  }
16753
16806
 
16754
- interface ColmItemDeleted {
16755
- readonly 'discriminator': 'colm_item_deleted';
16756
- readonly 'event_id': string;
16757
- readonly 'timestamp': string;
16758
- readonly 'id': string;
16759
- }
16760
-
16761
16807
  interface ColmItemForm {
16762
16808
  readonly 'number': string;
16763
16809
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -16766,13 +16812,6 @@ declare namespace io.flow.internal.v0.models {
16766
16812
  readonly 'added_on': string;
16767
16813
  }
16768
16814
 
16769
- interface ColmItemUpserted {
16770
- readonly 'discriminator': 'colm_item_upserted';
16771
- readonly 'event_id': string;
16772
- readonly 'timestamp': string;
16773
- readonly 'item': io.flow.internal.v0.models.ColmItem;
16774
- }
16775
-
16776
16815
  interface CommercialInvoiceComparison {
16777
16816
  readonly 'urls': string[];
16778
16817
  }
@@ -16917,17 +16956,6 @@ declare namespace io.flow.internal.v0.models {
16917
16956
  readonly 'description'?: string;
16918
16957
  }
16919
16958
 
16920
- interface Cost {
16921
- readonly 'source': io.flow.internal.v0.models.CostRule;
16922
- readonly 'amount': number;
16923
- }
16924
-
16925
- interface CostRule {
16926
- readonly 'type': io.flow.internal.v0.enums.CostType;
16927
- readonly 'rule': io.flow.internal.v0.unions.MoneyRule;
16928
- readonly 'bearer': io.flow.internal.v0.enums.Party;
16929
- }
16930
-
16931
16959
  interface CountryPickerCountry {
16932
16960
  readonly 'iso_3166_2': string;
16933
16961
  readonly 'iso_3166_3': string;
@@ -17168,6 +17196,11 @@ declare namespace io.flow.internal.v0.models {
17168
17196
  readonly 'transaction_id': string;
17169
17197
  }
17170
17198
 
17199
+ interface DebugBankingDetails {
17200
+ readonly 'merchant': io.flow.internal.v0.models.MerchantDetails;
17201
+ readonly 'account': io.flow.internal.v0.models.BankAccount;
17202
+ }
17203
+
17171
17204
  interface DebugDetails {
17172
17205
  readonly 'labels': io.flow.internal.v0.models.DebugLabel[];
17173
17206
  readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
@@ -17209,6 +17242,7 @@ declare namespace io.flow.internal.v0.models {
17209
17242
  readonly 'debug': io.flow.internal.v0.models.DebugDetails;
17210
17243
  readonly 'transactions': io.flow.billing.v0.models.Transaction[];
17211
17244
  readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
17245
+ readonly 'banking': io.flow.internal.v0.models.DebugBankingDetails;
17212
17246
  }
17213
17247
 
17214
17248
  interface DebugOrderTransactionForm {
@@ -17350,13 +17384,6 @@ declare namespace io.flow.internal.v0.models {
17350
17384
  readonly 'destination': io.flow.common.v0.models.Address;
17351
17385
  }
17352
17386
 
17353
- interface Details {
17354
- readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
17355
- readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
17356
- readonly 'upserted_at': string;
17357
- readonly 'time_elapsed_since_upserted': number;
17358
- }
17359
-
17360
17387
  interface Dhl {
17361
17388
  readonly 'discriminator': 'dhl';
17362
17389
  readonly 'export_account_number': string;
@@ -17438,8 +17465,10 @@ declare namespace io.flow.internal.v0.models {
17438
17465
  readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
17439
17466
  readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
17440
17467
  readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
17468
+ readonly 'payment_method'?: io.flow.reference.v0.models.PaymentMethod;
17441
17469
  readonly 'issued_at': string;
17442
17470
  readonly 'expires_at'?: string;
17471
+ readonly 'defended_at'?: string;
17443
17472
  readonly 'created_at': string;
17444
17473
  readonly 'updated_at'?: string;
17445
17474
  }
@@ -17523,6 +17552,7 @@ declare namespace io.flow.internal.v0.models {
17523
17552
  interface DisputeRecord {
17524
17553
  readonly 'id': string;
17525
17554
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
17555
+ readonly 'authorization': io.flow.internal.v0.models.ReportingAuthorizationReference;
17526
17556
  readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
17527
17557
  readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
17528
17558
  readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
@@ -17603,65 +17633,17 @@ declare namespace io.flow.internal.v0.models {
17603
17633
  readonly 'created_at': string;
17604
17634
  }
17605
17635
 
17606
- interface DutyRateBulkRequest {
17607
- readonly 'discriminator': 'duty_rate_bulk_request';
17608
- readonly 'event_id': string;
17609
- readonly 'timestamp': string;
17610
- readonly 'context': io.flow.internal.v0.models.DutyRateContext;
17611
- readonly 'origin': string;
17612
- readonly 'destination_tariff_code': Record<string, string>;
17613
- }
17614
-
17615
- interface DutyRateBulkResponse {
17616
- readonly 'discriminator': 'duty_rate_bulk_response';
17617
- readonly 'event_id': string;
17618
- readonly 'timestamp': string;
17619
- readonly 'context': io.flow.internal.v0.models.DutyRateContext;
17620
- readonly 'duty_rate': io.flow.internal.v0.models.DutyRate[];
17621
- }
17622
-
17623
- interface DutyRateContext {
17624
- readonly 'phrase_id'?: string;
17625
- readonly 'item_number'?: string;
17626
- readonly 'product_id'?: string;
17627
- }
17628
-
17629
17636
  interface DutyRateItemSummary {
17630
17637
  readonly 'number': string;
17631
17638
  readonly 'product_id'?: string;
17632
17639
  }
17633
17640
 
17634
- interface DutyRateRequest {
17635
- readonly 'discriminator': 'duty_rate_request';
17636
- readonly 'event_id': string;
17637
- readonly 'timestamp': string;
17638
- readonly 'destination': string;
17639
- readonly 'origin': string;
17640
- readonly 'tariff_code': string;
17641
- }
17642
-
17643
- interface DutyRateResponse {
17644
- readonly 'discriminator': 'duty_rate_response';
17645
- readonly 'event_id': string;
17646
- readonly 'timestamp': string;
17647
- readonly 'duty_rate': io.flow.internal.v0.models.DutyRate;
17648
- }
17649
-
17650
17641
  interface DutyRateSummary {
17651
17642
  readonly 'tariff_code': string;
17652
17643
  readonly 'origin': string;
17653
17644
  readonly 'destination': string;
17654
17645
  }
17655
17646
 
17656
- interface DutyRateUpserted {
17657
- readonly 'discriminator': 'duty_rate_upserted';
17658
- readonly 'event_id': string;
17659
- readonly 'timestamp': string;
17660
- readonly 'source_event': io.flow.internal.v0.models.DutyRawUpserted;
17661
- readonly 'duty_rate': io.flow.internal.v0.models.DutyRate;
17662
- readonly 'unparsable_rates': string[];
17663
- }
17664
-
17665
17647
  interface DutyRatesDataSummary {
17666
17648
  readonly 'id': string;
17667
17649
  readonly 'item_summary': io.flow.internal.v0.models.DutyRateItemSummary;
@@ -17690,21 +17672,6 @@ declare namespace io.flow.internal.v0.models {
17690
17672
  readonly 'created_at': string;
17691
17673
  }
17692
17674
 
17693
- interface DutyRawBulkUpserted {
17694
- readonly 'discriminator': 'duty_raw_bulk_upserted';
17695
- readonly 'event_id': string;
17696
- readonly 'timestamp': string;
17697
- readonly 'context': io.flow.internal.v0.models.DutyRateContext;
17698
- readonly 'duty_raw': io.flow.internal.v0.models.DutyRaw[];
17699
- }
17700
-
17701
- interface DutyRawUpserted {
17702
- readonly 'discriminator': 'duty_raw_upserted';
17703
- readonly 'event_id': string;
17704
- readonly 'timestamp': string;
17705
- readonly 'duty_raw': io.flow.internal.v0.models.DutyRaw;
17706
- }
17707
-
17708
17675
  interface DutySimpleExpression {
17709
17676
  readonly 'discriminator': 'duty_simple_expression';
17710
17677
  readonly 'type': io.flow.internal.v0.enums.DutySimpleExpressionType;
@@ -17739,37 +17706,6 @@ declare namespace io.flow.internal.v0.models {
17739
17706
  readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
17740
17707
  }
17741
17708
 
17742
- interface EldarItem {
17743
- readonly 'id': string;
17744
- readonly 'number': string;
17745
- readonly 'amount': io.flow.common.v0.models.Price;
17746
- readonly 'description'?: string;
17747
- readonly 'type': io.flow.internal.v0.enums.EldarItemType;
17748
- readonly 'added_on': string;
17749
- }
17750
-
17751
- interface EldarItemDeleted {
17752
- readonly 'discriminator': 'eldar_item_deleted';
17753
- readonly 'event_id': string;
17754
- readonly 'timestamp': string;
17755
- readonly 'id': string;
17756
- }
17757
-
17758
- interface EldarItemForm {
17759
- readonly 'number': string;
17760
- readonly 'amount': io.flow.common.v0.models.Price;
17761
- readonly 'description'?: string;
17762
- readonly 'type': io.flow.internal.v0.enums.EldarItemType;
17763
- readonly 'added_on': string;
17764
- }
17765
-
17766
- interface EldarItemUpserted {
17767
- readonly 'discriminator': 'eldar_item_upserted';
17768
- readonly 'event_id': string;
17769
- readonly 'timestamp': string;
17770
- readonly 'item': io.flow.internal.v0.models.EldarItem;
17771
- }
17772
-
17773
17709
  interface EmailForm {
17774
17710
  readonly 'to': string[];
17775
17711
  readonly 'cc'?: string[];
@@ -18624,7 +18560,6 @@ declare namespace io.flow.internal.v0.models {
18624
18560
  readonly 'payment_authorization_id'?: string;
18625
18561
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18626
18562
  readonly 'created_at'?: string;
18627
- readonly 'has_provider_link'?: boolean;
18628
18563
  }
18629
18564
 
18630
18565
  interface FraudReviewAuthorization {
@@ -18643,7 +18578,6 @@ declare namespace io.flow.internal.v0.models {
18643
18578
  readonly 'payment_authorization_id'?: string;
18644
18579
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18645
18580
  readonly 'created_at'?: string;
18646
- readonly 'has_provider_link'?: boolean;
18647
18581
  }
18648
18582
 
18649
18583
  interface FraudReviewAuthorizationDecision {
@@ -19129,37 +19063,6 @@ declare namespace io.flow.internal.v0.models {
19129
19063
  readonly 'tracker_id': string;
19130
19064
  }
19131
19065
 
19132
- interface HarinathItem {
19133
- readonly 'id': string;
19134
- readonly 'number': string;
19135
- readonly 'amount': io.flow.common.v0.models.Price;
19136
- readonly 'description'?: string;
19137
- readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
19138
- readonly 'added_on': string;
19139
- }
19140
-
19141
- interface HarinathItemDeleted {
19142
- readonly 'discriminator': 'harinath_item_deleted';
19143
- readonly 'event_id': string;
19144
- readonly 'timestamp': string;
19145
- readonly 'id': string;
19146
- }
19147
-
19148
- interface HarinathItemForm {
19149
- readonly 'number': string;
19150
- readonly 'amount': io.flow.common.v0.models.Price;
19151
- readonly 'description'?: string;
19152
- readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
19153
- readonly 'added_on': string;
19154
- }
19155
-
19156
- interface HarinathItemUpserted {
19157
- readonly 'discriminator': 'harinath_item_upserted';
19158
- readonly 'event_id': string;
19159
- readonly 'timestamp': string;
19160
- readonly 'item': io.flow.internal.v0.models.HarinathItem;
19161
- }
19162
-
19163
19066
  interface HarmonizationClassificationStatisticsData {
19164
19067
  readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
19165
19068
  }
@@ -19287,21 +19190,6 @@ declare namespace io.flow.internal.v0.models {
19287
19190
  readonly 'description': string;
19288
19191
  }
19289
19192
 
19290
- interface HybrisCatalogItemsImportRequest {
19291
- readonly 'discriminator': 'hybris_catalog_items_import_request';
19292
- readonly 'event_id': string;
19293
- readonly 'timestamp': string;
19294
- readonly 'organization': string;
19295
- readonly 'request': io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
19296
- }
19297
-
19298
- interface HybrisCatalogItemsImportRequestData {
19299
- readonly 'id': string;
19300
- readonly 'import_id': string;
19301
- readonly 'source_url': string;
19302
- readonly 'filename'?: string;
19303
- }
19304
-
19305
19193
  interface ImportCompleted {
19306
19194
  readonly 'discriminator': 'import_completed';
19307
19195
  readonly 'event_id': string;
@@ -19320,22 +19208,6 @@ declare namespace io.flow.internal.v0.models {
19320
19208
  readonly 'error': string;
19321
19209
  }
19322
19210
 
19323
- interface IndexAssignmentDeleted {
19324
- readonly 'discriminator': 'index_assignment_deleted';
19325
- readonly 'event_id': string;
19326
- readonly 'timestamp': string;
19327
- readonly 'organization': string;
19328
- readonly 'id': string;
19329
- }
19330
-
19331
- interface IndexAssignmentUpserted {
19332
- readonly 'discriminator': 'index_assignment_upserted';
19333
- readonly 'event_id': string;
19334
- readonly 'timestamp': string;
19335
- readonly 'organization': string;
19336
- readonly 'assignment': io.flow.internal.v0.models.AlgoliaIndexAssignment;
19337
- }
19338
-
19339
19211
  interface InstallForm {
19340
19212
  readonly 'token': string;
19341
19213
  }
@@ -19655,10 +19527,6 @@ declare namespace io.flow.internal.v0.models {
19655
19527
  readonly 'values': string[];
19656
19528
  }
19657
19529
 
19658
- interface ItemForm {
19659
- readonly 'amount'?: number;
19660
- }
19661
-
19662
19530
  interface ItemFormImportRequest {
19663
19531
  readonly 'discriminator': 'item_form_import_request';
19664
19532
  readonly 'event_id': string;
@@ -19840,37 +19708,6 @@ declare namespace io.flow.internal.v0.models {
19840
19708
  readonly 'descriptive_asset_urls'?: string;
19841
19709
  }
19842
19710
 
19843
- interface KonstantinItem {
19844
- readonly 'id': string;
19845
- readonly 'number': string;
19846
- readonly 'amount': io.flow.common.v0.models.Price;
19847
- readonly 'description'?: string;
19848
- readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
19849
- readonly 'added_on': string;
19850
- }
19851
-
19852
- interface KonstantinItemDeleted {
19853
- readonly 'discriminator': 'konstantin_item_deleted';
19854
- readonly 'event_id': string;
19855
- readonly 'timestamp': string;
19856
- readonly 'id': string;
19857
- }
19858
-
19859
- interface KonstantinItemForm {
19860
- readonly 'number': string;
19861
- readonly 'amount': io.flow.common.v0.models.Price;
19862
- readonly 'description'?: string;
19863
- readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
19864
- readonly 'added_on': string;
19865
- }
19866
-
19867
- interface KonstantinItemUpserted {
19868
- readonly 'discriminator': 'konstantin_item_upserted';
19869
- readonly 'event_id': string;
19870
- readonly 'timestamp': string;
19871
- readonly 'item': io.flow.internal.v0.models.KonstantinItem;
19872
- }
19873
-
19874
19711
  interface LabProjectSettings {
19875
19712
  readonly 'id': string;
19876
19713
  readonly 'flow_lab_project_key': string;
@@ -20888,37 +20725,6 @@ declare namespace io.flow.internal.v0.models {
20888
20725
  readonly 'id': string;
20889
20726
  }
20890
20727
 
20891
- interface MatiasItem {
20892
- readonly 'id': string;
20893
- readonly 'number': string;
20894
- readonly 'amount': io.flow.common.v0.models.Price;
20895
- readonly 'description'?: string;
20896
- readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
20897
- readonly 'added_on': string;
20898
- }
20899
-
20900
- interface MatiasItemDeleted {
20901
- readonly 'discriminator': 'matias_item_deleted';
20902
- readonly 'event_id': string;
20903
- readonly 'timestamp': string;
20904
- readonly 'id': string;
20905
- }
20906
-
20907
- interface MatiasItemForm {
20908
- readonly 'number': string;
20909
- readonly 'amount': io.flow.common.v0.models.Price;
20910
- readonly 'description'?: string;
20911
- readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
20912
- readonly 'added_on': string;
20913
- }
20914
-
20915
- interface MatiasItemUpserted {
20916
- readonly 'discriminator': 'matias_item_upserted';
20917
- readonly 'event_id': string;
20918
- readonly 'timestamp': string;
20919
- readonly 'item': io.flow.internal.v0.models.MatiasItem;
20920
- }
20921
-
20922
20728
  interface Merchant {
20923
20729
  readonly 'id': string;
20924
20730
  readonly 'account': io.flow.internal.v0.models.AccountReference;
@@ -20941,6 +20747,10 @@ declare namespace io.flow.internal.v0.models {
20941
20747
  readonly 'id': string;
20942
20748
  }
20943
20749
 
20750
+ interface MerchantDetails {
20751
+ readonly 'name': string;
20752
+ }
20753
+
20944
20754
  interface MerchantFees {
20945
20755
  readonly 'duty_guarantee': number;
20946
20756
  readonly 'mor': number;
@@ -21068,73 +20878,6 @@ declare namespace io.flow.internal.v0.models {
21068
20878
  readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
21069
20879
  }
21070
20880
 
21071
- interface MichaelyanItem {
21072
- readonly 'id': string;
21073
- readonly 'number': string;
21074
- readonly 'amount': io.flow.common.v0.models.Price;
21075
- readonly 'description'?: string;
21076
- readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
21077
- readonly 'added_on': string;
21078
- }
21079
-
21080
- interface MichaelyanItemDeleted {
21081
- readonly 'discriminator': 'michaelyan_item_deleted';
21082
- readonly 'event_id': string;
21083
- readonly 'timestamp': string;
21084
- readonly 'id': string;
21085
- }
21086
-
21087
- interface MichaelyanItemForm {
21088
- readonly 'number': string;
21089
- readonly 'amount': io.flow.common.v0.models.Price;
21090
- readonly 'description'?: string;
21091
- readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
21092
- readonly 'added_on': string;
21093
- }
21094
-
21095
- interface MichaelyanItemUpserted {
21096
- readonly 'discriminator': 'michaelyan_item_upserted';
21097
- readonly 'event_id': string;
21098
- readonly 'timestamp': string;
21099
- readonly 'item': io.flow.internal.v0.models.MichaelyanItem;
21100
- }
21101
-
21102
- interface MiljenkoItem {
21103
- readonly 'id': string;
21104
- readonly 'number': string;
21105
- readonly 'amount': io.flow.common.v0.models.Price;
21106
- readonly 'description'?: string;
21107
- readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
21108
- readonly 'added_on': string;
21109
- }
21110
-
21111
- interface MiljenkoItemDeleted {
21112
- readonly 'discriminator': 'miljenko_item_deleted';
21113
- readonly 'event_id': string;
21114
- readonly 'timestamp': string;
21115
- readonly 'id': string;
21116
- }
21117
-
21118
- interface MiljenkoItemForm {
21119
- readonly 'number': string;
21120
- readonly 'amount': io.flow.common.v0.models.Price;
21121
- readonly 'description'?: string;
21122
- readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
21123
- readonly 'added_on': string;
21124
- }
21125
-
21126
- interface MiljenkoItemUpserted {
21127
- readonly 'discriminator': 'miljenko_item_upserted';
21128
- readonly 'event_id': string;
21129
- readonly 'timestamp': string;
21130
- readonly 'item': io.flow.internal.v0.models.MiljenkoItem;
21131
- }
21132
-
21133
- interface MoneyPercentage {
21134
- readonly 'discriminator': 'percentage';
21135
- readonly 'percent': number;
21136
- }
21137
-
21138
20881
  interface NegativeDebitMetrics {
21139
20882
  readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
21140
20883
  readonly 'first_attempt': io.flow.internal.v0.models.AttemptStatistics;
@@ -21422,6 +21165,11 @@ declare namespace io.flow.internal.v0.models {
21422
21165
  readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
21423
21166
  }
21424
21167
 
21168
+ interface OrderEditSummary {
21169
+ readonly 'external_order_edit_reference': string;
21170
+ readonly 'edited_at': string;
21171
+ }
21172
+
21425
21173
  interface OrderFulfillmentDeleted {
21426
21174
  readonly 'discriminator': 'order_fulfillment_deleted';
21427
21175
  readonly 'event_id': string;
@@ -22763,52 +22511,11 @@ declare namespace io.flow.internal.v0.models {
22763
22511
  readonly 'quote_request': io.flow.internal.v0.models.QuoteRequest;
22764
22512
  }
22765
22513
 
22766
- interface PricingIndicator {
22767
- readonly 'discriminator': 'pricing_indicator';
22768
- readonly 'event_id': string;
22769
- readonly 'timestamp': string;
22770
- readonly 'organization': string;
22771
- readonly 'published_from': io.flow.internal.v0.enums.ServiceName;
22772
- readonly 'status': io.flow.internal.v0.enums.PricingIndicatorStatus;
22773
- readonly 'event_identifier': string;
22774
- readonly 'details': io.flow.internal.v0.models.Details;
22775
- }
22776
-
22777
- interface PricingIndicatorDynamo {
22778
- readonly 'organization_id': string;
22779
- readonly 'item_number': string;
22780
- readonly 'experience_key': string;
22781
- readonly 'upserted_at': string;
22782
- readonly 'time_elapsed_since_upserted': number;
22783
- readonly 'event_identifier': string;
22784
- readonly 'status': io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
22785
- readonly 'published_at': string;
22786
- readonly 'published_from': io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
22787
- readonly 'expiration_time_in_epoch': number;
22788
- readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
22789
- readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
22790
- }
22791
-
22792
- interface Principal {
22793
- readonly 'type': io.flow.internal.v0.enums.PrincipalType;
22794
- readonly 'amount': number;
22795
- }
22796
-
22797
22514
  interface PrioritizedCenterReference {
22798
22515
  readonly 'center_key': string;
22799
22516
  readonly 'position': number;
22800
22517
  }
22801
22518
 
22802
- interface ProcessedPaymentSummary {
22803
- readonly 'type': io.flow.reference.v0.enums.PaymentMethodCapability;
22804
- readonly 'amount': number;
22805
- readonly 'currency': io.flow.reference.v0.models.Currency;
22806
- readonly 'method': io.flow.reference.v0.models.PaymentMethod;
22807
- readonly 'card_issuer_country'?: io.flow.reference.v0.models.Country;
22808
- readonly 'shipping_address_country'?: io.flow.reference.v0.models.Country;
22809
- readonly 'billing_address_country'?: io.flow.reference.v0.models.Country;
22810
- }
22811
-
22812
22519
  interface ProcessingTransaction {
22813
22520
  readonly 'discriminator': 'processing_transaction';
22814
22521
  readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
@@ -23014,49 +22721,6 @@ declare namespace io.flow.internal.v0.models {
23014
22721
  readonly 'quantity': number;
23015
22722
  }
23016
22723
 
23017
- interface Profit {
23018
- readonly 'key': io.flow.internal.v0.enums.ProfitStreamKey;
23019
- readonly 'principal': io.flow.internal.v0.models.Principal;
23020
- readonly 'revenue': io.flow.internal.v0.models.Revenue[];
23021
- readonly 'costs': io.flow.internal.v0.models.Cost[];
23022
- readonly 'amount': number;
23023
- readonly 'splits': io.flow.internal.v0.models.ProfitSplit[];
23024
- }
23025
-
23026
- interface ProfitShare {
23027
- readonly 'order': io.flow.internal.v0.models.ProfitShareOrderReference;
23028
- readonly 'profits': io.flow.internal.v0.models.Profit[];
23029
- }
23030
-
23031
- interface ProfitShareOrderReference {
23032
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
23033
- readonly 'number': string;
23034
- }
23035
-
23036
- interface ProfitSharePlan {
23037
- readonly 'order': io.flow.internal.v0.models.ProfitShareOrderReference;
23038
- readonly 'streams': io.flow.internal.v0.models.ProfitStream[];
23039
- }
23040
-
23041
- interface ProfitSplit {
23042
- readonly 'rule': io.flow.internal.v0.models.ProfitSplitRule;
23043
- readonly 'amount': number;
23044
- }
23045
-
23046
- interface ProfitSplitRule {
23047
- readonly 'payee': io.flow.internal.v0.enums.Party;
23048
- readonly 'rule': io.flow.internal.v0.unions.MoneyRule;
23049
- }
23050
-
23051
- interface ProfitStream {
23052
- readonly 'key': io.flow.internal.v0.enums.ProfitStreamKey;
23053
- readonly 'description': string;
23054
- readonly 'principal': io.flow.internal.v0.enums.PrincipalType;
23055
- readonly 'revenue': io.flow.internal.v0.models.RevenueRule[];
23056
- readonly 'costs': io.flow.internal.v0.models.CostRule[];
23057
- readonly 'splits': io.flow.internal.v0.models.ProfitSplitRule[];
23058
- }
23059
-
23060
22724
  interface ProofOfPostingExternallyFulfilled {
23061
22725
  readonly 'discriminator': 'external';
23062
22726
  readonly 'external_fulfillment_proof_id': string;
@@ -24149,6 +23813,21 @@ declare namespace io.flow.internal.v0.models {
24149
23813
  readonly 'num_pending_decisions_transacting': number;
24150
23814
  }
24151
23815
 
23816
+ interface RestrictionsDailyopsDeleted {
23817
+ readonly 'discriminator': 'restrictions_dailyops_deleted';
23818
+ readonly 'event_id': string;
23819
+ readonly 'timestamp': string;
23820
+ readonly 'organization': string;
23821
+ readonly 'id': string;
23822
+ }
23823
+
23824
+ interface RestrictionsDailyopsUpserted {
23825
+ readonly 'discriminator': 'restrictions_dailyops_upserted';
23826
+ readonly 'event_id': string;
23827
+ readonly 'timestamp': string;
23828
+ readonly 'restrictions_dailyops': io.flow.internal.v0.models.RestrictionsDailyops;
23829
+ }
23830
+
24152
23831
  interface ResyncByDestinations {
24153
23832
  readonly 'destinations': io.flow.reference.v0.models.Country[];
24154
23833
  }
@@ -24235,11 +23914,6 @@ declare namespace io.flow.internal.v0.models {
24235
23914
  readonly 'refund': io.flow.payment.v0.models.RefundReference;
24236
23915
  }
24237
23916
 
24238
- interface Revenue {
24239
- readonly 'source': io.flow.internal.v0.models.RevenueRule;
24240
- readonly 'amount': number;
24241
- }
24242
-
24243
23917
  interface RevenueRecord {
24244
23918
  readonly 'id': string;
24245
23919
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
@@ -24273,11 +23947,6 @@ declare namespace io.flow.internal.v0.models {
24273
23947
  readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
24274
23948
  }
24275
23949
 
24276
- interface RevenueRule {
24277
- readonly 'type': io.flow.internal.v0.enums.RevenueType;
24278
- readonly 'rule': io.flow.internal.v0.unions.MoneyRule;
24279
- }
24280
-
24281
23950
  interface RoutingAccount {
24282
23951
  readonly 'discriminator': 'routing_account';
24283
23952
  readonly 'processor': io.flow.internal.v0.enums.Processor;
@@ -24304,37 +23973,6 @@ declare namespace io.flow.internal.v0.models {
24304
23973
  readonly 'requested_by': string;
24305
23974
  }
24306
23975
 
24307
- interface SanjayItem {
24308
- readonly 'id': string;
24309
- readonly 'number': string;
24310
- readonly 'amount': io.flow.common.v0.models.Price;
24311
- readonly 'description'?: string;
24312
- readonly 'type': io.flow.internal.v0.enums.SanjayItemType;
24313
- readonly 'added_on': string;
24314
- }
24315
-
24316
- interface SanjayItemDeleted {
24317
- readonly 'discriminator': 'sanjay_item_deleted';
24318
- readonly 'event_id': string;
24319
- readonly 'timestamp': string;
24320
- readonly 'id': string;
24321
- }
24322
-
24323
- interface SanjayItemForm {
24324
- readonly 'number': string;
24325
- readonly 'amount': io.flow.common.v0.models.Price;
24326
- readonly 'description'?: string;
24327
- readonly 'type': io.flow.internal.v0.enums.SanjayItemType;
24328
- readonly 'added_on': string;
24329
- }
24330
-
24331
- interface SanjayItemUpserted {
24332
- readonly 'discriminator': 'sanjay_item_upserted';
24333
- readonly 'event_id': string;
24334
- readonly 'timestamp': string;
24335
- readonly 'item': io.flow.internal.v0.models.SanjayItem;
24336
- }
24337
-
24338
23976
  interface ScheduledPayment {
24339
23977
  readonly 'payment': io.flow.internal.v0.models.ReportPayment;
24340
23978
  readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -24603,6 +24241,49 @@ declare namespace io.flow.internal.v0.models {
24603
24241
  readonly 'placeholder': string;
24604
24242
  }
24605
24243
 
24244
+ interface ShopifyIncotermIncludes {
24245
+ readonly 'duties': boolean;
24246
+ readonly 'taxes': boolean;
24247
+ }
24248
+
24249
+ interface ShopifyIncotermSummaryErrorData {
24250
+ readonly 'id': string;
24251
+ readonly 'shopify_order_id': string;
24252
+ readonly 'order_number': string;
24253
+ readonly 'configuration': io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
24254
+ readonly 'includes': io.flow.internal.v0.models.ShopifyIncotermIncludes;
24255
+ readonly 'reason': string;
24256
+ readonly 'order_submitted_at': string;
24257
+ }
24258
+
24259
+ interface ShopifyIncotermSummaryErrorPublished {
24260
+ readonly 'discriminator': 'shopify_incoterm_summary_error_published';
24261
+ readonly 'event_id': string;
24262
+ readonly 'timestamp': string;
24263
+ readonly 'organization': string;
24264
+ readonly 'data': io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
24265
+ }
24266
+
24267
+ interface ShopifyMarketsBestSellingProduct {
24268
+ readonly 'id': string;
24269
+ }
24270
+
24271
+ interface ShopifyMarketsBestSellingProductDeleted {
24272
+ readonly 'discriminator': 'shopify_markets_best_selling_product_deleted';
24273
+ readonly 'event_id': string;
24274
+ readonly 'timestamp': string;
24275
+ readonly 'organization': string;
24276
+ readonly 'id': string;
24277
+ }
24278
+
24279
+ interface ShopifyMarketsBestSellingProductUpserted {
24280
+ readonly 'discriminator': 'shopify_markets_best_selling_product_upserted';
24281
+ readonly 'event_id': string;
24282
+ readonly 'timestamp': string;
24283
+ readonly 'organization': string;
24284
+ readonly 'shopify_markets_best_selling_product': io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
24285
+ }
24286
+
24606
24287
  interface ShopifyMarketsDiscrepancy {
24607
24288
  readonly 'organization_id': string;
24608
24289
  readonly 'count': number;
@@ -24651,6 +24332,19 @@ declare namespace io.flow.internal.v0.models {
24651
24332
  readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
24652
24333
  }
24653
24334
 
24335
+ interface ShopifyMarketsOrderEditSummaryData {
24336
+ readonly 'channel_order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
24337
+ readonly 'edited_at': string;
24338
+ }
24339
+
24340
+ interface ShopifyMarketsOrderEditSummaryPublished {
24341
+ readonly 'discriminator': 'shopify_markets_order_edit_summary_published';
24342
+ readonly 'event_id': string;
24343
+ readonly 'timestamp': string;
24344
+ readonly 'organization': string;
24345
+ readonly 'data': io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
24346
+ }
24347
+
24654
24348
  interface ShopifyMarketsOrderUpserted {
24655
24349
  readonly 'discriminator': 'shopify_markets_order_upserted';
24656
24350
  readonly 'event_id': string;
@@ -25171,37 +24865,6 @@ declare namespace io.flow.internal.v0.models {
25171
24865
  readonly 'total': number;
25172
24866
  }
25173
24867
 
25174
- interface ShrutiDemoItem {
25175
- readonly 'id': string;
25176
- readonly 'number': string;
25177
- readonly 'amount': io.flow.common.v0.models.Price;
25178
- readonly 'description'?: string;
25179
- readonly 'type': io.flow.internal.v0.enums.ShrutiDemoType;
25180
- readonly 'added_on': string;
25181
- }
25182
-
25183
- interface ShrutiDemoItemDeleted {
25184
- readonly 'discriminator': 'shruti_demo_item_deleted';
25185
- readonly 'event_id': string;
25186
- readonly 'timestamp': string;
25187
- readonly 'id': string;
25188
- }
25189
-
25190
- interface ShrutiDemoItemForm {
25191
- readonly 'number': string;
25192
- readonly 'amount': io.flow.common.v0.models.Price;
25193
- readonly 'description'?: string;
25194
- readonly 'type': io.flow.internal.v0.enums.ShrutiDemoType;
25195
- readonly 'added_on': string;
25196
- }
25197
-
25198
- interface ShrutiDemoItemUpserted {
25199
- readonly 'discriminator': 'shruti_demo_item_upserted';
25200
- readonly 'event_id': string;
25201
- readonly 'timestamp': string;
25202
- readonly 'item': io.flow.internal.v0.models.ShrutiDemoItem;
25203
- }
25204
-
25205
24868
  interface SimpleAccountReference {
25206
24869
  readonly 'id': string;
25207
24870
  }
@@ -25665,70 +25328,6 @@ declare namespace io.flow.internal.v0.models {
25665
25328
  readonly 'values': io.flow.internal.v0.models.LabelAliases[];
25666
25329
  }
25667
25330
 
25668
- interface SvitlanaItem {
25669
- readonly 'id': string;
25670
- readonly 'number': string;
25671
- readonly 'amount': number;
25672
- readonly 'description'?: string;
25673
- readonly 'type': io.flow.internal.v0.enums.SvitlanaType;
25674
- readonly 'added_on': string;
25675
- }
25676
-
25677
- interface SvitlanaItemDeleted {
25678
- readonly 'discriminator': 'svitlana_item_deleted';
25679
- readonly 'event_id': string;
25680
- readonly 'timestamp': string;
25681
- readonly 'id': string;
25682
- }
25683
-
25684
- interface SvitlanaItemForm {
25685
- readonly 'number': string;
25686
- readonly 'amount': number;
25687
- readonly 'description'?: string;
25688
- readonly 'type': io.flow.internal.v0.enums.SvitlanaType;
25689
- }
25690
-
25691
- interface SvitlanaItemUpserted {
25692
- readonly 'discriminator': 'svitlana_item_upserted';
25693
- readonly 'event_id': string;
25694
- readonly 'timestamp': string;
25695
- readonly 'item': io.flow.internal.v0.models.SvitlanaItem;
25696
- }
25697
-
25698
- interface SvitlanaTest {
25699
- readonly 'name': string;
25700
- }
25701
-
25702
- interface TamItem {
25703
- readonly 'id': string;
25704
- readonly 'number': string;
25705
- readonly 'amount': io.flow.common.v0.models.Price;
25706
- readonly 'description'?: string;
25707
- readonly 'type': io.flow.internal.v0.enums.TamItemType;
25708
- readonly 'added_on': string;
25709
- }
25710
-
25711
- interface TamItemDeleted {
25712
- readonly 'discriminator': 'tam_item_deleted';
25713
- readonly 'event_id': string;
25714
- readonly 'timestamp': string;
25715
- readonly 'id': string;
25716
- }
25717
-
25718
- interface TamItemForm {
25719
- readonly 'number': string;
25720
- readonly 'amount': io.flow.common.v0.models.Price;
25721
- readonly 'description'?: string;
25722
- readonly 'type': io.flow.internal.v0.enums.TamItemType;
25723
- }
25724
-
25725
- interface TamItemUpserted {
25726
- readonly 'discriminator': 'tam_item_upserted';
25727
- readonly 'event_id': string;
25728
- readonly 'timestamp': string;
25729
- readonly 'item': io.flow.internal.v0.models.TamItem;
25730
- }
25731
-
25732
25331
  interface TariffCodeDuty {
25733
25332
  readonly 'tariff_code': string;
25734
25333
  readonly 'duties': Record<string, io.flow.internal.v0.models.Duties>;
@@ -25921,37 +25520,6 @@ declare namespace io.flow.internal.v0.models {
25921
25520
  readonly 'name': string;
25922
25521
  }
25923
25522
 
25924
- interface ThiagoItem {
25925
- readonly 'id': string;
25926
- readonly 'number': string;
25927
- readonly 'amount': io.flow.common.v0.models.Price;
25928
- readonly 'description'?: string;
25929
- readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
25930
- readonly 'added_on': string;
25931
- }
25932
-
25933
- interface ThiagoItemDeleted {
25934
- readonly 'discriminator': 'thiago_item_deleted';
25935
- readonly 'event_id': string;
25936
- readonly 'timestamp': string;
25937
- readonly 'id': string;
25938
- }
25939
-
25940
- interface ThiagoItemForm {
25941
- readonly 'number': string;
25942
- readonly 'amount': io.flow.common.v0.models.Price;
25943
- readonly 'description'?: string;
25944
- readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
25945
- readonly 'added_on': string;
25946
- }
25947
-
25948
- interface ThiagoItemUpserted {
25949
- readonly 'discriminator': 'thiago_item_upserted';
25950
- readonly 'event_id': string;
25951
- readonly 'timestamp': string;
25952
- readonly 'item': io.flow.internal.v0.models.ThiagoItem;
25953
- }
25954
-
25955
25523
  interface ThirdPartyLogisticsPartner {
25956
25524
  readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
25957
25525
  readonly 'warehouse_url'?: string;
@@ -26087,6 +25655,31 @@ declare namespace io.flow.internal.v0.models {
26087
25655
  readonly 'job': io.flow.internal.v0.models.TrackingAssuranceJob;
26088
25656
  }
26089
25657
 
25658
+ interface TrackingCarrierReturnLabel {
25659
+ readonly 'id': string;
25660
+ readonly 'carrier_tracking_number': string;
25661
+ readonly 'alternate_tracking_numbers': string[];
25662
+ readonly 'carrier_id': string;
25663
+ readonly 'outbound_label_id'?: string;
25664
+ readonly 's3file'?: string;
25665
+ readonly 'origin'?: any/*object*/;
25666
+ readonly 'destination'?: any/*object*/;
25667
+ }
25668
+
25669
+ interface TrackingCarrierReturnLabelDeleted {
25670
+ readonly 'discriminator': 'tracking_carrier_return_label_deleted';
25671
+ readonly 'event_id': string;
25672
+ readonly 'timestamp': string;
25673
+ readonly 'id': string;
25674
+ }
25675
+
25676
+ interface TrackingCarrierReturnLabelUpserted {
25677
+ readonly 'discriminator': 'tracking_carrier_return_label_upserted';
25678
+ readonly 'event_id': string;
25679
+ readonly 'timestamp': string;
25680
+ readonly 'tracking_carrier_return_label': io.flow.internal.v0.models.TrackingCarrierReturnLabel;
25681
+ }
25682
+
26090
25683
  interface TrackingDebugForceTransitForm {
26091
25684
  readonly 'description': string;
26092
25685
  }
@@ -26211,14 +25804,6 @@ declare namespace io.flow.internal.v0.models {
26211
25804
  readonly 'credentials': io.flow.internal.v0.unions.CarrierCredentials;
26212
25805
  }
26213
25806
 
26214
- interface TrackingRequestUpserted {
26215
- readonly 'discriminator': 'tracking_request_upserted';
26216
- readonly 'event_id': string;
26217
- readonly 'timestamp': string;
26218
- readonly 'organization': string;
26219
- readonly 'tracking_request': io.flow.internal.v0.models.TrackingRequest;
26220
- }
26221
-
26222
25807
  interface TrackingResponse {
26223
25808
  readonly 'carrier': string;
26224
25809
  readonly 'carrier_tracking_number': string;
@@ -26226,14 +25811,6 @@ declare namespace io.flow.internal.v0.models {
26226
25811
  readonly 'tracking_events': io.flow.internal.v0.models.TrackingEvent[];
26227
25812
  }
26228
25813
 
26229
- interface TrackingResponseUpserted {
26230
- readonly 'discriminator': 'tracking_response_upserted';
26231
- readonly 'event_id': string;
26232
- readonly 'timestamp': string;
26233
- readonly 'organization': string;
26234
- readonly 'tracking_response': io.flow.internal.v0.models.TrackingResponse;
26235
- }
26236
-
26237
25814
  interface TrackingSubscription {
26238
25815
  readonly 'id': string;
26239
25816
  readonly 'organization_id': string;
@@ -26602,7 +26179,7 @@ declare namespace io.flow.internal.v0.unions {
26602
26179
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
26603
26180
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
26604
26181
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
26605
- type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.SanjayItemUpserted | io.flow.internal.v0.models.SanjayItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
26182
+ type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
26606
26183
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
26607
26184
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
26608
26185
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -26629,7 +26206,6 @@ declare namespace io.flow.internal.v0.unions {
26629
26206
  type MarketingGatewayFeedSource = (io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook);
26630
26207
  type MarketingGatewayItem = (io.flow.internal.v0.models.MarketingGatewayGoogleItem);
26631
26208
  type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
26632
- type MoneyRule = (io.flow.internal.v0.models.MoneyPercentage);
26633
26209
  type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
26634
26210
  type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
26635
26211
  type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
@@ -26673,6 +26249,7 @@ export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enu
26673
26249
  export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
26674
26250
  export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
26675
26251
  export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
26252
+ export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
26676
26253
  export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
26677
26254
  export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
26678
26255
  export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
@@ -26718,7 +26295,6 @@ export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums
26718
26295
  export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
26719
26296
  export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
26720
26297
  export const contentTypeCast: PropTypes.Requireable<io.flow.internal.v0.enums.ContentTypeCast>;
26721
- export const costType: PropTypes.Requireable<io.flow.internal.v0.enums.CostType>;
26722
26298
  export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
26723
26299
  export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
26724
26300
  export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
@@ -26743,7 +26319,6 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
26743
26319
  export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
26744
26320
  export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
26745
26321
  export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
26746
- export const eldarItemType: PropTypes.Requireable<io.flow.internal.v0.enums.EldarItemType>;
26747
26322
  export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
26748
26323
  export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
26749
26324
  export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
@@ -26765,7 +26340,6 @@ export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpInten
26765
26340
  export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
26766
26341
  export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
26767
26342
  export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
26768
- export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
26769
26343
  export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
26770
26344
  export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
26771
26345
  export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
@@ -26774,7 +26348,6 @@ export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.
26774
26348
  export const itemQuantityAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemQuantityAction>;
26775
26349
  export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>;
26776
26350
  export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
26777
- export const konstantinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.KonstantinItemType>;
26778
26351
  export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
26779
26352
  export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
26780
26353
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
@@ -26797,10 +26370,6 @@ export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v
26797
26370
  export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
26798
26371
  export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
26799
26372
  export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
26800
- export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
26801
- export const merchantCohort: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantCohort>;
26802
- export const michaelyanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MichaelyanItemType>;
26803
- export const miljenkoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MiljenkoItemType>;
26804
26373
  export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
26805
26374
  export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
26806
26375
  export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
@@ -26828,19 +26397,15 @@ export const organizationRestrictionRiskLevel: PropTypes.Requireable<io.flow.int
26828
26397
  export const organizationRestrictionScreeningStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus>;
26829
26398
  export const outputStyle: PropTypes.Requireable<io.flow.internal.v0.enums.OutputStyle>;
26830
26399
  export const owner: PropTypes.Requireable<io.flow.internal.v0.enums.Owner>;
26831
- export const party: PropTypes.Requireable<io.flow.internal.v0.enums.Party>;
26832
26400
  export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
26833
26401
  export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
26834
26402
  export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
26835
26403
  export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
26836
26404
  export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
26837
- export const pricingIndicatorStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PricingIndicatorStatus>;
26838
- export const principalType: PropTypes.Requireable<io.flow.internal.v0.enums.PrincipalType>;
26839
26405
  export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
26840
26406
  export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
26841
26407
  export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
26842
26408
  export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
26843
- export const profitStreamKey: PropTypes.Requireable<io.flow.internal.v0.enums.ProfitStreamKey>;
26844
26409
  export const promptAction: PropTypes.Requireable<io.flow.internal.v0.enums.PromptAction>;
26845
26410
  export const promptCheckoutDisplayPosition: PropTypes.Requireable<io.flow.internal.v0.enums.PromptCheckoutDisplayPosition>;
26846
26411
  export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.PromptOptions>;
@@ -26862,14 +26427,12 @@ export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.
26862
26427
  export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
26863
26428
  export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
26864
26429
  export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
26865
- export const revenueType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueType>;
26866
26430
  export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
26867
26431
  export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
26868
- export const sanjayItemType: PropTypes.Requireable<io.flow.internal.v0.enums.SanjayItemType>;
26869
- export const serviceName: PropTypes.Requireable<io.flow.internal.v0.enums.ServiceName>;
26870
26432
  export const sessionCountryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SessionCountryStatus>;
26871
26433
  export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode>;
26872
26434
  export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
26435
+ export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
26873
26436
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
26874
26437
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
26875
26438
  export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType>;
@@ -26881,7 +26444,6 @@ export const shopifyPromotionOfferAllocationMethod: PropTypes.Requireable<io.flo
26881
26444
  export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent>;
26882
26445
  export const shopifyPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionStatus>;
26883
26446
  export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
26884
- export const shrutiDemoType: PropTypes.Requireable<io.flow.internal.v0.enums.ShrutiDemoType>;
26885
26447
  export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
26886
26448
  export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
26887
26449
  export const snoozeSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeSourceType>;
@@ -26890,15 +26452,12 @@ export const statementTransferTransactionLocation: PropTypes.Requireable<io.flow
26890
26452
  export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.StatisticType>;
26891
26453
  export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
26892
26454
  export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
26893
- export const svitlanaType: PropTypes.Requireable<io.flow.internal.v0.enums.SvitlanaType>;
26894
- export const tamItemType: PropTypes.Requireable<io.flow.internal.v0.enums.TamItemType>;
26895
26455
  export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
26896
26456
  export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
26897
26457
  export const taxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting>;
26898
26458
  export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
26899
26459
  export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>;
26900
26460
  export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
26901
- export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
26902
26461
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
26903
26462
  export const trackingLabelDimensionsSource: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingLabelDimensionsSource>;
26904
26463
  export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
@@ -27000,7 +26559,6 @@ export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.mode
27000
26559
  export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
27001
26560
  export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
27002
26561
  export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
27003
- export const algoliaIndexAssignment: PropTypes.Requireable<io.flow.internal.v0.models.AlgoliaIndexAssignment>;
27004
26562
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
27005
26563
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
27006
26564
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
@@ -27021,6 +26579,7 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
27021
26579
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
27022
26580
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
27023
26581
  export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
26582
+ export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
27024
26583
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
27025
26584
  export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
27026
26585
  export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
@@ -27248,9 +26807,7 @@ export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.
27248
26807
  export const cliLogEntry: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntry>;
27249
26808
  export const cliLogEntryForm: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntryForm>;
27250
26809
  export const colmItem: PropTypes.Requireable<io.flow.internal.v0.models.ColmItem>;
27251
- export const colmItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemDeleted>;
27252
26810
  export const colmItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemForm>;
27253
- export const colmItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemUpserted>;
27254
26811
  export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
27255
26812
  export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
27256
26813
  export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
@@ -27267,8 +26824,6 @@ export const contentSchema: PropTypes.Requireable<io.flow.internal.v0.models.Con
27267
26824
  export const contentSchemaElement: PropTypes.Requireable<io.flow.internal.v0.models.ContentSchemaElement>;
27268
26825
  export const contentSchemaForm: PropTypes.Requireable<io.flow.internal.v0.models.ContentSchemaForm>;
27269
26826
  export const contentSchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.ContentSchemaSummary>;
27270
- export const cost: PropTypes.Requireable<io.flow.internal.v0.models.Cost>;
27271
- export const costRule: PropTypes.Requireable<io.flow.internal.v0.models.CostRule>;
27272
26827
  export const countryPickerCountry: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCountry>;
27273
26828
  export const countryPickerCountryData: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCountryData>;
27274
26829
  export const countryPickerCurrency: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCurrency>;
@@ -27300,6 +26855,7 @@ export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyV
27300
26855
  export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
27301
26856
  export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
27302
26857
  export const debugAccountingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugAccountingTransaction>;
26858
+ export const debugBankingDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugBankingDetails>;
27303
26859
  export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
27304
26860
  export const debugFulfillmentDelta: PropTypes.Requireable<io.flow.internal.v0.models.DebugFulfillmentDelta>;
27305
26861
  export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabel>;
@@ -27328,7 +26884,6 @@ export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal
27328
26884
  export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
27329
26885
  export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
27330
26886
  export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
27331
- export const details: PropTypes.Requireable<io.flow.internal.v0.models.Details>;
27332
26887
  export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
27333
26888
  export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
27334
26889
  export const dict: PropTypes.Requireable<io.flow.internal.v0.models.Dict>;
@@ -27362,27 +26917,15 @@ export const duties: PropTypes.Requireable<io.flow.internal.v0.models.Duties>;
27362
26917
  export const dutyCompoundExpression: PropTypes.Requireable<io.flow.internal.v0.models.DutyCompoundExpression>;
27363
26918
  export const dutyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.DutyInternalRate>;
27364
26919
  export const dutyRate: PropTypes.Requireable<io.flow.internal.v0.models.DutyRate>;
27365
- export const dutyRateBulkRequest: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateBulkRequest>;
27366
- export const dutyRateBulkResponse: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateBulkResponse>;
27367
- export const dutyRateContext: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateContext>;
27368
26920
  export const dutyRateItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateItemSummary>;
27369
- export const dutyRateRequest: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateRequest>;
27370
- export const dutyRateResponse: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateResponse>;
27371
26921
  export const dutyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateSummary>;
27372
- export const dutyRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateUpserted>;
27373
26922
  export const dutyRatesDataSummary: PropTypes.Requireable<io.flow.internal.v0.models.DutyRatesDataSummary>;
27374
26923
  export const dutyRatesPublishedV2: PropTypes.Requireable<io.flow.internal.v0.models.DutyRatesPublishedV2>;
27375
26924
  export const dutyRaw: PropTypes.Requireable<io.flow.internal.v0.models.DutyRaw>;
27376
- export const dutyRawBulkUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRawBulkUpserted>;
27377
- export const dutyRawUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRawUpserted>;
27378
26925
  export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.models.DutySimpleExpression>;
27379
26926
  export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
27380
26927
  export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
27381
26928
  export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
27382
- export const eldarItem: PropTypes.Requireable<io.flow.internal.v0.models.EldarItem>;
27383
- export const eldarItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemDeleted>;
27384
- export const eldarItemForm: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemForm>;
27385
- export const eldarItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemUpserted>;
27386
26929
  export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
27387
26930
  export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
27388
26931
  export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
@@ -27548,10 +27091,6 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
27548
27091
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
27549
27092
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
27550
27093
  export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
27551
- export const harinathItem: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItem>;
27552
- export const harinathItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemDeleted>;
27553
- export const harinathItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemForm>;
27554
- export const harinathItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemUpserted>;
27555
27094
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
27556
27095
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
27557
27096
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -27570,12 +27109,8 @@ export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0
27570
27109
  export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
27571
27110
  export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
27572
27111
  export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
27573
- export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequest>;
27574
- export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
27575
27112
  export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
27576
27113
  export const importFailed: PropTypes.Requireable<io.flow.internal.v0.models.ImportFailed>;
27577
- export const indexAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentDeleted>;
27578
- export const indexAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentUpserted>;
27579
27114
  export const installForm: PropTypes.Requireable<io.flow.internal.v0.models.InstallForm>;
27580
27115
  export const internalAdyenAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAdyenAuthorizationDetails>;
27581
27116
  export const internalAfterpayAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails>;
@@ -27619,7 +27154,6 @@ export const itemDimensionEstimateUpsertedV2: PropTypes.Requireable<io.flow.inte
27619
27154
  export const itemFilterResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterResponse>;
27620
27155
  export const itemFilterValueResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterValueResponse>;
27621
27156
  export const itemFilterValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterValuesForm>;
27622
- export const itemForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemForm>;
27623
27157
  export const itemFormImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ItemFormImportRequest>;
27624
27158
  export const itemHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonization>;
27625
27159
  export const itemHarmonizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationDeleted>;
@@ -27643,10 +27177,6 @@ export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
27643
27177
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
27644
27178
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
27645
27179
  export const klarnaPaymentMethodCategory: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaPaymentMethodCategory>;
27646
- export const konstantinItem: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItem>;
27647
- export const konstantinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemDeleted>;
27648
- export const konstantinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemForm>;
27649
- export const konstantinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemUpserted>;
27650
27180
  export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
27651
27181
  export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsForm>;
27652
27182
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
@@ -27780,14 +27310,11 @@ export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.intern
27780
27310
  export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
27781
27311
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
27782
27312
  export const marketsOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrderSummary>;
27783
- export const matiasItem: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItem>;
27784
- export const matiasItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemDeleted>;
27785
- export const matiasItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemForm>;
27786
- export const matiasItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemUpserted>;
27787
27313
  export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
27788
27314
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
27789
27315
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
27790
27316
  export const merchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDeleted>;
27317
+ export const merchantDetails: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDetails>;
27791
27318
  export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
27792
27319
  export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
27793
27320
  export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
@@ -27804,15 +27331,6 @@ export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
27804
27331
  export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
27805
27332
  export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
27806
27333
  export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
27807
- export const michaelyanItem: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItem>;
27808
- export const michaelyanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemDeleted>;
27809
- export const michaelyanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemForm>;
27810
- export const michaelyanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemUpserted>;
27811
- export const miljenkoItem: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItem>;
27812
- export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemDeleted>;
27813
- export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
27814
- export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
27815
- export const moneyPercentage: PropTypes.Requireable<io.flow.internal.v0.models.MoneyPercentage>;
27816
27334
  export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
27817
27335
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
27818
27336
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
@@ -27852,6 +27370,7 @@ export const orderCombinedShipmentDeleted: PropTypes.Requireable<io.flow.interna
27852
27370
  export const orderCombinedShipmentForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentForm>;
27853
27371
  export const orderCombinedShipmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentUpserted>;
27854
27372
  export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
27373
+ export const orderEditSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderEditSummary>;
27855
27374
  export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
27856
27375
  export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
27857
27376
  export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
@@ -28021,11 +27540,7 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
28021
27540
  export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
28022
27541
  export const pregeneratedQuote: PropTypes.Requireable<io.flow.internal.v0.models.PregeneratedQuote>;
28023
27542
  export const pregeneratedRequestEvent: PropTypes.Requireable<io.flow.internal.v0.models.PregeneratedRequestEvent>;
28024
- export const pricingIndicator: PropTypes.Requireable<io.flow.internal.v0.models.PricingIndicator>;
28025
- export const pricingIndicatorDynamo: PropTypes.Requireable<io.flow.internal.v0.models.PricingIndicatorDynamo>;
28026
- export const principal: PropTypes.Requireable<io.flow.internal.v0.models.Principal>;
28027
27543
  export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
28028
- export const processedPaymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.ProcessedPaymentSummary>;
28029
27544
  export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
28030
27545
  export const processingTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionDeleted>;
28031
27546
  export const processingTransactionReference: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionReference>;
@@ -28050,13 +27565,6 @@ export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flo
28050
27565
  export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
28051
27566
  export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
28052
27567
  export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
28053
- export const profit: PropTypes.Requireable<io.flow.internal.v0.models.Profit>;
28054
- export const profitShare: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShare>;
28055
- export const profitShareOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShareOrderReference>;
28056
- export const profitSharePlan: PropTypes.Requireable<io.flow.internal.v0.models.ProfitSharePlan>;
28057
- export const profitSplit: PropTypes.Requireable<io.flow.internal.v0.models.ProfitSplit>;
28058
- export const profitSplitRule: PropTypes.Requireable<io.flow.internal.v0.models.ProfitSplitRule>;
28059
- export const profitStream: PropTypes.Requireable<io.flow.internal.v0.models.ProfitStream>;
28060
27568
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
28061
27569
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
28062
27570
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
@@ -28202,6 +27710,8 @@ export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.
28202
27710
  export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
28203
27711
  export const restrictionStatusMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionStatusMetadata>;
28204
27712
  export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
27713
+ export const restrictionsDailyopsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsDeleted>;
27714
+ export const restrictionsDailyopsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsUpserted>;
28205
27715
  export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByDestinations>;
28206
27716
  export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
28207
27717
  export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
@@ -28215,20 +27725,14 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
28215
27725
  export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
28216
27726
  export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
28217
27727
  export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
28218
- export const revenue: PropTypes.Requireable<io.flow.internal.v0.models.Revenue>;
28219
27728
  export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
28220
27729
  export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
28221
27730
  export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
28222
- export const revenueRule: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRule>;
28223
27731
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
28224
27732
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
28225
27733
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
28226
27734
  export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
28227
27735
  export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
28228
- export const sanjayItem: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItem>;
28229
- export const sanjayItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemDeleted>;
28230
- export const sanjayItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemForm>;
28231
- export const sanjayItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemUpserted>;
28232
27736
  export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
28233
27737
  export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
28234
27738
  export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
@@ -28272,6 +27776,12 @@ export const shopifyGiftCardRedemptionForm: PropTypes.Requireable<io.flow.intern
28272
27776
  export const shopifyGiftCardReversal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversal>;
28273
27777
  export const shopifyGiftCardReversalForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversalForm>;
28274
27778
  export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGrantsCheck>;
27779
+ export const shopifyIncotermIncludes: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermIncludes>;
27780
+ export const shopifyIncotermSummaryErrorData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData>;
27781
+ export const shopifyIncotermSummaryErrorPublished: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished>;
27782
+ export const shopifyMarketsBestSellingProduct: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct>;
27783
+ export const shopifyMarketsBestSellingProductDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted>;
27784
+ export const shopifyMarketsBestSellingProductUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted>;
28275
27785
  export const shopifyMarketsDiscrepancy: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancy>;
28276
27786
  export const shopifyMarketsDiscrepancyData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData>;
28277
27787
  export const shopifyMarketsIncorporationCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry>;
@@ -28280,6 +27790,8 @@ export const shopifyMarketsMetricsDeleted: PropTypes.Requireable<io.flow.interna
28280
27790
  export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted>;
28281
27791
  export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
28282
27792
  export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
27793
+ export const shopifyMarketsOrderEditSummaryData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData>;
27794
+ export const shopifyMarketsOrderEditSummaryPublished: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished>;
28283
27795
  export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
28284
27796
  export const shopifyMarketsOrderVersionWithShopId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId>;
28285
27797
  export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
@@ -28356,10 +27868,6 @@ export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.Sh
28356
27868
  export const shopperLine: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLine>;
28357
27869
  export const shopperLines: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLines>;
28358
27870
  export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
28359
- export const shrutiDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItem>;
28360
- export const shrutiDemoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItemDeleted>;
28361
- export const shrutiDemoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItemForm>;
28362
- export const shrutiDemoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItemUpserted>;
28363
27871
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
28364
27872
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
28365
27873
  export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
@@ -28417,15 +27925,6 @@ export const submittedOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.m
28417
27925
  export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subscription>;
28418
27926
  export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
28419
27927
  export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.SupportedLabels>;
28420
- export const svitlanaItem: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItem>;
28421
- export const svitlanaItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItemDeleted>;
28422
- export const svitlanaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItemForm>;
28423
- export const svitlanaItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItemUpserted>;
28424
- export const svitlanaTest: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaTest>;
28425
- export const tamItem: PropTypes.Requireable<io.flow.internal.v0.models.TamItem>;
28426
- export const tamItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TamItemDeleted>;
28427
- export const tamItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TamItemForm>;
28428
- export const tamItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TamItemUpserted>;
28429
27928
  export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
28430
27929
  export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
28431
27930
  export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
@@ -28451,10 +27950,6 @@ export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.Taxo
28451
27950
  export const techOnboardingDescription: PropTypes.Requireable<io.flow.internal.v0.models.TechOnboardingDescription>;
28452
27951
  export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
28453
27952
  export const testForm: PropTypes.Requireable<io.flow.internal.v0.models.TestForm>;
28454
- export const thiagoItem: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItem>;
28455
- export const thiagoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItemDeleted>;
28456
- export const thiagoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItemForm>;
28457
- export const thiagoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItemUpserted>;
28458
27953
  export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPartner>;
28459
27954
  export const thirdPartyLogisticsPickUpTimeWindow: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow>;
28460
27955
  export const tieredFee: PropTypes.Requireable<io.flow.internal.v0.models.TieredFee>;
@@ -28472,6 +27967,9 @@ export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.in
28472
27967
  export const trackingAssuranceJob: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJob>;
28473
27968
  export const trackingAssuranceJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobDeleted>;
28474
27969
  export const trackingAssuranceJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobUpserted>;
27970
+ export const trackingCarrierReturnLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabel>;
27971
+ export const trackingCarrierReturnLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted>;
27972
+ export const trackingCarrierReturnLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted>;
28475
27973
  export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
28476
27974
  export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
28477
27975
  export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
@@ -28489,9 +27987,7 @@ export const trackingProcessingError: PropTypes.Requireable<io.flow.internal.v0.
28489
27987
  export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorDeleted>;
28490
27988
  export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
28491
27989
  export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
28492
- export const trackingRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequestUpserted>;
28493
27990
  export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
28494
- export const trackingResponseUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponseUpserted>;
28495
27991
  export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
28496
27992
  export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
28497
27993
  export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
@@ -28591,7 +28087,6 @@ export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.
28591
28087
  export const marketingGatewayFeedSource: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayFeedSource>;
28592
28088
  export const marketingGatewayItem: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayItem>;
28593
28089
  export const marketingGatewaySourceSummary: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewaySourceSummary>;
28594
- export const moneyRule: PropTypes.Requireable<io.flow.internal.v0.unions.MoneyRule>;
28595
28090
  export const optinPromptDisplay: PropTypes.Requireable<io.flow.internal.v0.unions.OptinPromptDisplay>;
28596
28091
  export const orderActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.OrderActionForm>;
28597
28092
  export const orderCancellationEvidence: PropTypes.Requireable<io.flow.internal.v0.unions.OrderCancellationEvidence>;