@flowio/types 11.24.139 → 11.24.140

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.
@@ -1256,7 +1256,7 @@ declare namespace io.flow.channel.v0.models {
1256
1256
  declare namespace io.flow.restrictions.v0.enums {
1257
1257
  type RestrictedReviewStatus = 'in_review' | 'reviewed';
1258
1258
  type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
1259
- type RestrictionDecisionReason = 'manual_dispute';
1259
+ type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
1260
1260
  type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
1261
1261
  type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
1262
1262
  }
@@ -7025,6 +7025,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7025
7025
  readonly id: string;
7026
7026
  }
7027
7027
 
7028
+ interface OrderSettings {
7029
+ readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
7030
+ }
7031
+
7028
7032
  interface OrderTaxAndDutyInclusivitySetting {
7029
7033
  readonly id: string;
7030
7034
  readonly organization_id: string;
@@ -8465,6 +8469,7 @@ declare namespace io.flow.shopify.external.v0.models {
8465
8469
  }
8466
8470
 
8467
8471
  interface GraphqlTaxonomyCategory {
8472
+ readonly id?: string;
8468
8473
  readonly name: string;
8469
8474
  readonly fullName: string;
8470
8475
  }
@@ -8586,7 +8591,7 @@ declare namespace io.flow.shopify.external.v0.models {
8586
8591
  readonly created_at: string;
8587
8592
  readonly updated_at: string;
8588
8593
  readonly has_variants_that_requires_components?: boolean;
8589
- readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
8594
+ readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
8590
8595
  readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
8591
8596
  }
8592
8597
 
@@ -8726,6 +8731,12 @@ declare namespace io.flow.shopify.external.v0.models {
8726
8731
  readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
8727
8732
  }
8728
8733
 
8734
+ interface RestTaxonomyCategory {
8735
+ readonly name: string;
8736
+ readonly full_name: string;
8737
+ readonly admin_graphql_api_id?: string;
8738
+ }
8739
+
8729
8740
  interface Shop {
8730
8741
  readonly id: number;
8731
8742
  readonly domain: string;
@@ -10330,6 +10341,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
10330
10341
  }
10331
10342
 
10332
10343
  declare namespace io.flow.order.price.v0.enums {
10344
+ type OrderPriceCoefficientType = 'item_shipping';
10333
10345
  type OrderPriceDetailComponentKey =
10334
10346
  | 'adjustment'
10335
10347
  | 'vat_deminimis'
@@ -10379,9 +10391,16 @@ declare namespace io.flow.order.price.v0.enums {
10379
10391
  | 'tax_and_duties'
10380
10392
  | 'product'
10381
10393
  | 'mor_tax';
10394
+ type OrderPriceSubsidyType = 'shipping_subsidy';
10382
10395
  }
10383
10396
 
10384
10397
  declare namespace io.flow.order.price.v0.models {
10398
+ interface OrderPriceCoefficient {
10399
+ readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
10400
+ readonly value: number;
10401
+ readonly price: io.flow.common.v0.models.PriceWithBase;
10402
+ }
10403
+
10385
10404
  interface OrderPriceDetail {
10386
10405
  readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
10387
10406
  readonly currency: string;
@@ -10416,10 +10435,17 @@ declare namespace io.flow.order.price.v0.models {
10416
10435
  readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
10417
10436
  }
10418
10437
 
10438
+ interface OrderPriceSubsidy {
10439
+ readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
10440
+ readonly price: io.flow.common.v0.models.PriceWithBase;
10441
+ }
10442
+
10419
10443
  interface PurchasePriceBreakdown {
10420
10444
  readonly total_price: io.flow.common.v0.models.PriceWithBase;
10421
10445
  readonly product_price: io.flow.common.v0.models.PriceWithBase;
10422
10446
  readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
10447
+ readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
10448
+ readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
10423
10449
  }
10424
10450
  }
10425
10451
 
@@ -10518,7 +10544,7 @@ declare namespace io.flow.channel.internal.v0.models {
10518
10544
  readonly order_updated_at?: string;
10519
10545
  readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
10520
10546
  readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
10521
- readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
10547
+ readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
10522
10548
  }
10523
10549
 
10524
10550
  interface ChannelOrderAcceptanceDetails {
@@ -10581,6 +10607,12 @@ declare namespace io.flow.channel.internal.v0.models {
10581
10607
  readonly catalog_products_count?: number;
10582
10608
  }
10583
10609
 
10610
+ interface ExternalOrderSummary {
10611
+ readonly id: string;
10612
+ readonly edit_ids: string[];
10613
+ readonly created_at?: string;
10614
+ }
10615
+
10584
10616
  interface FlowChannelOrganization {
10585
10617
  readonly placeholder?: string;
10586
10618
  }
@@ -11657,7 +11689,7 @@ declare namespace io.flow.experience.v0.enums {
11657
11689
  type OrganizationPaymentMethodTag = 'deny';
11658
11690
  type PaymentMethodRuleContentKey = 'description';
11659
11691
  type PriceFacetBoundary = 'min' | 'max';
11660
- type PricingType = 'inclusive_pricing';
11692
+ type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
11661
11693
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
11662
11694
  type TaxAndDutyInclusivitySetting =
11663
11695
  | 'duty_exclusive_tax_exclusive'
@@ -13618,35 +13650,6 @@ declare namespace io.flow.crypto.v0.models {
13618
13650
  }
13619
13651
  }
13620
13652
 
13621
- declare namespace io.flow.channel.shopify.v0.enums {
13622
- type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
13623
- }
13624
-
13625
- declare namespace io.flow.channel.shopify.v0.models {
13626
- interface ChannelShopifyOrderState {
13627
- readonly id: string;
13628
- readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
13629
- readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
13630
- readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
13631
- readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
13632
- }
13633
-
13634
- interface ChannelShopifyOrderStateReason {
13635
- readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
13636
- readonly message: string;
13637
- }
13638
-
13639
- interface ChannelShopifyOrderSummary {
13640
- readonly order_id: number;
13641
- readonly shop_id: number;
13642
- }
13643
-
13644
- interface ExternalOrderSummary {
13645
- readonly id: string;
13646
- readonly edit_ids: string[];
13647
- }
13648
- }
13649
-
13650
13653
  declare namespace io.flow.shopify.merchant.config.v0.models {
13651
13654
  interface Company {
13652
13655
  readonly discriminator: 'company';
@@ -14131,6 +14134,7 @@ declare namespace io.flow.product.v0.models {
14131
14134
  interface ProductTaxonomyCategory {
14132
14135
  readonly name: string;
14133
14136
  readonly full_name: string;
14137
+ readonly id?: string;
14134
14138
  }
14135
14139
 
14136
14140
  interface ProductTaxonomyData {
@@ -15396,6 +15400,7 @@ declare namespace io.flow.billing.v0.enums {
15396
15400
  | 'us_inbound_tax_refund'
15397
15401
  | 'order_cancellation_above_de_min'
15398
15402
  | 'wyol_shipment_above_de_min'
15403
+ | 'wyol_shipment_lvg'
15399
15404
  | 'full_refund_without_shipment'
15400
15405
  | 'unfulfilled_order_above_de_min'
15401
15406
  | 'order_cancellation_without_capture';
@@ -15544,6 +15549,7 @@ declare namespace io.flow.billing.v0.models {
15544
15549
  readonly settlement: io.flow.billing.v0.unions.Settlement;
15545
15550
  readonly attachments: io.flow.billing.v0.models.Attachment[];
15546
15551
  readonly created_at: string;
15552
+ readonly period?: io.flow.common.v0.models.DatetimeRange;
15547
15553
  }
15548
15554
 
15549
15555
  interface ChannelTransaction {
@@ -15709,6 +15715,7 @@ declare namespace io.flow.billing.v0.models {
15709
15715
  readonly settlement: io.flow.billing.v0.unions.Settlement;
15710
15716
  readonly attachments: io.flow.billing.v0.models.Attachment[];
15711
15717
  readonly created_at: string;
15718
+ readonly period?: io.flow.common.v0.models.DatetimeRange;
15712
15719
  }
15713
15720
 
15714
15721
  interface StatementStatusForm {
@@ -16764,6 +16771,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
16764
16771
  readonly bank_name: string;
16765
16772
  }
16766
16773
 
16774
+ interface BankAccountInfoKorV2 {
16775
+ readonly discriminator: 'kor_v2';
16776
+ readonly name: string;
16777
+ readonly bank_account_number: string;
16778
+ readonly bank_routing_number: string;
16779
+ readonly bank_name: string;
16780
+ }
16781
+
16767
16782
  interface BankAccountInfoUsa {
16768
16783
  readonly discriminator: 'usa';
16769
16784
  readonly routing_number: string;
@@ -16778,7 +16793,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
16778
16793
  | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
16779
16794
  | io.flow.billing.bank.account.v0.models.BankAccountInfoFra
16780
16795
  | io.flow.billing.bank.account.v0.models.BankAccountInfoIta
16781
- | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
16796
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoKor
16797
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
16782
16798
  }
16783
16799
 
16784
16800
  declare namespace io.flow.internal.v0.enums {
@@ -16795,6 +16811,16 @@ declare namespace io.flow.internal.v0.enums {
16795
16811
  | 'hosted_payment_page'
16796
16812
  | 'checkout_payments_api'
16797
16813
  | 'classic_authorise_api';
16814
+ type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
16815
+ type AiReviewFailureReason =
16816
+ | 'item_errored'
16817
+ | 'item_expired'
16818
+ | 'item_unparseable'
16819
+ | 'item_image_fetch_failed'
16820
+ | 'item_undecided'
16821
+ | 'batch_failed'
16822
+ | 'batch_timed_out';
16823
+ type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
16798
16824
  type AmruthaItemType = 'physical' | 'digital';
16799
16825
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
16800
16826
  type ApiCallReferenceId =
@@ -17232,7 +17258,7 @@ declare namespace io.flow.internal.v0.enums {
17232
17258
  | 'Flow'
17233
17259
  | 'FlowOnboarding'
17234
17260
  | 'Borderfree';
17235
- type ClassificationScope = 'Item' | 'Product';
17261
+ type ClassificationScope = 'Item' | 'Product' | 'Bucket';
17236
17262
  type ClassificationSource = 'sellability';
17237
17263
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
17238
17264
  type ClothingAgeClassification =
@@ -17322,12 +17348,6 @@ declare namespace io.flow.internal.v0.enums {
17322
17348
  type ErpFileType = 'vendor';
17323
17349
  type EvaluationCheckResult = 'pass' | 'fail';
17324
17350
  type EventType =
17325
- | 'adaptive_pricing_coefficient_upserted'
17326
- | 'adaptive_pricing_coefficient_deleted'
17327
- | 'adaptive_pricing_update_upserted'
17328
- | 'adaptive_pricing_update_deleted'
17329
- | 'adaptive_shipping_rate_upserted'
17330
- | 'adaptive_shipping_rate_deleted'
17331
17351
  | 'adyen_authorization_deleted'
17332
17352
  | 'adyen_authorization_upserted'
17333
17353
  | 'adyen_cancel_deleted'
@@ -17338,6 +17358,10 @@ declare namespace io.flow.internal.v0.enums {
17338
17358
  | 'adyen_refund_upserted'
17339
17359
  | 'adyen_dispute_upserted'
17340
17360
  | 'adyen_dispute_deleted'
17361
+ | 'ai_review_batch_submitted'
17362
+ | 'ai_review_result_upserted'
17363
+ | 'ai_review_result_deleted'
17364
+ | 'ai_review_request_failed'
17341
17365
  | 'fulfillment_upserted'
17342
17366
  | 'fulfillment_deleted'
17343
17367
  | 'merchant_upserted'
@@ -17475,6 +17499,8 @@ declare namespace io.flow.internal.v0.enums {
17475
17499
  | 'mor_cost_deleted'
17476
17500
  | 'flat_rate_label_reversal_upserted'
17477
17501
  | 'flat_rate_label_reversal_deleted'
17502
+ | 'flat_rate_label_subsidy_upserted'
17503
+ | 'flat_rate_label_subsidy_deleted'
17478
17504
  | 'fraud_review_upserted'
17479
17505
  | 'fraud_review_deleted'
17480
17506
  | 'fraud_pending_review_upserted'
@@ -17500,8 +17526,16 @@ declare namespace io.flow.internal.v0.enums {
17500
17526
  | 'fulfillment_fallbacks_deleted'
17501
17527
  | 'quote_upserted'
17502
17528
  | 'quote_deleted'
17529
+ | 'guaranteed_shipping_calibrated_output_upserted'
17530
+ | 'guaranteed_shipping_calibrated_output_deleted'
17531
+ | 'outbound_shipping_cost_upserted'
17532
+ | 'outbound_shipping_cost_deleted'
17503
17533
  | 'guaranteed_shipping_published_output_upserted'
17504
17534
  | 'guaranteed_shipping_published_output_deleted'
17535
+ | 'guaranteed_shipping_settings_upserted'
17536
+ | 'guaranteed_shipping_settings_deleted'
17537
+ | 'guaranteed_shipping_settings_update_upserted'
17538
+ | 'guaranteed_shipping_settings_update_deleted'
17505
17539
  | 'all_items_export'
17506
17540
  | 'harmonized_items_hs6_export'
17507
17541
  | 'unharmonized_items_export'
@@ -17524,6 +17558,8 @@ declare namespace io.flow.internal.v0.enums {
17524
17558
  | 'merchant_override_upserted'
17525
17559
  | 'merchant_override_deleted'
17526
17560
  | 'harmonization_classification_statistics_published'
17561
+ | 'issuer_upserted'
17562
+ | 'issuer_deleted'
17527
17563
  | 'item_form_import_request'
17528
17564
  | 'label_request_error_upserted'
17529
17565
  | 'label_request_error_deleted'
@@ -17634,6 +17670,10 @@ declare namespace io.flow.internal.v0.enums {
17634
17670
  | 'taxonomy_category_hs6_ref_deleted'
17635
17671
  | 'preonboarding_merchant_upserted'
17636
17672
  | 'preonboarding_merchant_deleted'
17673
+ | 'unserviceable_taxonomy_category_upserted'
17674
+ | 'unserviceable_taxonomy_category_deleted'
17675
+ | 'sellability_pending_verification_upserted'
17676
+ | 'sellability_pending_verification_deleted'
17637
17677
  | 'shopify_hs10_codes_upserted'
17638
17678
  | 'shopify_hs10_codes_deleted'
17639
17679
  | 'shopify_markets_order_upserted'
@@ -17806,7 +17846,8 @@ declare namespace io.flow.internal.v0.enums {
17806
17846
  | 'classified'
17807
17847
  | 'non_classifiable_not_enough_information'
17808
17848
  | 'exempt'
17809
- | 'manual_classification_required';
17849
+ | 'manual_classification_required'
17850
+ | 'unserviceable_taxonomy';
17810
17851
  type ItemQuantityAction =
17811
17852
  | 'fulfillment_ship'
17812
17853
  | 'fulfillment_cancel'
@@ -18038,6 +18079,7 @@ declare namespace io.flow.internal.v0.enums {
18038
18079
  | 'crypto';
18039
18080
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
18040
18081
  type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
18082
+ type PvDecision = 'uphold' | 'remove';
18041
18083
  type RateLevelKey =
18042
18084
  | 'shopify_small_usa'
18043
18085
  | 'shopify_medium_usa'
@@ -18053,6 +18095,7 @@ declare namespace io.flow.internal.v0.enums {
18053
18095
  | 'risky_velocity'
18054
18096
  | 'suspicious_behavior'
18055
18097
  | 'suspicious_past_activity';
18098
+ type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
18056
18099
  type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
18057
18100
  type ReportFileType = 'stripe_connect_report';
18058
18101
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
@@ -18073,6 +18116,7 @@ declare namespace io.flow.internal.v0.enums {
18073
18116
  | 'scheduled_payment_citi'
18074
18117
  | 'scheduled_payment_citi_krw'
18075
18118
  | 'scheduled_payment_citi_krw_txt'
18119
+ | 'scheduled_payment_citi_uk_xml'
18076
18120
  | 'account_quarterly_balances'
18077
18121
  | 'invariants'
18078
18122
  | 'payments'
@@ -18112,6 +18156,9 @@ declare namespace io.flow.internal.v0.enums {
18112
18156
  type RestrictionRuleCommunityExemption =
18113
18157
  | 'domestic_exemption'
18114
18158
  | 'intra_eu_exemption';
18159
+ type RestrictionRuleEvaluationMode =
18160
+ | 'all_screenings'
18161
+ | 'first_screening_only';
18115
18162
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
18116
18163
  type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
18117
18164
  type RestrictionStatus =
@@ -18600,6 +18647,8 @@ declare namespace io.flow.internal.v0.models {
18600
18647
  readonly refund?: io.flow.payment.v0.models.RefundReference;
18601
18648
  readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
18602
18649
  readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
18650
+ readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
18651
+ readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
18603
18652
  }
18604
18653
 
18605
18654
  interface ActionQuantity {
@@ -18607,67 +18656,6 @@ declare namespace io.flow.internal.v0.models {
18607
18656
  readonly quantity: number;
18608
18657
  }
18609
18658
 
18610
- interface AdaptivePricingCoefficient {
18611
- readonly coefficients_updated_at: number;
18612
- readonly channel_id: string;
18613
- readonly organization_id: string;
18614
- readonly destination_country: string;
18615
- readonly tax_and_duty_coefficient: number;
18616
- readonly fees_coefficient: number;
18617
- readonly merchant_subsidy: io.flow.common.v0.models.Money;
18618
- readonly created_at: number;
18619
- }
18620
-
18621
- interface AdaptivePricingCoefficientDeleted {
18622
- readonly discriminator: 'adaptive_pricing_coefficient_deleted';
18623
- readonly event_id: string;
18624
- readonly timestamp: string;
18625
- readonly organization: string;
18626
- readonly channel_id: string;
18627
- readonly id: string;
18628
- }
18629
-
18630
- interface AdaptivePricingCoefficientUpserted {
18631
- readonly discriminator: 'adaptive_pricing_coefficient_upserted';
18632
- readonly event_id: string;
18633
- readonly timestamp: string;
18634
- readonly organization: string;
18635
- readonly channel_id: string;
18636
- readonly adaptive_pricing_coefficient: io.flow.internal.v0.models.AdaptivePricingCoefficient;
18637
- }
18638
-
18639
- interface AdaptivePricingDestinationUpdate {
18640
- readonly country: string;
18641
- readonly updated_at: string;
18642
- readonly tax_and_duty_coefficient: number;
18643
- readonly fees_coefficient: number;
18644
- readonly merchant_subsidy: io.flow.common.v0.models.Money;
18645
- }
18646
-
18647
- interface AdaptivePricingUpdate {
18648
- readonly channel_id: string;
18649
- readonly organization_id: string;
18650
- readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
18651
- }
18652
-
18653
- interface AdaptivePricingUpdateDeleted {
18654
- readonly discriminator: 'adaptive_pricing_update_deleted';
18655
- readonly event_id: string;
18656
- readonly timestamp: string;
18657
- readonly organization: string;
18658
- readonly channel_id: string;
18659
- readonly id: string;
18660
- }
18661
-
18662
- interface AdaptivePricingUpdateUpserted {
18663
- readonly discriminator: 'adaptive_pricing_update_upserted';
18664
- readonly event_id: string;
18665
- readonly timestamp: string;
18666
- readonly organization: string;
18667
- readonly channel_id: string;
18668
- readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
18669
- }
18670
-
18671
18659
  interface AdaptiveShippingOrderGuarantee {
18672
18660
  readonly id: string;
18673
18661
  readonly organization_id: string;
@@ -18693,33 +18681,6 @@ declare namespace io.flow.internal.v0.models {
18693
18681
  readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
18694
18682
  }
18695
18683
 
18696
- interface AdaptiveShippingRate {
18697
- readonly id: string;
18698
- readonly organization_id: string;
18699
- readonly channel_id: string;
18700
- readonly destination_country: string;
18701
- readonly coefficient: number;
18702
- readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
18703
- readonly effective_at: string;
18704
- readonly effective_until?: string;
18705
- }
18706
-
18707
- interface AdaptiveShippingRateDeleted {
18708
- readonly discriminator: 'adaptive_shipping_rate_deleted';
18709
- readonly event_id: string;
18710
- readonly timestamp: string;
18711
- readonly organization: string;
18712
- readonly id: string;
18713
- }
18714
-
18715
- interface AdaptiveShippingRateUpserted {
18716
- readonly discriminator: 'adaptive_shipping_rate_upserted';
18717
- readonly event_id: string;
18718
- readonly timestamp: string;
18719
- readonly organization: string;
18720
- readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
18721
- }
18722
-
18723
18684
  interface AdditionalImportTax {
18724
18685
  readonly name?: string;
18725
18686
  readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
@@ -19154,6 +19115,55 @@ declare namespace io.flow.internal.v0.models {
19154
19115
  readonly placeholder?: boolean;
19155
19116
  }
19156
19117
 
19118
+ interface AiReviewBatchSubmitted {
19119
+ readonly discriminator: 'ai_review_batch_submitted';
19120
+ readonly event_id: string;
19121
+ readonly timestamp: string;
19122
+ readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
19123
+ readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
19124
+ }
19125
+
19126
+ interface AiReviewFailedItem {
19127
+ readonly review_id: string;
19128
+ readonly organization_id: string;
19129
+ }
19130
+
19131
+ interface AiReviewRequestFailed {
19132
+ readonly discriminator: 'ai_review_request_failed';
19133
+ readonly event_id: string;
19134
+ readonly timestamp: string;
19135
+ readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
19136
+ readonly review_type: io.flow.internal.v0.enums.AiReviewType;
19137
+ readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
19138
+ readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
19139
+ }
19140
+
19141
+ interface AiReviewResult {
19142
+ readonly review_id: string;
19143
+ readonly organization_id: string;
19144
+ readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
19145
+ readonly review_type: io.flow.internal.v0.enums.AiReviewType;
19146
+ readonly ai_output: io.flow.internal.v0.unions.AiOutput;
19147
+ readonly ai_model: string;
19148
+ readonly prompt_id: string;
19149
+ readonly prompt_version: string;
19150
+ }
19151
+
19152
+ interface AiReviewResultDeleted {
19153
+ readonly discriminator: 'ai_review_result_deleted';
19154
+ readonly event_id: string;
19155
+ readonly timestamp: string;
19156
+ readonly id: string;
19157
+ readonly organization: string;
19158
+ }
19159
+
19160
+ interface AiReviewResultUpserted {
19161
+ readonly discriminator: 'ai_review_result_upserted';
19162
+ readonly event_id: string;
19163
+ readonly timestamp: string;
19164
+ readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
19165
+ }
19166
+
19157
19167
  interface AllItemsExport {
19158
19168
  readonly discriminator: 'all_items_export';
19159
19169
  readonly event_id: string;
@@ -20461,7 +20471,7 @@ declare namespace io.flow.internal.v0.models {
20461
20471
  readonly order_updated_at?: string;
20462
20472
  readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
20463
20473
  readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
20464
- readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
20474
+ readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
20465
20475
  }
20466
20476
 
20467
20477
  interface ChannelOrderAcceptanceDeleted {
@@ -21694,6 +21704,29 @@ declare namespace io.flow.internal.v0.models {
21694
21704
  readonly destination: io.flow.common.v0.models.Address;
21695
21705
  }
21696
21706
 
21707
+ interface DgClassAssessment {
21708
+ readonly dg_class: string;
21709
+ readonly decision: io.flow.internal.v0.enums.PvDecision;
21710
+ readonly confidence: number;
21711
+ readonly reasoning: string;
21712
+ }
21713
+
21714
+ interface DgReviewContext {
21715
+ readonly discriminator: 'dg_review_context';
21716
+ readonly organization_id: string;
21717
+ readonly item_name: string;
21718
+ readonly item_description?: string;
21719
+ readonly image_url?: string;
21720
+ readonly hs_code?: string;
21721
+ readonly categories?: string;
21722
+ readonly price?: string;
21723
+ }
21724
+
21725
+ interface DgReviewOutput {
21726
+ readonly discriminator: 'dg_review_output';
21727
+ readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
21728
+ }
21729
+
21697
21730
  interface Dhl {
21698
21731
  readonly discriminator: 'dhl';
21699
21732
  readonly export_account_number: string;
@@ -22428,6 +22461,12 @@ declare namespace io.flow.internal.v0.models {
22428
22461
  readonly fulfilled_via_replacement_order?: boolean;
22429
22462
  }
22430
22463
 
22464
+ interface ExternalOrderSummary {
22465
+ readonly id: string;
22466
+ readonly edit_ids: string[];
22467
+ readonly created_at?: string;
22468
+ }
22469
+
22431
22470
  interface ExternalRatecardLink {
22432
22471
  readonly external_ratecard_id: string;
22433
22472
  readonly flow_ratecard_ids: string[];
@@ -22735,6 +22774,31 @@ declare namespace io.flow.internal.v0.models {
22735
22774
  readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
22736
22775
  }
22737
22776
 
22777
+ interface FlatRateLabelSubsidy {
22778
+ readonly id: string;
22779
+ readonly source: io.flow.billing.v0.enums.TransactionSource;
22780
+ readonly organization_id: string;
22781
+ readonly order_number: string;
22782
+ readonly amount: io.flow.common.v0.models.Money;
22783
+ readonly tax: io.flow.common.v0.models.Money;
22784
+ }
22785
+
22786
+ interface FlatRateLabelSubsidyDeleted {
22787
+ readonly discriminator: 'flat_rate_label_subsidy_deleted';
22788
+ readonly event_id: string;
22789
+ readonly timestamp: string;
22790
+ readonly organization: string;
22791
+ readonly id: string;
22792
+ }
22793
+
22794
+ interface FlatRateLabelSubsidyUpserted {
22795
+ readonly discriminator: 'flat_rate_label_subsidy_upserted';
22796
+ readonly event_id: string;
22797
+ readonly timestamp: string;
22798
+ readonly organization: string;
22799
+ readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
22800
+ }
22801
+
22738
22802
  interface FlatRateLabelTransaction {
22739
22803
  readonly discriminator: 'flat_rate_label_transaction';
22740
22804
  readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -23447,6 +23511,33 @@ declare namespace io.flow.internal.v0.models {
23447
23511
  readonly tracker_id: string;
23448
23512
  }
23449
23513
 
23514
+ interface GuaranteedShippingCalibratedOutput {
23515
+ readonly id: string;
23516
+ readonly organization_id: string;
23517
+ readonly channel_id: string;
23518
+ readonly destination_country: string;
23519
+ readonly coefficient: number;
23520
+ readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
23521
+ readonly effective_at: string;
23522
+ readonly effective_until?: string;
23523
+ }
23524
+
23525
+ interface GuaranteedShippingCalibratedOutputDeleted {
23526
+ readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
23527
+ readonly event_id: string;
23528
+ readonly timestamp: string;
23529
+ readonly organization: string;
23530
+ readonly id: string;
23531
+ }
23532
+
23533
+ interface GuaranteedShippingCalibratedOutputUpserted {
23534
+ readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
23535
+ readonly event_id: string;
23536
+ readonly timestamp: string;
23537
+ readonly organization: string;
23538
+ readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
23539
+ }
23540
+
23450
23541
  interface GuaranteedShippingPublishedOutput {
23451
23542
  readonly id: string;
23452
23543
  readonly organization_id: string;
@@ -23473,6 +23564,67 @@ declare namespace io.flow.internal.v0.models {
23473
23564
  readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
23474
23565
  }
23475
23566
 
23567
+ interface GuaranteedShippingSettings {
23568
+ readonly coefficients_updated_at: number;
23569
+ readonly channel_id: string;
23570
+ readonly organization_id: string;
23571
+ readonly destination_country: string;
23572
+ readonly tax_and_duty_coefficient: number;
23573
+ readonly fees_coefficient: number;
23574
+ readonly merchant_subsidy: io.flow.common.v0.models.Money;
23575
+ readonly created_at: number;
23576
+ }
23577
+
23578
+ interface GuaranteedShippingSettingsDeleted {
23579
+ readonly discriminator: 'guaranteed_shipping_settings_deleted';
23580
+ readonly event_id: string;
23581
+ readonly timestamp: string;
23582
+ readonly organization: string;
23583
+ readonly channel_id: string;
23584
+ readonly id: string;
23585
+ }
23586
+
23587
+ interface GuaranteedShippingSettingsDestinationUpdate {
23588
+ readonly country: string;
23589
+ readonly updated_at: string;
23590
+ readonly tax_and_duty_coefficient: number;
23591
+ readonly fees_coefficient: number;
23592
+ readonly merchant_subsidy: io.flow.common.v0.models.Money;
23593
+ }
23594
+
23595
+ interface GuaranteedShippingSettingsUpdate {
23596
+ readonly channel_id: string;
23597
+ readonly organization_id: string;
23598
+ readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
23599
+ }
23600
+
23601
+ interface GuaranteedShippingSettingsUpdateDeleted {
23602
+ readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
23603
+ readonly event_id: string;
23604
+ readonly timestamp: string;
23605
+ readonly organization: string;
23606
+ readonly channel_id: string;
23607
+ readonly id: string;
23608
+ }
23609
+
23610
+ interface GuaranteedShippingSettingsUpdateUpserted {
23611
+ readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
23612
+ readonly event_id: string;
23613
+ readonly timestamp: string;
23614
+ readonly organization: string;
23615
+ readonly channel_id: string;
23616
+ readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
23617
+ }
23618
+
23619
+ interface GuaranteedShippingSettingsUpserted {
23620
+ readonly discriminator: 'guaranteed_shipping_settings_upserted';
23621
+ readonly event_id: string;
23622
+ readonly timestamp: string;
23623
+ readonly organization: string;
23624
+ readonly channel_id: string;
23625
+ readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
23626
+ }
23627
+
23476
23628
  interface HarmonizationClassificationStatisticsData {
23477
23629
  readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
23478
23630
  }
@@ -23865,6 +24017,32 @@ declare namespace io.flow.internal.v0.models {
23865
24017
  readonly created_at: string;
23866
24018
  }
23867
24019
 
24020
+ interface Issuer {
24021
+ readonly id: string;
24022
+ readonly iin: string;
24023
+ readonly name?: string;
24024
+ readonly country?: string;
24025
+ readonly brand?: string;
24026
+ readonly type?: string;
24027
+ readonly category?: string;
24028
+ readonly website?: string;
24029
+ readonly phone?: string;
24030
+ }
24031
+
24032
+ interface IssuerDeleted {
24033
+ readonly discriminator: 'issuer_deleted';
24034
+ readonly event_id: string;
24035
+ readonly timestamp: string;
24036
+ readonly issuer: io.flow.internal.v0.models.Issuer;
24037
+ }
24038
+
24039
+ interface IssuerUpserted {
24040
+ readonly discriminator: 'issuer_upserted';
24041
+ readonly event_id: string;
24042
+ readonly timestamp: string;
24043
+ readonly issuer: io.flow.internal.v0.models.Issuer;
24044
+ }
24045
+
23868
24046
  interface ItemClassification {
23869
24047
  readonly id?: string;
23870
24048
  readonly organization: string;
@@ -23992,6 +24170,31 @@ declare namespace io.flow.internal.v0.models {
23992
24170
  readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
23993
24171
  }
23994
24172
 
24173
+ interface ItemHs6Override {
24174
+ readonly item_number: string;
24175
+ readonly hs6: string;
24176
+ }
24177
+
24178
+ interface ItemHs6OverrideForm {
24179
+ readonly item_number: string;
24180
+ readonly hs6: string;
24181
+ readonly hs6_description?: string;
24182
+ }
24183
+
24184
+ interface ItemHs6OverrideRejection {
24185
+ readonly item_number: string;
24186
+ readonly message: string;
24187
+ }
24188
+
24189
+ interface ItemHs6OverrideResult {
24190
+ readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
24191
+ readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
24192
+ }
24193
+
24194
+ interface ItemHs6OverridesForm {
24195
+ readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
24196
+ }
24197
+
23995
24198
  interface ItemQueryResponse {
23996
24199
  readonly q: string;
23997
24200
  readonly items: io.flow.catalog.v0.models.Item[];
@@ -25370,6 +25573,10 @@ declare namespace io.flow.internal.v0.models {
25370
25573
  readonly to_service_id: string;
25371
25574
  }
25372
25575
 
25576
+ interface OrderSettings {
25577
+ readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
25578
+ }
25579
+
25373
25580
  interface OrderSummary {
25374
25581
  readonly id: string;
25375
25582
  readonly organization: io.flow.common.v0.models.OrganizationReference;
@@ -26027,6 +26234,35 @@ declare namespace io.flow.internal.v0.models {
26027
26234
  readonly insurance: number;
26028
26235
  }
26029
26236
 
26237
+ interface OutboundShippingCost {
26238
+ readonly channel_id: string;
26239
+ readonly organization_id: string;
26240
+ readonly destination_country: string;
26241
+ readonly carrier_service_id: string;
26242
+ readonly cost: io.flow.common.v0.models.Money;
26243
+ readonly updated_at: number;
26244
+ readonly run_id: string;
26245
+ readonly model_version: string;
26246
+ }
26247
+
26248
+ interface OutboundShippingCostDeleted {
26249
+ readonly discriminator: 'outbound_shipping_cost_deleted';
26250
+ readonly event_id: string;
26251
+ readonly timestamp: string;
26252
+ readonly organization: string;
26253
+ readonly channel_id: string;
26254
+ readonly id: string;
26255
+ }
26256
+
26257
+ interface OutboundShippingCostUpserted {
26258
+ readonly discriminator: 'outbound_shipping_cost_upserted';
26259
+ readonly event_id: string;
26260
+ readonly timestamp: string;
26261
+ readonly organization: string;
26262
+ readonly channel_id: string;
26263
+ readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
26264
+ }
26265
+
26030
26266
  interface Partner {
26031
26267
  readonly id: string;
26032
26268
  readonly name: string;
@@ -26525,6 +26761,24 @@ declare namespace io.flow.internal.v0.models {
26525
26761
  readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
26526
26762
  }
26527
26763
 
26764
+ interface PcReviewContext {
26765
+ readonly discriminator: 'pc_review_context';
26766
+ readonly organization_id: string;
26767
+ readonly item_name: string;
26768
+ readonly item_description?: string;
26769
+ readonly categories?: string;
26770
+ readonly taxonomy_category?: string;
26771
+ readonly image_url?: string;
26772
+ }
26773
+
26774
+ interface PcReviewOutput {
26775
+ readonly discriminator: 'pc_review_output';
26776
+ readonly hs_code: string;
26777
+ readonly alternates: string[];
26778
+ readonly confidence: number;
26779
+ readonly reasoning: string;
26780
+ }
26781
+
26528
26782
  interface PendingBankPayment {
26529
26783
  readonly id: string;
26530
26784
  readonly account: io.flow.internal.v0.models.AccountSummary;
@@ -26676,6 +26930,7 @@ declare namespace io.flow.internal.v0.models {
26676
26930
  readonly catalog_size: number;
26677
26931
  readonly processed_product_count: number;
26678
26932
  readonly last_request: string;
26933
+ readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
26679
26934
  readonly updated_by_user_id: string;
26680
26935
  }
26681
26936
 
@@ -27140,6 +27395,28 @@ declare namespace io.flow.internal.v0.models {
27140
27395
  readonly location: io.flow.common.v0.models.Address;
27141
27396
  }
27142
27397
 
27398
+ interface PvReviewContext {
27399
+ readonly discriminator: 'pv_review_context';
27400
+ readonly organization_id: string;
27401
+ readonly item_name: string;
27402
+ readonly item_description?: string;
27403
+ readonly image_url?: string;
27404
+ readonly rule_name: string;
27405
+ readonly rule_reason_code: string;
27406
+ readonly hs_code?: string;
27407
+ readonly categories?: string;
27408
+ readonly price?: string;
27409
+ readonly matching_positive_keywords: string[];
27410
+ readonly matching_negative_keywords: string[];
27411
+ }
27412
+
27413
+ interface PvReviewOutput {
27414
+ readonly discriminator: 'pv_review_output';
27415
+ readonly decision: io.flow.internal.v0.enums.PvDecision;
27416
+ readonly confidence: number;
27417
+ readonly reasoning: string;
27418
+ }
27419
+
27143
27420
  interface Quote {
27144
27421
  readonly id: string;
27145
27422
  readonly base: string;
@@ -27525,6 +27802,11 @@ declare namespace io.flow.internal.v0.models {
27525
27802
  readonly number: string;
27526
27803
  }
27527
27804
 
27805
+ interface RemediateTaxDutyMetadata {
27806
+ readonly discriminator: 'remediate_tax_duty_metadata';
27807
+ readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
27808
+ }
27809
+
27528
27810
  interface RemittanceResponsibility {
27529
27811
  readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
27530
27812
  readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
@@ -28182,6 +28464,7 @@ declare namespace io.flow.internal.v0.models {
28182
28464
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
28183
28465
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
28184
28466
  readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
28467
+ readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
28185
28468
  }
28186
28469
 
28187
28470
  interface RestrictionRuleDecisionForm {
@@ -28243,6 +28526,7 @@ declare namespace io.flow.internal.v0.models {
28243
28526
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
28244
28527
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
28245
28528
  readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
28529
+ readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
28246
28530
  }
28247
28531
 
28248
28532
  interface RestrictionRuleLaneExemption {
@@ -28542,6 +28826,12 @@ declare namespace io.flow.internal.v0.models {
28542
28826
  readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
28543
28827
  }
28544
28828
 
28829
+ interface ReviewRequestItem {
28830
+ readonly review_type: io.flow.internal.v0.enums.AiReviewType;
28831
+ readonly review_id: string;
28832
+ readonly context: io.flow.internal.v0.unions.AiReviewContext;
28833
+ }
28834
+
28545
28835
  interface RoutingAccount {
28546
28836
  readonly discriminator: 'routing_account';
28547
28837
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -28713,6 +29003,41 @@ declare namespace io.flow.internal.v0.models {
28713
29003
  readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
28714
29004
  }
28715
29005
 
29006
+ interface SellabilityPendingVerification {
29007
+ readonly id: string;
29008
+ readonly merchant_id: string;
29009
+ readonly product_id: string;
29010
+ readonly channel: string;
29011
+ readonly request_id: string;
29012
+ readonly name: string;
29013
+ readonly description: string;
29014
+ readonly taxonomy_category?: string;
29015
+ readonly hs6_code?: string;
29016
+ readonly price?: string;
29017
+ readonly rule_id: string;
29018
+ readonly reason_code: string;
29019
+ readonly matching_keywords?: string;
29020
+ readonly status: string;
29021
+ readonly agent_decision?: string;
29022
+ readonly agent_reasoning?: string;
29023
+ readonly created_at: string;
29024
+ readonly updated_at: string;
29025
+ }
29026
+
29027
+ interface SellabilityPendingVerificationDeleted {
29028
+ readonly discriminator: 'sellability_pending_verification_deleted';
29029
+ readonly event_id: string;
29030
+ readonly timestamp: string;
29031
+ readonly id: string;
29032
+ }
29033
+
29034
+ interface SellabilityPendingVerificationUpserted {
29035
+ readonly discriminator: 'sellability_pending_verification_upserted';
29036
+ readonly event_id: string;
29037
+ readonly timestamp: string;
29038
+ readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
29039
+ }
29040
+
28716
29041
  interface ServiceFees {
28717
29042
  readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
28718
29043
  readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
@@ -30511,6 +30836,7 @@ declare namespace io.flow.internal.v0.models {
30511
30836
  interface TaxonomyCategoryHs6Ref {
30512
30837
  readonly id: string;
30513
30838
  readonly taxonomy_category: string;
30839
+ readonly taxonomy_category_id?: string;
30514
30840
  readonly hs6: string;
30515
30841
  readonly updated_by_user_id: string;
30516
30842
  }
@@ -31040,6 +31366,27 @@ declare namespace io.flow.internal.v0.models {
31040
31366
  readonly message: string;
31041
31367
  }
31042
31368
 
31369
+ interface UnserviceableTaxonomyCategory {
31370
+ readonly id: string;
31371
+ readonly taxonomy_category: string;
31372
+ readonly taxonomy_category_id?: string;
31373
+ readonly updated_by_user_id: string;
31374
+ }
31375
+
31376
+ interface UnserviceableTaxonomyCategoryDeleted {
31377
+ readonly discriminator: 'unserviceable_taxonomy_category_deleted';
31378
+ readonly event_id: string;
31379
+ readonly timestamp: string;
31380
+ readonly id: string;
31381
+ }
31382
+
31383
+ interface UnserviceableTaxonomyCategoryUpserted {
31384
+ readonly discriminator: 'unserviceable_taxonomy_category_upserted';
31385
+ readonly event_id: string;
31386
+ readonly timestamp: string;
31387
+ readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
31388
+ }
31389
+
31043
31390
  interface Ups {
31044
31391
  readonly discriminator: 'ups';
31045
31392
  readonly client_id: string;
@@ -31213,6 +31560,14 @@ declare namespace io.flow.internal.v0.unions {
31213
31560
  | io.flow.internal.v0.models.AdjustmentAmountPercentage
31214
31561
  | io.flow.internal.v0.models.AdjustmentAmountFixed
31215
31562
  | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
31563
+ type AiOutput =
31564
+ | io.flow.internal.v0.models.PvReviewOutput
31565
+ | io.flow.internal.v0.models.DgReviewOutput
31566
+ | io.flow.internal.v0.models.PcReviewOutput;
31567
+ type AiReviewContext =
31568
+ | io.flow.internal.v0.models.PvReviewContext
31569
+ | io.flow.internal.v0.models.DgReviewContext
31570
+ | io.flow.internal.v0.models.PcReviewContext;
31216
31571
  type AuthorizationPayload =
31217
31572
  | io.flow.internal.v0.models.ApplePayAuthorizationPayload
31218
31573
  | io.flow.internal.v0.models.PaypalAuthorizationPayload;
@@ -31285,12 +31640,6 @@ declare namespace io.flow.internal.v0.unions {
31285
31640
  | io.flow.internal.v0.models.DutyCompoundExpression
31286
31641
  | io.flow.internal.v0.models.DutySimpleExpression;
31287
31642
  type Event =
31288
- | io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted
31289
- | io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted
31290
- | io.flow.internal.v0.models.AdaptivePricingUpdateUpserted
31291
- | io.flow.internal.v0.models.AdaptivePricingUpdateDeleted
31292
- | io.flow.internal.v0.models.AdaptiveShippingRateUpserted
31293
- | io.flow.internal.v0.models.AdaptiveShippingRateDeleted
31294
31643
  | io.flow.internal.v0.models.AdyenAuthorizationDeleted
31295
31644
  | io.flow.internal.v0.models.AdyenAuthorizationUpserted
31296
31645
  | io.flow.internal.v0.models.AdyenCancelDeleted
@@ -31301,6 +31650,10 @@ declare namespace io.flow.internal.v0.unions {
31301
31650
  | io.flow.internal.v0.models.AdyenRefundUpserted
31302
31651
  | io.flow.internal.v0.models.AdyenDisputeUpserted
31303
31652
  | io.flow.internal.v0.models.AdyenDisputeDeleted
31653
+ | io.flow.internal.v0.models.AiReviewBatchSubmitted
31654
+ | io.flow.internal.v0.models.AiReviewResultUpserted
31655
+ | io.flow.internal.v0.models.AiReviewResultDeleted
31656
+ | io.flow.internal.v0.models.AiReviewRequestFailed
31304
31657
  | io.flow.internal.v0.models.FulfillmentUpserted
31305
31658
  | io.flow.internal.v0.models.FulfillmentDeleted
31306
31659
  | io.flow.internal.v0.models.MerchantUpserted
@@ -31438,6 +31791,8 @@ declare namespace io.flow.internal.v0.unions {
31438
31791
  | io.flow.internal.v0.models.MorCostDeleted
31439
31792
  | io.flow.internal.v0.models.FlatRateLabelReversalUpserted
31440
31793
  | io.flow.internal.v0.models.FlatRateLabelReversalDeleted
31794
+ | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted
31795
+ | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted
31441
31796
  | io.flow.internal.v0.models.FraudReviewUpserted
31442
31797
  | io.flow.internal.v0.models.FraudReviewDeleted
31443
31798
  | io.flow.internal.v0.models.FraudPendingReviewUpserted
@@ -31463,8 +31818,16 @@ declare namespace io.flow.internal.v0.unions {
31463
31818
  | io.flow.internal.v0.models.FulfillmentFallbacksDeleted
31464
31819
  | io.flow.internal.v0.models.QuoteUpserted
31465
31820
  | io.flow.internal.v0.models.QuoteDeleted
31821
+ | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted
31822
+ | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted
31823
+ | io.flow.internal.v0.models.OutboundShippingCostUpserted
31824
+ | io.flow.internal.v0.models.OutboundShippingCostDeleted
31466
31825
  | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
31467
31826
  | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
31827
+ | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted
31828
+ | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted
31829
+ | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted
31830
+ | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted
31468
31831
  | io.flow.internal.v0.models.AllItemsExport
31469
31832
  | io.flow.internal.v0.models.HarmonizedItemsHs6Export
31470
31833
  | io.flow.internal.v0.models.UnharmonizedItemsExport
@@ -31487,6 +31850,8 @@ declare namespace io.flow.internal.v0.unions {
31487
31850
  | io.flow.internal.v0.models.MerchantOverrideUpserted
31488
31851
  | io.flow.internal.v0.models.MerchantOverrideDeleted
31489
31852
  | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
31853
+ | io.flow.internal.v0.models.IssuerUpserted
31854
+ | io.flow.internal.v0.models.IssuerDeleted
31490
31855
  | io.flow.internal.v0.models.ItemFormImportRequest
31491
31856
  | io.flow.internal.v0.models.LabelRequestErrorUpserted
31492
31857
  | io.flow.internal.v0.models.LabelRequestErrorDeleted
@@ -31597,6 +31962,10 @@ declare namespace io.flow.internal.v0.unions {
31597
31962
  | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
31598
31963
  | io.flow.internal.v0.models.PreonboardingMerchantUpserted
31599
31964
  | io.flow.internal.v0.models.PreonboardingMerchantDeleted
31965
+ | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted
31966
+ | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted
31967
+ | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted
31968
+ | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted
31600
31969
  | io.flow.internal.v0.models.ShopifyHs10CodesUpserted
31601
31970
  | io.flow.internal.v0.models.ShopifyHs10CodesDeleted
31602
31971
  | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
@@ -31867,7 +32236,8 @@ declare namespace io.flow.internal.v0.unions {
31867
32236
  | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata
31868
32237
  | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata
31869
32238
  | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata
31870
- | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
32239
+ | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata
32240
+ | io.flow.internal.v0.models.RemediateTaxDutyMetadata;
31871
32241
  type TaxAmount =
31872
32242
  | io.flow.internal.v0.models.CalculatedTaxAmount
31873
32243
  | io.flow.internal.v0.models.NoCalculatedTaxAmount;
@@ -31959,20 +32329,6 @@ export type AccountingPendingOrderMetadata =
31959
32329
  export type AccountingReturnMetadata =
31960
32330
  io.flow.internal.v0.models.AccountingReturnMetadata;
31961
32331
  export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
31962
- export type AdaptivePricingCoefficient =
31963
- io.flow.internal.v0.models.AdaptivePricingCoefficient;
31964
- export type AdaptivePricingCoefficientDeleted =
31965
- io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted;
31966
- export type AdaptivePricingCoefficientUpserted =
31967
- io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted;
31968
- export type AdaptivePricingDestinationUpdate =
31969
- io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
31970
- export type AdaptivePricingUpdate =
31971
- io.flow.internal.v0.models.AdaptivePricingUpdate;
31972
- export type AdaptivePricingUpdateDeleted =
31973
- io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
31974
- export type AdaptivePricingUpdateUpserted =
31975
- io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
31976
32332
  export type AdaptiveShippingOrderGuarantee =
31977
32333
  io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
31978
32334
  export type AdaptiveShippingOrderGuaranteeDeleted =
@@ -31981,12 +32337,6 @@ export type AdaptiveShippingOrderGuaranteeState =
31981
32337
  io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
31982
32338
  export type AdaptiveShippingOrderGuaranteeUpserted =
31983
32339
  io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
31984
- export type AdaptiveShippingRate =
31985
- io.flow.internal.v0.models.AdaptiveShippingRate;
31986
- export type AdaptiveShippingRateDeleted =
31987
- io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
31988
- export type AdaptiveShippingRateUpserted =
31989
- io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
31990
32340
  export type AdditionalImportTax =
31991
32341
  io.flow.internal.v0.models.AdditionalImportTax;
31992
32342
  export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
@@ -32090,6 +32440,22 @@ export type AfterpayRefundDeleted =
32090
32440
  export type AfterpayRefundUpserted =
32091
32441
  io.flow.internal.v0.models.AfterpayRefundUpserted;
32092
32442
  export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
32443
+ export type AiOutput = io.flow.internal.v0.unions.AiOutput;
32444
+ export type AiReviewBatchSubmitted =
32445
+ io.flow.internal.v0.models.AiReviewBatchSubmitted;
32446
+ export type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
32447
+ export type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
32448
+ export type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
32449
+ export type AiReviewFailureReason =
32450
+ io.flow.internal.v0.enums.AiReviewFailureReason;
32451
+ export type AiReviewRequestFailed =
32452
+ io.flow.internal.v0.models.AiReviewRequestFailed;
32453
+ export type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
32454
+ export type AiReviewResultDeleted =
32455
+ io.flow.internal.v0.models.AiReviewResultDeleted;
32456
+ export type AiReviewResultUpserted =
32457
+ io.flow.internal.v0.models.AiReviewResultUpserted;
32458
+ export type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
32093
32459
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
32094
32460
  export type AllocationItemReference =
32095
32461
  io.flow.internal.v0.models.AllocationItemReference;
@@ -32791,6 +33157,9 @@ export type DeminimisAdjustmentType =
32791
33157
  export type DestinationDutyComparison =
32792
33158
  io.flow.internal.v0.models.DestinationDutyComparison;
32793
33159
  export type DestinationError = io.flow.internal.v0.models.DestinationError;
33160
+ export type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
33161
+ export type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
33162
+ export type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
32794
33163
  export type Dhl = io.flow.internal.v0.models.Dhl;
32795
33164
  export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
32796
33165
  export type DimensionEstimateOpsInput =
@@ -32969,6 +33338,8 @@ export type ExternalFulfillmentProofTracking =
32969
33338
  io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
32970
33339
  export type ExternalFulfillmentProofTrackingForm =
32971
33340
  io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
33341
+ export type ExternalOrderSummary =
33342
+ io.flow.internal.v0.models.ExternalOrderSummary;
32972
33343
  export type ExternalRatecardLink =
32973
33344
  io.flow.internal.v0.models.ExternalRatecardLink;
32974
33345
  export type ExternalRatecardLinkResponse =
@@ -33040,6 +33411,12 @@ export type FlatRateLabelReversalDeleted =
33040
33411
  io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
33041
33412
  export type FlatRateLabelReversalUpserted =
33042
33413
  io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
33414
+ export type FlatRateLabelSubsidy =
33415
+ io.flow.internal.v0.models.FlatRateLabelSubsidy;
33416
+ export type FlatRateLabelSubsidyDeleted =
33417
+ io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
33418
+ export type FlatRateLabelSubsidyUpserted =
33419
+ io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
33043
33420
  export type FlatRateLabelTransaction =
33044
33421
  io.flow.internal.v0.models.FlatRateLabelTransaction;
33045
33422
  export type FlatRateLabelTransactionType =
@@ -33218,12 +33595,32 @@ export type GoogleShoppingSetting =
33218
33595
  io.flow.internal.v0.models.GoogleShoppingSetting;
33219
33596
  export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
33220
33597
  export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
33598
+ export type GuaranteedShippingCalibratedOutput =
33599
+ io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
33600
+ export type GuaranteedShippingCalibratedOutputDeleted =
33601
+ io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
33602
+ export type GuaranteedShippingCalibratedOutputUpserted =
33603
+ io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
33221
33604
  export type GuaranteedShippingPublishedOutput =
33222
33605
  io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
33223
33606
  export type GuaranteedShippingPublishedOutputDeleted =
33224
33607
  io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
33225
33608
  export type GuaranteedShippingPublishedOutputUpserted =
33226
33609
  io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
33610
+ export type GuaranteedShippingSettings =
33611
+ io.flow.internal.v0.models.GuaranteedShippingSettings;
33612
+ export type GuaranteedShippingSettingsDeleted =
33613
+ io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
33614
+ export type GuaranteedShippingSettingsDestinationUpdate =
33615
+ io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
33616
+ export type GuaranteedShippingSettingsUpdate =
33617
+ io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
33618
+ export type GuaranteedShippingSettingsUpdateDeleted =
33619
+ io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
33620
+ export type GuaranteedShippingSettingsUpdateUpserted =
33621
+ io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
33622
+ export type GuaranteedShippingSettingsUpserted =
33623
+ io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
33227
33624
  export type HarmonizationClassificationStatisticsData =
33228
33625
  io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
33229
33626
  export type HarmonizationClassificationStatisticsPublished =
@@ -33318,6 +33715,9 @@ export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
33318
33715
  export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
33319
33716
  export type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
33320
33717
  export type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
33718
+ export type Issuer = io.flow.internal.v0.models.Issuer;
33719
+ export type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
33720
+ export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
33321
33721
  export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
33322
33722
  export type ItemClassificationAction =
33323
33723
  io.flow.internal.v0.enums.ItemClassificationAction;
@@ -33346,6 +33746,15 @@ export type ItemHarmonizationStatus =
33346
33746
  io.flow.internal.v0.enums.ItemHarmonizationStatus;
33347
33747
  export type ItemHarmonizationUpserted =
33348
33748
  io.flow.internal.v0.models.ItemHarmonizationUpserted;
33749
+ export type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
33750
+ export type ItemHs6OverrideForm =
33751
+ io.flow.internal.v0.models.ItemHs6OverrideForm;
33752
+ export type ItemHs6OverrideRejection =
33753
+ io.flow.internal.v0.models.ItemHs6OverrideRejection;
33754
+ export type ItemHs6OverrideResult =
33755
+ io.flow.internal.v0.models.ItemHs6OverrideResult;
33756
+ export type ItemHs6OverridesForm =
33757
+ io.flow.internal.v0.models.ItemHs6OverridesForm;
33349
33758
  export type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
33350
33759
  export type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
33351
33760
  export type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
@@ -33696,6 +34105,7 @@ export type OrderRevenueTimelineDataPoint =
33696
34105
  io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
33697
34106
  export type OrderServiceChangeCsvForm =
33698
34107
  io.flow.internal.v0.models.OrderServiceChangeCsvForm;
34108
+ export type OrderSettings = io.flow.internal.v0.models.OrderSettings;
33699
34109
  export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
33700
34110
  export type OrderTaxAndDutyInclusivitySetting =
33701
34111
  io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
@@ -33876,6 +34286,12 @@ export type OtherRecordUpserted =
33876
34286
  io.flow.internal.v0.models.OtherRecordUpserted;
33877
34287
  export type OtherRecordWithholdings =
33878
34288
  io.flow.internal.v0.models.OtherRecordWithholdings;
34289
+ export type OutboundShippingCost =
34290
+ io.flow.internal.v0.models.OutboundShippingCost;
34291
+ export type OutboundShippingCostDeleted =
34292
+ io.flow.internal.v0.models.OutboundShippingCostDeleted;
34293
+ export type OutboundShippingCostUpserted =
34294
+ io.flow.internal.v0.models.OutboundShippingCostUpserted;
33879
34295
  export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
33880
34296
  export type Owner = io.flow.internal.v0.enums.Owner;
33881
34297
  export type Partner = io.flow.internal.v0.models.Partner;
@@ -33991,6 +34407,8 @@ export type PaypalRefundDeleted =
33991
34407
  io.flow.internal.v0.models.PaypalRefundDeleted;
33992
34408
  export type PaypalRefundUpserted =
33993
34409
  io.flow.internal.v0.models.PaypalRefundUpserted;
34410
+ export type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
34411
+ export type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
33994
34412
  export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
33995
34413
  export type PendingBankPaymentDetail =
33996
34414
  io.flow.internal.v0.models.PendingBankPaymentDetail;
@@ -34161,6 +34579,9 @@ export type PspRoutingDistributionRevisionForm =
34161
34579
  io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
34162
34580
  export type PublicHub = io.flow.internal.v0.models.PublicHub;
34163
34581
  export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
34582
+ export type PvDecision = io.flow.internal.v0.enums.PvDecision;
34583
+ export type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
34584
+ export type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
34164
34585
  export type Quote = io.flow.internal.v0.models.Quote;
34165
34586
  export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
34166
34587
  export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
@@ -34248,6 +34669,9 @@ export type RegisteredExporterTariffEligibilityData =
34248
34669
  export type RegisteredExporterTariffEligibilityForm =
34249
34670
  io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
34250
34671
  export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
34672
+ export type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
34673
+ export type RemediateTaxDutyMetadata =
34674
+ io.flow.internal.v0.models.RemediateTaxDutyMetadata;
34251
34675
  export type RemittanceResponsibility =
34252
34676
  io.flow.internal.v0.models.RemittanceResponsibility;
34253
34677
  export type Report = io.flow.internal.v0.models.Report;
@@ -34423,6 +34847,8 @@ export type RestrictionRuleEffectForm =
34423
34847
  io.flow.internal.v0.models.RestrictionRuleEffectForm;
34424
34848
  export type RestrictionRuleEffectUpserted =
34425
34849
  io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
34850
+ export type RestrictionRuleEvaluationMode =
34851
+ io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
34426
34852
  export type RestrictionRuleExceptionAction =
34427
34853
  io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
34428
34854
  export type RestrictionRuleForm =
@@ -34492,6 +34918,7 @@ export type RevenueRecordDeleted =
34492
34918
  export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
34493
34919
  export type RevenueRecordUpserted =
34494
34920
  io.flow.internal.v0.models.RevenueRecordUpserted;
34921
+ export type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
34495
34922
  export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
34496
34923
  export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
34497
34924
  export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
@@ -34532,6 +34959,12 @@ export type SellabilityCheckStatus =
34532
34959
  io.flow.internal.v0.enums.SellabilityCheckStatus;
34533
34960
  export type SellabilityInternalMatchType =
34534
34961
  io.flow.internal.v0.enums.SellabilityInternalMatchType;
34962
+ export type SellabilityPendingVerification =
34963
+ io.flow.internal.v0.models.SellabilityPendingVerification;
34964
+ export type SellabilityPendingVerificationDeleted =
34965
+ io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
34966
+ export type SellabilityPendingVerificationUpserted =
34967
+ io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
34535
34968
  export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
34536
34969
  export type ServiceFees = io.flow.internal.v0.models.ServiceFees;
34537
34970
  export type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
@@ -35156,6 +35589,12 @@ export type UnharmonizedItemsExport =
35156
35589
  io.flow.internal.v0.models.UnharmonizedItemsExport;
35157
35590
  export type UnphrasedProductsExport =
35158
35591
  io.flow.internal.v0.models.UnphrasedProductsExport;
35592
+ export type UnserviceableTaxonomyCategory =
35593
+ io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
35594
+ export type UnserviceableTaxonomyCategoryDeleted =
35595
+ io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
35596
+ export type UnserviceableTaxonomyCategoryUpserted =
35597
+ io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
35159
35598
  export type Ups = io.flow.internal.v0.models.Ups;
35160
35599
  export type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
35161
35600
  export type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;