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

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.
@@ -944,6 +944,24 @@ declare namespace io.flow.payment.gateway.v0.unions {
944
944
  type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
945
945
  }
946
946
 
947
+ declare namespace io.flow.channel.currency.v0.models {
948
+ interface ChannelCurrencyPair {
949
+ readonly 'id': string;
950
+ readonly 'base': string;
951
+ readonly 'target': string;
952
+ readonly 'rate': io.flow.channel.currency.v0.models.ChannelCurrencyRate;
953
+ }
954
+
955
+ interface ChannelCurrencyRate {
956
+ readonly 'id': string;
957
+ readonly 'value': number;
958
+ }
959
+
960
+ interface ChannelRate {
961
+ readonly 'placeholder'?: string;
962
+ }
963
+ }
964
+
947
965
  declare namespace io.flow.error.v0.enums {
948
966
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
949
967
  }
@@ -2604,6 +2622,8 @@ declare namespace io.flow.stripe.v0.enums {
2604
2622
  type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
2605
2623
  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
2624
  type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
2625
+ type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
2626
+ 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
2627
  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
2628
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
2609
2629
  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 +3682,17 @@ declare namespace io.flow.stripe.v0.models {
3662
3682
  readonly 'previous_attributes'?: any/*object*/;
3663
3683
  }
3664
3684
 
3685
+ interface StripeEarlyFraudWarningEvent {
3686
+ readonly 'id': string;
3687
+ readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
3688
+ readonly 'actionable': boolean;
3689
+ readonly 'charge': string;
3690
+ readonly 'created': number;
3691
+ readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
3692
+ readonly 'livemode': boolean;
3693
+ readonly 'payment_intent'?: string;
3694
+ }
3695
+
3665
3696
  interface StripeError {
3666
3697
  readonly 'type': io.flow.stripe.v0.enums.ErrorType;
3667
3698
  readonly 'charge'?: string;
@@ -3866,6 +3897,7 @@ declare namespace io.flow.label.v0.enums {
3866
3897
  type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
3867
3898
  type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
3868
3899
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
3900
+ 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
3901
  type TrackingNumberType = 'flow' | 'carrier';
3870
3902
  }
3871
3903
 
@@ -4009,6 +4041,11 @@ declare namespace io.flow.label.v0.models {
4009
4041
  readonly 'required': boolean;
4010
4042
  }
4011
4043
 
4044
+ interface ShippingLabelError {
4045
+ readonly 'code': io.flow.label.v0.enums.ShippingLabelErrorCode;
4046
+ readonly 'messages': string[];
4047
+ }
4048
+
4012
4049
  interface ShippingLabelHopCostItemizedEstimate {
4013
4050
  readonly 'units': io.flow.trueup.v0.models.LabelUnits;
4014
4051
  readonly 'base': io.flow.trueup.v0.models.LabelBase;
@@ -5074,6 +5111,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5074
5111
  readonly 'destination': string;
5075
5112
  }
5076
5113
 
5114
+ interface ShopifyMarketsBestSellingProduct {
5115
+ readonly 'id': string;
5116
+ }
5117
+
5077
5118
  interface ShopifyMarketsDiscrepancy {
5078
5119
  readonly 'organization_id': string;
5079
5120
  readonly 'count': number;
@@ -7418,35 +7459,6 @@ declare namespace io.flow.shopify.markets.v0.models {
7418
7459
  }
7419
7460
  }
7420
7461
 
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
7462
  declare namespace io.flow.order.price.v0.enums {
7451
7463
  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
7464
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
@@ -7480,7 +7492,7 @@ declare namespace io.flow.channel.internal.v0.enums {
7480
7492
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
7481
7493
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
7482
7494
  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';
7495
+ 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
7496
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
7485
7497
  }
7486
7498
 
@@ -7527,6 +7539,7 @@ declare namespace io.flow.channel.internal.v0.models {
7527
7539
  readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
7528
7540
  readonly 'order_created_at'?: string;
7529
7541
  readonly 'order_updated_at'?: string;
7542
+ readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
7530
7543
  }
7531
7544
 
7532
7545
  interface ChannelOrderAcceptanceDetails {
@@ -7555,6 +7568,10 @@ declare namespace io.flow.channel.internal.v0.models {
7555
7568
  interface FlowChannelOrganization {
7556
7569
  readonly 'placeholder'?: string;
7557
7570
  }
7571
+
7572
+ interface OrderEditSummary {
7573
+ readonly 'edited_at': string;
7574
+ }
7558
7575
  }
7559
7576
 
7560
7577
  declare namespace io.flow.partner.v0.enums {
@@ -8278,6 +8295,10 @@ declare namespace io.flow.ftp.v0.models {
8278
8295
  }
8279
8296
  }
8280
8297
 
8298
+ declare namespace io.flow.shopify.markets.internal.event.v0.enums {
8299
+ type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
8300
+ }
8301
+
8281
8302
  declare namespace io.flow.shopify.markets.internal.event.v0.models {
8282
8303
  interface ChannelOrderSummaryDeleted {
8283
8304
  readonly 'discriminator': 'channel_order_summary_deleted';
@@ -8326,6 +8347,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
8326
8347
  readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
8327
8348
  }
8328
8349
 
8350
+ interface ShopifyIncotermIncludes {
8351
+ readonly 'duties': boolean;
8352
+ readonly 'taxes': boolean;
8353
+ }
8354
+
8355
+ interface ShopifyIncotermSummaryErrorData {
8356
+ readonly 'id': string;
8357
+ readonly 'shopify_order_id': string;
8358
+ readonly 'order_number': string;
8359
+ readonly 'configuration': io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
8360
+ readonly 'includes': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
8361
+ readonly 'reason': string;
8362
+ readonly 'order_submitted_at': string;
8363
+ }
8364
+
8365
+ interface ShopifyIncotermSummaryErrorPublished {
8366
+ readonly 'discriminator': 'shopify_incoterm_summary_error_published';
8367
+ readonly 'event_id': string;
8368
+ readonly 'timestamp': string;
8369
+ readonly 'organization': string;
8370
+ readonly 'data': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
8371
+ }
8372
+
8373
+ interface ShopifyMarketsBestSellingProductDeleted {
8374
+ readonly 'discriminator': 'shopify_markets_best_selling_product_deleted';
8375
+ readonly 'event_id': string;
8376
+ readonly 'timestamp': string;
8377
+ readonly 'organization': string;
8378
+ readonly 'id': string;
8379
+ }
8380
+
8381
+ interface ShopifyMarketsBestSellingProductUpserted {
8382
+ readonly 'discriminator': 'shopify_markets_best_selling_product_upserted';
8383
+ readonly 'event_id': string;
8384
+ readonly 'timestamp': string;
8385
+ readonly 'organization': string;
8386
+ readonly 'shopify_markets_best_selling_product': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
8387
+ }
8388
+
8329
8389
  interface ShopifyMarketsMetricsDeleted {
8330
8390
  readonly 'discriminator': 'shopify_markets_metrics_deleted';
8331
8391
  readonly 'event_id': string;
@@ -8427,7 +8487,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
8427
8487
  }
8428
8488
 
8429
8489
  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);
8490
+ 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.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted);
8431
8491
  }
8432
8492
 
8433
8493
  declare namespace io.flow.experience.v0.enums {
@@ -8440,6 +8500,7 @@ declare namespace io.flow.experience.v0.enums {
8440
8500
  type ExperienceCountryStatus = 'enabled' | 'disabled';
8441
8501
  type ExperiencePaymentMethodTag = 'display';
8442
8502
  type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
8503
+ type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
8443
8504
  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
8505
  type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
8445
8506
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
@@ -8949,6 +9010,17 @@ declare namespace io.flow.experience.v0.models {
8949
9010
  readonly 'attributes'?: Record<string, string>;
8950
9011
  }
8951
9012
 
9013
+ interface IncotermIncludes {
9014
+ readonly 'duties': boolean;
9015
+ readonly 'taxes': boolean;
9016
+ }
9017
+
9018
+ interface IncotermSummary {
9019
+ readonly 'configuration': io.flow.experience.v0.enums.IncotermConfiguration;
9020
+ readonly 'includes': io.flow.experience.v0.models.IncotermIncludes;
9021
+ readonly 'reason'?: string;
9022
+ }
9023
+
8952
9024
  interface ItemMargin {
8953
9025
  readonly 'id': string;
8954
9026
  readonly 'key': string;
@@ -9050,6 +9122,7 @@ declare namespace io.flow.experience.v0.models {
9050
9122
  readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
9051
9123
  readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
9052
9124
  readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
9125
+ readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
9053
9126
  }
9054
9127
 
9055
9128
  interface OrderAddress {
@@ -10177,30 +10250,6 @@ declare namespace io.flow.catalog.exclusion.v0.models {
10177
10250
  }
10178
10251
  }
10179
10252
 
10180
- declare namespace io.flow.session.context.v0.models {
10181
- interface Context {
10182
- readonly 'id': string;
10183
- readonly 'experiments': io.flow.session.context.v0.models.SessionContextExperiment[];
10184
- }
10185
-
10186
- interface ContextForm {
10187
- readonly 'experiments': io.flow.session.context.v0.models.SessionContextExperiment[];
10188
- }
10189
-
10190
- interface ContextReference {
10191
- readonly 'id': string;
10192
- }
10193
-
10194
- interface ExperimentVariant {
10195
- readonly 'key': string;
10196
- }
10197
-
10198
- interface SessionContextExperiment {
10199
- readonly 'key': string;
10200
- readonly 'variant'?: io.flow.session.context.v0.models.ExperimentVariant;
10201
- }
10202
- }
10203
-
10204
10253
  declare namespace io.flow.crypto.v0.enums {
10205
10254
  type ErrorType = 'authentication_error' | 'invalid_request_error' | 'rate_limit_error';
10206
10255
  type PaymentStatus = 'pending' | 'succeeded' | 'cancelled';
@@ -10729,6 +10778,7 @@ declare namespace io.flow.tracking.v0.models {
10729
10778
  readonly 'status': io.flow.tracking.v0.enums.TrackingStatus;
10730
10779
  readonly 'timestamp': string;
10731
10780
  readonly 'description'?: string;
10781
+ readonly 'aggregator_status_code'?: string;
10732
10782
  }
10733
10783
 
10734
10784
  interface TrackingEventForm {
@@ -13598,7 +13648,6 @@ declare namespace io.flow.session.v0.models {
13598
13648
  readonly 'language': io.flow.reference.v0.models.Language;
13599
13649
  readonly 'locale': io.flow.reference.v0.models.Locale;
13600
13650
  readonly 'experience': io.flow.experience.v0.models.ExperienceGeo;
13601
- readonly 'experiment'?: io.flow.session.v0.models.SessionExperiment;
13602
13651
  }
13603
13652
 
13604
13653
  interface OrganizationSession {
@@ -13614,8 +13663,6 @@ declare namespace io.flow.session.v0.models {
13614
13663
  readonly 'geo'?: io.flow.session.v0.models.SessionGeo;
13615
13664
  readonly 'experience'?: io.flow.experience.v0.models.ExperienceGeo;
13616
13665
  readonly 'format'?: io.flow.session.v0.models.SessionFormat;
13617
- readonly 'experiment'?: io.flow.session.v0.models.SessionExperiment;
13618
- readonly 'context'?: io.flow.session.context.v0.models.ContextReference;
13619
13666
  }
13620
13667
 
13621
13668
  interface OrganizationSessionAuthorization {
@@ -13633,25 +13680,6 @@ declare namespace io.flow.session.v0.models {
13633
13680
  readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
13634
13681
  }
13635
13682
 
13636
- interface SessionExperiment {
13637
- readonly 'key': string;
13638
- readonly 'variant'?: io.flow.session.v0.models.SessionExperimentVariant;
13639
- }
13640
-
13641
- interface SessionExperimentForm {
13642
- readonly 'key': string;
13643
- readonly 'variant'?: io.flow.session.v0.models.SessionExperimentVariantForm;
13644
- }
13645
-
13646
- interface SessionExperimentVariant {
13647
- readonly 'key': string;
13648
- readonly 'name': string;
13649
- }
13650
-
13651
- interface SessionExperimentVariantForm {
13652
- readonly 'key': string;
13653
- }
13654
-
13655
13683
  interface SessionExpirationConfig {
13656
13684
  readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
13657
13685
  readonly 'value': number;
@@ -13739,198 +13767,6 @@ declare namespace io.flow.billing.bank.account.v0.unions {
13739
13767
  type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta);
13740
13768
  }
13741
13769
 
13742
- declare namespace io.flow.experiment.internal.v0.enums {
13743
- type ExperimentDiscriminatorKey = 'experience' | 'feature';
13744
- type Scope = 'organization' | 'global';
13745
- type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
13746
- type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
13747
- type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
13748
- }
13749
-
13750
- declare namespace io.flow.experiment.internal.v0.models {
13751
- interface DailyExperimentResults {
13752
- readonly 'id': string;
13753
- readonly 'day': string;
13754
- readonly 'experiment_key': string;
13755
- readonly 'experiment_variant_key': string;
13756
- readonly 'visitor_count': number;
13757
- readonly 'visitors_with_transactions_count': number;
13758
- readonly 'conversion_rate': number;
13759
- readonly 'lower_bound': number;
13760
- readonly 'upper_bound': number;
13761
- readonly 'probability_of_being_best'?: number;
13762
- readonly 'currency'?: string;
13763
- readonly 'average_order_value'?: number;
13764
- readonly 'revenue_generated'?: number;
13765
- readonly 'total_order_count'?: number;
13766
- readonly 'conversion_rate_uplift'?: number;
13767
- readonly 'average_order_value_uplift'?: number;
13768
- readonly 'revenue_generated_uplift'?: number;
13769
- }
13770
-
13771
- interface ExperienceExperiment {
13772
- readonly 'discriminator': 'experience';
13773
- readonly 'id': string;
13774
- readonly 'key': string;
13775
- readonly 'name': string;
13776
- readonly 'description'?: string;
13777
- readonly 'status': io.flow.experiment.internal.v0.enums.Status;
13778
- readonly 'emails': string[];
13779
- readonly 'started_at'?: string;
13780
- readonly 'ended_at'?: string;
13781
- readonly 'variants': io.flow.experiment.internal.v0.models.ExperienceVariant[];
13782
- readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
13783
- readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
13784
- }
13785
-
13786
- interface ExperienceVariant {
13787
- readonly 'discriminator': 'experience_variant';
13788
- readonly 'experience': io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
13789
- readonly 'traffic_percentage': number;
13790
- readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
13791
- }
13792
-
13793
- interface ExperienceVariantForm {
13794
- readonly 'discriminator': 'experience';
13795
- readonly 'key': string;
13796
- readonly 'traffic_percentage': number;
13797
- }
13798
-
13799
- interface ExperienceVariantSummary {
13800
- readonly 'key': string;
13801
- readonly 'name'?: string;
13802
- }
13803
-
13804
- interface ExperimentForm {
13805
- readonly 'name': string;
13806
- readonly 'description'?: string;
13807
- readonly 'emails': string[];
13808
- readonly 'variants': io.flow.experiment.internal.v0.unions.VariantForm[];
13809
- readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
13810
- readonly 'session_query'?: string;
13811
- }
13812
-
13813
- interface ExperimentFormDefault {
13814
- readonly 'discriminator': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
13815
- readonly 'variants'?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
13816
- }
13817
-
13818
- interface ExperimentFormDefaultDiscriminator {
13819
- readonly 'key': io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
13820
- readonly 'values': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
13821
- }
13822
-
13823
- interface ExperimentFormDefaultDiscriminatorValue {
13824
- readonly 'key': string;
13825
- readonly 'name': string;
13826
- readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
13827
- }
13828
-
13829
- interface ExperimentFormDefaultVariant {
13830
- readonly 'key': string;
13831
- readonly 'name': string;
13832
- readonly 'traffic_percentage'?: number;
13833
- }
13834
-
13835
- interface ExperimentMilestone {
13836
- readonly 'id': string;
13837
- readonly 'experiment': io.flow.experiment.internal.v0.models.ExperimentReference;
13838
- readonly 'timestamp': string;
13839
- readonly 'description': string;
13840
- }
13841
-
13842
- interface ExperimentMilestoneForm {
13843
- readonly 'timestamp'?: string;
13844
- readonly 'description': string;
13845
- }
13846
-
13847
- interface ExperimentReference {
13848
- readonly 'key': string;
13849
- }
13850
-
13851
- interface ExperimentResults {
13852
- readonly 'id': string;
13853
- readonly 'experiment_key': string;
13854
- readonly 'experiment_variant_key': string;
13855
- readonly 'visitor_count': number;
13856
- readonly 'visitors_with_transactions_count': number;
13857
- readonly 'conversion_rate': number;
13858
- readonly 'lower_bound': number;
13859
- readonly 'upper_bound': number;
13860
- readonly 'probability_of_being_best'?: number;
13861
- readonly 'currency'?: string;
13862
- readonly 'average_order_value'?: number;
13863
- readonly 'revenue_generated'?: number;
13864
- readonly 'total_order_count'?: number;
13865
- readonly 'conversion_rate_uplift'?: number;
13866
- readonly 'average_order_value_uplift'?: number;
13867
- readonly 'revenue_generated_uplift'?: number;
13868
- }
13869
-
13870
- interface ExperimentResultsWithTimestamp {
13871
- readonly 'timestamp': string;
13872
- readonly 'results': io.flow.experiment.internal.v0.models.ExperimentResults[];
13873
- }
13874
-
13875
- interface ExperimentSessionQueryForm {
13876
- readonly 'session_query'?: string;
13877
- }
13878
-
13879
- interface ExperimentVersion {
13880
- readonly 'id': string;
13881
- readonly 'timestamp': string;
13882
- readonly 'type': io.flow.common.v0.enums.ChangeType;
13883
- readonly 'experiment': io.flow.experiment.internal.v0.unions.Experiment;
13884
- }
13885
-
13886
- interface FeatureExperiment {
13887
- readonly 'discriminator': 'feature';
13888
- readonly 'id': string;
13889
- readonly 'key': string;
13890
- readonly 'name': string;
13891
- readonly 'description'?: string;
13892
- readonly 'status': io.flow.experiment.internal.v0.enums.Status;
13893
- readonly 'emails': string[];
13894
- readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
13895
- readonly 'started_at'?: string;
13896
- readonly 'ended_at'?: string;
13897
- readonly 'variants': io.flow.experiment.internal.v0.models.FeatureVariant[];
13898
- readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
13899
- readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
13900
- readonly 'session_query'?: string;
13901
- }
13902
-
13903
- interface FeatureValueReference {
13904
- readonly 'feature_key': string;
13905
- readonly 'value': string;
13906
- }
13907
-
13908
- interface FeatureVariant {
13909
- readonly 'discriminator': 'feature_variant';
13910
- readonly 'value': io.flow.experiment.internal.v0.models.FeatureVariantSummary;
13911
- readonly 'traffic_percentage': number;
13912
- readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
13913
- }
13914
-
13915
- interface FeatureVariantForm {
13916
- readonly 'discriminator': 'feature';
13917
- readonly 'key': string;
13918
- readonly 'traffic_percentage': number;
13919
- }
13920
-
13921
- interface FeatureVariantSummary {
13922
- readonly 'key': string;
13923
- readonly 'feature_value': io.flow.experiment.internal.v0.models.FeatureValueReference;
13924
- readonly 'name'?: string;
13925
- }
13926
- }
13927
-
13928
- declare namespace io.flow.experiment.internal.v0.unions {
13929
- type Experiment = (io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment);
13930
- type Variant = (io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant);
13931
- type VariantForm = (io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm);
13932
- }
13933
-
13934
13770
  declare namespace io.flow.internal.v0.enums {
13935
13771
  type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
13936
13772
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
@@ -13941,15 +13777,16 @@ declare namespace io.flow.internal.v0.enums {
13941
13777
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
13942
13778
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
13943
13779
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
13780
+ type BankAccountStatus = 'on_hold' | 'not_on_hold';
13944
13781
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
13945
13782
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
13946
13783
  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';
13947
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
13784
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
13948
13785
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
13949
13786
  type BillingTransactionStatus = 'pending_proof' | 'posted';
13950
13787
  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
13788
  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';
13789
+ type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
13953
13790
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
13954
13791
  type CarrierChargeType = 'label' | 'tax' | 'other';
13955
13792
  type CarrierFileType = 'freight' | 'tax';
@@ -13960,7 +13797,7 @@ declare namespace io.flow.internal.v0.enums {
13960
13797
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
13961
13798
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
13962
13799
  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';
13800
+ 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
13801
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
13965
13802
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
13966
13803
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
@@ -13986,7 +13823,6 @@ declare namespace io.flow.internal.v0.enums {
13986
13823
  type ContentStatus = 'draft' | 'live' | 'archived';
13987
13824
  type ContentType = 'text' | 'html';
13988
13825
  type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
13989
- type CostType = 'payment_processing' | 'fx' | 'negative_balance' | 'solution' | 'hosting' | 'duty_guarantee' | 'transfer' | 'fraud';
13990
13826
  type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
13991
13827
  type DebugAccountingTransactionType = 'fulfillment';
13992
13828
  type DeliveredDutyOptionMessageType = 'warning' | 'notification';
@@ -14011,10 +13847,9 @@ declare namespace io.flow.internal.v0.enums {
14011
13847
  type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
14012
13848
  type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
14013
13849
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
14014
- type EldarItemType = 'digital' | 'physical';
14015
13850
  type EmptyAttribute = 'irrelevant';
14016
13851
  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';
13852
+ 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' | '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_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
13853
  type ExperienceImportType = 'experience_with_settings';
14019
13854
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
14020
13855
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -14033,7 +13868,6 @@ declare namespace io.flow.internal.v0.enums {
14033
13868
  type FtpProtocol = 'sftp' | 'ftp';
14034
13869
  type GoogleAnalyticsPlugin = 'ec';
14035
13870
  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
13871
  type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
14038
13872
  type HttpMethod = 'get' | 'post';
14039
13873
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
@@ -14042,7 +13876,6 @@ declare namespace io.flow.internal.v0.enums {
14042
13876
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
14043
13877
  type ItemType = 'standard' | 'multi_product';
14044
13878
  type KeywordType = 'positive' | 'negative';
14045
- type KonstantinItemType = 'physical' | 'digital';
14046
13879
  type LabelBillingStrategy = 'quote' | 'carrier';
14047
13880
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
14048
13881
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
@@ -14065,10 +13898,6 @@ declare namespace io.flow.internal.v0.enums {
14065
13898
  type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
14066
13899
  type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
14067
13900
  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
13901
  type MixedBagWeight = '0' | '1' | '2';
14073
13902
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
14074
13903
  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 +13925,15 @@ declare namespace io.flow.internal.v0.enums {
14096
13925
  type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
14097
13926
  type OutputStyle = 'flow' | 'shopify_p1';
14098
13927
  type Owner = 'flow' | 'organization';
14099
- type Party = 'merchant' | 'channel_partner' | 'global_e';
14100
13928
  type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
14101
13929
  type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
14102
13930
  type PaymentTerm = 'net7' | 'net15' | 'net30';
14103
13931
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
14104
13932
  type PriceSelector = 'minimum' | 'maximum';
14105
- type PricingIndicatorStatus = 'complete' | 'in_progress';
14106
- type PrincipalType = 'total_order_value' | 'product_order_value' | 'label_value';
14107
13933
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
14108
13934
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
14109
13935
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
14110
13936
  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
13937
  type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
14113
13938
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
14114
13939
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
@@ -14130,14 +13955,12 @@ declare namespace io.flow.internal.v0.enums {
14130
13955
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
14131
13956
  type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
14132
13957
  type RevenueRecordType = 'pending' | 'sales' | 'refund';
14133
- type RevenueType = 'mor' | 'fx' | 'duty_assurance';
14134
13958
  type RiskCheck = 'three_d_secure';
14135
13959
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
14136
- type SanjayItemType = 'digital' | 'physical';
14137
- type ServiceName = 'catalog' | 'demandware' | 'metric';
14138
13960
  type SessionCountryStatus = 'enabled' | 'disabled';
14139
13961
  type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
14140
13962
  type ShopifyGrantStatus = 'pass' | 'fail';
13963
+ type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
14141
13964
  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
13965
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
14143
13966
  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,24 +13972,21 @@ declare namespace io.flow.internal.v0.enums {
14149
13972
  type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
14150
13973
  type ShopifyPromotionStatus = 'active' | 'inactive';
14151
13974
  type ShopifyService = 'payment' | 'duty_tax_calculator';
14152
- type ShrutiDemoType = 'digital' | 'physical';
14153
13975
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
14154
13976
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
14155
13977
  type SnoozeSourceType = 'task' | 'invariant';
13978
+ type SourceTypeFilter = 'organization' | 'channel';
14156
13979
  type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
14157
13980
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
14158
13981
  type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
14159
13982
  type SubscriptionFrequency = 'yearly' | 'monthly';
14160
13983
  type SuggestionAction = 'accept' | 'validate' | 'review';
14161
- type SvitlanaType = 'physical' | 'digital';
14162
- type TamItemType = 'physical' | 'digital';
14163
13984
  type TariffEligibilityType = 'rex';
14164
13985
  type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
14165
13986
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
14166
13987
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
14167
13988
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
14168
13989
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
14169
- type ThiagoItemType = 'digital' | 'physical';
14170
13990
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
14171
13991
  type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
14172
13992
  type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
@@ -14337,8 +14157,6 @@ declare namespace io.flow.internal.v0.models {
14337
14157
  readonly 'enable_fee_reversals': boolean;
14338
14158
  readonly 'record_reason_for_transactions_pending_payout': boolean;
14339
14159
  readonly 'enable_negative_debits': boolean;
14340
- readonly 'setup_completed_at'?: string;
14341
- readonly 'cohort'?: io.flow.internal.v0.enums.MerchantCohort;
14342
14160
  }
14343
14161
 
14344
14162
  interface AccountSettingsDeleted {
@@ -14920,12 +14738,6 @@ declare namespace io.flow.internal.v0.models {
14920
14738
  readonly 'count': number;
14921
14739
  }
14922
14740
 
14923
- interface AlgoliaIndexAssignment {
14924
- readonly 'id': string;
14925
- readonly 'name': string;
14926
- readonly 'application_id': string;
14927
- }
14928
-
14929
14741
  interface AllItemsExport {
14930
14742
  readonly 'discriminator': 'all_items_export';
14931
14743
  readonly 'event_id': string;
@@ -15049,6 +14861,13 @@ declare namespace io.flow.internal.v0.models {
15049
14861
  readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
15050
14862
  }
15051
14863
 
14864
+ interface BankAccount {
14865
+ readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
14866
+ readonly 'hold_created_at'?: string;
14867
+ readonly 'updated_at': string;
14868
+ readonly 'last4': string;
14869
+ }
14870
+
15052
14871
  interface BankAccountReference {
15053
14872
  readonly 'id': string;
15054
14873
  }
@@ -15976,6 +15795,10 @@ declare namespace io.flow.internal.v0.models {
15976
15795
  readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
15977
15796
  }
15978
15797
 
15798
+ interface ChannelCurrencyPairInternal {
15799
+ readonly 'channel_currency_pair': io.flow.channel.currency.v0.models.ChannelCurrencyPair;
15800
+ }
15801
+
15979
15802
  interface ChannelCurrencySetting {
15980
15803
  readonly 'id': string;
15981
15804
  readonly 'channel_id': string;
@@ -16072,6 +15895,7 @@ declare namespace io.flow.internal.v0.models {
16072
15895
  readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
16073
15896
  readonly 'order_created_at'?: string;
16074
15897
  readonly 'order_updated_at'?: string;
15898
+ readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
16075
15899
  }
16076
15900
 
16077
15901
  interface ChannelOrderAcceptanceDeleted {
@@ -16751,13 +16575,6 @@ declare namespace io.flow.internal.v0.models {
16751
16575
  readonly 'added_on': string;
16752
16576
  }
16753
16577
 
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
16578
  interface ColmItemForm {
16762
16579
  readonly 'number': string;
16763
16580
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -16766,13 +16583,6 @@ declare namespace io.flow.internal.v0.models {
16766
16583
  readonly 'added_on': string;
16767
16584
  }
16768
16585
 
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
16586
  interface CommercialInvoiceComparison {
16777
16587
  readonly 'urls': string[];
16778
16588
  }
@@ -16917,17 +16727,6 @@ declare namespace io.flow.internal.v0.models {
16917
16727
  readonly 'description'?: string;
16918
16728
  }
16919
16729
 
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
16730
  interface CountryPickerCountry {
16932
16731
  readonly 'iso_3166_2': string;
16933
16732
  readonly 'iso_3166_3': string;
@@ -17034,6 +16833,7 @@ declare namespace io.flow.internal.v0.models {
17034
16833
  readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
17035
16834
  readonly 'created_at': string;
17036
16835
  readonly 'updated_at': string;
16836
+ readonly 'posted_at'?: string;
17037
16837
  }
17038
16838
 
17039
16839
  interface CurrencyInternalRate {
@@ -17168,6 +16968,11 @@ declare namespace io.flow.internal.v0.models {
17168
16968
  readonly 'transaction_id': string;
17169
16969
  }
17170
16970
 
16971
+ interface DebugBankingDetails {
16972
+ readonly 'merchant': io.flow.internal.v0.models.MerchantDetails;
16973
+ readonly 'account': io.flow.internal.v0.models.BankAccount;
16974
+ }
16975
+
17171
16976
  interface DebugDetails {
17172
16977
  readonly 'labels': io.flow.internal.v0.models.DebugLabel[];
17173
16978
  readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
@@ -17209,6 +17014,7 @@ declare namespace io.flow.internal.v0.models {
17209
17014
  readonly 'debug': io.flow.internal.v0.models.DebugDetails;
17210
17015
  readonly 'transactions': io.flow.billing.v0.models.Transaction[];
17211
17016
  readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
17017
+ readonly 'banking': io.flow.internal.v0.models.DebugBankingDetails;
17212
17018
  }
17213
17019
 
17214
17020
  interface DebugOrderTransactionForm {
@@ -17350,13 +17156,6 @@ declare namespace io.flow.internal.v0.models {
17350
17156
  readonly 'destination': io.flow.common.v0.models.Address;
17351
17157
  }
17352
17158
 
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
17159
  interface Dhl {
17361
17160
  readonly 'discriminator': 'dhl';
17362
17161
  readonly 'export_account_number': string;
@@ -17438,8 +17237,10 @@ declare namespace io.flow.internal.v0.models {
17438
17237
  readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
17439
17238
  readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
17440
17239
  readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
17240
+ readonly 'payment_method'?: io.flow.reference.v0.models.PaymentMethod;
17441
17241
  readonly 'issued_at': string;
17442
17242
  readonly 'expires_at'?: string;
17243
+ readonly 'defended_at'?: string;
17443
17244
  readonly 'created_at': string;
17444
17245
  readonly 'updated_at'?: string;
17445
17246
  }
@@ -17523,6 +17324,7 @@ declare namespace io.flow.internal.v0.models {
17523
17324
  interface DisputeRecord {
17524
17325
  readonly 'id': string;
17525
17326
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
17327
+ readonly 'authorization': io.flow.internal.v0.models.ReportingAuthorizationReference;
17526
17328
  readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
17527
17329
  readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
17528
17330
  readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
@@ -17603,65 +17405,17 @@ declare namespace io.flow.internal.v0.models {
17603
17405
  readonly 'created_at': string;
17604
17406
  }
17605
17407
 
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
17408
  interface DutyRateItemSummary {
17630
17409
  readonly 'number': string;
17631
17410
  readonly 'product_id'?: string;
17632
17411
  }
17633
17412
 
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
17413
  interface DutyRateSummary {
17651
17414
  readonly 'tariff_code': string;
17652
17415
  readonly 'origin': string;
17653
17416
  readonly 'destination': string;
17654
17417
  }
17655
17418
 
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
17419
  interface DutyRatesDataSummary {
17666
17420
  readonly 'id': string;
17667
17421
  readonly 'item_summary': io.flow.internal.v0.models.DutyRateItemSummary;
@@ -17690,21 +17444,6 @@ declare namespace io.flow.internal.v0.models {
17690
17444
  readonly 'created_at': string;
17691
17445
  }
17692
17446
 
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
17447
  interface DutySimpleExpression {
17709
17448
  readonly 'discriminator': 'duty_simple_expression';
17710
17449
  readonly 'type': io.flow.internal.v0.enums.DutySimpleExpressionType;
@@ -17739,37 +17478,6 @@ declare namespace io.flow.internal.v0.models {
17739
17478
  readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
17740
17479
  }
17741
17480
 
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
17481
  interface EmailForm {
17774
17482
  readonly 'to': string[];
17775
17483
  readonly 'cc'?: string[];
@@ -18624,7 +18332,6 @@ declare namespace io.flow.internal.v0.models {
18624
18332
  readonly 'payment_authorization_id'?: string;
18625
18333
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18626
18334
  readonly 'created_at'?: string;
18627
- readonly 'has_provider_link'?: boolean;
18628
18335
  }
18629
18336
 
18630
18337
  interface FraudReviewAuthorization {
@@ -18643,7 +18350,6 @@ declare namespace io.flow.internal.v0.models {
18643
18350
  readonly 'payment_authorization_id'?: string;
18644
18351
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18645
18352
  readonly 'created_at'?: string;
18646
- readonly 'has_provider_link'?: boolean;
18647
18353
  }
18648
18354
 
18649
18355
  interface FraudReviewAuthorizationDecision {
@@ -19129,37 +18835,6 @@ declare namespace io.flow.internal.v0.models {
19129
18835
  readonly 'tracker_id': string;
19130
18836
  }
19131
18837
 
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
18838
  interface HarmonizationClassificationStatisticsData {
19164
18839
  readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
19165
18840
  }
@@ -19287,21 +18962,6 @@ declare namespace io.flow.internal.v0.models {
19287
18962
  readonly 'description': string;
19288
18963
  }
19289
18964
 
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
18965
  interface ImportCompleted {
19306
18966
  readonly 'discriminator': 'import_completed';
19307
18967
  readonly 'event_id': string;
@@ -19320,22 +18980,6 @@ declare namespace io.flow.internal.v0.models {
19320
18980
  readonly 'error': string;
19321
18981
  }
19322
18982
 
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
18983
  interface InstallForm {
19340
18984
  readonly 'token': string;
19341
18985
  }
@@ -19624,22 +19268,6 @@ declare namespace io.flow.internal.v0.models {
19624
19268
  readonly 'dimensions': io.flow.ratecard.v0.models.EstimatedDimensions;
19625
19269
  }
19626
19270
 
19627
- interface ItemDimensionEstimateDeletedV2 {
19628
- readonly 'discriminator': 'item_dimension_estimate_deleted_v2';
19629
- readonly 'event_id': string;
19630
- readonly 'timestamp': string;
19631
- readonly 'organization': string;
19632
- readonly 'id': string;
19633
- }
19634
-
19635
- interface ItemDimensionEstimateUpsertedV2 {
19636
- readonly 'discriminator': 'item_dimension_estimate_upserted_v2';
19637
- readonly 'event_id': string;
19638
- readonly 'timestamp': string;
19639
- readonly 'organization': string;
19640
- readonly 'estimate': io.flow.internal.v0.models.ItemDimensionEstimate;
19641
- }
19642
-
19643
19271
  interface ItemFilterResponse {
19644
19272
  readonly 'filter': string;
19645
19273
  readonly 'responses': io.flow.internal.v0.models.ItemFilterValueResponse[];
@@ -19655,10 +19283,6 @@ declare namespace io.flow.internal.v0.models {
19655
19283
  readonly 'values': string[];
19656
19284
  }
19657
19285
 
19658
- interface ItemForm {
19659
- readonly 'amount'?: number;
19660
- }
19661
-
19662
19286
  interface ItemFormImportRequest {
19663
19287
  readonly 'discriminator': 'item_form_import_request';
19664
19288
  readonly 'event_id': string;
@@ -19840,37 +19464,6 @@ declare namespace io.flow.internal.v0.models {
19840
19464
  readonly 'descriptive_asset_urls'?: string;
19841
19465
  }
19842
19466
 
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
19467
  interface LabProjectSettings {
19875
19468
  readonly 'id': string;
19876
19469
  readonly 'flow_lab_project_key': string;
@@ -19934,7 +19527,6 @@ declare namespace io.flow.internal.v0.models {
19934
19527
 
19935
19528
  interface LabelGenerationSettings {
19936
19529
  readonly 'id': string;
19937
- readonly 'item_identifier'?: string;
19938
19530
  readonly 'auto_generate_query'?: string;
19939
19531
  readonly 'commercial_invoice_only_query'?: string;
19940
19532
  }
@@ -20888,37 +20480,6 @@ declare namespace io.flow.internal.v0.models {
20888
20480
  readonly 'id': string;
20889
20481
  }
20890
20482
 
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
20483
  interface Merchant {
20923
20484
  readonly 'id': string;
20924
20485
  readonly 'account': io.flow.internal.v0.models.AccountReference;
@@ -20941,6 +20502,10 @@ declare namespace io.flow.internal.v0.models {
20941
20502
  readonly 'id': string;
20942
20503
  }
20943
20504
 
20505
+ interface MerchantDetails {
20506
+ readonly 'name': string;
20507
+ }
20508
+
20944
20509
  interface MerchantFees {
20945
20510
  readonly 'duty_guarantee': number;
20946
20511
  readonly 'mor': number;
@@ -21068,73 +20633,6 @@ declare namespace io.flow.internal.v0.models {
21068
20633
  readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
21069
20634
  }
21070
20635
 
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
20636
  interface NegativeDebitMetrics {
21139
20637
  readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
21140
20638
  readonly 'first_attempt': io.flow.internal.v0.models.AttemptStatistics;
@@ -21422,6 +20920,10 @@ declare namespace io.flow.internal.v0.models {
21422
20920
  readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
21423
20921
  }
21424
20922
 
20923
+ interface OrderEditSummary {
20924
+ readonly 'edited_at': string;
20925
+ }
20926
+
21425
20927
  interface OrderFulfillmentDeleted {
21426
20928
  readonly 'discriminator': 'order_fulfillment_deleted';
21427
20929
  readonly 'event_id': string;
@@ -22079,6 +21581,7 @@ declare namespace io.flow.internal.v0.models {
22079
21581
  readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
22080
21582
  readonly 'created_at': string;
22081
21583
  readonly 'updated_at': string;
21584
+ readonly 'posted_at'?: string;
22082
21585
  }
22083
21586
 
22084
21587
  interface OtherRecordAccount {
@@ -22177,7 +21680,7 @@ declare namespace io.flow.internal.v0.models {
22177
21680
  }
22178
21681
 
22179
21682
  interface OtherRecordOrderSummary {
22180
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21683
+ readonly 'organization': io.flow.internal.v0.models.OtherRecordOrganizationSummary;
22181
21684
  readonly 'number': string;
22182
21685
  readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
22183
21686
  }
@@ -22186,6 +21689,11 @@ declare namespace io.flow.internal.v0.models {
22186
21689
  readonly 'shopify_order_id'?: string;
22187
21690
  }
22188
21691
 
21692
+ interface OtherRecordOrganizationSummary {
21693
+ readonly 'id': string;
21694
+ readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
21695
+ }
21696
+
22189
21697
  interface OtherRecordUpserted {
22190
21698
  readonly 'discriminator': 'other_record_upserted';
22191
21699
  readonly 'event_id': string;
@@ -22763,52 +22271,11 @@ declare namespace io.flow.internal.v0.models {
22763
22271
  readonly 'quote_request': io.flow.internal.v0.models.QuoteRequest;
22764
22272
  }
22765
22273
 
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
22274
  interface PrioritizedCenterReference {
22798
22275
  readonly 'center_key': string;
22799
22276
  readonly 'position': number;
22800
22277
  }
22801
22278
 
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
22279
  interface ProcessingTransaction {
22813
22280
  readonly 'discriminator': 'processing_transaction';
22814
22281
  readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
@@ -23014,49 +22481,6 @@ declare namespace io.flow.internal.v0.models {
23014
22481
  readonly 'quantity': number;
23015
22482
  }
23016
22483
 
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
22484
  interface ProofOfPostingExternallyFulfilled {
23061
22485
  readonly 'discriminator': 'external';
23062
22486
  readonly 'external_fulfillment_proof_id': string;
@@ -23088,6 +22512,32 @@ declare namespace io.flow.internal.v0.models {
23088
22512
  readonly 'created_at': string;
23089
22513
  }
23090
22514
 
22515
+ interface PspDistribution {
22516
+ readonly 'processor': io.flow.internal.v0.enums.Processor;
22517
+ readonly 'percentage': number;
22518
+ }
22519
+
22520
+ interface PspRoutingDistribution {
22521
+ readonly 'name': string;
22522
+ readonly 'environment'?: io.flow.common.v0.enums.Environment;
22523
+ readonly 'payment_methods': string[];
22524
+ readonly 'countries': string[];
22525
+ readonly 'currencies': string[];
22526
+ readonly 'region'?: string;
22527
+ readonly 'mcc'?: string;
22528
+ readonly 'is_returning_card'?: boolean;
22529
+ readonly 'priority': number;
22530
+ readonly 'distributions': io.flow.internal.v0.models.PspDistribution[];
22531
+ }
22532
+
22533
+ interface PspRoutingDistributionRevision {
22534
+ readonly 'id': string;
22535
+ readonly 'description': string;
22536
+ readonly 'psp_routing_distributions': io.flow.internal.v0.models.PspRoutingDistribution[];
22537
+ readonly 'created_at': string;
22538
+ readonly 'updated_at': string;
22539
+ }
22540
+
23091
22541
  interface PublicHub {
23092
22542
  readonly 'id': string;
23093
22543
  readonly 'code': string;
@@ -23610,6 +23060,10 @@ declare namespace io.flow.internal.v0.models {
23610
23060
  readonly 'account_number': string;
23611
23061
  }
23612
23062
 
23063
+ interface ReportFilter {
23064
+ readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
23065
+ }
23066
+
23613
23067
  interface ReportForm {
23614
23068
  readonly 'type': io.flow.internal.v0.enums.ReportType;
23615
23069
  readonly 'from'?: string;
@@ -23618,6 +23072,7 @@ declare namespace io.flow.internal.v0.models {
23618
23072
  readonly 'organizations'?: io.flow.internal.v0.models.ReportOrganizationReference[];
23619
23073
  readonly 'orders'?: io.flow.internal.v0.models.ReportOrderReference[];
23620
23074
  readonly 'recipients'?: string[];
23075
+ readonly 'filter'?: io.flow.internal.v0.models.ReportFilter;
23621
23076
  }
23622
23077
 
23623
23078
  interface ReportMerchant {
@@ -24149,6 +23604,21 @@ declare namespace io.flow.internal.v0.models {
24149
23604
  readonly 'num_pending_decisions_transacting': number;
24150
23605
  }
24151
23606
 
23607
+ interface RestrictionsDailyopsDeleted {
23608
+ readonly 'discriminator': 'restrictions_dailyops_deleted';
23609
+ readonly 'event_id': string;
23610
+ readonly 'timestamp': string;
23611
+ readonly 'organization': string;
23612
+ readonly 'id': string;
23613
+ }
23614
+
23615
+ interface RestrictionsDailyopsUpserted {
23616
+ readonly 'discriminator': 'restrictions_dailyops_upserted';
23617
+ readonly 'event_id': string;
23618
+ readonly 'timestamp': string;
23619
+ readonly 'restrictions_dailyops': io.flow.internal.v0.models.RestrictionsDailyops;
23620
+ }
23621
+
24152
23622
  interface ResyncByDestinations {
24153
23623
  readonly 'destinations': io.flow.reference.v0.models.Country[];
24154
23624
  }
@@ -24235,11 +23705,6 @@ declare namespace io.flow.internal.v0.models {
24235
23705
  readonly 'refund': io.flow.payment.v0.models.RefundReference;
24236
23706
  }
24237
23707
 
24238
- interface Revenue {
24239
- readonly 'source': io.flow.internal.v0.models.RevenueRule;
24240
- readonly 'amount': number;
24241
- }
24242
-
24243
23708
  interface RevenueRecord {
24244
23709
  readonly 'id': string;
24245
23710
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
@@ -24273,11 +23738,6 @@ declare namespace io.flow.internal.v0.models {
24273
23738
  readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
24274
23739
  }
24275
23740
 
24276
- interface RevenueRule {
24277
- readonly 'type': io.flow.internal.v0.enums.RevenueType;
24278
- readonly 'rule': io.flow.internal.v0.unions.MoneyRule;
24279
- }
24280
-
24281
23741
  interface RoutingAccount {
24282
23742
  readonly 'discriminator': 'routing_account';
24283
23743
  readonly 'processor': io.flow.internal.v0.enums.Processor;
@@ -24304,37 +23764,6 @@ declare namespace io.flow.internal.v0.models {
24304
23764
  readonly 'requested_by': string;
24305
23765
  }
24306
23766
 
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
23767
  interface ScheduledPayment {
24339
23768
  readonly 'payment': io.flow.internal.v0.models.ReportPayment;
24340
23769
  readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -24404,13 +23833,6 @@ declare namespace io.flow.internal.v0.models {
24404
23833
  readonly 'status': io.flow.experience.v0.enums.ExperienceStatus;
24405
23834
  }
24406
23835
 
24407
- interface SearchExperimentSummary {
24408
- readonly 'discriminator': 'search_experiment_summary';
24409
- readonly 'key': string;
24410
- readonly 'name': string;
24411
- readonly 'status': io.flow.experiment.internal.v0.enums.Status;
24412
- }
24413
-
24414
23836
  interface SearchItemSummary {
24415
23837
  readonly 'discriminator': 'search_item_summary';
24416
23838
  readonly 'number': string;
@@ -24603,6 +24025,49 @@ declare namespace io.flow.internal.v0.models {
24603
24025
  readonly 'placeholder': string;
24604
24026
  }
24605
24027
 
24028
+ interface ShopifyIncotermIncludes {
24029
+ readonly 'duties': boolean;
24030
+ readonly 'taxes': boolean;
24031
+ }
24032
+
24033
+ interface ShopifyIncotermSummaryErrorData {
24034
+ readonly 'id': string;
24035
+ readonly 'shopify_order_id': string;
24036
+ readonly 'order_number': string;
24037
+ readonly 'configuration': io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
24038
+ readonly 'includes': io.flow.internal.v0.models.ShopifyIncotermIncludes;
24039
+ readonly 'reason': string;
24040
+ readonly 'order_submitted_at': string;
24041
+ }
24042
+
24043
+ interface ShopifyIncotermSummaryErrorPublished {
24044
+ readonly 'discriminator': 'shopify_incoterm_summary_error_published';
24045
+ readonly 'event_id': string;
24046
+ readonly 'timestamp': string;
24047
+ readonly 'organization': string;
24048
+ readonly 'data': io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
24049
+ }
24050
+
24051
+ interface ShopifyMarketsBestSellingProduct {
24052
+ readonly 'id': string;
24053
+ }
24054
+
24055
+ interface ShopifyMarketsBestSellingProductDeleted {
24056
+ readonly 'discriminator': 'shopify_markets_best_selling_product_deleted';
24057
+ readonly 'event_id': string;
24058
+ readonly 'timestamp': string;
24059
+ readonly 'organization': string;
24060
+ readonly 'id': string;
24061
+ }
24062
+
24063
+ interface ShopifyMarketsBestSellingProductUpserted {
24064
+ readonly 'discriminator': 'shopify_markets_best_selling_product_upserted';
24065
+ readonly 'event_id': string;
24066
+ readonly 'timestamp': string;
24067
+ readonly 'organization': string;
24068
+ readonly 'shopify_markets_best_selling_product': io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
24069
+ }
24070
+
24606
24071
  interface ShopifyMarketsDiscrepancy {
24607
24072
  readonly 'organization_id': string;
24608
24073
  readonly 'count': number;
@@ -25171,37 +24636,6 @@ declare namespace io.flow.internal.v0.models {
25171
24636
  readonly 'total': number;
25172
24637
  }
25173
24638
 
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
24639
  interface SimpleAccountReference {
25206
24640
  readonly 'id': string;
25207
24641
  }
@@ -25665,70 +25099,6 @@ declare namespace io.flow.internal.v0.models {
25665
25099
  readonly 'values': io.flow.internal.v0.models.LabelAliases[];
25666
25100
  }
25667
25101
 
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
25102
  interface TariffCodeDuty {
25733
25103
  readonly 'tariff_code': string;
25734
25104
  readonly 'duties': Record<string, io.flow.internal.v0.models.Duties>;
@@ -25921,37 +25291,6 @@ declare namespace io.flow.internal.v0.models {
25921
25291
  readonly 'name': string;
25922
25292
  }
25923
25293
 
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
25294
  interface ThirdPartyLogisticsPartner {
25956
25295
  readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
25957
25296
  readonly 'warehouse_url'?: string;
@@ -26087,6 +25426,31 @@ declare namespace io.flow.internal.v0.models {
26087
25426
  readonly 'job': io.flow.internal.v0.models.TrackingAssuranceJob;
26088
25427
  }
26089
25428
 
25429
+ interface TrackingCarrierReturnLabel {
25430
+ readonly 'id': string;
25431
+ readonly 'carrier_tracking_number': string;
25432
+ readonly 'alternate_tracking_numbers': string[];
25433
+ readonly 'carrier_id': string;
25434
+ readonly 'outbound_label_id'?: string;
25435
+ readonly 's3file'?: string;
25436
+ readonly 'origin'?: any/*object*/;
25437
+ readonly 'destination'?: any/*object*/;
25438
+ }
25439
+
25440
+ interface TrackingCarrierReturnLabelDeleted {
25441
+ readonly 'discriminator': 'tracking_carrier_return_label_deleted';
25442
+ readonly 'event_id': string;
25443
+ readonly 'timestamp': string;
25444
+ readonly 'id': string;
25445
+ }
25446
+
25447
+ interface TrackingCarrierReturnLabelUpserted {
25448
+ readonly 'discriminator': 'tracking_carrier_return_label_upserted';
25449
+ readonly 'event_id': string;
25450
+ readonly 'timestamp': string;
25451
+ readonly 'tracking_carrier_return_label': io.flow.internal.v0.models.TrackingCarrierReturnLabel;
25452
+ }
25453
+
26090
25454
  interface TrackingDebugForceTransitForm {
26091
25455
  readonly 'description': string;
26092
25456
  }
@@ -26211,14 +25575,6 @@ declare namespace io.flow.internal.v0.models {
26211
25575
  readonly 'credentials': io.flow.internal.v0.unions.CarrierCredentials;
26212
25576
  }
26213
25577
 
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
25578
  interface TrackingResponse {
26223
25579
  readonly 'carrier': string;
26224
25580
  readonly 'carrier_tracking_number': string;
@@ -26226,14 +25582,6 @@ declare namespace io.flow.internal.v0.models {
26226
25582
  readonly 'tracking_events': io.flow.internal.v0.models.TrackingEvent[];
26227
25583
  }
26228
25584
 
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
25585
  interface TrackingSubscription {
26238
25586
  readonly 'id': string;
26239
25587
  readonly 'organization_id': string;
@@ -26602,7 +25950,7 @@ declare namespace io.flow.internal.v0.unions {
26602
25950
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
26603
25951
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
26604
25952
  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);
25953
+ 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.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.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
25954
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
26607
25955
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
26608
25956
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -26616,7 +25964,7 @@ declare namespace io.flow.internal.v0.unions {
26616
25964
  type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference);
26617
25965
  type FulfillmentTrigger = (io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime);
26618
25966
  type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
26619
- type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
25967
+ type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
26620
25968
  type IndexTaskType = (io.flow.internal.v0.models.CatalogItemIndexTask | io.flow.internal.v0.models.CatalogItemBatchIndexTask | io.flow.internal.v0.models.CatalogItemDeleteIndexTask | io.flow.internal.v0.models.ChangeSettingsIndexTask | io.flow.internal.v0.models.DeleteIndexTask);
26621
25969
  type InlineAuthorizationParameters = (io.flow.internal.v0.models.KlarnaAuthorizationParameters);
26622
25970
  type InternalAuthorizationDetails = (io.flow.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.internal.v0.models.InternalFiservAuthorizationDetails);
@@ -26629,7 +25977,6 @@ declare namespace io.flow.internal.v0.unions {
26629
25977
  type MarketingGatewayFeedSource = (io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook);
26630
25978
  type MarketingGatewayItem = (io.flow.internal.v0.models.MarketingGatewayGoogleItem);
26631
25979
  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
25980
  type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
26634
25981
  type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
26635
25982
  type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
@@ -26673,6 +26020,7 @@ export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enu
26673
26020
  export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
26674
26021
  export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
26675
26022
  export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
26023
+ export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
26676
26024
  export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
26677
26025
  export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
26678
26026
  export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
@@ -26718,7 +26066,6 @@ export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums
26718
26066
  export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
26719
26067
  export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
26720
26068
  export const contentTypeCast: PropTypes.Requireable<io.flow.internal.v0.enums.ContentTypeCast>;
26721
- export const costType: PropTypes.Requireable<io.flow.internal.v0.enums.CostType>;
26722
26069
  export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
26723
26070
  export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
26724
26071
  export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
@@ -26743,7 +26090,6 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
26743
26090
  export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
26744
26091
  export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
26745
26092
  export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
26746
- export const eldarItemType: PropTypes.Requireable<io.flow.internal.v0.enums.EldarItemType>;
26747
26093
  export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
26748
26094
  export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
26749
26095
  export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
@@ -26765,7 +26111,6 @@ export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpInten
26765
26111
  export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
26766
26112
  export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
26767
26113
  export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
26768
- export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
26769
26114
  export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
26770
26115
  export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
26771
26116
  export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
@@ -26774,7 +26119,6 @@ export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.
26774
26119
  export const itemQuantityAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemQuantityAction>;
26775
26120
  export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>;
26776
26121
  export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
26777
- export const konstantinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.KonstantinItemType>;
26778
26122
  export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
26779
26123
  export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
26780
26124
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
@@ -26797,10 +26141,6 @@ export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v
26797
26141
  export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
26798
26142
  export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
26799
26143
  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
26144
  export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
26805
26145
  export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
26806
26146
  export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
@@ -26828,19 +26168,15 @@ export const organizationRestrictionRiskLevel: PropTypes.Requireable<io.flow.int
26828
26168
  export const organizationRestrictionScreeningStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus>;
26829
26169
  export const outputStyle: PropTypes.Requireable<io.flow.internal.v0.enums.OutputStyle>;
26830
26170
  export const owner: PropTypes.Requireable<io.flow.internal.v0.enums.Owner>;
26831
- export const party: PropTypes.Requireable<io.flow.internal.v0.enums.Party>;
26832
26171
  export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
26833
26172
  export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
26834
26173
  export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
26835
26174
  export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
26836
26175
  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
26176
  export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
26840
26177
  export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
26841
26178
  export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
26842
26179
  export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
26843
- export const profitStreamKey: PropTypes.Requireable<io.flow.internal.v0.enums.ProfitStreamKey>;
26844
26180
  export const promptAction: PropTypes.Requireable<io.flow.internal.v0.enums.PromptAction>;
26845
26181
  export const promptCheckoutDisplayPosition: PropTypes.Requireable<io.flow.internal.v0.enums.PromptCheckoutDisplayPosition>;
26846
26182
  export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.PromptOptions>;
@@ -26862,14 +26198,12 @@ export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.
26862
26198
  export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
26863
26199
  export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
26864
26200
  export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
26865
- export const revenueType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueType>;
26866
26201
  export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
26867
26202
  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
26203
  export const sessionCountryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SessionCountryStatus>;
26871
26204
  export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode>;
26872
26205
  export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
26206
+ export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
26873
26207
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
26874
26208
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
26875
26209
  export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType>;
@@ -26881,24 +26215,21 @@ export const shopifyPromotionOfferAllocationMethod: PropTypes.Requireable<io.flo
26881
26215
  export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent>;
26882
26216
  export const shopifyPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionStatus>;
26883
26217
  export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
26884
- export const shrutiDemoType: PropTypes.Requireable<io.flow.internal.v0.enums.ShrutiDemoType>;
26885
26218
  export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
26886
26219
  export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
26887
26220
  export const snoozeSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeSourceType>;
26221
+ export const sourceTypeFilter: PropTypes.Requireable<io.flow.internal.v0.enums.SourceTypeFilter>;
26888
26222
  export const statementStatus: PropTypes.Requireable<io.flow.internal.v0.enums.StatementStatus>;
26889
26223
  export const statementTransferTransactionLocation: PropTypes.Requireable<io.flow.internal.v0.enums.StatementTransferTransactionLocation>;
26890
26224
  export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.StatisticType>;
26891
26225
  export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
26892
26226
  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
26227
  export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
26896
26228
  export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
26897
26229
  export const taxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting>;
26898
26230
  export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
26899
26231
  export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>;
26900
26232
  export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
26901
- export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
26902
26233
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
26903
26234
  export const trackingLabelDimensionsSource: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingLabelDimensionsSource>;
26904
26235
  export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
@@ -27000,7 +26331,6 @@ export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.mode
27000
26331
  export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
27001
26332
  export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
27002
26333
  export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
27003
- export const algoliaIndexAssignment: PropTypes.Requireable<io.flow.internal.v0.models.AlgoliaIndexAssignment>;
27004
26334
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
27005
26335
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
27006
26336
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
@@ -27021,6 +26351,7 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
27021
26351
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
27022
26352
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
27023
26353
  export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
26354
+ export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
27024
26355
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
27025
26356
  export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
27026
26357
  export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
@@ -27143,6 +26474,7 @@ export const channelBilledTransactionReference: PropTypes.Requireable<io.flow.in
27143
26474
  export const channelBilledTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelBilledTransactionUpserted>;
27144
26475
  export const channelBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.ChannelBillingStatement>;
27145
26476
  export const channelCurrencyForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelCurrencyForm>;
26477
+ export const channelCurrencyPairInternal: PropTypes.Requireable<io.flow.internal.v0.models.ChannelCurrencyPairInternal>;
27146
26478
  export const channelCurrencySetting: PropTypes.Requireable<io.flow.internal.v0.models.ChannelCurrencySetting>;
27147
26479
  export const channelCurrencySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelCurrencySettingDeleted>;
27148
26480
  export const channelCurrencySettingForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelCurrencySettingForm>;
@@ -27248,9 +26580,7 @@ export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.
27248
26580
  export const cliLogEntry: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntry>;
27249
26581
  export const cliLogEntryForm: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntryForm>;
27250
26582
  export const colmItem: PropTypes.Requireable<io.flow.internal.v0.models.ColmItem>;
27251
- export const colmItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemDeleted>;
27252
26583
  export const colmItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemForm>;
27253
- export const colmItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemUpserted>;
27254
26584
  export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
27255
26585
  export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
27256
26586
  export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
@@ -27267,8 +26597,6 @@ export const contentSchema: PropTypes.Requireable<io.flow.internal.v0.models.Con
27267
26597
  export const contentSchemaElement: PropTypes.Requireable<io.flow.internal.v0.models.ContentSchemaElement>;
27268
26598
  export const contentSchemaForm: PropTypes.Requireable<io.flow.internal.v0.models.ContentSchemaForm>;
27269
26599
  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
26600
  export const countryPickerCountry: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCountry>;
27273
26601
  export const countryPickerCountryData: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCountryData>;
27274
26602
  export const countryPickerCurrency: PropTypes.Requireable<io.flow.internal.v0.models.CountryPickerCurrency>;
@@ -27300,6 +26628,7 @@ export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyV
27300
26628
  export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
27301
26629
  export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
27302
26630
  export const debugAccountingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugAccountingTransaction>;
26631
+ export const debugBankingDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugBankingDetails>;
27303
26632
  export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
27304
26633
  export const debugFulfillmentDelta: PropTypes.Requireable<io.flow.internal.v0.models.DebugFulfillmentDelta>;
27305
26634
  export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabel>;
@@ -27328,7 +26657,6 @@ export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal
27328
26657
  export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
27329
26658
  export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
27330
26659
  export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
27331
- export const details: PropTypes.Requireable<io.flow.internal.v0.models.Details>;
27332
26660
  export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
27333
26661
  export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
27334
26662
  export const dict: PropTypes.Requireable<io.flow.internal.v0.models.Dict>;
@@ -27362,27 +26690,15 @@ export const duties: PropTypes.Requireable<io.flow.internal.v0.models.Duties>;
27362
26690
  export const dutyCompoundExpression: PropTypes.Requireable<io.flow.internal.v0.models.DutyCompoundExpression>;
27363
26691
  export const dutyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.DutyInternalRate>;
27364
26692
  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
26693
  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
26694
  export const dutyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateSummary>;
27372
- export const dutyRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRateUpserted>;
27373
26695
  export const dutyRatesDataSummary: PropTypes.Requireable<io.flow.internal.v0.models.DutyRatesDataSummary>;
27374
26696
  export const dutyRatesPublishedV2: PropTypes.Requireable<io.flow.internal.v0.models.DutyRatesPublishedV2>;
27375
26697
  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
26698
  export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.models.DutySimpleExpression>;
27379
26699
  export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
27380
26700
  export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
27381
26701
  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
26702
  export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
27387
26703
  export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
27388
26704
  export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
@@ -27548,10 +26864,6 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
27548
26864
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
27549
26865
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
27550
26866
  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
26867
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
27556
26868
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
27557
26869
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -27570,12 +26882,8 @@ export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0
27570
26882
  export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
27571
26883
  export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
27572
26884
  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
26885
  export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
27576
26886
  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
26887
  export const installForm: PropTypes.Requireable<io.flow.internal.v0.models.InstallForm>;
27580
26888
  export const internalAdyenAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAdyenAuthorizationDetails>;
27581
26889
  export const internalAfterpayAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails>;
@@ -27614,12 +26922,9 @@ export const itemClassificationSummary: PropTypes.Requireable<io.flow.internal.v
27614
26922
  export const itemClassificationV2: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationV2>;
27615
26923
  export const itemCustomsDetails: PropTypes.Requireable<io.flow.internal.v0.models.ItemCustomsDetails>;
27616
26924
  export const itemDimensionEstimate: PropTypes.Requireable<io.flow.internal.v0.models.ItemDimensionEstimate>;
27617
- export const itemDimensionEstimateDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2>;
27618
- export const itemDimensionEstimateUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2>;
27619
26925
  export const itemFilterResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterResponse>;
27620
26926
  export const itemFilterValueResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterValueResponse>;
27621
26927
  export const itemFilterValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemFilterValuesForm>;
27622
- export const itemForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemForm>;
27623
26928
  export const itemFormImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ItemFormImportRequest>;
27624
26929
  export const itemHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonization>;
27625
26930
  export const itemHarmonizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationDeleted>;
@@ -27643,10 +26948,6 @@ export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
27643
26948
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
27644
26949
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
27645
26950
  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
26951
  export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
27651
26952
  export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsForm>;
27652
26953
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
@@ -27780,14 +27081,11 @@ export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.intern
27780
27081
  export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
27781
27082
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
27782
27083
  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
27084
  export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
27788
27085
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
27789
27086
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
27790
27087
  export const merchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDeleted>;
27088
+ export const merchantDetails: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDetails>;
27791
27089
  export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
27792
27090
  export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
27793
27091
  export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
@@ -27804,15 +27102,6 @@ export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
27804
27102
  export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
27805
27103
  export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
27806
27104
  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
27105
  export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
27817
27106
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
27818
27107
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
@@ -27852,6 +27141,7 @@ export const orderCombinedShipmentDeleted: PropTypes.Requireable<io.flow.interna
27852
27141
  export const orderCombinedShipmentForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentForm>;
27853
27142
  export const orderCombinedShipmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentUpserted>;
27854
27143
  export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
27144
+ export const orderEditSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderEditSummary>;
27855
27145
  export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
27856
27146
  export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
27857
27147
  export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
@@ -27949,6 +27239,7 @@ export const otherRecordMetadataShippingLabelRevenueShare: PropTypes.Requireable
27949
27239
  export const otherRecordMetadataTrueup: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataTrueup>;
27950
27240
  export const otherRecordOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummary>;
27951
27241
  export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers>;
27242
+ export const otherRecordOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrganizationSummary>;
27952
27243
  export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
27953
27244
  export const otherRecordWithholdings: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordWithholdings>;
27954
27245
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
@@ -28021,11 +27312,7 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
28021
27312
  export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
28022
27313
  export const pregeneratedQuote: PropTypes.Requireable<io.flow.internal.v0.models.PregeneratedQuote>;
28023
27314
  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
27315
  export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
28028
- export const processedPaymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.ProcessedPaymentSummary>;
28029
27316
  export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
28030
27317
  export const processingTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionDeleted>;
28031
27318
  export const processingTransactionReference: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionReference>;
@@ -28050,19 +27337,15 @@ export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flo
28050
27337
  export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
28051
27338
  export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
28052
27339
  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
27340
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
28061
27341
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
28062
27342
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
28063
27343
  export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
28064
27344
  export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
28065
27345
  export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
27346
+ export const pspDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspDistribution>;
27347
+ export const pspRoutingDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistribution>;
27348
+ export const pspRoutingDistributionRevision: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevision>;
28066
27349
  export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
28067
27350
  export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
28068
27351
  export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
@@ -28134,6 +27417,7 @@ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
28134
27417
  export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
28135
27418
  export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
28136
27419
  export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
27420
+ export const reportFilter: PropTypes.Requireable<io.flow.internal.v0.models.ReportFilter>;
28137
27421
  export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
28138
27422
  export const reportMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ReportMerchant>;
28139
27423
  export const reportOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrderReference>;
@@ -28202,6 +27486,8 @@ export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.
28202
27486
  export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
28203
27487
  export const restrictionStatusMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionStatusMetadata>;
28204
27488
  export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
27489
+ export const restrictionsDailyopsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsDeleted>;
27490
+ export const restrictionsDailyopsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsUpserted>;
28205
27491
  export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByDestinations>;
28206
27492
  export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
28207
27493
  export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
@@ -28215,20 +27501,14 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
28215
27501
  export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
28216
27502
  export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
28217
27503
  export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
28218
- export const revenue: PropTypes.Requireable<io.flow.internal.v0.models.Revenue>;
28219
27504
  export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
28220
27505
  export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
28221
27506
  export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
28222
- export const revenueRule: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRule>;
28223
27507
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
28224
27508
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
28225
27509
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
28226
27510
  export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
28227
27511
  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
27512
  export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
28233
27513
  export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
28234
27514
  export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
@@ -28238,7 +27518,6 @@ export const screeningStatusChangeUpserted: PropTypes.Requireable<io.flow.intern
28238
27518
  export const searchAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.SearchAuthorization>;
28239
27519
  export const searchCustomerSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchCustomerSummary>;
28240
27520
  export const searchExperienceSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchExperienceSummary>;
28241
- export const searchExperimentSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchExperimentSummary>;
28242
27521
  export const searchItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchItemSummary>;
28243
27522
  export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchOrderSummary>;
28244
27523
  export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
@@ -28272,6 +27551,12 @@ export const shopifyGiftCardRedemptionForm: PropTypes.Requireable<io.flow.intern
28272
27551
  export const shopifyGiftCardReversal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversal>;
28273
27552
  export const shopifyGiftCardReversalForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversalForm>;
28274
27553
  export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGrantsCheck>;
27554
+ export const shopifyIncotermIncludes: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermIncludes>;
27555
+ export const shopifyIncotermSummaryErrorData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData>;
27556
+ export const shopifyIncotermSummaryErrorPublished: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished>;
27557
+ export const shopifyMarketsBestSellingProduct: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct>;
27558
+ export const shopifyMarketsBestSellingProductDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted>;
27559
+ export const shopifyMarketsBestSellingProductUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted>;
28275
27560
  export const shopifyMarketsDiscrepancy: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancy>;
28276
27561
  export const shopifyMarketsDiscrepancyData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData>;
28277
27562
  export const shopifyMarketsIncorporationCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry>;
@@ -28356,10 +27641,6 @@ export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.Sh
28356
27641
  export const shopperLine: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLine>;
28357
27642
  export const shopperLines: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLines>;
28358
27643
  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
27644
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
28364
27645
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
28365
27646
  export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
@@ -28417,15 +27698,6 @@ export const submittedOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.m
28417
27698
  export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subscription>;
28418
27699
  export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
28419
27700
  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
27701
  export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
28430
27702
  export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
28431
27703
  export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
@@ -28451,10 +27723,6 @@ export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.Taxo
28451
27723
  export const techOnboardingDescription: PropTypes.Requireable<io.flow.internal.v0.models.TechOnboardingDescription>;
28452
27724
  export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
28453
27725
  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
27726
  export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPartner>;
28459
27727
  export const thirdPartyLogisticsPickUpTimeWindow: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow>;
28460
27728
  export const tieredFee: PropTypes.Requireable<io.flow.internal.v0.models.TieredFee>;
@@ -28472,6 +27740,9 @@ export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.in
28472
27740
  export const trackingAssuranceJob: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJob>;
28473
27741
  export const trackingAssuranceJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobDeleted>;
28474
27742
  export const trackingAssuranceJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobUpserted>;
27743
+ export const trackingCarrierReturnLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabel>;
27744
+ export const trackingCarrierReturnLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted>;
27745
+ export const trackingCarrierReturnLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted>;
28475
27746
  export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
28476
27747
  export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
28477
27748
  export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
@@ -28489,9 +27760,7 @@ export const trackingProcessingError: PropTypes.Requireable<io.flow.internal.v0.
28489
27760
  export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorDeleted>;
28490
27761
  export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
28491
27762
  export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
28492
- export const trackingRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequestUpserted>;
28493
27763
  export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
28494
- export const trackingResponseUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponseUpserted>;
28495
27764
  export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
28496
27765
  export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
28497
27766
  export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
@@ -28591,7 +27860,6 @@ export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.
28591
27860
  export const marketingGatewayFeedSource: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayFeedSource>;
28592
27861
  export const marketingGatewayItem: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayItem>;
28593
27862
  export const marketingGatewaySourceSummary: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewaySourceSummary>;
28594
- export const moneyRule: PropTypes.Requireable<io.flow.internal.v0.unions.MoneyRule>;
28595
27863
  export const optinPromptDisplay: PropTypes.Requireable<io.flow.internal.v0.unions.OptinPromptDisplay>;
28596
27864
  export const orderActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.OrderActionForm>;
28597
27865
  export const orderCancellationEvidence: PropTypes.Requireable<io.flow.internal.v0.unions.OrderCancellationEvidence>;