@flowio/api-internal-prop-types 9.24.138 → 9.24.139

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.
@@ -1099,7 +1099,7 @@ declare namespace io.flow.channel.v0.models {
1099
1099
  declare namespace io.flow.restrictions.v0.enums {
1100
1100
  type RestrictedReviewStatus = 'in_review' | 'reviewed';
1101
1101
  type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
1102
- type RestrictionDecisionReason = 'manual_dispute';
1102
+ type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
1103
1103
  type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
1104
1104
  type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
1105
1105
  }
@@ -5669,6 +5669,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5669
5669
  readonly 'id': string;
5670
5670
  }
5671
5671
 
5672
+ interface OrderSettings {
5673
+ readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
5674
+ }
5675
+
5672
5676
  interface OrderTaxAndDutyInclusivitySetting {
5673
5677
  readonly 'id': string;
5674
5678
  readonly 'organization_id': string;
@@ -6815,6 +6819,7 @@ declare namespace io.flow.shopify.external.v0.models {
6815
6819
  }
6816
6820
 
6817
6821
  interface GraphqlTaxonomyCategory {
6822
+ readonly 'id'?: string;
6818
6823
  readonly 'name': string;
6819
6824
  readonly 'fullName': string;
6820
6825
  }
@@ -6936,7 +6941,7 @@ declare namespace io.flow.shopify.external.v0.models {
6936
6941
  readonly 'created_at': string;
6937
6942
  readonly 'updated_at': string;
6938
6943
  readonly 'has_variants_that_requires_components'?: boolean;
6939
- readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
6944
+ readonly 'category'?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
6940
6945
  readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
6941
6946
  }
6942
6947
 
@@ -7076,6 +7081,12 @@ declare namespace io.flow.shopify.external.v0.models {
7076
7081
  readonly 'variant': io.flow.shopify.external.v0.models.ProductVariant;
7077
7082
  }
7078
7083
 
7084
+ interface RestTaxonomyCategory {
7085
+ readonly 'name': string;
7086
+ readonly 'full_name': string;
7087
+ readonly 'admin_graphql_api_id'?: string;
7088
+ }
7089
+
7079
7090
  interface Shop {
7080
7091
  readonly 'id': number;
7081
7092
  readonly 'domain': string;
@@ -8516,12 +8527,20 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
8516
8527
  }
8517
8528
 
8518
8529
  declare namespace io.flow.order.price.v0.enums {
8530
+ type OrderPriceCoefficientType = 'item_shipping';
8519
8531
  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';
8520
8532
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
8521
8533
  type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
8534
+ type OrderPriceSubsidyType = 'shipping_subsidy';
8522
8535
  }
8523
8536
 
8524
8537
  declare namespace io.flow.order.price.v0.models {
8538
+ interface OrderPriceCoefficient {
8539
+ readonly 'type': io.flow.order.price.v0.enums.OrderPriceCoefficientType;
8540
+ readonly 'value': number;
8541
+ readonly 'price': io.flow.common.v0.models.PriceWithBase;
8542
+ }
8543
+
8525
8544
  interface OrderPriceDetail {
8526
8545
  readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
8527
8546
  readonly 'currency': string;
@@ -8556,10 +8575,17 @@ declare namespace io.flow.order.price.v0.models {
8556
8575
  readonly 'type': io.flow.order.price.v0.enums.OrderPriceFeeType;
8557
8576
  }
8558
8577
 
8578
+ interface OrderPriceSubsidy {
8579
+ readonly 'type': io.flow.order.price.v0.enums.OrderPriceSubsidyType;
8580
+ readonly 'price': io.flow.common.v0.models.PriceWithBase;
8581
+ }
8582
+
8559
8583
  interface PurchasePriceBreakdown {
8560
8584
  readonly 'total_price': io.flow.common.v0.models.PriceWithBase;
8561
8585
  readonly 'product_price': io.flow.common.v0.models.PriceWithBase;
8562
8586
  readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
8587
+ readonly 'coefficients'?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
8588
+ readonly 'subsidies'?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
8563
8589
  }
8564
8590
  }
8565
8591
 
@@ -8619,7 +8645,7 @@ declare namespace io.flow.channel.internal.v0.models {
8619
8645
  readonly 'order_updated_at'?: string;
8620
8646
  readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
8621
8647
  readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
8622
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
8648
+ readonly 'external_order_summary'?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
8623
8649
  }
8624
8650
 
8625
8651
  interface ChannelOrderAcceptanceDetails {
@@ -8682,6 +8708,12 @@ declare namespace io.flow.channel.internal.v0.models {
8682
8708
  readonly 'catalog_products_count'?: number;
8683
8709
  }
8684
8710
 
8711
+ interface ExternalOrderSummary {
8712
+ readonly 'id': string;
8713
+ readonly 'edit_ids': string[];
8714
+ readonly 'created_at'?: string;
8715
+ }
8716
+
8685
8717
  interface FlowChannelOrganization {
8686
8718
  readonly 'placeholder'?: string;
8687
8719
  }
@@ -9614,7 +9646,7 @@ declare namespace io.flow.experience.v0.enums {
9614
9646
  type OrganizationPaymentMethodTag = 'deny';
9615
9647
  type PaymentMethodRuleContentKey = 'description';
9616
9648
  type PriceFacetBoundary = 'min' | 'max';
9617
- type PricingType = 'inclusive_pricing';
9649
+ type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
9618
9650
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
9619
9651
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
9620
9652
  }
@@ -11501,35 +11533,6 @@ declare namespace io.flow.crypto.v0.models {
11501
11533
  }
11502
11534
  }
11503
11535
 
11504
- declare namespace io.flow.channel.shopify.v0.enums {
11505
- type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
11506
- }
11507
-
11508
- declare namespace io.flow.channel.shopify.v0.models {
11509
- interface ChannelShopifyOrderState {
11510
- readonly 'id': string;
11511
- readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
11512
- readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
11513
- readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
11514
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
11515
- }
11516
-
11517
- interface ChannelShopifyOrderStateReason {
11518
- readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
11519
- readonly 'message': string;
11520
- }
11521
-
11522
- interface ChannelShopifyOrderSummary {
11523
- readonly 'order_id': number;
11524
- readonly 'shop_id': number;
11525
- }
11526
-
11527
- interface ExternalOrderSummary {
11528
- readonly 'id': string;
11529
- readonly 'edit_ids': string[];
11530
- }
11531
- }
11532
-
11533
11536
  declare namespace io.flow.shopify.merchant.config.v0.models {
11534
11537
  interface Company {
11535
11538
  readonly 'discriminator': 'company';
@@ -11939,6 +11942,7 @@ declare namespace io.flow.product.v0.models {
11939
11942
  interface ProductTaxonomyCategory {
11940
11943
  readonly 'name': string;
11941
11944
  readonly 'full_name': string;
11945
+ readonly 'id'?: string;
11942
11946
  }
11943
11947
 
11944
11948
  interface ProductTaxonomyData {
@@ -12983,7 +12987,7 @@ declare namespace io.flow.billing.v0.enums {
12983
12987
  type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
12984
12988
  type StatementAttachmentType = 'csv' | 'pdf';
12985
12989
  type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
12986
- type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
12990
+ type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'wyol_shipment_lvg' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
12987
12991
  type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
12988
12992
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
12989
12993
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
@@ -13085,6 +13089,7 @@ declare namespace io.flow.billing.v0.models {
13085
13089
  readonly 'settlement': io.flow.billing.v0.unions.Settlement;
13086
13090
  readonly 'attachments': io.flow.billing.v0.models.Attachment[];
13087
13091
  readonly 'created_at': string;
13092
+ readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
13088
13093
  }
13089
13094
 
13090
13095
  interface ChannelTransaction {
@@ -13250,6 +13255,7 @@ declare namespace io.flow.billing.v0.models {
13250
13255
  readonly 'settlement': io.flow.billing.v0.unions.Settlement;
13251
13256
  readonly 'attachments': io.flow.billing.v0.models.Attachment[];
13252
13257
  readonly 'created_at': string;
13258
+ readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
13253
13259
  }
13254
13260
 
13255
13261
  interface StatementStatusForm {
@@ -14213,6 +14219,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
14213
14219
  readonly 'bank_name': string;
14214
14220
  }
14215
14221
 
14222
+ interface BankAccountInfoKorV2 {
14223
+ readonly 'discriminator': 'kor_v2';
14224
+ readonly 'name': string;
14225
+ readonly 'bank_account_number': string;
14226
+ readonly 'bank_routing_number': string;
14227
+ readonly 'bank_name': string;
14228
+ }
14229
+
14216
14230
  interface BankAccountInfoUsa {
14217
14231
  readonly 'discriminator': 'usa';
14218
14232
  readonly 'routing_number': string;
@@ -14221,7 +14235,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
14221
14235
  }
14222
14236
 
14223
14237
  declare namespace io.flow.billing.bank.account.v0.unions {
14224
- 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 | io.flow.billing.bank.account.v0.models.BankAccountInfoKor);
14238
+ 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 | io.flow.billing.bank.account.v0.models.BankAccountInfoKor | io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2);
14225
14239
  }
14226
14240
 
14227
14241
  declare namespace io.flow.internal.v0.enums {
@@ -14232,6 +14246,9 @@ declare namespace io.flow.internal.v0.enums {
14232
14246
  type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
14233
14247
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
14234
14248
  type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
14249
+ type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
14250
+ type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
14251
+ type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
14235
14252
  type AmruthaItemType = 'physical' | 'digital';
14236
14253
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
14237
14254
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
@@ -14284,7 +14301,7 @@ declare namespace io.flow.internal.v0.enums {
14284
14301
  type ClassificationErrorCode = 'generic_error';
14285
14302
  type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
14286
14303
  type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
14287
- type ClassificationScope = 'Item' | 'Product';
14304
+ type ClassificationScope = 'Item' | 'Product' | 'Bucket';
14288
14305
  type ClassificationSource = 'sellability';
14289
14306
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
14290
14307
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
@@ -14328,7 +14345,7 @@ declare namespace io.flow.internal.v0.enums {
14328
14345
  type EmptyAttribute = 'irrelevant';
14329
14346
  type ErpFileType = 'vendor';
14330
14347
  type EvaluationCheckResult = 'pass' | 'fail';
14331
- type EventType = 'adaptive_pricing_coefficient_upserted' | 'adaptive_pricing_coefficient_deleted' | 'adaptive_pricing_update_upserted' | 'adaptive_pricing_update_deleted' | 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_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' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | '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' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | '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' | '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' | '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' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_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' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | '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' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | '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_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | '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' | 'partner_request_upserted' | 'partner_request_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' | 'order_refund_transaction_upserted' | 'order_refund_transaction_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' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_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' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_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_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_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_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_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' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_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_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
14348
+ type EventType = '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' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | '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' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | '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' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | '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' | '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' | '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' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_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' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | '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' | 'merchant_override_upserted' | 'merchant_override_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_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | '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' | 'partner_request_upserted' | 'partner_request_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' | 'order_refund_transaction_upserted' | 'order_refund_transaction_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' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_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' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_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_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_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_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_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' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_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_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
14332
14349
  type ExperienceImportType = 'experience_with_settings';
14333
14350
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
14334
14351
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -14354,7 +14371,7 @@ declare namespace io.flow.internal.v0.enums {
14354
14371
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
14355
14372
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
14356
14373
  type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
14357
- type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
14374
+ type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required' | 'unserviceable_taxonomy';
14358
14375
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
14359
14376
  type ItemType = 'standard' | 'multi_product';
14360
14377
  type JournalOperation = 'insert' | 'update' | 'delete';
@@ -14425,17 +14442,19 @@ declare namespace io.flow.internal.v0.enums {
14425
14442
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
14426
14443
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
14427
14444
  type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
14445
+ type PvDecision = 'uphold' | 'remove';
14428
14446
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
14429
14447
  type RateSource = 'calculated' | 'market';
14430
14448
  type RaveenaItemType = 'physical' | 'digital';
14431
14449
  type RedirectReason = 'three_d_secure';
14432
14450
  type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
14451
+ type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
14433
14452
  type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
14434
14453
  type ReportFileType = 'stripe_connect_report';
14435
14454
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
14436
14455
  type ReportPaymentType = 'credit' | 'debit';
14437
14456
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
14438
- type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
14457
+ type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'scheduled_payment_citi_uk_xml' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
14439
14458
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
14440
14459
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
14441
14460
  type ResponsibleParty = 'flow' | 'organization';
@@ -14449,6 +14468,7 @@ declare namespace io.flow.internal.v0.enums {
14449
14468
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
14450
14469
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
14451
14470
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
14471
+ type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
14452
14472
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
14453
14473
  type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
14454
14474
  type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
@@ -14754,6 +14774,8 @@ declare namespace io.flow.internal.v0.models {
14754
14774
  readonly 'refund'?: io.flow.payment.v0.models.RefundReference;
14755
14775
  readonly 'tax_reversal'?: io.flow.internal.v0.models.TransactionReference;
14756
14776
  readonly 'duty_reversal'?: io.flow.internal.v0.models.TransactionReference;
14777
+ readonly 'flat_rate_reversal'?: io.flow.internal.v0.models.TransactionReference;
14778
+ readonly 'flat_rate_subsidy_reversal'?: io.flow.internal.v0.models.TransactionReference;
14757
14779
  }
14758
14780
 
14759
14781
  interface ActionQuantity {
@@ -14761,67 +14783,6 @@ declare namespace io.flow.internal.v0.models {
14761
14783
  readonly 'quantity': number;
14762
14784
  }
14763
14785
 
14764
- interface AdaptivePricingCoefficient {
14765
- readonly 'coefficients_updated_at': number;
14766
- readonly 'channel_id': string;
14767
- readonly 'organization_id': string;
14768
- readonly 'destination_country': string;
14769
- readonly 'tax_and_duty_coefficient': number;
14770
- readonly 'fees_coefficient': number;
14771
- readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
14772
- readonly 'created_at': number;
14773
- }
14774
-
14775
- interface AdaptivePricingCoefficientDeleted {
14776
- readonly 'discriminator': 'adaptive_pricing_coefficient_deleted';
14777
- readonly 'event_id': string;
14778
- readonly 'timestamp': string;
14779
- readonly 'organization': string;
14780
- readonly 'channel_id': string;
14781
- readonly 'id': string;
14782
- }
14783
-
14784
- interface AdaptivePricingCoefficientUpserted {
14785
- readonly 'discriminator': 'adaptive_pricing_coefficient_upserted';
14786
- readonly 'event_id': string;
14787
- readonly 'timestamp': string;
14788
- readonly 'organization': string;
14789
- readonly 'channel_id': string;
14790
- readonly 'adaptive_pricing_coefficient': io.flow.internal.v0.models.AdaptivePricingCoefficient;
14791
- }
14792
-
14793
- interface AdaptivePricingDestinationUpdate {
14794
- readonly 'country': string;
14795
- readonly 'updated_at': string;
14796
- readonly 'tax_and_duty_coefficient': number;
14797
- readonly 'fees_coefficient': number;
14798
- readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
14799
- }
14800
-
14801
- interface AdaptivePricingUpdate {
14802
- readonly 'channel_id': string;
14803
- readonly 'organization_id': string;
14804
- readonly 'destination_updates': io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
14805
- }
14806
-
14807
- interface AdaptivePricingUpdateDeleted {
14808
- readonly 'discriminator': 'adaptive_pricing_update_deleted';
14809
- readonly 'event_id': string;
14810
- readonly 'timestamp': string;
14811
- readonly 'organization': string;
14812
- readonly 'channel_id': string;
14813
- readonly 'id': string;
14814
- }
14815
-
14816
- interface AdaptivePricingUpdateUpserted {
14817
- readonly 'discriminator': 'adaptive_pricing_update_upserted';
14818
- readonly 'event_id': string;
14819
- readonly 'timestamp': string;
14820
- readonly 'organization': string;
14821
- readonly 'channel_id': string;
14822
- readonly 'adaptive_pricing_update': io.flow.internal.v0.models.AdaptivePricingUpdate;
14823
- }
14824
-
14825
14786
  interface AdaptiveShippingOrderGuarantee {
14826
14787
  readonly 'id': string;
14827
14788
  readonly 'organization_id': string;
@@ -14847,33 +14808,6 @@ declare namespace io.flow.internal.v0.models {
14847
14808
  readonly 'adaptive_shipping_order_guarantee': io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
14848
14809
  }
14849
14810
 
14850
- interface AdaptiveShippingRate {
14851
- readonly 'id': string;
14852
- readonly 'organization_id': string;
14853
- readonly 'channel_id': string;
14854
- readonly 'destination_country': string;
14855
- readonly 'coefficient': number;
14856
- readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
14857
- readonly 'effective_at': string;
14858
- readonly 'effective_until'?: string;
14859
- }
14860
-
14861
- interface AdaptiveShippingRateDeleted {
14862
- readonly 'discriminator': 'adaptive_shipping_rate_deleted';
14863
- readonly 'event_id': string;
14864
- readonly 'timestamp': string;
14865
- readonly 'organization': string;
14866
- readonly 'id': string;
14867
- }
14868
-
14869
- interface AdaptiveShippingRateUpserted {
14870
- readonly 'discriminator': 'adaptive_shipping_rate_upserted';
14871
- readonly 'event_id': string;
14872
- readonly 'timestamp': string;
14873
- readonly 'organization': string;
14874
- readonly 'adaptive_shipping_rate': io.flow.internal.v0.models.AdaptiveShippingRate;
14875
- }
14876
-
14877
14811
  interface AdditionalImportTax {
14878
14812
  readonly 'name'?: string;
14879
14813
  readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
@@ -15308,6 +15242,55 @@ declare namespace io.flow.internal.v0.models {
15308
15242
  readonly 'placeholder'?: boolean;
15309
15243
  }
15310
15244
 
15245
+ interface AiReviewBatchSubmitted {
15246
+ readonly 'discriminator': 'ai_review_batch_submitted';
15247
+ readonly 'event_id': string;
15248
+ readonly 'timestamp': string;
15249
+ readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
15250
+ readonly 'items': io.flow.internal.v0.models.ReviewRequestItem[];
15251
+ }
15252
+
15253
+ interface AiReviewFailedItem {
15254
+ readonly 'review_id': string;
15255
+ readonly 'organization_id': string;
15256
+ }
15257
+
15258
+ interface AiReviewRequestFailed {
15259
+ readonly 'discriminator': 'ai_review_request_failed';
15260
+ readonly 'event_id': string;
15261
+ readonly 'timestamp': string;
15262
+ readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
15263
+ readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
15264
+ readonly 'reason': io.flow.internal.v0.enums.AiReviewFailureReason;
15265
+ readonly 'items': io.flow.internal.v0.models.AiReviewFailedItem[];
15266
+ }
15267
+
15268
+ interface AiReviewResult {
15269
+ readonly 'review_id': string;
15270
+ readonly 'organization_id': string;
15271
+ readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
15272
+ readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
15273
+ readonly 'ai_output': io.flow.internal.v0.unions.AiOutput;
15274
+ readonly 'ai_model': string;
15275
+ readonly 'prompt_id': string;
15276
+ readonly 'prompt_version': string;
15277
+ }
15278
+
15279
+ interface AiReviewResultDeleted {
15280
+ readonly 'discriminator': 'ai_review_result_deleted';
15281
+ readonly 'event_id': string;
15282
+ readonly 'timestamp': string;
15283
+ readonly 'id': string;
15284
+ readonly 'organization': string;
15285
+ }
15286
+
15287
+ interface AiReviewResultUpserted {
15288
+ readonly 'discriminator': 'ai_review_result_upserted';
15289
+ readonly 'event_id': string;
15290
+ readonly 'timestamp': string;
15291
+ readonly 'ai_review_result': io.flow.internal.v0.models.AiReviewResult;
15292
+ }
15293
+
15311
15294
  interface AllItemsExport {
15312
15295
  readonly 'discriminator': 'all_items_export';
15313
15296
  readonly 'event_id': string;
@@ -16615,7 +16598,7 @@ declare namespace io.flow.internal.v0.models {
16615
16598
  readonly 'order_updated_at'?: string;
16616
16599
  readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
16617
16600
  readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
16618
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
16601
+ readonly 'external_order_summary'?: io.flow.internal.v0.models.ExternalOrderSummary;
16619
16602
  }
16620
16603
 
16621
16604
  interface ChannelOrderAcceptanceDeleted {
@@ -17842,6 +17825,29 @@ declare namespace io.flow.internal.v0.models {
17842
17825
  readonly 'destination': io.flow.common.v0.models.Address;
17843
17826
  }
17844
17827
 
17828
+ interface DgClassAssessment {
17829
+ readonly 'dg_class': string;
17830
+ readonly 'decision': io.flow.internal.v0.enums.PvDecision;
17831
+ readonly 'confidence': number;
17832
+ readonly 'reasoning': string;
17833
+ }
17834
+
17835
+ interface DgReviewContext {
17836
+ readonly 'discriminator': 'dg_review_context';
17837
+ readonly 'organization_id': string;
17838
+ readonly 'item_name': string;
17839
+ readonly 'item_description'?: string;
17840
+ readonly 'image_url'?: string;
17841
+ readonly 'hs_code'?: string;
17842
+ readonly 'categories'?: string;
17843
+ readonly 'price'?: string;
17844
+ }
17845
+
17846
+ interface DgReviewOutput {
17847
+ readonly 'discriminator': 'dg_review_output';
17848
+ readonly 'assessments': io.flow.internal.v0.models.DgClassAssessment[];
17849
+ }
17850
+
17845
17851
  interface Dhl {
17846
17852
  readonly 'discriminator': 'dhl';
17847
17853
  readonly 'export_account_number': string;
@@ -18576,6 +18582,12 @@ declare namespace io.flow.internal.v0.models {
18576
18582
  readonly 'fulfilled_via_replacement_order'?: boolean;
18577
18583
  }
18578
18584
 
18585
+ interface ExternalOrderSummary {
18586
+ readonly 'id': string;
18587
+ readonly 'edit_ids': string[];
18588
+ readonly 'created_at'?: string;
18589
+ }
18590
+
18579
18591
  interface ExternalRatecardLink {
18580
18592
  readonly 'external_ratecard_id': string;
18581
18593
  readonly 'flow_ratecard_ids': string[];
@@ -18883,6 +18895,31 @@ declare namespace io.flow.internal.v0.models {
18883
18895
  readonly 'flat_rate_label_reversal': io.flow.internal.v0.models.FlatRateLabelReversal;
18884
18896
  }
18885
18897
 
18898
+ interface FlatRateLabelSubsidy {
18899
+ readonly 'id': string;
18900
+ readonly 'source': io.flow.billing.v0.enums.TransactionSource;
18901
+ readonly 'organization_id': string;
18902
+ readonly 'order_number': string;
18903
+ readonly 'amount': io.flow.common.v0.models.Money;
18904
+ readonly 'tax': io.flow.common.v0.models.Money;
18905
+ }
18906
+
18907
+ interface FlatRateLabelSubsidyDeleted {
18908
+ readonly 'discriminator': 'flat_rate_label_subsidy_deleted';
18909
+ readonly 'event_id': string;
18910
+ readonly 'timestamp': string;
18911
+ readonly 'organization': string;
18912
+ readonly 'id': string;
18913
+ }
18914
+
18915
+ interface FlatRateLabelSubsidyUpserted {
18916
+ readonly 'discriminator': 'flat_rate_label_subsidy_upserted';
18917
+ readonly 'event_id': string;
18918
+ readonly 'timestamp': string;
18919
+ readonly 'organization': string;
18920
+ readonly 'flat_rate_label_subsidy': io.flow.internal.v0.models.FlatRateLabelSubsidy;
18921
+ }
18922
+
18886
18923
  interface FlatRateLabelTransaction {
18887
18924
  readonly 'discriminator': 'flat_rate_label_transaction';
18888
18925
  readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -19595,6 +19632,33 @@ declare namespace io.flow.internal.v0.models {
19595
19632
  readonly 'tracker_id': string;
19596
19633
  }
19597
19634
 
19635
+ interface GuaranteedShippingCalibratedOutput {
19636
+ readonly 'id': string;
19637
+ readonly 'organization_id': string;
19638
+ readonly 'channel_id': string;
19639
+ readonly 'destination_country': string;
19640
+ readonly 'coefficient': number;
19641
+ readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
19642
+ readonly 'effective_at': string;
19643
+ readonly 'effective_until'?: string;
19644
+ }
19645
+
19646
+ interface GuaranteedShippingCalibratedOutputDeleted {
19647
+ readonly 'discriminator': 'guaranteed_shipping_calibrated_output_deleted';
19648
+ readonly 'event_id': string;
19649
+ readonly 'timestamp': string;
19650
+ readonly 'organization': string;
19651
+ readonly 'id': string;
19652
+ }
19653
+
19654
+ interface GuaranteedShippingCalibratedOutputUpserted {
19655
+ readonly 'discriminator': 'guaranteed_shipping_calibrated_output_upserted';
19656
+ readonly 'event_id': string;
19657
+ readonly 'timestamp': string;
19658
+ readonly 'organization': string;
19659
+ readonly 'guaranteed_shipping_calibrated_output': io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
19660
+ }
19661
+
19598
19662
  interface GuaranteedShippingPublishedOutput {
19599
19663
  readonly 'id': string;
19600
19664
  readonly 'organization_id': string;
@@ -19621,6 +19685,67 @@ declare namespace io.flow.internal.v0.models {
19621
19685
  readonly 'guaranteed_shipping_published_output': io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
19622
19686
  }
19623
19687
 
19688
+ interface GuaranteedShippingSettings {
19689
+ readonly 'coefficients_updated_at': number;
19690
+ readonly 'channel_id': string;
19691
+ readonly 'organization_id': string;
19692
+ readonly 'destination_country': string;
19693
+ readonly 'tax_and_duty_coefficient': number;
19694
+ readonly 'fees_coefficient': number;
19695
+ readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
19696
+ readonly 'created_at': number;
19697
+ }
19698
+
19699
+ interface GuaranteedShippingSettingsDeleted {
19700
+ readonly 'discriminator': 'guaranteed_shipping_settings_deleted';
19701
+ readonly 'event_id': string;
19702
+ readonly 'timestamp': string;
19703
+ readonly 'organization': string;
19704
+ readonly 'channel_id': string;
19705
+ readonly 'id': string;
19706
+ }
19707
+
19708
+ interface GuaranteedShippingSettingsDestinationUpdate {
19709
+ readonly 'country': string;
19710
+ readonly 'updated_at': string;
19711
+ readonly 'tax_and_duty_coefficient': number;
19712
+ readonly 'fees_coefficient': number;
19713
+ readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
19714
+ }
19715
+
19716
+ interface GuaranteedShippingSettingsUpdate {
19717
+ readonly 'channel_id': string;
19718
+ readonly 'organization_id': string;
19719
+ readonly 'destination_updates': io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
19720
+ }
19721
+
19722
+ interface GuaranteedShippingSettingsUpdateDeleted {
19723
+ readonly 'discriminator': 'guaranteed_shipping_settings_update_deleted';
19724
+ readonly 'event_id': string;
19725
+ readonly 'timestamp': string;
19726
+ readonly 'organization': string;
19727
+ readonly 'channel_id': string;
19728
+ readonly 'id': string;
19729
+ }
19730
+
19731
+ interface GuaranteedShippingSettingsUpdateUpserted {
19732
+ readonly 'discriminator': 'guaranteed_shipping_settings_update_upserted';
19733
+ readonly 'event_id': string;
19734
+ readonly 'timestamp': string;
19735
+ readonly 'organization': string;
19736
+ readonly 'channel_id': string;
19737
+ readonly 'guaranteed_shipping_settings_update': io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
19738
+ }
19739
+
19740
+ interface GuaranteedShippingSettingsUpserted {
19741
+ readonly 'discriminator': 'guaranteed_shipping_settings_upserted';
19742
+ readonly 'event_id': string;
19743
+ readonly 'timestamp': string;
19744
+ readonly 'organization': string;
19745
+ readonly 'channel_id': string;
19746
+ readonly 'guaranteed_shipping_settings': io.flow.internal.v0.models.GuaranteedShippingSettings;
19747
+ }
19748
+
19624
19749
  interface HarmonizationClassificationStatisticsData {
19625
19750
  readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
19626
19751
  }
@@ -20013,6 +20138,32 @@ declare namespace io.flow.internal.v0.models {
20013
20138
  readonly 'created_at': string;
20014
20139
  }
20015
20140
 
20141
+ interface Issuer {
20142
+ readonly 'id': string;
20143
+ readonly 'iin': string;
20144
+ readonly 'name'?: string;
20145
+ readonly 'country'?: string;
20146
+ readonly 'brand'?: string;
20147
+ readonly 'type'?: string;
20148
+ readonly 'category'?: string;
20149
+ readonly 'website'?: string;
20150
+ readonly 'phone'?: string;
20151
+ }
20152
+
20153
+ interface IssuerDeleted {
20154
+ readonly 'discriminator': 'issuer_deleted';
20155
+ readonly 'event_id': string;
20156
+ readonly 'timestamp': string;
20157
+ readonly 'issuer': io.flow.internal.v0.models.Issuer;
20158
+ }
20159
+
20160
+ interface IssuerUpserted {
20161
+ readonly 'discriminator': 'issuer_upserted';
20162
+ readonly 'event_id': string;
20163
+ readonly 'timestamp': string;
20164
+ readonly 'issuer': io.flow.internal.v0.models.Issuer;
20165
+ }
20166
+
20016
20167
  interface ItemClassification {
20017
20168
  readonly 'id'?: string;
20018
20169
  readonly 'organization': string;
@@ -20137,6 +20288,31 @@ declare namespace io.flow.internal.v0.models {
20137
20288
  readonly 'item_harmonization': io.flow.internal.v0.models.ItemHarmonization;
20138
20289
  }
20139
20290
 
20291
+ interface ItemHs6Override {
20292
+ readonly 'item_number': string;
20293
+ readonly 'hs6': string;
20294
+ }
20295
+
20296
+ interface ItemHs6OverrideForm {
20297
+ readonly 'item_number': string;
20298
+ readonly 'hs6': string;
20299
+ readonly 'hs6_description'?: string;
20300
+ }
20301
+
20302
+ interface ItemHs6OverrideRejection {
20303
+ readonly 'item_number': string;
20304
+ readonly 'message': string;
20305
+ }
20306
+
20307
+ interface ItemHs6OverrideResult {
20308
+ readonly 'applied': io.flow.internal.v0.models.ItemHs6Override[];
20309
+ readonly 'rejected': io.flow.internal.v0.models.ItemHs6OverrideRejection[];
20310
+ }
20311
+
20312
+ interface ItemHs6OverridesForm {
20313
+ readonly 'items': io.flow.internal.v0.models.ItemHs6OverrideForm[];
20314
+ }
20315
+
20140
20316
  interface ItemQueryResponse {
20141
20317
  readonly 'q': string;
20142
20318
  readonly 'items': io.flow.catalog.v0.models.Item[];
@@ -21515,6 +21691,10 @@ declare namespace io.flow.internal.v0.models {
21515
21691
  readonly 'to_service_id': string;
21516
21692
  }
21517
21693
 
21694
+ interface OrderSettings {
21695
+ readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
21696
+ }
21697
+
21518
21698
  interface OrderSummary {
21519
21699
  readonly 'id': string;
21520
21700
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
@@ -22172,6 +22352,35 @@ declare namespace io.flow.internal.v0.models {
22172
22352
  readonly 'insurance': number;
22173
22353
  }
22174
22354
 
22355
+ interface OutboundShippingCost {
22356
+ readonly 'channel_id': string;
22357
+ readonly 'organization_id': string;
22358
+ readonly 'destination_country': string;
22359
+ readonly 'carrier_service_id': string;
22360
+ readonly 'cost': io.flow.common.v0.models.Money;
22361
+ readonly 'updated_at': number;
22362
+ readonly 'run_id': string;
22363
+ readonly 'model_version': string;
22364
+ }
22365
+
22366
+ interface OutboundShippingCostDeleted {
22367
+ readonly 'discriminator': 'outbound_shipping_cost_deleted';
22368
+ readonly 'event_id': string;
22369
+ readonly 'timestamp': string;
22370
+ readonly 'organization': string;
22371
+ readonly 'channel_id': string;
22372
+ readonly 'id': string;
22373
+ }
22374
+
22375
+ interface OutboundShippingCostUpserted {
22376
+ readonly 'discriminator': 'outbound_shipping_cost_upserted';
22377
+ readonly 'event_id': string;
22378
+ readonly 'timestamp': string;
22379
+ readonly 'organization': string;
22380
+ readonly 'channel_id': string;
22381
+ readonly 'outbound_shipping_cost': io.flow.internal.v0.models.OutboundShippingCost;
22382
+ }
22383
+
22175
22384
  interface Partner {
22176
22385
  readonly 'id': string;
22177
22386
  readonly 'name': string;
@@ -22670,6 +22879,24 @@ declare namespace io.flow.internal.v0.models {
22670
22879
  readonly 'refund': io.flow.internal.v0.models.PaypalInternalRefund;
22671
22880
  }
22672
22881
 
22882
+ interface PcReviewContext {
22883
+ readonly 'discriminator': 'pc_review_context';
22884
+ readonly 'organization_id': string;
22885
+ readonly 'item_name': string;
22886
+ readonly 'item_description'?: string;
22887
+ readonly 'categories'?: string;
22888
+ readonly 'taxonomy_category'?: string;
22889
+ readonly 'image_url'?: string;
22890
+ }
22891
+
22892
+ interface PcReviewOutput {
22893
+ readonly 'discriminator': 'pc_review_output';
22894
+ readonly 'hs_code': string;
22895
+ readonly 'alternates': string[];
22896
+ readonly 'confidence': number;
22897
+ readonly 'reasoning': string;
22898
+ }
22899
+
22673
22900
  interface PendingBankPayment {
22674
22901
  readonly 'id': string;
22675
22902
  readonly 'account': io.flow.internal.v0.models.AccountSummary;
@@ -22821,6 +23048,7 @@ declare namespace io.flow.internal.v0.models {
22821
23048
  readonly 'catalog_size': number;
22822
23049
  readonly 'processed_product_count': number;
22823
23050
  readonly 'last_request': string;
23051
+ readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
22824
23052
  readonly 'updated_by_user_id': string;
22825
23053
  }
22826
23054
 
@@ -23285,6 +23513,28 @@ declare namespace io.flow.internal.v0.models {
23285
23513
  readonly 'location': io.flow.common.v0.models.Address;
23286
23514
  }
23287
23515
 
23516
+ interface PvReviewContext {
23517
+ readonly 'discriminator': 'pv_review_context';
23518
+ readonly 'organization_id': string;
23519
+ readonly 'item_name': string;
23520
+ readonly 'item_description'?: string;
23521
+ readonly 'image_url'?: string;
23522
+ readonly 'rule_name': string;
23523
+ readonly 'rule_reason_code': string;
23524
+ readonly 'hs_code'?: string;
23525
+ readonly 'categories'?: string;
23526
+ readonly 'price'?: string;
23527
+ readonly 'matching_positive_keywords': string[];
23528
+ readonly 'matching_negative_keywords': string[];
23529
+ }
23530
+
23531
+ interface PvReviewOutput {
23532
+ readonly 'discriminator': 'pv_review_output';
23533
+ readonly 'decision': io.flow.internal.v0.enums.PvDecision;
23534
+ readonly 'confidence': number;
23535
+ readonly 'reasoning': string;
23536
+ }
23537
+
23288
23538
  interface Quote {
23289
23539
  readonly 'id': string;
23290
23540
  readonly 'base': string;
@@ -23670,6 +23920,11 @@ declare namespace io.flow.internal.v0.models {
23670
23920
  readonly 'number': string;
23671
23921
  }
23672
23922
 
23923
+ interface RemediateTaxDutyMetadata {
23924
+ readonly 'discriminator': 'remediate_tax_duty_metadata';
23925
+ readonly 'arm': io.flow.internal.v0.enums.RemediateTaxDutyArm;
23926
+ }
23927
+
23673
23928
  interface RemittanceResponsibility {
23674
23929
  readonly 'tax': io.flow.internal.v0.enums.ResponsibleParty;
23675
23930
  readonly 'duty': io.flow.internal.v0.enums.ResponsibleParty;
@@ -24327,6 +24582,7 @@ declare namespace io.flow.internal.v0.models {
24327
24582
  readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
24328
24583
  readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
24329
24584
  readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
24585
+ readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
24330
24586
  }
24331
24587
 
24332
24588
  interface RestrictionRuleDecisionForm {
@@ -24388,6 +24644,7 @@ declare namespace io.flow.internal.v0.models {
24388
24644
  readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
24389
24645
  readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
24390
24646
  readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
24647
+ readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
24391
24648
  }
24392
24649
 
24393
24650
  interface RestrictionRuleLaneExemption {
@@ -24687,6 +24944,12 @@ declare namespace io.flow.internal.v0.models {
24687
24944
  readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
24688
24945
  }
24689
24946
 
24947
+ interface ReviewRequestItem {
24948
+ readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
24949
+ readonly 'review_id': string;
24950
+ readonly 'context': io.flow.internal.v0.unions.AiReviewContext;
24951
+ }
24952
+
24690
24953
  interface RoutingAccount {
24691
24954
  readonly 'discriminator': 'routing_account';
24692
24955
  readonly 'processor': io.flow.internal.v0.enums.Processor;
@@ -24858,6 +25121,41 @@ declare namespace io.flow.internal.v0.models {
24858
25121
  readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
24859
25122
  }
24860
25123
 
25124
+ interface SellabilityPendingVerification {
25125
+ readonly 'id': string;
25126
+ readonly 'merchant_id': string;
25127
+ readonly 'product_id': string;
25128
+ readonly 'channel': string;
25129
+ readonly 'request_id': string;
25130
+ readonly 'name': string;
25131
+ readonly 'description': string;
25132
+ readonly 'taxonomy_category'?: string;
25133
+ readonly 'hs6_code'?: string;
25134
+ readonly 'price'?: string;
25135
+ readonly 'rule_id': string;
25136
+ readonly 'reason_code': string;
25137
+ readonly 'matching_keywords'?: string;
25138
+ readonly 'status': string;
25139
+ readonly 'agent_decision'?: string;
25140
+ readonly 'agent_reasoning'?: string;
25141
+ readonly 'created_at': string;
25142
+ readonly 'updated_at': string;
25143
+ }
25144
+
25145
+ interface SellabilityPendingVerificationDeleted {
25146
+ readonly 'discriminator': 'sellability_pending_verification_deleted';
25147
+ readonly 'event_id': string;
25148
+ readonly 'timestamp': string;
25149
+ readonly 'id': string;
25150
+ }
25151
+
25152
+ interface SellabilityPendingVerificationUpserted {
25153
+ readonly 'discriminator': 'sellability_pending_verification_upserted';
25154
+ readonly 'event_id': string;
25155
+ readonly 'timestamp': string;
25156
+ readonly 'sellability_pending_verification': io.flow.internal.v0.models.SellabilityPendingVerification;
25157
+ }
25158
+
24861
25159
  interface ServiceFees {
24862
25160
  readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
24863
25161
  readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
@@ -26656,6 +26954,7 @@ declare namespace io.flow.internal.v0.models {
26656
26954
  interface TaxonomyCategoryHs6Ref {
26657
26955
  readonly 'id': string;
26658
26956
  readonly 'taxonomy_category': string;
26957
+ readonly 'taxonomy_category_id'?: string;
26659
26958
  readonly 'hs6': string;
26660
26959
  readonly 'updated_by_user_id': string;
26661
26960
  }
@@ -27185,6 +27484,27 @@ declare namespace io.flow.internal.v0.models {
27185
27484
  readonly 'message': string;
27186
27485
  }
27187
27486
 
27487
+ interface UnserviceableTaxonomyCategory {
27488
+ readonly 'id': string;
27489
+ readonly 'taxonomy_category': string;
27490
+ readonly 'taxonomy_category_id'?: string;
27491
+ readonly 'updated_by_user_id': string;
27492
+ }
27493
+
27494
+ interface UnserviceableTaxonomyCategoryDeleted {
27495
+ readonly 'discriminator': 'unserviceable_taxonomy_category_deleted';
27496
+ readonly 'event_id': string;
27497
+ readonly 'timestamp': string;
27498
+ readonly 'id': string;
27499
+ }
27500
+
27501
+ interface UnserviceableTaxonomyCategoryUpserted {
27502
+ readonly 'discriminator': 'unserviceable_taxonomy_category_upserted';
27503
+ readonly 'event_id': string;
27504
+ readonly 'timestamp': string;
27505
+ readonly 'unserviceable_taxonomy_category': io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
27506
+ }
27507
+
27188
27508
  interface Ups {
27189
27509
  readonly 'discriminator': 'ups';
27190
27510
  readonly 'client_id': string;
@@ -27353,6 +27673,8 @@ declare namespace io.flow.internal.v0.models {
27353
27673
  declare namespace io.flow.internal.v0.unions {
27354
27674
  type AdjustmentAmount = (io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed);
27355
27675
  type AdjustmentDetails = (io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction);
27676
+ type AiOutput = (io.flow.internal.v0.models.PvReviewOutput | io.flow.internal.v0.models.DgReviewOutput | io.flow.internal.v0.models.PcReviewOutput);
27677
+ type AiReviewContext = (io.flow.internal.v0.models.PvReviewContext | io.flow.internal.v0.models.DgReviewContext | io.flow.internal.v0.models.PcReviewContext);
27356
27678
  type AuthorizationPayload = (io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload);
27357
27679
  type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
27358
27680
  type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
@@ -27380,7 +27702,7 @@ declare namespace io.flow.internal.v0.unions {
27380
27702
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
27381
27703
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
27382
27704
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
27383
- type Event = (io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted | io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted | io.flow.internal.v0.models.AdaptivePricingUpdateUpserted | io.flow.internal.v0.models.AdaptivePricingUpdateDeleted | io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | 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.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | 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.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | 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.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.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.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.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.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | 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.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | 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.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | 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.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | 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.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | 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.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.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | 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.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | 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.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | 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.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | 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.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | 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.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | 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);
27705
+ type Event = (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.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | 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.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | 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.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | 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.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.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.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.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.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | 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.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | 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.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | 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.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | 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.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | 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.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.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | 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.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | 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.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | 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.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | 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.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | 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.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | 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);
27384
27706
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
27385
27707
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
27386
27708
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -27423,7 +27745,7 @@ declare namespace io.flow.internal.v0.unions {
27423
27745
  type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
27424
27746
  type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
27425
27747
  type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
27426
- type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata);
27748
+ type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata | io.flow.internal.v0.models.RemediateTaxDutyMetadata);
27427
27749
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
27428
27750
  type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
27429
27751
  type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction | io.flow.internal.v0.models.FlatRateLabelTransaction);
@@ -27437,6 +27759,9 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
27437
27759
  export const adaptiveShippingOrderGuaranteeState: PropTypes.Requireable<io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState>;
27438
27760
  export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
27439
27761
  export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
27762
+ export const aiReviewConsumer: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewConsumer>;
27763
+ export const aiReviewFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewFailureReason>;
27764
+ export const aiReviewType: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewType>;
27440
27765
  export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
27441
27766
  export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
27442
27767
  export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
@@ -27630,11 +27955,13 @@ export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v
27630
27955
  export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
27631
27956
  export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
27632
27957
  export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
27958
+ export const pvDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PvDecision>;
27633
27959
  export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
27634
27960
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
27635
27961
  export const raveenaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RaveenaItemType>;
27636
27962
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
27637
27963
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
27964
+ export const remediateTaxDutyArm: PropTypes.Requireable<io.flow.internal.v0.enums.RemediateTaxDutyArm>;
27638
27965
  export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
27639
27966
  export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
27640
27967
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
@@ -27654,6 +27981,7 @@ export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.inter
27654
27981
  export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
27655
27982
  export const restrictionRuleActivationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleActivationStatus>;
27656
27983
  export const restrictionRuleCommunityExemption: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleCommunityExemption>;
27984
+ export const restrictionRuleEvaluationMode: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleEvaluationMode>;
27657
27985
  export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
27658
27986
  export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
27659
27987
  export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
@@ -27734,19 +28062,9 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
27734
28062
  export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
27735
28063
  export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
27736
28064
  export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
27737
- export const adaptivePricingCoefficient: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficient>;
27738
- export const adaptivePricingCoefficientDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted>;
27739
- export const adaptivePricingCoefficientUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted>;
27740
- export const adaptivePricingDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingDestinationUpdate>;
27741
- export const adaptivePricingUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdate>;
27742
- export const adaptivePricingUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateDeleted>;
27743
- export const adaptivePricingUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateUpserted>;
27744
28065
  export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
27745
28066
  export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
27746
28067
  export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
27747
- export const adaptiveShippingRate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRate>;
27748
- export const adaptiveShippingRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateDeleted>;
27749
- export const adaptiveShippingRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateUpserted>;
27750
28068
  export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
27751
28069
  export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
27752
28070
  export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
@@ -27800,6 +28118,12 @@ export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.Af
27800
28118
  export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
27801
28119
  export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
27802
28120
  export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
28121
+ export const aiReviewBatchSubmitted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewBatchSubmitted>;
28122
+ export const aiReviewFailedItem: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewFailedItem>;
28123
+ export const aiReviewRequestFailed: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewRequestFailed>;
28124
+ export const aiReviewResult: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResult>;
28125
+ export const aiReviewResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResultDeleted>;
28126
+ export const aiReviewResultUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResultUpserted>;
27803
28127
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
27804
28128
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
27805
28129
  export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
@@ -28125,6 +28449,9 @@ export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.
28125
28449
  export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
28126
28450
  export const destinationDutyComparison: PropTypes.Requireable<io.flow.internal.v0.models.DestinationDutyComparison>;
28127
28451
  export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
28452
+ export const dgClassAssessment: PropTypes.Requireable<io.flow.internal.v0.models.DgClassAssessment>;
28453
+ export const dgReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.DgReviewContext>;
28454
+ export const dgReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.DgReviewOutput>;
28128
28455
  export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
28129
28456
  export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
28130
28457
  export const dimensionEstimateOpsInput: PropTypes.Requireable<io.flow.internal.v0.models.DimensionEstimateOpsInput>;
@@ -28208,6 +28535,7 @@ export const externalFulfillmentProof: PropTypes.Requireable<io.flow.internal.v0
28208
28535
  export const externalFulfillmentProofForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofForm>;
28209
28536
  export const externalFulfillmentProofTracking: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTracking>;
28210
28537
  export const externalFulfillmentProofTrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm>;
28538
+ export const externalOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExternalOrderSummary>;
28211
28539
  export const externalRatecardLink: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLink>;
28212
28540
  export const externalRatecardLinkResponse: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLinkResponse>;
28213
28541
  export const facebookPixel: PropTypes.Requireable<io.flow.internal.v0.models.FacebookPixel>;
@@ -28248,6 +28576,9 @@ export const flatRate: PropTypes.Requireable<io.flow.internal.v0.models.FlatRate
28248
28576
  export const flatRateLabelReversal: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversal>;
28249
28577
  export const flatRateLabelReversalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalDeleted>;
28250
28578
  export const flatRateLabelReversalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalUpserted>;
28579
+ export const flatRateLabelSubsidy: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidy>;
28580
+ export const flatRateLabelSubsidyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted>;
28581
+ export const flatRateLabelSubsidyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted>;
28251
28582
  export const flatRateLabelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelTransaction>;
28252
28583
  export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
28253
28584
  export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
@@ -28339,9 +28670,19 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
28339
28670
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
28340
28671
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
28341
28672
  export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
28673
+ export const guaranteedShippingCalibratedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput>;
28674
+ export const guaranteedShippingCalibratedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted>;
28675
+ export const guaranteedShippingCalibratedOutputUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted>;
28342
28676
  export const guaranteedShippingPublishedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutput>;
28343
28677
  export const guaranteedShippingPublishedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted>;
28344
28678
  export const guaranteedShippingPublishedOutputUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted>;
28679
+ export const guaranteedShippingSettings: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettings>;
28680
+ export const guaranteedShippingSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted>;
28681
+ export const guaranteedShippingSettingsDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate>;
28682
+ export const guaranteedShippingSettingsUpdate: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate>;
28683
+ export const guaranteedShippingSettingsUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted>;
28684
+ export const guaranteedShippingSettingsUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted>;
28685
+ export const guaranteedShippingSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted>;
28345
28686
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
28346
28687
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
28347
28688
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -28388,6 +28729,9 @@ export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.I
28388
28729
  export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
28389
28730
  export const invoiceLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLineItem>;
28390
28731
  export const invoiceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceTransaction>;
28732
+ export const issuer: PropTypes.Requireable<io.flow.internal.v0.models.Issuer>;
28733
+ export const issuerDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerDeleted>;
28734
+ export const issuerUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerUpserted>;
28391
28735
  export const itemClassification: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassification>;
28392
28736
  export const itemClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationForm>;
28393
28737
  export const itemClassificationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationSummary>;
@@ -28401,6 +28745,11 @@ export const itemFormImportRequest: PropTypes.Requireable<io.flow.internal.v0.mo
28401
28745
  export const itemHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonization>;
28402
28746
  export const itemHarmonizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationDeleted>;
28403
28747
  export const itemHarmonizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationUpserted>;
28748
+ export const itemHs6Override: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6Override>;
28749
+ export const itemHs6OverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideForm>;
28750
+ export const itemHs6OverrideRejection: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideRejection>;
28751
+ export const itemHs6OverrideResult: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideResult>;
28752
+ export const itemHs6OverridesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverridesForm>;
28404
28753
  export const itemQueryResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemQueryResponse>;
28405
28754
  export const itemRestriction: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestriction>;
28406
28755
  export const itemRestrictionPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestrictionPostForm>;
@@ -28577,6 +28926,7 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
28577
28926
  export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
28578
28927
  export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
28579
28928
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
28929
+ export const orderSettings: PropTypes.Requireable<io.flow.internal.v0.models.OrderSettings>;
28580
28930
  export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
28581
28931
  export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
28582
28932
  export const orderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted>;
@@ -28659,6 +29009,9 @@ export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.i
28659
29009
  export const otherRecordOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrganizationSummary>;
28660
29010
  export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
28661
29011
  export const otherRecordWithholdings: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordWithholdings>;
29012
+ export const outboundShippingCost: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCost>;
29013
+ export const outboundShippingCostDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCostDeleted>;
29014
+ export const outboundShippingCostUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCostUpserted>;
28662
29015
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
28663
29016
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
28664
29017
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -28718,6 +29071,8 @@ export const paypalPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
28718
29071
  export const paypalPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalPaymentUpserted>;
28719
29072
  export const paypalRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundDeleted>;
28720
29073
  export const paypalRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundUpserted>;
29074
+ export const pcReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.PcReviewContext>;
29075
+ export const pcReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.PcReviewOutput>;
28721
29076
  export const pendingBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPayment>;
28722
29077
  export const pendingBankPaymentDetail: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPaymentDetail>;
28723
29078
  export const pendingOrder: PropTypes.Requireable<io.flow.internal.v0.models.PendingOrder>;
@@ -28795,6 +29150,8 @@ export const pspRoutingDistributionRevision: PropTypes.Requireable<io.flow.inter
28795
29150
  export const pspRoutingDistributionRevisionForm: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevisionForm>;
28796
29151
  export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
28797
29152
  export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
29153
+ export const pvReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.PvReviewContext>;
29154
+ export const pvReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.PvReviewOutput>;
28798
29155
  export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
28799
29156
  export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
28800
29157
  export const quoteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteUpserted>;
@@ -28848,6 +29205,7 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
28848
29205
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
28849
29206
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
28850
29207
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
29208
+ export const remediateTaxDutyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RemediateTaxDutyMetadata>;
28851
29209
  export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
28852
29210
  export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
28853
29211
  export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
@@ -28969,6 +29327,7 @@ export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.mo
28969
29327
  export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
28970
29328
  export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
28971
29329
  export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
29330
+ export const reviewRequestItem: PropTypes.Requireable<io.flow.internal.v0.models.ReviewRequestItem>;
28972
29331
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
28973
29332
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
28974
29333
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
@@ -28991,6 +29350,9 @@ export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.model
28991
29350
  export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
28992
29351
  export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
28993
29352
  export const sellabilityCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityCheckResult>;
29353
+ export const sellabilityPendingVerification: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerification>;
29354
+ export const sellabilityPendingVerificationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerificationDeleted>;
29355
+ export const sellabilityPendingVerificationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerificationUpserted>;
28994
29356
  export const serviceFees: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFees>;
28995
29357
  export const serviceFeesForm: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFeesForm>;
28996
29358
  export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
@@ -29297,6 +29659,9 @@ export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.int
29297
29659
  export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
29298
29660
  export const unharmonizedItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnharmonizedItemsExport>;
29299
29661
  export const unphrasedProductsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnphrasedProductsExport>;
29662
+ export const unserviceableTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategory>;
29663
+ export const unserviceableTaxonomyCategoryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted>;
29664
+ export const unserviceableTaxonomyCategoryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted>;
29300
29665
  export const ups: PropTypes.Requireable<io.flow.internal.v0.models.Ups>;
29301
29666
  export const usdSpotRate: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRate>;
29302
29667
  export const usdSpotRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateDeleted>;
@@ -29319,6 +29684,8 @@ export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
29319
29684
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
29320
29685
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
29321
29686
  export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
29687
+ export const aiOutput: PropTypes.Requireable<io.flow.internal.v0.unions.AiOutput>;
29688
+ export const aiReviewContext: PropTypes.Requireable<io.flow.internal.v0.unions.AiReviewContext>;
29322
29689
  export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizationPayload>;
29323
29690
  export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
29324
29691
  export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;