@flowio/api-internal-prop-types 9.24.137 → 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.
@@ -1098,6 +1098,8 @@ declare namespace io.flow.channel.v0.models {
1098
1098
 
1099
1099
  declare namespace io.flow.restrictions.v0.enums {
1100
1100
  type RestrictedReviewStatus = 'in_review' | 'reviewed';
1101
+ type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
1102
+ type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
1101
1103
  type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
1102
1104
  type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
1103
1105
  }
@@ -1139,6 +1141,18 @@ declare namespace io.flow.restrictions.v0.models {
1139
1141
  readonly 'reasons': string[];
1140
1142
  readonly 'review_status': io.flow.restrictions.v0.enums.RestrictedReviewStatus;
1141
1143
  }
1144
+
1145
+ interface RestrictionDecisionsForm {
1146
+ readonly 'organization_id': string;
1147
+ readonly 'rule_decisions': io.flow.restrictions.v0.models.RestrictionRuleDecisionForm[];
1148
+ }
1149
+
1150
+ interface RestrictionRuleDecisionForm {
1151
+ readonly 'product_id': string;
1152
+ readonly 'reason_code': string;
1153
+ readonly 'decision': io.flow.restrictions.v0.enums.RestrictionDecision;
1154
+ readonly 'decision_reason': io.flow.restrictions.v0.enums.RestrictionDecisionReason;
1155
+ }
1142
1156
  }
1143
1157
 
1144
1158
  declare namespace io.flow.fulfillment.v0.enums {
@@ -4587,6 +4601,7 @@ declare namespace io.flow.label.v0.models {
4587
4601
  readonly 'id'?: string;
4588
4602
  readonly 'ratecard': io.flow.label.v0.models.ShippingLabelRatecardSummary;
4589
4603
  readonly 'weight_break'?: number;
4604
+ readonly 'dim_factor'?: number;
4590
4605
  }
4591
4606
 
4592
4607
  interface ShippingLabelPackage {
@@ -5654,6 +5669,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5654
5669
  readonly 'id': string;
5655
5670
  }
5656
5671
 
5672
+ interface OrderSettings {
5673
+ readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
5674
+ }
5675
+
5657
5676
  interface OrderTaxAndDutyInclusivitySetting {
5658
5677
  readonly 'id': string;
5659
5678
  readonly 'organization_id': string;
@@ -5685,12 +5704,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5685
5704
  readonly 'destination': string;
5686
5705
  }
5687
5706
 
5688
- interface ShopifyAdaptivePricingCoefficients {
5689
- readonly 'id': string;
5690
- readonly 'organization_id': string;
5691
- readonly 'destination_coefficients': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
5692
- }
5693
-
5694
5707
  interface ShopifyHs10Code {
5695
5708
  readonly 'country_code'?: string;
5696
5709
  readonly 'code': string;
@@ -5811,6 +5824,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5811
5824
  interface ShopifyMerchantMarketCountry {
5812
5825
  readonly 'code': string;
5813
5826
  readonly 'actively_managing': boolean;
5827
+ readonly 'enabled': boolean;
5814
5828
  }
5815
5829
 
5816
5830
  interface ShopifyMerchantMarkets {
@@ -5931,6 +5945,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
5931
5945
  readonly 'voids_b2b_invoice'?: boolean;
5932
5946
  }
5933
5947
 
5948
+ interface B2BCreditNote {
5949
+ readonly 'id': string;
5950
+ readonly 'number': string;
5951
+ readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5952
+ readonly 'date': string;
5953
+ readonly 'key': string;
5954
+ readonly 'debit_note': io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
5955
+ readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5956
+ readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5957
+ readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5958
+ readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5959
+ readonly 'attributes': Record<string, string>;
5960
+ readonly 'voids_b2b_debit_note'?: boolean;
5961
+ }
5962
+
5963
+ interface B2BDebitNote {
5964
+ readonly 'id': string;
5965
+ readonly 'number': string;
5966
+ readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
5967
+ readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
5968
+ readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5969
+ readonly 'date': string;
5970
+ readonly 'key': string;
5971
+ readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5972
+ readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5973
+ readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5974
+ readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5975
+ readonly 'attributes': Record<string, string>;
5976
+ }
5977
+
5978
+ interface B2BDebitNoteReference {
5979
+ readonly 'id': string;
5980
+ readonly 'key': string;
5981
+ readonly 'number': string;
5982
+ }
5983
+
5934
5984
  interface B2BInvoice {
5935
5985
  readonly 'id': string;
5936
5986
  readonly 'number': string;
@@ -6769,6 +6819,7 @@ declare namespace io.flow.shopify.external.v0.models {
6769
6819
  }
6770
6820
 
6771
6821
  interface GraphqlTaxonomyCategory {
6822
+ readonly 'id'?: string;
6772
6823
  readonly 'name': string;
6773
6824
  readonly 'fullName': string;
6774
6825
  }
@@ -6890,7 +6941,7 @@ declare namespace io.flow.shopify.external.v0.models {
6890
6941
  readonly 'created_at': string;
6891
6942
  readonly 'updated_at': string;
6892
6943
  readonly 'has_variants_that_requires_components'?: boolean;
6893
- readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
6944
+ readonly 'category'?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
6894
6945
  readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
6895
6946
  }
6896
6947
 
@@ -7030,6 +7081,12 @@ declare namespace io.flow.shopify.external.v0.models {
7030
7081
  readonly 'variant': io.flow.shopify.external.v0.models.ProductVariant;
7031
7082
  }
7032
7083
 
7084
+ interface RestTaxonomyCategory {
7085
+ readonly 'name': string;
7086
+ readonly 'full_name': string;
7087
+ readonly 'admin_graphql_api_id'?: string;
7088
+ }
7089
+
7033
7090
  interface Shop {
7034
7091
  readonly 'id': number;
7035
7092
  readonly 'domain': string;
@@ -7762,8 +7819,8 @@ declare namespace io.flow.shopify.markets.v0.models {
7762
7819
  readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
7763
7820
  }
7764
7821
 
7765
- interface ShopifyAdaptivePricingDestinationCoefficients {
7766
- readonly 'country': string;
7822
+ interface ShopifyAdaptivePricingDestination {
7823
+ readonly 'country_code': string;
7767
7824
  readonly 'updated_at': string;
7768
7825
  readonly 'tax_and_duty_coefficient': string;
7769
7826
  readonly 'fees_coefficient': string;
@@ -7773,6 +7830,10 @@ declare namespace io.flow.shopify.markets.v0.models {
7773
7830
  readonly 'adaptive_shipping_enabled': boolean;
7774
7831
  }
7775
7832
 
7833
+ interface ShopifyAdaptivePricingDestinationsWrapper {
7834
+ readonly 'destinations': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
7835
+ }
7836
+
7776
7837
  interface ShopifyAppliedDiscount {
7777
7838
  readonly 'title'?: string;
7778
7839
  readonly 'description'?: string;
@@ -8466,12 +8527,20 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
8466
8527
  }
8467
8528
 
8468
8529
  declare namespace io.flow.order.price.v0.enums {
8530
+ type OrderPriceCoefficientType = 'item_shipping';
8469
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';
8470
8532
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
8471
8533
  type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
8534
+ type OrderPriceSubsidyType = 'shipping_subsidy';
8472
8535
  }
8473
8536
 
8474
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
+
8475
8544
  interface OrderPriceDetail {
8476
8545
  readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
8477
8546
  readonly 'currency': string;
@@ -8506,10 +8575,17 @@ declare namespace io.flow.order.price.v0.models {
8506
8575
  readonly 'type': io.flow.order.price.v0.enums.OrderPriceFeeType;
8507
8576
  }
8508
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
+
8509
8583
  interface PurchasePriceBreakdown {
8510
8584
  readonly 'total_price': io.flow.common.v0.models.PriceWithBase;
8511
8585
  readonly 'product_price': io.flow.common.v0.models.PriceWithBase;
8512
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[];
8513
8589
  }
8514
8590
  }
8515
8591
 
@@ -8569,7 +8645,7 @@ declare namespace io.flow.channel.internal.v0.models {
8569
8645
  readonly 'order_updated_at'?: string;
8570
8646
  readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
8571
8647
  readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
8572
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
8648
+ readonly 'external_order_summary'?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
8573
8649
  }
8574
8650
 
8575
8651
  interface ChannelOrderAcceptanceDetails {
@@ -8632,6 +8708,12 @@ declare namespace io.flow.channel.internal.v0.models {
8632
8708
  readonly 'catalog_products_count'?: number;
8633
8709
  }
8634
8710
 
8711
+ interface ExternalOrderSummary {
8712
+ readonly 'id': string;
8713
+ readonly 'edit_ids': string[];
8714
+ readonly 'created_at'?: string;
8715
+ }
8716
+
8635
8717
  interface FlowChannelOrganization {
8636
8718
  readonly 'placeholder'?: string;
8637
8719
  }
@@ -9112,6 +9194,7 @@ declare namespace io.flow.common.v0.models {
9112
9194
  readonly 'created_at'?: string;
9113
9195
  readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
9114
9196
  readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
9197
+ readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
9115
9198
  }
9116
9199
 
9117
9200
  interface OrganizationDefaults {
@@ -9125,6 +9208,7 @@ declare namespace io.flow.common.v0.models {
9125
9208
  interface OrganizationReference {
9126
9209
  readonly 'discriminator': 'organization_reference';
9127
9210
  readonly 'id': string;
9211
+ readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
9128
9212
  }
9129
9213
 
9130
9214
  interface OrganizationSummary {
@@ -9300,22 +9384,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9300
9384
  readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
9301
9385
  }
9302
9386
 
9303
- interface ShopifyAdaptivePricingCoefficientsDeleted {
9304
- readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_deleted';
9305
- readonly 'event_id': string;
9306
- readonly 'timestamp': string;
9307
- readonly 'organization': string;
9308
- readonly 'id': string;
9309
- }
9310
-
9311
- interface ShopifyAdaptivePricingCoefficientsUpserted {
9312
- readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_upserted';
9313
- readonly 'event_id': string;
9314
- readonly 'timestamp': string;
9315
- readonly 'organization': string;
9316
- readonly 'shopify_adaptive_pricing_coefficients': io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
9317
- }
9318
-
9319
9387
  interface ShopifyIncotermIncludes {
9320
9388
  readonly 'duties': boolean;
9321
9389
  readonly 'taxes': boolean;
@@ -9553,7 +9621,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9553
9621
  }
9554
9622
 
9555
9623
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
9556
- type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted);
9624
+ type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted);
9557
9625
  }
9558
9626
 
9559
9627
  declare namespace io.flow.experience.v0.enums {
@@ -9578,7 +9646,7 @@ declare namespace io.flow.experience.v0.enums {
9578
9646
  type OrganizationPaymentMethodTag = 'deny';
9579
9647
  type PaymentMethodRuleContentKey = 'description';
9580
9648
  type PriceFacetBoundary = 'min' | 'max';
9581
- type PricingType = 'inclusive_pricing';
9649
+ type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
9582
9650
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
9583
9651
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
9584
9652
  }
@@ -10873,6 +10941,7 @@ declare namespace io.flow.ratecard.v0.models {
10873
10941
  interface LaneSummary {
10874
10942
  readonly 'id': string;
10875
10943
  readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
10944
+ readonly 'dim_factor': number;
10876
10945
  }
10877
10946
 
10878
10947
  interface LargePackageServiceFee {
@@ -10948,6 +11017,7 @@ declare namespace io.flow.ratecard.v0.models {
10948
11017
  readonly 'glbe_shipping_method_id'?: string;
10949
11018
  readonly 'glbe_proposition_name'?: string;
10950
11019
  readonly 'channel_revenue_share_percentage'?: number;
11020
+ readonly 'channel_id'?: string;
10951
11021
  }
10952
11022
 
10953
11023
  interface RatecardCarrierSummary {
@@ -11050,6 +11120,7 @@ declare namespace io.flow.ratecard.v0.models {
11050
11120
  readonly 'glbe_shipping_method_id'?: string;
11051
11121
  readonly 'glbe_proposition_name'?: string;
11052
11122
  readonly 'channel_revenue_share_percentage'?: number;
11123
+ readonly 'channel_id'?: string;
11053
11124
  readonly 'data'?: io.flow.ratecard.v0.models.RatecardData;
11054
11125
  }
11055
11126
 
@@ -11085,20 +11156,6 @@ declare namespace io.flow.ratecard.v0.models {
11085
11156
  readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
11086
11157
  }
11087
11158
 
11088
- interface RatecardLaneImportForm {
11089
- readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
11090
- readonly 'service': string;
11091
- readonly 'currency': string;
11092
- readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
11093
- readonly 'origin': io.flow.common.v0.models.Zone;
11094
- readonly 'destination': io.flow.common.v0.models.Zone;
11095
- readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
11096
- readonly 'dim_factor': number;
11097
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
11098
- readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
11099
- readonly 'rates': io.flow.ratecard.v0.models.RatecardRateForm[];
11100
- }
11101
-
11102
11159
  interface RatecardLaneVersion {
11103
11160
  readonly 'id': string;
11104
11161
  readonly 'timestamp': string;
@@ -11106,14 +11163,7 @@ declare namespace io.flow.ratecard.v0.models {
11106
11163
  readonly 'ratecard_lane': io.flow.ratecard.v0.models.RatecardLane;
11107
11164
  }
11108
11165
 
11109
- interface RatecardLanesImportRequestData {
11110
- readonly 'id': string;
11111
- readonly 'source_url': string;
11112
- readonly 'filename'?: string;
11113
- }
11114
-
11115
11166
  interface RatecardRate {
11116
- readonly 'id': string;
11117
11167
  readonly 'amount': number;
11118
11168
  readonly 'weight': number;
11119
11169
  }
@@ -11123,13 +11173,6 @@ declare namespace io.flow.ratecard.v0.models {
11123
11173
  readonly 'weight': number;
11124
11174
  }
11125
11175
 
11126
- interface RatecardRateVersion {
11127
- readonly 'id': string;
11128
- readonly 'timestamp': string;
11129
- readonly 'type': io.flow.common.v0.enums.ChangeType;
11130
- readonly 'ratecard_rate': io.flow.ratecard.v0.models.RatecardRate;
11131
- }
11132
-
11133
11176
  interface RatecardReference {
11134
11177
  readonly 'id': string;
11135
11178
  }
@@ -11490,35 +11533,6 @@ declare namespace io.flow.crypto.v0.models {
11490
11533
  }
11491
11534
  }
11492
11535
 
11493
- declare namespace io.flow.channel.shopify.v0.enums {
11494
- type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
11495
- }
11496
-
11497
- declare namespace io.flow.channel.shopify.v0.models {
11498
- interface ChannelShopifyOrderState {
11499
- readonly 'id': string;
11500
- readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
11501
- readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
11502
- readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
11503
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
11504
- }
11505
-
11506
- interface ChannelShopifyOrderStateReason {
11507
- readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
11508
- readonly 'message': string;
11509
- }
11510
-
11511
- interface ChannelShopifyOrderSummary {
11512
- readonly 'order_id': number;
11513
- readonly 'shop_id': number;
11514
- }
11515
-
11516
- interface ExternalOrderSummary {
11517
- readonly 'id': string;
11518
- readonly 'edit_ids': string[];
11519
- }
11520
- }
11521
-
11522
11536
  declare namespace io.flow.shopify.merchant.config.v0.models {
11523
11537
  interface Company {
11524
11538
  readonly 'discriminator': 'company';
@@ -11928,6 +11942,7 @@ declare namespace io.flow.product.v0.models {
11928
11942
  interface ProductTaxonomyCategory {
11929
11943
  readonly 'name': string;
11930
11944
  readonly 'full_name': string;
11945
+ readonly 'id'?: string;
11931
11946
  }
11932
11947
 
11933
11948
  interface ProductTaxonomyData {
@@ -12339,6 +12354,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
12339
12354
  declare namespace io.flow.catalog.v0.enums {
12340
12355
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
12341
12356
  type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
12357
+ type CpscAttribute = 'certification_id' | 'citation_codes' | 'manufactured_date' | 'manufactured_location' | 'product_test_date' | 'test_lab_name' | 'point_of_contact' | 'certification_version' | 'certification_product_id' | 'certificate_type' | 'lab_type' | 'taxonomy_reference';
12342
12358
  type FulfillmentMethodType = 'fulfillment_method';
12343
12359
  type FulfillmentMethodValue = 'digital' | 'physical';
12344
12360
  type ImageTag = 'thumbnail' | 'checkout';
@@ -12970,9 +12986,9 @@ declare namespace io.flow.billing.v0.enums {
12970
12986
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
12971
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';
12972
12988
  type StatementAttachmentType = 'csv' | 'pdf';
12973
- type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
12974
- 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';
12975
- 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';
12989
+ type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
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';
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';
12976
12992
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
12977
12993
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
12978
12994
  }
@@ -13073,6 +13089,7 @@ declare namespace io.flow.billing.v0.models {
13073
13089
  readonly 'settlement': io.flow.billing.v0.unions.Settlement;
13074
13090
  readonly 'attachments': io.flow.billing.v0.models.Attachment[];
13075
13091
  readonly 'created_at': string;
13092
+ readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
13076
13093
  }
13077
13094
 
13078
13095
  interface ChannelTransaction {
@@ -13176,6 +13193,11 @@ declare namespace io.flow.billing.v0.models {
13176
13193
  readonly 'reason': io.flow.billing.v0.enums.PayoutStatusFailureCode;
13177
13194
  }
13178
13195
 
13196
+ interface PayoutStatusPaid {
13197
+ readonly 'code': 'paid';
13198
+ readonly 'timestamp': string;
13199
+ }
13200
+
13179
13201
  interface PayoutStatusScheduled {
13180
13202
  readonly 'code': 'scheduled';
13181
13203
  readonly 'placeholder'?: string;
@@ -13233,6 +13255,7 @@ declare namespace io.flow.billing.v0.models {
13233
13255
  readonly 'settlement': io.flow.billing.v0.unions.Settlement;
13234
13256
  readonly 'attachments': io.flow.billing.v0.models.Attachment[];
13235
13257
  readonly 'created_at': string;
13258
+ readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
13236
13259
  }
13237
13260
 
13238
13261
  interface StatementStatusForm {
@@ -13346,6 +13369,7 @@ declare namespace io.flow.billing.v0.models {
13346
13369
  readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
13347
13370
  readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
13348
13371
  readonly 'revenue_share_percentage'?: number;
13372
+ readonly 'actual'?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
13349
13373
  }
13350
13374
 
13351
13375
  interface TransactionMetadataShippingLabelCarrier {
@@ -13473,7 +13497,7 @@ declare namespace io.flow.billing.v0.models {
13473
13497
 
13474
13498
  declare namespace io.flow.billing.v0.unions {
13475
13499
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
13476
- type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
13500
+ type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed | io.flow.billing.v0.models.PayoutStatusPaid);
13477
13501
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
13478
13502
  type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel);
13479
13503
  }
@@ -13961,6 +13985,7 @@ declare namespace io.flow.sellability.v0.models {
13961
13985
  readonly 'price': io.flow.common.v0.models.Money;
13962
13986
  readonly 'description': string;
13963
13987
  readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
13988
+ readonly 'inferred_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
13964
13989
  readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
13965
13990
  readonly 'catalog_size'?: number;
13966
13991
  readonly 'relative_ranking'?: number;
@@ -14127,6 +14152,7 @@ declare namespace io.flow.organization.v0.models {
14127
14152
  readonly 'province'?: string;
14128
14153
  readonly 'self_billing_agreement_effective_at': string;
14129
14154
  readonly 'self_billing_agreement_expires_at'?: string;
14155
+ readonly 'legal_name'?: string;
14130
14156
  }
14131
14157
 
14132
14158
  interface OrganizationVersion {
@@ -14156,6 +14182,7 @@ declare namespace io.flow.organization.v0.models {
14156
14182
  readonly 'country': string;
14157
14183
  readonly 'tax_code': string;
14158
14184
  readonly 'province'?: string;
14185
+ readonly 'legal_name'?: string;
14159
14186
  }
14160
14187
  }
14161
14188
 
@@ -14186,14 +14213,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
14186
14213
 
14187
14214
  interface BankAccountInfoKor {
14188
14215
  readonly 'discriminator': 'kor';
14189
- readonly 'name'?: string;
14190
- readonly 'address'?: io.flow.common.v0.models.Address;
14191
- readonly 'phone'?: string;
14192
- readonly 'email'?: string;
14216
+ readonly 'name': string;
14193
14217
  readonly 'bank_account_number': string;
14194
- readonly 'bank_routing_number'?: string;
14195
- readonly 'bank_name'?: string;
14196
- readonly 'bank_address'?: io.flow.common.v0.models.Address;
14218
+ readonly 'bank_routing_number': string;
14219
+ readonly 'bank_name': string;
14197
14220
  }
14198
14221
 
14199
14222
  interface BankAccountInfoKorV2 {
@@ -14223,24 +14246,27 @@ declare namespace io.flow.internal.v0.enums {
14223
14246
  type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
14224
14247
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
14225
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';
14226
14252
  type AmruthaItemType = 'physical' | 'digital';
14227
14253
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
14228
14254
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
14229
14255
  type ApplicablePreferentialRate = 'baby' | 'children';
14230
14256
  type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
14231
14257
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
14232
- type B2BFeeMorTaxTriggerType = 'capture' | 'order';
14258
+ type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
14233
14259
  type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
14234
14260
  type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
14235
14261
  type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
14236
14262
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
14237
14263
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
14238
- type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
14264
+ type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
14239
14265
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
14240
14266
  type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
14241
14267
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
14242
14268
  type BillingTransactionStatus = 'pending_proof' | 'posted';
14243
- type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
14269
+ type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
14244
14270
  type BojanaItemType = 'physical' | 'digital';
14245
14271
  type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
14246
14272
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
@@ -14275,7 +14301,7 @@ declare namespace io.flow.internal.v0.enums {
14275
14301
  type ClassificationErrorCode = 'generic_error';
14276
14302
  type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
14277
14303
  type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
14278
- type ClassificationScope = 'Item' | 'Product';
14304
+ type ClassificationScope = 'Item' | 'Product' | 'Bucket';
14279
14305
  type ClassificationSource = 'sellability';
14280
14306
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
14281
14307
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
@@ -14284,6 +14310,13 @@ declare namespace io.flow.internal.v0.enums {
14284
14310
  type ComplianceType = 'weee';
14285
14311
  type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
14286
14312
  type ConnectReportTransferTransferType = 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
14313
+ type CpscCertificateType = 'GCC' | 'CPC';
14314
+ type CpscFileType = 'GeRegistered' | 'PreRegistered';
14315
+ type CpscLabType = 'ITL' | 'LAB' | 'NOL';
14316
+ type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
14317
+ type CpscPointOfContactType = 'Importer' | 'Manufacturer' | 'Laboratory' | 'Broker' | 'Other';
14318
+ type CpscPrimaryProductIdType = 'GTIN' | 'UPC' | 'SKU' | 'Model Number' | 'Serial Number' | 'Registered Number' | 'Alternate Identifier';
14319
+ type CpscYesNo = 'Y' | 'N';
14287
14320
  type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
14288
14321
  type DebugAccountingTransactionType = 'fulfillment';
14289
14322
  type DeliveredDutyOptionMessageType = 'warning' | 'notification';
@@ -14312,7 +14345,7 @@ declare namespace io.flow.internal.v0.enums {
14312
14345
  type EmptyAttribute = 'irrelevant';
14313
14346
  type ErpFileType = 'vendor';
14314
14347
  type EvaluationCheckResult = 'pass' | 'fail';
14315
- type EventType = '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' | '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' | '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_lanes_import_request' | '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_adaptive_pricing_coefficients_upserted' | 'shopify_adaptive_pricing_coefficients_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' | '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';
14316
14349
  type ExperienceImportType = 'experience_with_settings';
14317
14350
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
14318
14351
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -14322,7 +14355,8 @@ declare namespace io.flow.internal.v0.enums {
14322
14355
  type FeatureType = 'boolean' | 'decimal' | 'string';
14323
14356
  type FeesSource = 'settings' | 'authorization_bundle';
14324
14357
  type FileType = 'pdf';
14325
- type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee';
14358
+ type FlatRateLabelGuaranteeStatus = 'active' | 'void';
14359
+ type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
14326
14360
  type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
14327
14361
  type FraudProviderStatus = 'active' | 'archived';
14328
14362
  type FraudReviewResponsibleParty = 'flow' | 'organization';
@@ -14337,7 +14371,7 @@ declare namespace io.flow.internal.v0.enums {
14337
14371
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
14338
14372
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
14339
14373
  type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
14340
- 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';
14341
14375
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
14342
14376
  type ItemType = 'standard' | 'multi_product';
14343
14377
  type JournalOperation = 'insert' | 'update' | 'delete';
@@ -14408,17 +14442,19 @@ declare namespace io.flow.internal.v0.enums {
14408
14442
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
14409
14443
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
14410
14444
  type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
14445
+ type PvDecision = 'uphold' | 'remove';
14411
14446
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
14412
14447
  type RateSource = 'calculated' | 'market';
14413
14448
  type RaveenaItemType = 'physical' | 'digital';
14414
14449
  type RedirectReason = 'three_d_secure';
14415
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';
14416
14452
  type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
14417
14453
  type ReportFileType = 'stripe_connect_report';
14418
14454
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
14419
14455
  type ReportPaymentType = 'credit' | 'debit';
14420
14456
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
14421
- 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';
14422
14458
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
14423
14459
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
14424
14460
  type ResponsibleParty = 'flow' | 'organization';
@@ -14428,10 +14464,11 @@ declare namespace io.flow.internal.v0.enums {
14428
14464
  type RestrictionAttributeOperator = 'and' | 'or';
14429
14465
  type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
14430
14466
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
14431
- type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
14467
+ type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'globale' | 'globale-sandbox' | 'cafe24' | 'cafe24-sandbox';
14432
14468
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
14433
14469
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
14434
14470
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
14471
+ type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
14435
14472
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
14436
14473
  type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
14437
14474
  type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
@@ -14737,6 +14774,8 @@ declare namespace io.flow.internal.v0.models {
14737
14774
  readonly 'refund'?: io.flow.payment.v0.models.RefundReference;
14738
14775
  readonly 'tax_reversal'?: io.flow.internal.v0.models.TransactionReference;
14739
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;
14740
14779
  }
14741
14780
 
14742
14781
  interface ActionQuantity {
@@ -14744,21 +14783,6 @@ declare namespace io.flow.internal.v0.models {
14744
14783
  readonly 'quantity': number;
14745
14784
  }
14746
14785
 
14747
- interface AdaptivePricingDestinationUpdate {
14748
- readonly 'country_code': string;
14749
- readonly 'updated_at': string;
14750
- readonly 'tax_and_duty_coefficient': number;
14751
- readonly 'fees_coefficient': number;
14752
- readonly 'merchant_subsidy_amount': number;
14753
- readonly 'merchant_subsidy_currency': string;
14754
- }
14755
-
14756
- interface AdaptivePricingUpdate {
14757
- readonly 'channel_id': string;
14758
- readonly 'organization_id': string;
14759
- readonly 'destination_updates': io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
14760
- }
14761
-
14762
14786
  interface AdaptiveShippingOrderGuarantee {
14763
14787
  readonly 'id': string;
14764
14788
  readonly 'organization_id': string;
@@ -14784,33 +14808,6 @@ declare namespace io.flow.internal.v0.models {
14784
14808
  readonly 'adaptive_shipping_order_guarantee': io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
14785
14809
  }
14786
14810
 
14787
- interface AdaptiveShippingRate {
14788
- readonly 'id': string;
14789
- readonly 'organization_id': string;
14790
- readonly 'channel_id': string;
14791
- readonly 'destination_country': string;
14792
- readonly 'coefficient': number;
14793
- readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
14794
- readonly 'effective_at': string;
14795
- readonly 'effective_until'?: string;
14796
- }
14797
-
14798
- interface AdaptiveShippingRateDeleted {
14799
- readonly 'discriminator': 'adaptive_shipping_rate_deleted';
14800
- readonly 'event_id': string;
14801
- readonly 'timestamp': string;
14802
- readonly 'organization': string;
14803
- readonly 'id': string;
14804
- }
14805
-
14806
- interface AdaptiveShippingRateUpserted {
14807
- readonly 'discriminator': 'adaptive_shipping_rate_upserted';
14808
- readonly 'event_id': string;
14809
- readonly 'timestamp': string;
14810
- readonly 'organization': string;
14811
- readonly 'adaptive_shipping_rate': io.flow.internal.v0.models.AdaptiveShippingRate;
14812
- }
14813
-
14814
14811
  interface AdditionalImportTax {
14815
14812
  readonly 'name'?: string;
14816
14813
  readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
@@ -15245,6 +15242,55 @@ declare namespace io.flow.internal.v0.models {
15245
15242
  readonly 'placeholder'?: boolean;
15246
15243
  }
15247
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
+
15248
15294
  interface AllItemsExport {
15249
15295
  readonly 'discriminator': 'all_items_export';
15250
15296
  readonly 'event_id': string;
@@ -15502,6 +15548,8 @@ declare namespace io.flow.internal.v0.models {
15502
15548
  readonly 'expected_delivery_by'?: string;
15503
15549
  readonly 'attributes'?: Record<string, string>;
15504
15550
  readonly 'total': io.flow.common.v0.models.Price;
15551
+ readonly 'created_at'?: string;
15552
+ readonly 'failed_on'?: string;
15505
15553
  }
15506
15554
 
15507
15555
  interface BankPaymentDeletedV2 {
@@ -15793,6 +15841,7 @@ declare namespace io.flow.internal.v0.models {
15793
15841
  readonly 'b2b_fee_mor_tax': io.flow.common.v0.models.Price;
15794
15842
  readonly 'b2b_fee_shipping_tax': io.flow.common.v0.models.Price;
15795
15843
  readonly 'flat_rate_label': io.flow.common.v0.models.Price;
15844
+ readonly 'flat_rate_label_subsidy': io.flow.common.v0.models.Price;
15796
15845
  }
15797
15846
 
15798
15847
  interface BillingStatementUpserted {
@@ -16549,7 +16598,7 @@ declare namespace io.flow.internal.v0.models {
16549
16598
  readonly 'order_updated_at'?: string;
16550
16599
  readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
16551
16600
  readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
16552
- readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
16601
+ readonly 'external_order_summary'?: io.flow.internal.v0.models.ExternalOrderSummary;
16553
16602
  }
16554
16603
 
16555
16604
  interface ChannelOrderAcceptanceDeleted {
@@ -17287,6 +17336,93 @@ declare namespace io.flow.internal.v0.models {
17287
17336
  readonly 'product_harmonization': io.flow.internal.v0.models.ClassificationProductHarmonization;
17288
17337
  }
17289
17338
 
17339
+ interface CpscProductRegistration {
17340
+ readonly 'product_update': boolean;
17341
+ readonly 'current_version_id'?: string;
17342
+ readonly 'new_version_id': string;
17343
+ readonly 'primary_product_id': string;
17344
+ readonly 'primary_product_id_type': io.flow.internal.v0.enums.CpscPrimaryProductIdType;
17345
+ readonly 'gtin'?: string;
17346
+ readonly 'upc'?: string;
17347
+ readonly 'sku'?: string;
17348
+ readonly 'model_number'?: string;
17349
+ readonly 'serial_number'?: string;
17350
+ readonly 'registered_number'?: string;
17351
+ readonly 'alternate_identifier'?: string;
17352
+ readonly 'certificate_type': io.flow.internal.v0.enums.CpscCertificateType;
17353
+ readonly 'product_name': string;
17354
+ readonly 'trade_brand_name'?: string;
17355
+ readonly 'product_description'?: string;
17356
+ readonly 'product_color'?: string;
17357
+ readonly 'product_style'?: string;
17358
+ readonly 'manufacturer_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
17359
+ readonly 'manufacturer_gln'?: string;
17360
+ readonly 'manufacturer_alternate_id'?: string;
17361
+ readonly 'manufacturer_name'?: string;
17362
+ readonly 'small_batch_manufacturer_cpsc_id'?: string;
17363
+ readonly 'manufacturer_address_line_1'?: string;
17364
+ readonly 'manufacturer_address_line_2'?: string;
17365
+ readonly 'manufacturer_apt_suite_number'?: string;
17366
+ readonly 'manufacturer_city'?: string;
17367
+ readonly 'manufacturer_state_province'?: string;
17368
+ readonly 'manufacturer_country'?: string;
17369
+ readonly 'manufacturer_zip_postal_code'?: string;
17370
+ readonly 'manufacturer_phone'?: string;
17371
+ readonly 'manufacturer_email'?: string;
17372
+ readonly 'manufacture_date': string;
17373
+ readonly 'production_start_date'?: string;
17374
+ readonly 'production_end_date'?: string;
17375
+ readonly 'lot_number'?: string;
17376
+ readonly 'lot_number_assigned_by'?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
17377
+ readonly 'lab_1_type': io.flow.internal.v0.enums.CpscLabType;
17378
+ readonly 'lab_1_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
17379
+ readonly 'lab_1_cpsc_id'?: string;
17380
+ readonly 'lab_1_alternate_id'?: string;
17381
+ readonly 'lab_1_gln'?: string;
17382
+ readonly 'lab_1_name'?: string;
17383
+ readonly 'lab_1_address_line_1'?: string;
17384
+ readonly 'lab_1_address_line_2'?: string;
17385
+ readonly 'lab_1_apt_suite_number'?: string;
17386
+ readonly 'lab_1_city'?: string;
17387
+ readonly 'lab_1_state_province'?: string;
17388
+ readonly 'lab_1_country'?: string;
17389
+ readonly 'lab_1_zip_postal_code'?: string;
17390
+ readonly 'lab_1_phone'?: string;
17391
+ readonly 'lab_1_email'?: string;
17392
+ readonly 'lab_1_citation_codes': string;
17393
+ readonly 'lab_1_test_report_id'?: string;
17394
+ readonly 'lab_1_test_url'?: string;
17395
+ readonly 'lab_1_test_report_access_key'?: string;
17396
+ readonly 'lab_1_is_component'?: boolean;
17397
+ readonly 'lab_1_component_description'?: string;
17398
+ readonly 'last_test_date'?: string;
17399
+ readonly 'poc_for_test_records': io.flow.internal.v0.enums.CpscPointOfContactType;
17400
+ readonly 'poc_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
17401
+ readonly 'poc_alternate_id'?: string;
17402
+ readonly 'poc_gln'?: string;
17403
+ readonly 'poc_name'?: string;
17404
+ readonly 'poc_address_line_1'?: string;
17405
+ readonly 'poc_address_line_2'?: string;
17406
+ readonly 'poc_apt_suite_number'?: string;
17407
+ readonly 'poc_city'?: string;
17408
+ readonly 'poc_state_province'?: string;
17409
+ readonly 'poc_country'?: string;
17410
+ readonly 'poc_zip_postal_code'?: string;
17411
+ readonly 'poc_phone'?: string;
17412
+ readonly 'poc_email'?: string;
17413
+ }
17414
+
17415
+ interface CpscQueueEnvelope {
17416
+ readonly 'messageType': string[];
17417
+ readonly 'message': io.flow.internal.v0.models.CpscQueueMessage;
17418
+ }
17419
+
17420
+ interface CpscQueueMessage {
17421
+ readonly 'filePath': string;
17422
+ readonly 'merchantId': string;
17423
+ readonly 'fileType': io.flow.internal.v0.enums.CpscFileType;
17424
+ }
17425
+
17290
17426
  interface CryptoAccount {
17291
17427
  readonly 'discriminator': 'crypto_account';
17292
17428
  readonly 'id': string;
@@ -17689,6 +17825,29 @@ declare namespace io.flow.internal.v0.models {
17689
17825
  readonly 'destination': io.flow.common.v0.models.Address;
17690
17826
  }
17691
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
+
17692
17851
  interface Dhl {
17693
17852
  readonly 'discriminator': 'dhl';
17694
17853
  readonly 'export_account_number': string;
@@ -18423,6 +18582,12 @@ declare namespace io.flow.internal.v0.models {
18423
18582
  readonly 'fulfilled_via_replacement_order'?: boolean;
18424
18583
  }
18425
18584
 
18585
+ interface ExternalOrderSummary {
18586
+ readonly 'id': string;
18587
+ readonly 'edit_ids': string[];
18588
+ readonly 'created_at'?: string;
18589
+ }
18590
+
18426
18591
  interface ExternalRatecardLink {
18427
18592
  readonly 'external_ratecard_id': string;
18428
18593
  readonly 'flow_ratecard_ids': string[];
@@ -18581,6 +18746,7 @@ declare namespace io.flow.internal.v0.models {
18581
18746
  readonly 'transfer'?: io.flow.internal.v0.models.Fee;
18582
18747
  readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
18583
18748
  readonly 'sp'?: io.flow.internal.v0.models.Fee;
18749
+ readonly 'revenue_share'?: io.flow.internal.v0.models.Fee;
18584
18750
  }
18585
18751
 
18586
18752
  interface FinanceBankAccount {
@@ -18729,6 +18895,31 @@ declare namespace io.flow.internal.v0.models {
18729
18895
  readonly 'flat_rate_label_reversal': io.flow.internal.v0.models.FlatRateLabelReversal;
18730
18896
  }
18731
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
+
18732
18923
  interface FlatRateLabelTransaction {
18733
18924
  readonly 'discriminator': 'flat_rate_label_transaction';
18734
18925
  readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -19441,15 +19632,129 @@ declare namespace io.flow.internal.v0.models {
19441
19632
  readonly 'tracker_id': string;
19442
19633
  }
19443
19634
 
19444
- interface HarmonizationClassificationStatisticsData {
19445
- readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
19446
- }
19447
-
19448
- interface HarmonizationClassificationStatisticsPublished {
19449
- readonly 'discriminator': 'harmonization_classification_statistics_published';
19450
- readonly 'event_id': string;
19451
- readonly 'timestamp': string;
19452
- readonly 'organization': string;
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
+
19662
+ interface GuaranteedShippingPublishedOutput {
19663
+ readonly 'id': string;
19664
+ readonly 'organization_id': string;
19665
+ readonly 'channel_id': string;
19666
+ readonly 'destination_country': string;
19667
+ readonly 'coefficient': number;
19668
+ readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
19669
+ readonly 'inputs_updated_at': number;
19670
+ }
19671
+
19672
+ interface GuaranteedShippingPublishedOutputDeleted {
19673
+ readonly 'discriminator': 'guaranteed_shipping_published_output_deleted';
19674
+ readonly 'event_id': string;
19675
+ readonly 'timestamp': string;
19676
+ readonly 'organization': string;
19677
+ readonly 'id': string;
19678
+ }
19679
+
19680
+ interface GuaranteedShippingPublishedOutputUpserted {
19681
+ readonly 'discriminator': 'guaranteed_shipping_published_output_upserted';
19682
+ readonly 'event_id': string;
19683
+ readonly 'timestamp': string;
19684
+ readonly 'organization': string;
19685
+ readonly 'guaranteed_shipping_published_output': io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
19686
+ }
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
+
19749
+ interface HarmonizationClassificationStatisticsData {
19750
+ readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
19751
+ }
19752
+
19753
+ interface HarmonizationClassificationStatisticsPublished {
19754
+ readonly 'discriminator': 'harmonization_classification_statistics_published';
19755
+ readonly 'event_id': string;
19756
+ readonly 'timestamp': string;
19757
+ readonly 'organization': string;
19453
19758
  readonly 'data': io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
19454
19759
  }
19455
19760
 
@@ -19833,6 +20138,32 @@ declare namespace io.flow.internal.v0.models {
19833
20138
  readonly 'created_at': string;
19834
20139
  }
19835
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
+
19836
20167
  interface ItemClassification {
19837
20168
  readonly 'id'?: string;
19838
20169
  readonly 'organization': string;
@@ -19957,6 +20288,31 @@ declare namespace io.flow.internal.v0.models {
19957
20288
  readonly 'item_harmonization': io.flow.internal.v0.models.ItemHarmonization;
19958
20289
  }
19959
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
+
19960
20316
  interface ItemQueryResponse {
19961
20317
  readonly 'q': string;
19962
20318
  readonly 'items': io.flow.catalog.v0.models.Item[];
@@ -20604,6 +20960,13 @@ declare namespace io.flow.internal.v0.models {
20604
20960
  readonly 'added_on': string;
20605
20961
  }
20606
20962
 
20963
+ interface MaheshItemDeleted {
20964
+ readonly 'discriminator': 'mahesh_item_deleted';
20965
+ readonly 'event_id': string;
20966
+ readonly 'timestamp': string;
20967
+ readonly 'id': string;
20968
+ }
20969
+
20607
20970
  interface MaheshItemForm {
20608
20971
  readonly 'number': string;
20609
20972
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -20612,6 +20975,13 @@ declare namespace io.flow.internal.v0.models {
20612
20975
  readonly 'added_on': string;
20613
20976
  }
20614
20977
 
20978
+ interface MaheshItemUpserted {
20979
+ readonly 'discriminator': 'mahesh_item_upserted';
20980
+ readonly 'event_id': string;
20981
+ readonly 'timestamp': string;
20982
+ readonly 'item': io.flow.internal.v0.models.MaheshItem;
20983
+ }
20984
+
20615
20985
  interface MainTransaction {
20616
20986
  readonly 'id': string;
20617
20987
  readonly 'account': io.flow.billing.v0.models.AccountReference;
@@ -20624,6 +20994,7 @@ declare namespace io.flow.internal.v0.models {
20624
20994
  readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
20625
20995
  readonly 'created_at': string;
20626
20996
  readonly 'original_at'?: string;
20997
+ readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
20627
20998
  }
20628
20999
 
20629
21000
  interface MainTransactionDeleted {
@@ -20919,10 +21290,13 @@ declare namespace io.flow.internal.v0.models {
20919
21290
  readonly 'surcharges'?: io.flow.internal.v0.models.MerchantSurcharge[];
20920
21291
  readonly 'freight_guaranteed'?: number;
20921
21292
  readonly 'freight_non_guaranteed'?: number;
21293
+ readonly 'freight_subsidy'?: number;
20922
21294
  readonly 'total': number;
20923
21295
  readonly 'tax_refund'?: number;
20924
21296
  readonly 'tax_reversal'?: number;
20925
21297
  readonly 'duty_reversal'?: number;
21298
+ readonly 'flat_rate_reversal'?: number;
21299
+ readonly 'flat_rate_subsidy_reversal'?: number;
20926
21300
  readonly 'tax_reversal_for_lvg_order'?: boolean;
20927
21301
  readonly 'duty_reversal_for_lvg_order'?: boolean;
20928
21302
  }
@@ -21317,6 +21691,10 @@ declare namespace io.flow.internal.v0.models {
21317
21691
  readonly 'to_service_id': string;
21318
21692
  }
21319
21693
 
21694
+ interface OrderSettings {
21695
+ readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
21696
+ }
21697
+
21320
21698
  interface OrderSummary {
21321
21699
  readonly 'id': string;
21322
21700
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
@@ -21948,6 +22326,7 @@ declare namespace io.flow.internal.v0.models {
21948
22326
  readonly 'organization': io.flow.internal.v0.models.OtherRecordOrganizationSummary;
21949
22327
  readonly 'number': string;
21950
22328
  readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
22329
+ readonly 'destination_province'?: string;
21951
22330
  }
21952
22331
 
21953
22332
  interface OtherRecordOrderSummaryIdentifiers {
@@ -21973,6 +22352,35 @@ declare namespace io.flow.internal.v0.models {
21973
22352
  readonly 'insurance': number;
21974
22353
  }
21975
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
+
21976
22384
  interface Partner {
21977
22385
  readonly 'id': string;
21978
22386
  readonly 'name': string;
@@ -22471,6 +22879,24 @@ declare namespace io.flow.internal.v0.models {
22471
22879
  readonly 'refund': io.flow.internal.v0.models.PaypalInternalRefund;
22472
22880
  }
22473
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
+
22474
22900
  interface PendingBankPayment {
22475
22901
  readonly 'id': string;
22476
22902
  readonly 'account': io.flow.internal.v0.models.AccountSummary;
@@ -22622,6 +23048,7 @@ declare namespace io.flow.internal.v0.models {
22622
23048
  readonly 'catalog_size': number;
22623
23049
  readonly 'processed_product_count': number;
22624
23050
  readonly 'last_request': string;
23051
+ readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
22625
23052
  readonly 'updated_by_user_id': string;
22626
23053
  }
22627
23054
 
@@ -22659,6 +23086,7 @@ declare namespace io.flow.internal.v0.models {
22659
23086
  readonly 'effective_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
22660
23087
  readonly 'fingerprint': string;
22661
23088
  readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
23089
+ readonly 'created_at'?: string;
22662
23090
  }
22663
23091
 
22664
23092
  interface PreonboardingSellabilityResultDeleted {
@@ -23085,6 +23513,28 @@ declare namespace io.flow.internal.v0.models {
23085
23513
  readonly 'location': io.flow.common.v0.models.Address;
23086
23514
  }
23087
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
+
23088
23538
  interface Quote {
23089
23539
  readonly 'id': string;
23090
23540
  readonly 'base': string;
@@ -23335,14 +23785,6 @@ declare namespace io.flow.internal.v0.models {
23335
23785
  readonly 'number': string;
23336
23786
  }
23337
23787
 
23338
- interface RatecardLanesImportRequest {
23339
- readonly 'discriminator': 'ratecard_lanes_import_request';
23340
- readonly 'event_id': string;
23341
- readonly 'timestamp': string;
23342
- readonly 'organization': string;
23343
- readonly 'data': io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
23344
- }
23345
-
23346
23788
  interface RatecardRateLevelDeleted {
23347
23789
  readonly 'discriminator': 'ratecard_rate_level_deleted';
23348
23790
  readonly 'event_id': string;
@@ -23403,15 +23845,6 @@ declare namespace io.flow.internal.v0.models {
23403
23845
  readonly 'fee': io.flow.internal.v0.models.RatecardInternalServiceFee;
23404
23846
  }
23405
23847
 
23406
- interface RatecardServiceFeesOverride {
23407
- readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
23408
- readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
23409
- }
23410
-
23411
- interface RatecardServiceFeesOverrideForm {
23412
- readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
23413
- }
23414
-
23415
23848
  interface RatesChanged {
23416
23849
  readonly 'event_id': string;
23417
23850
  readonly 'timestamp': string;
@@ -23487,6 +23920,11 @@ declare namespace io.flow.internal.v0.models {
23487
23920
  readonly 'number': string;
23488
23921
  }
23489
23922
 
23923
+ interface RemediateTaxDutyMetadata {
23924
+ readonly 'discriminator': 'remediate_tax_duty_metadata';
23925
+ readonly 'arm': io.flow.internal.v0.enums.RemediateTaxDutyArm;
23926
+ }
23927
+
23490
23928
  interface RemittanceResponsibility {
23491
23929
  readonly 'tax': io.flow.internal.v0.enums.ResponsibleParty;
23492
23930
  readonly 'duty': io.flow.internal.v0.enums.ResponsibleParty;
@@ -23540,7 +23978,7 @@ declare namespace io.flow.internal.v0.models {
23540
23978
  readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
23541
23979
  readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
23542
23980
  readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
23543
- readonly 'account_currency'?: io.flow.internal.v0.enums.AccountCurrencyFilter;
23981
+ readonly 'account_currencies'?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
23544
23982
  readonly 'channel_id'?: string;
23545
23983
  }
23546
23984
 
@@ -23675,6 +24113,7 @@ declare namespace io.flow.internal.v0.models {
23675
24113
 
23676
24114
  interface ReportingFreight {
23677
24115
  readonly 'guaranteed'?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
24116
+ readonly 'subsidy'?: io.flow.internal.v0.models.ReportingFreightSubsidy;
23678
24117
  }
23679
24118
 
23680
24119
  interface ReportingFreightGuaranteed {
@@ -23682,6 +24121,10 @@ declare namespace io.flow.internal.v0.models {
23682
24121
  readonly 'coefficient': io.flow.internal.v0.models.ReportingMonetaryValue;
23683
24122
  }
23684
24123
 
24124
+ interface ReportingFreightSubsidy {
24125
+ readonly 'amount': io.flow.internal.v0.models.ReportingMonetaryValue;
24126
+ }
24127
+
23685
24128
  interface ReportingFulfillment {
23686
24129
  readonly 'id': string;
23687
24130
  readonly 'sequence_number': number;
@@ -23722,13 +24165,18 @@ declare namespace io.flow.internal.v0.models {
23722
24165
  }
23723
24166
 
23724
24167
  interface ReportingFx {
23725
- readonly 'shipping': io.flow.internal.v0.models.ReportingUsd;
23726
- readonly 'fees': io.flow.internal.v0.models.ReportingUsd;
23727
- readonly 'product': io.flow.internal.v0.models.ReportingUsd;
23728
- readonly 'tax': io.flow.internal.v0.models.ReportingUsd;
23729
- readonly 'duty': io.flow.internal.v0.models.ReportingUsd;
23730
- readonly 'tips'?: io.flow.internal.v0.models.ReportingUsd;
23731
- readonly 'total': io.flow.internal.v0.models.ReportingUsd;
24168
+ readonly 'shipping': io.flow.internal.v0.models.ReportingFxValue;
24169
+ readonly 'fees': io.flow.internal.v0.models.ReportingFxValue;
24170
+ readonly 'product': io.flow.internal.v0.models.ReportingFxValue;
24171
+ readonly 'tax': io.flow.internal.v0.models.ReportingFxValue;
24172
+ readonly 'duty': io.flow.internal.v0.models.ReportingFxValue;
24173
+ readonly 'tips'?: io.flow.internal.v0.models.ReportingFxValue;
24174
+ readonly 'total': io.flow.internal.v0.models.ReportingFxValue;
24175
+ }
24176
+
24177
+ interface ReportingFxValue {
24178
+ readonly 'usd': number;
24179
+ readonly 'merchant'?: number;
23732
24180
  }
23733
24181
 
23734
24182
  interface ReportingMerchantBreakdown {
@@ -23781,12 +24229,15 @@ declare namespace io.flow.internal.v0.models {
23781
24229
  readonly 'freight_breakdown'?: io.flow.internal.v0.models.ReportingMerchantFreight;
23782
24230
  readonly 'freight_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23783
24231
  readonly 'freight_non_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
24232
+ readonly 'freight_subsidy'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23784
24233
  readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23785
24234
  readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23786
24235
  readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23787
24236
  readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23788
24237
  readonly 'tax_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23789
24238
  readonly 'duty_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
24239
+ readonly 'flat_rate_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
24240
+ readonly 'flat_rate_subsidy_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
23790
24241
  readonly 'tax_reversal_for_lvg_order'?: boolean;
23791
24242
  readonly 'duty_reversal_for_lvg_order'?: boolean;
23792
24243
  }
@@ -23964,7 +24415,6 @@ declare namespace io.flow.internal.v0.models {
23964
24415
  readonly 'created_at': string;
23965
24416
  readonly 'updated_at': string;
23966
24417
  readonly 'channel'?: string;
23967
- readonly 'is_deleted'?: boolean;
23968
24418
  }
23969
24419
 
23970
24420
  interface RestrictionItemRequestForm {
@@ -24090,7 +24540,6 @@ declare namespace io.flow.internal.v0.models {
24090
24540
  readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
24091
24541
  readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
24092
24542
  readonly 'channel'?: string;
24093
- readonly 'is_deleted'?: boolean;
24094
24543
  }
24095
24544
 
24096
24545
  interface RestrictionProductDecisionForm {
@@ -24133,6 +24582,7 @@ declare namespace io.flow.internal.v0.models {
24133
24582
  readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
24134
24583
  readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
24135
24584
  readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
24585
+ readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
24136
24586
  }
24137
24587
 
24138
24588
  interface RestrictionRuleDecisionForm {
@@ -24194,6 +24644,7 @@ declare namespace io.flow.internal.v0.models {
24194
24644
  readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
24195
24645
  readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
24196
24646
  readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
24647
+ readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
24197
24648
  }
24198
24649
 
24199
24650
  interface RestrictionRuleLaneExemption {
@@ -24493,6 +24944,12 @@ declare namespace io.flow.internal.v0.models {
24493
24944
  readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
24494
24945
  }
24495
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
+
24496
24953
  interface RoutingAccount {
24497
24954
  readonly 'discriminator': 'routing_account';
24498
24955
  readonly 'processor': io.flow.internal.v0.enums.Processor;
@@ -24527,12 +24984,29 @@ declare namespace io.flow.internal.v0.models {
24527
24984
  readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
24528
24985
  readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
24529
24986
  readonly 'destination_country': string;
24987
+ readonly 'destination_province'?: string;
24530
24988
  readonly 'fulfilled_at'?: string;
24531
24989
  readonly 'reconciliation'?: io.flow.internal.v0.models.ReportingReconciliation;
24532
24990
  readonly 'is_eu_destination'?: boolean;
24533
24991
  readonly 'debug_url'?: string;
24534
24992
  }
24535
24993
 
24994
+ interface SalesPaymentRecordDeleted {
24995
+ readonly 'discriminator': 'sales_payment_record_deleted';
24996
+ readonly 'event_id': string;
24997
+ readonly 'timestamp': string;
24998
+ readonly 'organization': string;
24999
+ readonly 'id': string;
25000
+ }
25001
+
25002
+ interface SalesPaymentRecordUpserted {
25003
+ readonly 'discriminator': 'sales_payment_record_upserted';
25004
+ readonly 'event_id': string;
25005
+ readonly 'timestamp': string;
25006
+ readonly 'organization': string;
25007
+ readonly 'sales_payment_record': io.flow.internal.v0.models.SalesPaymentRecord;
25008
+ }
25009
+
24536
25010
  interface SandboxSetup {
24537
25011
  readonly 'requested_by': string;
24538
25012
  }
@@ -24647,6 +25121,50 @@ declare namespace io.flow.internal.v0.models {
24647
25121
  readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
24648
25122
  }
24649
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
+
25159
+ interface ServiceFees {
25160
+ readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
25161
+ readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
25162
+ }
25163
+
25164
+ interface ServiceFeesForm {
25165
+ readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
25166
+ }
25167
+
24650
25168
  interface SessionOrderData {
24651
25169
  readonly 'id': string;
24652
25170
  readonly 'session': io.flow.common.v0.models.SessionReference;
@@ -24678,6 +25196,7 @@ declare namespace io.flow.internal.v0.models {
24678
25196
  readonly 'rate_level_key'?: string;
24679
25197
  readonly 'cost_estimate_source': io.flow.label.v0.enums.CostEstimateSource;
24680
25198
  readonly 'cost': io.flow.common.v0.models.Money;
25199
+ readonly 'dim_factor': number;
24681
25200
  }
24682
25201
 
24683
25202
  interface ShippingCostDeleted {
@@ -24767,28 +25286,6 @@ declare namespace io.flow.internal.v0.models {
24767
25286
  readonly 'include_unpublished'?: boolean;
24768
25287
  }
24769
25288
 
24770
- interface ShopifyAdaptivePricingCoefficients {
24771
- readonly 'id': string;
24772
- readonly 'organization_id': string;
24773
- readonly 'destination_coefficients': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
24774
- }
24775
-
24776
- interface ShopifyAdaptivePricingCoefficientsDeleted {
24777
- readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_deleted';
24778
- readonly 'event_id': string;
24779
- readonly 'timestamp': string;
24780
- readonly 'organization': string;
24781
- readonly 'id': string;
24782
- }
24783
-
24784
- interface ShopifyAdaptivePricingCoefficientsUpserted {
24785
- readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_upserted';
24786
- readonly 'event_id': string;
24787
- readonly 'timestamp': string;
24788
- readonly 'organization': string;
24789
- readonly 'shopify_adaptive_pricing_coefficients': io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
24790
- }
24791
-
24792
25289
  interface ShopifyAddress {
24793
25290
  readonly 'address1': string;
24794
25291
  readonly 'city': string;
@@ -24828,6 +25325,12 @@ declare namespace io.flow.internal.v0.models {
24828
25325
  readonly 'phone'?: string;
24829
25326
  }
24830
25327
 
25328
+ interface ShopifyCost {
25329
+ readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
25330
+ readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
25331
+ readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
25332
+ }
25333
+
24831
25334
  interface ShopifyDispute {
24832
25335
  readonly 'id': string;
24833
25336
  readonly 'organization_id': string;
@@ -25196,6 +25699,7 @@ declare namespace io.flow.internal.v0.models {
25196
25699
  interface ShopifyMerchantMarketCountry {
25197
25700
  readonly 'code': string;
25198
25701
  readonly 'actively_managing': boolean;
25702
+ readonly 'enabled': boolean;
25199
25703
  }
25200
25704
 
25201
25705
  interface ShopifyMerchantMarkets {
@@ -25558,7 +26062,7 @@ declare namespace io.flow.internal.v0.models {
25558
26062
 
25559
26063
  interface ShopifyShipmentRateAvailable {
25560
26064
  readonly 'carrier_service_id': string;
25561
- readonly 'total_charges': io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
26065
+ readonly 'total_charges': io.flow.internal.v0.models.ShopifyCost;
25562
26066
  readonly 'charges': io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
25563
26067
  readonly 'shipment_options': io.flow.internal.v0.models.ShopifyShipmentRateOption[];
25564
26068
  readonly 'expected_delivery_date'?: string;
@@ -25568,12 +26072,12 @@ declare namespace io.flow.internal.v0.models {
25568
26072
 
25569
26073
  interface ShopifyShipmentRateCharge {
25570
26074
  readonly 'code': io.flow.internal.v0.enums.ShopifyChargeCode;
25571
- readonly 'cost': io.flow.internal.v0.models.ShopifyMoney;
26075
+ readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
25572
26076
  }
25573
26077
 
25574
26078
  interface ShopifyShipmentRateOption {
25575
26079
  readonly 'code': io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
25576
- readonly 'cost': io.flow.internal.v0.models.ShopifyMoney;
26080
+ readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
25577
26081
  readonly 'optional'?: boolean;
25578
26082
  }
25579
26083
 
@@ -25619,12 +26123,6 @@ declare namespace io.flow.internal.v0.models {
25619
26123
  readonly 'byoa': boolean;
25620
26124
  }
25621
26125
 
25622
- interface ShopifyShipmentRateTotalCharges {
25623
- readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
25624
- readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
25625
- readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
25626
- }
25627
-
25628
26126
  interface ShopifyShipmentRateUnavailable {
25629
26127
  readonly 'carrier_service_id': string;
25630
26128
  readonly 'reasons': io.flow.internal.v0.models.ShopifyShipmentRateReason[];
@@ -26456,6 +26954,7 @@ declare namespace io.flow.internal.v0.models {
26456
26954
  interface TaxonomyCategoryHs6Ref {
26457
26955
  readonly 'id': string;
26458
26956
  readonly 'taxonomy_category': string;
26957
+ readonly 'taxonomy_category_id'?: string;
26459
26958
  readonly 'hs6': string;
26460
26959
  readonly 'updated_by_user_id': string;
26461
26960
  }
@@ -26985,6 +27484,27 @@ declare namespace io.flow.internal.v0.models {
26985
27484
  readonly 'message': string;
26986
27485
  }
26987
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
+
26988
27508
  interface Ups {
26989
27509
  readonly 'discriminator': 'ups';
26990
27510
  readonly 'client_id': string;
@@ -27153,6 +27673,8 @@ declare namespace io.flow.internal.v0.models {
27153
27673
  declare namespace io.flow.internal.v0.unions {
27154
27674
  type AdjustmentAmount = (io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed);
27155
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);
27156
27678
  type AuthorizationPayload = (io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload);
27157
27679
  type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
27158
27680
  type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
@@ -27180,7 +27702,7 @@ declare namespace io.flow.internal.v0.unions {
27180
27702
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
27181
27703
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
27182
27704
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
27183
- type Event = (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.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.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.RatecardLanesImportRequest | 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.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | 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.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);
27184
27706
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
27185
27707
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
27186
27708
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -27223,7 +27745,7 @@ declare namespace io.flow.internal.v0.unions {
27223
27745
  type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
27224
27746
  type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
27225
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);
27226
- 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);
27227
27749
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
27228
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);
27229
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);
@@ -27237,6 +27759,9 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
27237
27759
  export const adaptiveShippingOrderGuaranteeState: PropTypes.Requireable<io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState>;
27238
27760
  export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
27239
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>;
27240
27765
  export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
27241
27766
  export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
27242
27767
  export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
@@ -27298,6 +27823,13 @@ export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
27298
27823
  export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
27299
27824
  export const connectReportPaymentTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportPaymentTransferType>;
27300
27825
  export const connectReportTransferTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportTransferTransferType>;
27826
+ export const cpscCertificateType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscCertificateType>;
27827
+ export const cpscFileType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscFileType>;
27828
+ export const cpscLabType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscLabType>;
27829
+ export const cpscLotNumberAssignedBy: PropTypes.Requireable<io.flow.internal.v0.enums.CpscLotNumberAssignedBy>;
27830
+ export const cpscPointOfContactType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscPointOfContactType>;
27831
+ export const cpscPrimaryProductIdType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscPrimaryProductIdType>;
27832
+ export const cpscYesNo: PropTypes.Requireable<io.flow.internal.v0.enums.CpscYesNo>;
27301
27833
  export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
27302
27834
  export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
27303
27835
  export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
@@ -27336,6 +27868,7 @@ export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Feat
27336
27868
  export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
27337
27869
  export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
27338
27870
  export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
27871
+ export const flatRateLabelGuaranteeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus>;
27339
27872
  export const flatRateLabelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelTransactionType>;
27340
27873
  export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
27341
27874
  export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
@@ -27422,11 +27955,13 @@ export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v
27422
27955
  export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
27423
27956
  export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
27424
27957
  export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
27958
+ export const pvDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PvDecision>;
27425
27959
  export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
27426
27960
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
27427
27961
  export const raveenaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RaveenaItemType>;
27428
27962
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
27429
27963
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
27964
+ export const remediateTaxDutyArm: PropTypes.Requireable<io.flow.internal.v0.enums.RemediateTaxDutyArm>;
27430
27965
  export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
27431
27966
  export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
27432
27967
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
@@ -27446,6 +27981,7 @@ export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.inter
27446
27981
  export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
27447
27982
  export const restrictionRuleActivationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleActivationStatus>;
27448
27983
  export const restrictionRuleCommunityExemption: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleCommunityExemption>;
27984
+ export const restrictionRuleEvaluationMode: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleEvaluationMode>;
27449
27985
  export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
27450
27986
  export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
27451
27987
  export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
@@ -27526,14 +28062,9 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
27526
28062
  export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
27527
28063
  export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
27528
28064
  export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
27529
- export const adaptivePricingDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingDestinationUpdate>;
27530
- export const adaptivePricingUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdate>;
27531
28065
  export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
27532
28066
  export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
27533
28067
  export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
27534
- export const adaptiveShippingRate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRate>;
27535
- export const adaptiveShippingRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateDeleted>;
27536
- export const adaptiveShippingRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateUpserted>;
27537
28068
  export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
27538
28069
  export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
27539
28070
  export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
@@ -27587,6 +28118,12 @@ export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.Af
27587
28118
  export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
27588
28119
  export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
27589
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>;
27590
28127
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
27591
28128
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
27592
28129
  export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
@@ -27854,6 +28391,9 @@ export const components: PropTypes.Requireable<io.flow.internal.v0.models.Compon
27854
28391
  export const consoleLabelRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleLabelRequestForm>;
27855
28392
  export const consoleMarkUnresolvableForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleMarkUnresolvableForm>;
27856
28393
  export const courthouseProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.CourthouseProductSummary>;
28394
+ export const cpscProductRegistration: PropTypes.Requireable<io.flow.internal.v0.models.CpscProductRegistration>;
28395
+ export const cpscQueueEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.CpscQueueEnvelope>;
28396
+ export const cpscQueueMessage: PropTypes.Requireable<io.flow.internal.v0.models.CpscQueueMessage>;
27857
28397
  export const cryptoAccount: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccount>;
27858
28398
  export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountModificationForm>;
27859
28399
  export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
@@ -27909,6 +28449,9 @@ export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.
27909
28449
  export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
27910
28450
  export const destinationDutyComparison: PropTypes.Requireable<io.flow.internal.v0.models.DestinationDutyComparison>;
27911
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>;
27912
28455
  export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
27913
28456
  export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
27914
28457
  export const dimensionEstimateOpsInput: PropTypes.Requireable<io.flow.internal.v0.models.DimensionEstimateOpsInput>;
@@ -27992,6 +28535,7 @@ export const externalFulfillmentProof: PropTypes.Requireable<io.flow.internal.v0
27992
28535
  export const externalFulfillmentProofForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofForm>;
27993
28536
  export const externalFulfillmentProofTracking: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTracking>;
27994
28537
  export const externalFulfillmentProofTrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm>;
28538
+ export const externalOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExternalOrderSummary>;
27995
28539
  export const externalRatecardLink: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLink>;
27996
28540
  export const externalRatecardLinkResponse: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLinkResponse>;
27997
28541
  export const facebookPixel: PropTypes.Requireable<io.flow.internal.v0.models.FacebookPixel>;
@@ -28032,6 +28576,9 @@ export const flatRate: PropTypes.Requireable<io.flow.internal.v0.models.FlatRate
28032
28576
  export const flatRateLabelReversal: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversal>;
28033
28577
  export const flatRateLabelReversalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalDeleted>;
28034
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>;
28035
28582
  export const flatRateLabelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelTransaction>;
28036
28583
  export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
28037
28584
  export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
@@ -28123,6 +28670,19 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
28123
28670
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
28124
28671
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
28125
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>;
28676
+ export const guaranteedShippingPublishedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutput>;
28677
+ export const guaranteedShippingPublishedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted>;
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>;
28126
28686
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
28127
28687
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
28128
28688
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -28169,6 +28729,9 @@ export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.I
28169
28729
  export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
28170
28730
  export const invoiceLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLineItem>;
28171
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>;
28172
28735
  export const itemClassification: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassification>;
28173
28736
  export const itemClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationForm>;
28174
28737
  export const itemClassificationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationSummary>;
@@ -28182,6 +28745,11 @@ export const itemFormImportRequest: PropTypes.Requireable<io.flow.internal.v0.mo
28182
28745
  export const itemHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonization>;
28183
28746
  export const itemHarmonizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationDeleted>;
28184
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>;
28185
28753
  export const itemQueryResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemQueryResponse>;
28186
28754
  export const itemRestriction: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestriction>;
28187
28755
  export const itemRestrictionPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestrictionPostForm>;
@@ -28262,7 +28830,9 @@ export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.mo
28262
28830
  export const loyaltyProgramReward: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramReward>;
28263
28831
  export const loyaltyProgramRewards: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramRewards>;
28264
28832
  export const maheshItem: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItem>;
28833
+ export const maheshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemDeleted>;
28265
28834
  export const maheshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemForm>;
28835
+ export const maheshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemUpserted>;
28266
28836
  export const mainTransaction: PropTypes.Requireable<io.flow.internal.v0.models.MainTransaction>;
28267
28837
  export const mainTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeleted>;
28268
28838
  export const mainTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeletedV2>;
@@ -28356,6 +28926,7 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
28356
28926
  export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
28357
28927
  export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
28358
28928
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
28929
+ export const orderSettings: PropTypes.Requireable<io.flow.internal.v0.models.OrderSettings>;
28359
28930
  export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
28360
28931
  export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
28361
28932
  export const orderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted>;
@@ -28438,6 +29009,9 @@ export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.i
28438
29009
  export const otherRecordOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrganizationSummary>;
28439
29010
  export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
28440
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>;
28441
29015
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
28442
29016
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
28443
29017
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -28497,6 +29071,8 @@ export const paypalPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
28497
29071
  export const paypalPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalPaymentUpserted>;
28498
29072
  export const paypalRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundDeleted>;
28499
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>;
28500
29076
  export const pendingBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPayment>;
28501
29077
  export const pendingBankPaymentDetail: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPaymentDetail>;
28502
29078
  export const pendingOrder: PropTypes.Requireable<io.flow.internal.v0.models.PendingOrder>;
@@ -28574,6 +29150,8 @@ export const pspRoutingDistributionRevision: PropTypes.Requireable<io.flow.inter
28574
29150
  export const pspRoutingDistributionRevisionForm: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevisionForm>;
28575
29151
  export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
28576
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>;
28577
29155
  export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
28578
29156
  export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
28579
29157
  export const quoteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteUpserted>;
@@ -28608,7 +29186,6 @@ export const ratecardDimensionEstimateDeleted: PropTypes.Requireable<io.flow.int
28608
29186
  export const ratecardDimensionEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardDimensionEstimateUpserted>;
28609
29187
  export const ratecardInternalServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalServiceFee>;
28610
29188
  export const ratecardInternalSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalSummary>;
28611
- export const ratecardLanesImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLanesImportRequest>;
28612
29189
  export const ratecardRateLevelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelDeleted>;
28613
29190
  export const ratecardRateLevelOrganizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted>;
28614
29191
  export const ratecardRateLevelOrganizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted>;
@@ -28617,8 +29194,6 @@ export const ratecardRateLevelRatecardUpserted: PropTypes.Requireable<io.flow.in
28617
29194
  export const ratecardRateLevelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelUpserted>;
28618
29195
  export const ratecardServiceFeeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeDeleted>;
28619
29196
  export const ratecardServiceFeeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeUpserted>;
28620
- export const ratecardServiceFeesOverride: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverride>;
28621
- export const ratecardServiceFeesOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverrideForm>;
28622
29197
  export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
28623
29198
  export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
28624
29199
  export const raveenaItem: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItem>;
@@ -28630,6 +29205,7 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
28630
29205
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
28631
29206
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
28632
29207
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
29208
+ export const remediateTaxDutyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RemediateTaxDutyMetadata>;
28633
29209
  export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
28634
29210
  export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
28635
29211
  export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
@@ -28660,10 +29236,12 @@ export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.
28660
29236
  export const reportingFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFees>;
28661
29237
  export const reportingFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreight>;
28662
29238
  export const reportingFreightGuaranteed: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightGuaranteed>;
29239
+ export const reportingFreightSubsidy: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightSubsidy>;
28663
29240
  export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
28664
29241
  export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
28665
29242
  export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
28666
29243
  export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
29244
+ export const reportingFxValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFxValue>;
28667
29245
  export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
28668
29246
  export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
28669
29247
  export const reportingMerchantFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFreight>;
@@ -28749,10 +29327,13 @@ export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.mo
28749
29327
  export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
28750
29328
  export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
28751
29329
  export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
29330
+ export const reviewRequestItem: PropTypes.Requireable<io.flow.internal.v0.models.ReviewRequestItem>;
28752
29331
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
28753
29332
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
28754
29333
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
28755
29334
  export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecord>;
29335
+ export const salesPaymentRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecordDeleted>;
29336
+ export const salesPaymentRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecordUpserted>;
28756
29337
  export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
28757
29338
  export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
28758
29339
  export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
@@ -28769,6 +29350,11 @@ export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.model
28769
29350
  export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
28770
29351
  export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
28771
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>;
29356
+ export const serviceFees: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFees>;
29357
+ export const serviceFeesForm: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFeesForm>;
28772
29358
  export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
28773
29359
  export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
28774
29360
  export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
@@ -28782,9 +29368,6 @@ export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.S
28782
29368
  export const shippingRateEstimateAvailableInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal>;
28783
29369
  export const shippingRateEstimateInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateInternal>;
28784
29370
  export const shippingRateEstimateRequestInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateRequestInternal>;
28785
- export const shopifyAdaptivePricingCoefficients: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients>;
28786
- export const shopifyAdaptivePricingCoefficientsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted>;
28787
- export const shopifyAdaptivePricingCoefficientsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted>;
28788
29371
  export const shopifyAddress: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAddress>;
28789
29372
  export const shopifyCallbackError: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackError>;
28790
29373
  export const shopifyCallbackErrorItem: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackErrorItem>;
@@ -28792,6 +29375,7 @@ export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v
28792
29375
  export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
28793
29376
  export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
28794
29377
  export const shopifyContactDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyContactDetails>;
29378
+ export const shopifyCost: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCost>;
28795
29379
  export const shopifyDispute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDispute>;
28796
29380
  export const shopifyDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeDeleted>;
28797
29381
  export const shopifyDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeUpserted>;
@@ -28905,7 +29489,6 @@ export const shopifyShipmentRateRequest: PropTypes.Requireable<io.flow.internal.
28905
29489
  export const shopifyShipmentRateResponse: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateResponse>;
28906
29490
  export const shopifyShipmentRateShipment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipment>;
28907
29491
  export const shopifyShipmentRateShipper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipper>;
28908
- export const shopifyShipmentRateTotalCharges: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges>;
28909
29492
  export const shopifyShipmentRateUnavailable: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateUnavailable>;
28910
29493
  export const shopifyShippingLocation: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShippingLocation>;
28911
29494
  export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
@@ -29076,6 +29659,9 @@ export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.int
29076
29659
  export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
29077
29660
  export const unharmonizedItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnharmonizedItemsExport>;
29078
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>;
29079
29665
  export const ups: PropTypes.Requireable<io.flow.internal.v0.models.Ups>;
29080
29666
  export const usdSpotRate: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRate>;
29081
29667
  export const usdSpotRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateDeleted>;
@@ -29098,6 +29684,8 @@ export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
29098
29684
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
29099
29685
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
29100
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>;
29101
29689
  export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizationPayload>;
29102
29690
  export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
29103
29691
  export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;