@flowio/api-internal-prop-types 9.24.121 → 9.24.123

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.
@@ -4426,6 +4426,7 @@ declare namespace io.flow.label.v0.models {
4426
4426
  readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
4427
4427
  readonly 'origin_location_source'?: io.flow.label.v0.enums.OriginLocationSource;
4428
4428
  readonly 'reference_id'?: string;
4429
+ readonly 'shipping_date_time'?: string;
4429
4430
  }
4430
4431
 
4431
4432
  interface DetailedShippingNotificationForm {
@@ -5521,6 +5522,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
5521
5522
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
5522
5523
  type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
5523
5524
  type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
5525
+ type SellabilityStatus = 'complete' | 'incomplete';
5524
5526
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
5525
5527
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
5526
5528
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
@@ -5559,6 +5561,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5559
5561
  readonly 'identifier': string;
5560
5562
  }
5561
5563
 
5564
+ interface ChannelOrganizationPublicationOwner {
5565
+ readonly 'owner': io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
5566
+ }
5567
+
5568
+ interface ChannelOrganizationPublicationOwnerPutForm {
5569
+ readonly 'owner': io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
5570
+ }
5571
+
5572
+ interface ChannelOrganizationSellabilityStatus {
5573
+ readonly 'status': io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
5574
+ }
5575
+
5576
+ interface ChannelOrganizationSellabilityStatusPutForm {
5577
+ readonly 'status': io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
5578
+ }
5579
+
5562
5580
  interface FlowShopValidationError {
5563
5581
  readonly 'message': string;
5564
5582
  readonly 'reason': string;
@@ -5602,6 +5620,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5602
5620
  readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
5603
5621
  }
5604
5622
 
5623
+ interface PaymentRequestAuthorization {
5624
+ readonly 'payment_request_id': string;
5625
+ readonly 'authorization_id': string;
5626
+ }
5627
+
5605
5628
  interface ProductRestrictionResultValidationError {
5606
5629
  readonly 'message': string;
5607
5630
  readonly 'reason': string;
@@ -5683,6 +5706,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5683
5706
  readonly 'api_password_masked'?: string;
5684
5707
  readonly 'access_token_masked'?: string;
5685
5708
  readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
5709
+ readonly 'catalog_publication_owner'?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
5686
5710
  }
5687
5711
 
5688
5712
  interface ShopifyMarketsShopForm {
@@ -5750,6 +5774,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5750
5774
  readonly 'product_ids': string[];
5751
5775
  }
5752
5776
 
5777
+ interface ShopifyProductTaxonomyAttribute {
5778
+ readonly 'id': string;
5779
+ readonly 'handle': string;
5780
+ readonly 'name': string;
5781
+ readonly 'friendly_id': string;
5782
+ readonly 'description'?: string;
5783
+ }
5784
+
5785
+ interface ShopifyProductTaxonomyAttributeValue {
5786
+ readonly 'id': string;
5787
+ readonly 'attribute_id': string;
5788
+ readonly 'handle': string;
5789
+ readonly 'name': string;
5790
+ readonly 'friendly_id': string;
5791
+ }
5792
+
5753
5793
  interface ShopifyProductWrapper {
5754
5794
  readonly 'shopify_product': io.flow.shopify.external.v0.models.Product;
5755
5795
  readonly 'deleted_at'?: string;
@@ -6330,6 +6370,7 @@ declare namespace io.flow.shopify.external.v0.models {
6330
6370
  interface GraphqlMetaobjectField {
6331
6371
  readonly 'key': string;
6332
6372
  readonly 'value'?: string;
6373
+ readonly 'type'?: string;
6333
6374
  }
6334
6375
 
6335
6376
  interface GraphqlOption {
@@ -8069,6 +8110,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
8069
8110
  declare namespace io.flow.order.price.v0.enums {
8070
8111
  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';
8071
8112
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
8113
+ type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
8072
8114
  }
8073
8115
 
8074
8116
  declare namespace io.flow.order.price.v0.models {
@@ -8083,6 +8125,12 @@ declare namespace io.flow.order.price.v0.models {
8083
8125
  readonly 'rate'?: number;
8084
8126
  readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
8085
8127
  readonly 'rate_label'?: string;
8128
+ readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
8129
+ }
8130
+
8131
+ interface OrderPriceDetailBreakdown {
8132
+ readonly 'purchase_price': io.flow.order.price.v0.models.PurchasePriceBreakdown;
8133
+ readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
8086
8134
  }
8087
8135
 
8088
8136
  interface OrderPriceDetailComponent {
@@ -8093,6 +8141,18 @@ declare namespace io.flow.order.price.v0.models {
8093
8141
  readonly 'base': io.flow.common.v0.models.Price;
8094
8142
  readonly 'name'?: string;
8095
8143
  }
8144
+
8145
+ interface OrderPriceFee {
8146
+ readonly 'key': string;
8147
+ readonly 'value': io.flow.common.v0.models.PriceWithBase;
8148
+ readonly 'type': io.flow.order.price.v0.enums.OrderPriceFeeType;
8149
+ }
8150
+
8151
+ interface PurchasePriceBreakdown {
8152
+ readonly 'total_price': io.flow.common.v0.models.PriceWithBase;
8153
+ readonly 'product_price': io.flow.common.v0.models.PriceWithBase;
8154
+ readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
8155
+ }
8096
8156
  }
8097
8157
 
8098
8158
  declare namespace io.flow.channel.internal.v0.enums {
@@ -8141,6 +8201,7 @@ declare namespace io.flow.channel.internal.v0.models {
8141
8201
  readonly 'channel_id': string;
8142
8202
  readonly 'external_order_reference': string;
8143
8203
  readonly 'payment_request_id'?: string;
8204
+ readonly 'order_payment_request_ids'?: string[];
8144
8205
  readonly 'order_edit_payment_request_ids'?: string[];
8145
8206
  readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
8146
8207
  readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
@@ -9013,10 +9074,38 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9013
9074
  readonly 'organization': string;
9014
9075
  readonly 'shopify_product_bundle': io.flow.shopify.markets.internal.v0.models.ShopifyProductBundle;
9015
9076
  }
9077
+
9078
+ interface ShopifyProductTaxonomyAttributeDeleted {
9079
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_deleted';
9080
+ readonly 'event_id': string;
9081
+ readonly 'timestamp': string;
9082
+ readonly 'id': string;
9083
+ }
9084
+
9085
+ interface ShopifyProductTaxonomyAttributeUpserted {
9086
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_upserted';
9087
+ readonly 'event_id': string;
9088
+ readonly 'timestamp': string;
9089
+ readonly 'shopify_product_taxonomy_attribute': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttribute;
9090
+ }
9091
+
9092
+ interface ShopifyProductTaxonomyAttributeValueDeleted {
9093
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_deleted';
9094
+ readonly 'event_id': string;
9095
+ readonly 'timestamp': string;
9096
+ readonly 'id': string;
9097
+ }
9098
+
9099
+ interface ShopifyProductTaxonomyAttributeValueUpserted {
9100
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_upserted';
9101
+ readonly 'event_id': string;
9102
+ readonly 'timestamp': string;
9103
+ readonly 'shopify_product_taxonomy_attribute_value': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
9104
+ }
9016
9105
  }
9017
9106
 
9018
9107
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
9019
- type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | 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);
9108
+ 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);
9020
9109
  }
9021
9110
 
9022
9111
  declare namespace io.flow.experience.v0.enums {
@@ -9319,6 +9408,11 @@ declare namespace io.flow.experience.v0.models {
9319
9408
  readonly 'targets': io.flow.experience.v0.enums.DiscountRuleSubsidyTarget[];
9320
9409
  }
9321
9410
 
9411
+ interface EditSummary {
9412
+ readonly 'id': string;
9413
+ readonly 'edited_at': string;
9414
+ }
9415
+
9322
9416
  interface Experience {
9323
9417
  readonly 'discriminator': 'experience';
9324
9418
  readonly 'id': string;
@@ -9609,6 +9703,7 @@ declare namespace io.flow.experience.v0.models {
9609
9703
  readonly 'local': io.flow.catalog.v0.models.Local;
9610
9704
  readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
9611
9705
  readonly 'price_source'?: io.flow.common.v0.unions.PriceSource;
9706
+ readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
9612
9707
  }
9613
9708
 
9614
9709
  interface LocalizedLineItemDiscount {
@@ -9654,6 +9749,8 @@ declare namespace io.flow.experience.v0.models {
9654
9749
  readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
9655
9750
  readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
9656
9751
  readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
9752
+ readonly 'edits'?: io.flow.experience.v0.models.EditSummary[];
9753
+ readonly 'rates'?: io.flow.experience.v0.models.OrderRate[];
9657
9754
  }
9658
9755
 
9659
9756
  interface OrderAddress {
@@ -9858,6 +9955,12 @@ declare namespace io.flow.experience.v0.models {
9858
9955
  readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
9859
9956
  }
9860
9957
 
9958
+ interface OrderRate {
9959
+ readonly 'from': string;
9960
+ readonly 'to': string;
9961
+ readonly 'rate': number;
9962
+ }
9963
+
9861
9964
  interface OrderReference {
9862
9965
  readonly 'discriminator': 'order_reference';
9863
9966
  readonly 'id': string;
@@ -11118,7 +11221,7 @@ declare namespace io.flow.price.v0.unions {
11118
11221
 
11119
11222
  declare namespace io.flow.trueup.v0.enums {
11120
11223
  type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
11121
- type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
11224
+ type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
11122
11225
  }
11123
11226
 
11124
11227
  declare namespace io.flow.trueup.v0.models {
@@ -11305,6 +11408,12 @@ declare namespace io.flow.product.v0.models {
11305
11408
  interface ProductTaxonomyData {
11306
11409
  readonly 'key': string;
11307
11410
  readonly 'value': string[];
11411
+ readonly 'value_obj'?: io.flow.product.v0.models.ProductTaxonomyValue[];
11412
+ }
11413
+
11414
+ interface ProductTaxonomyValue {
11415
+ readonly 'handle': string;
11416
+ readonly 'name': string;
11308
11417
  }
11309
11418
  }
11310
11419
 
@@ -11842,6 +11951,7 @@ declare namespace io.flow.catalog.v0.models {
11842
11951
  readonly 'amount': number;
11843
11952
  readonly 'label': string;
11844
11953
  readonly 'base': io.flow.common.v0.models.Price;
11954
+ readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
11845
11955
  }
11846
11956
 
11847
11957
  interface Options {
@@ -13327,6 +13437,7 @@ declare namespace io.flow.internal.v0.enums {
13327
13437
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
13328
13438
  type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
13329
13439
  type AldoItemType = 'physical' | 'digital';
13440
+ type AnirbanItemType = 'physical' | 'digital';
13330
13441
  type AnshItemType = 'physical' | 'digital';
13331
13442
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
13332
13443
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
@@ -13336,13 +13447,14 @@ declare namespace io.flow.internal.v0.enums {
13336
13447
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
13337
13448
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
13338
13449
  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';
13339
- 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' | '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';
13450
+ 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';
13340
13451
  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';
13341
13452
  type BillingTransactionStatus = 'pending_proof' | 'posted';
13342
13453
  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_payout' | 'merchant_refund';
13343
13454
  type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
13344
13455
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
13345
13456
  type CarrierChargeType = 'label' | 'tax' | 'other';
13457
+ type CarrierDocumentType = 'commercial_invoice';
13346
13458
  type CarrierFileType = 'freight' | 'tax';
13347
13459
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
13348
13460
  type CarrierValidationStatus = 'success' | 'error';
@@ -13356,6 +13468,7 @@ declare namespace io.flow.internal.v0.enums {
13356
13468
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
13357
13469
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
13358
13470
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
13471
+ type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
13359
13472
  type ChargeEstimateSource = 'global-e' | 'shopify';
13360
13473
  type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
13361
13474
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -13399,9 +13512,11 @@ declare namespace io.flow.internal.v0.enums {
13399
13512
  type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
13400
13513
  type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
13401
13514
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
13515
+ type DutyVarianceStatus = 'acceptable' | 'exceeded';
13402
13516
  type EmptyAttribute = 'irrelevant';
13403
13517
  type ErpFileType = 'vendor';
13404
- 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' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | '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' | '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' | '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' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_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' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_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_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_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' | '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';
13518
+ type EvaluationCheckResult = 'pass' | 'fail';
13519
+ 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' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | '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' | '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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_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' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_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_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' | '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';
13405
13520
  type ExperienceImportType = 'experience_with_settings';
13406
13521
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
13407
13522
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -13410,6 +13525,7 @@ declare namespace io.flow.internal.v0.enums {
13410
13525
  type FeatureStatus = 'draft' | 'active' | 'archived';
13411
13526
  type FeatureType = 'boolean' | 'decimal' | 'string';
13412
13527
  type FeesSource = 'settings' | 'authorization_bundle';
13528
+ type FileType = 'pdf';
13413
13529
  type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
13414
13530
  type FraudProviderStatus = 'active' | 'archived';
13415
13531
  type FraudReviewResponsibleParty = 'flow' | 'organization';
@@ -13423,7 +13539,7 @@ declare namespace io.flow.internal.v0.enums {
13423
13539
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
13424
13540
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
13425
13541
  type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
13426
- type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
13542
+ type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
13427
13543
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
13428
13544
  type ItemType = 'standard' | 'multi_product';
13429
13545
  type JournalOperation = 'insert' | 'update' | 'delete';
@@ -13501,9 +13617,14 @@ declare namespace io.flow.internal.v0.enums {
13501
13617
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
13502
13618
  type ResponsibleParty = 'flow' | 'organization';
13503
13619
  type RestrictionAction = 'prohibited' | 'restricted';
13620
+ type RestrictionAttributeConditionMultipleOperator = 'in' | 'not_in';
13621
+ type RestrictionAttributeConditionSingleOperator = 'equals' | 'not_equals';
13622
+ type RestrictionAttributeOperator = 'and' | 'or';
13623
+ type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
13504
13624
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
13505
13625
  type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
13506
13626
  type RestrictionOrganizationSource = 'shopify' | 'enterprise';
13627
+ type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
13507
13628
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
13508
13629
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
13509
13630
  type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
@@ -13513,6 +13634,8 @@ declare namespace io.flow.internal.v0.enums {
13513
13634
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
13514
13635
  type RohanItemType = 'physical' | 'digital';
13515
13636
  type SarveshItemType = 'physical' | 'digital';
13637
+ type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
13638
+ type SellabilityStatus = 'complete' | 'incomplete';
13516
13639
  type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
13517
13640
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
13518
13641
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
@@ -13789,6 +13912,14 @@ declare namespace io.flow.internal.v0.models {
13789
13912
  readonly 'fulfillment_id': string;
13790
13913
  }
13791
13914
 
13915
+ interface AccountingReturnMetadata {
13916
+ readonly 'discriminator': 'accounting_return_metadata';
13917
+ readonly 'transactions_until': string;
13918
+ readonly 'refund'?: io.flow.payment.v0.models.RefundReference;
13919
+ readonly 'tax_reversal'?: io.flow.internal.v0.models.TransactionReference;
13920
+ readonly 'duty_reversal'?: io.flow.internal.v0.models.TransactionReference;
13921
+ }
13922
+
13792
13923
  interface ActionQuantity {
13793
13924
  readonly 'action': io.flow.internal.v0.enums.ItemQuantityAction;
13794
13925
  readonly 'quantity': number;
@@ -14245,34 +14376,6 @@ declare namespace io.flow.internal.v0.models {
14245
14376
  readonly 'added_on': string;
14246
14377
  }
14247
14378
 
14248
- interface AlertErrorSummary {
14249
- readonly 'event_id': number;
14250
- readonly 'error': string;
14251
- }
14252
-
14253
- interface AlertFailureSummary {
14254
- readonly 'database': string;
14255
- readonly 'summaries': io.flow.internal.v0.models.AlertFailureSummaryDetail[];
14256
- }
14257
-
14258
- interface AlertFailureSummaryDetail {
14259
- readonly 'queue': string;
14260
- readonly 'count': number;
14261
- readonly 'errors': io.flow.internal.v0.models.AlertErrorSummary[];
14262
- }
14263
-
14264
- interface AlertImportSummary {
14265
- readonly 'organization_id': string;
14266
- readonly 'filename': string;
14267
- readonly 'type': string;
14268
- readonly 'started_at'?: string;
14269
- }
14270
-
14271
- interface AlertRequeueSummary {
14272
- readonly 'queue': string;
14273
- readonly 'count': number;
14274
- }
14275
-
14276
14379
  interface AllItemsExport {
14277
14380
  readonly 'discriminator': 'all_items_export';
14278
14381
  readonly 'event_id': string;
@@ -14295,6 +14398,23 @@ declare namespace io.flow.internal.v0.models {
14295
14398
  readonly 'labels': Record<string, string[]>;
14296
14399
  }
14297
14400
 
14401
+ interface AnirbanItem {
14402
+ readonly 'id': string;
14403
+ readonly 'number': string;
14404
+ readonly 'amount': io.flow.common.v0.models.Price;
14405
+ readonly 'description'?: string;
14406
+ readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
14407
+ readonly 'added_on': string;
14408
+ }
14409
+
14410
+ interface AnirbanItemForm {
14411
+ readonly 'number': string;
14412
+ readonly 'amount': io.flow.common.v0.models.Price;
14413
+ readonly 'description'?: string;
14414
+ readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
14415
+ readonly 'added_on': string;
14416
+ }
14417
+
14298
14418
  interface AnshItem {
14299
14419
  readonly 'id': string;
14300
14420
  readonly 'number': string;
@@ -14334,6 +14454,11 @@ declare namespace io.flow.internal.v0.models {
14334
14454
  readonly 'unverified': boolean;
14335
14455
  }
14336
14456
 
14457
+ interface AttributeRule {
14458
+ readonly 'restriction_attribute_rules': io.flow.internal.v0.models.RestrictionAttributeRule[];
14459
+ readonly 'default_result'?: io.flow.internal.v0.enums.RestrictionAttributeResult;
14460
+ }
14461
+
14337
14462
  interface AuthenticationForm {
14338
14463
  readonly 'password': string;
14339
14464
  }
@@ -14539,6 +14664,12 @@ declare namespace io.flow.internal.v0.models {
14539
14664
  readonly 'bank_payment': io.flow.internal.v0.models.BankPayment;
14540
14665
  }
14541
14666
 
14667
+ interface Base64CarrierDocumentContent {
14668
+ readonly 'discriminator': 'base_64_carrier_document_content';
14669
+ readonly 'base64_string': string;
14670
+ readonly 'file_type': io.flow.internal.v0.enums.FileType;
14671
+ }
14672
+
14542
14673
  interface BillingAuthorizationReference {
14543
14674
  readonly 'id': string;
14544
14675
  }
@@ -15067,6 +15198,11 @@ declare namespace io.flow.internal.v0.models {
15067
15198
  readonly 'carrier_charge': io.flow.internal.v0.models.CarrierCharge;
15068
15199
  }
15069
15200
 
15201
+ interface CarrierDocument {
15202
+ readonly 'document_type': io.flow.internal.v0.enums.CarrierDocumentType;
15203
+ readonly 'document_content': io.flow.internal.v0.unions.CarrierDocumentContent;
15204
+ }
15205
+
15070
15206
  interface CarrierFile {
15071
15207
  readonly 'id': string;
15072
15208
  readonly 'type': io.flow.internal.v0.enums.CarrierFileType;
@@ -15412,6 +15548,7 @@ declare namespace io.flow.internal.v0.models {
15412
15548
  readonly 'channel_id': string;
15413
15549
  readonly 'external_order_reference': string;
15414
15550
  readonly 'payment_request_id'?: string;
15551
+ readonly 'order_payment_request_ids'?: string[];
15415
15552
  readonly 'order_edit_payment_request_ids'?: string[];
15416
15553
  readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
15417
15554
  readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
@@ -15523,6 +15660,22 @@ declare namespace io.flow.internal.v0.models {
15523
15660
  readonly 'channel_organization_identifier': io.flow.internal.v0.models.ChannelOrganizationIdentifier;
15524
15661
  }
15525
15662
 
15663
+ interface ChannelOrganizationPublicationOwner {
15664
+ readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
15665
+ }
15666
+
15667
+ interface ChannelOrganizationPublicationOwnerPutForm {
15668
+ readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
15669
+ }
15670
+
15671
+ interface ChannelOrganizationSellabilityStatus {
15672
+ readonly 'status': io.flow.internal.v0.enums.SellabilityStatus;
15673
+ }
15674
+
15675
+ interface ChannelOrganizationSellabilityStatusPutForm {
15676
+ readonly 'status': io.flow.internal.v0.enums.SellabilityStatus;
15677
+ }
15678
+
15526
15679
  interface ChannelOrganizationShopify {
15527
15680
  readonly 'organization': io.flow.channel.v0.models.ChannelOrganization;
15528
15681
  readonly 'tokens': io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
@@ -15591,6 +15744,13 @@ declare namespace io.flow.internal.v0.models {
15591
15744
  readonly 'channel_transaction': io.flow.internal.v0.models.ChannelTransaction;
15592
15745
  }
15593
15746
 
15747
+ interface ChapterCheckResult {
15748
+ readonly 'status': io.flow.internal.v0.enums.ChapterCheckStatus;
15749
+ readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
15750
+ readonly 'current_chapter': string;
15751
+ readonly 'merchant_chapter': string;
15752
+ }
15753
+
15594
15754
  interface ChargeInput {
15595
15755
  readonly 'charge_input_code': io.flow.internal.v0.enums.ChargeInputType;
15596
15756
  readonly 'price': io.flow.common.v0.models.Money;
@@ -16415,6 +16575,14 @@ declare namespace io.flow.internal.v0.models {
16415
16575
  readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
16416
16576
  }
16417
16577
 
16578
+ interface DestinationDutyComparison {
16579
+ readonly 'country': string;
16580
+ readonly 'current_duty'?: number;
16581
+ readonly 'merchant_duty'?: number;
16582
+ readonly 'current_error'?: number;
16583
+ readonly 'merchant_error'?: number;
16584
+ }
16585
+
16418
16586
  interface DestinationError {
16419
16587
  readonly 'id': string;
16420
16588
  readonly 'failed_at': string;
@@ -16740,6 +16908,12 @@ declare namespace io.flow.internal.v0.models {
16740
16908
  readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
16741
16909
  }
16742
16910
 
16911
+ interface DutyVarianceResult {
16912
+ readonly 'status': io.flow.internal.v0.enums.DutyVarianceStatus;
16913
+ readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
16914
+ readonly 'destinations': io.flow.internal.v0.models.DestinationDutyComparison[];
16915
+ }
16916
+
16743
16917
  interface EmailForm {
16744
16918
  readonly 'to': string[];
16745
16919
  readonly 'cc'?: string[];
@@ -16989,9 +17163,10 @@ declare namespace io.flow.internal.v0.models {
16989
17163
  }
16990
17164
 
16991
17165
  interface EvaluationResults {
16992
- readonly 'chapter_result': any/*object*/;
16993
- readonly 'sellability_result': any/*object*/;
16994
- readonly 'duty_variance_result': any/*object*/;
17166
+ readonly 'chapter_result': io.flow.internal.v0.models.ChapterCheckResult;
17167
+ readonly 'sellability_result': io.flow.internal.v0.models.SellabilityCheckResult;
17168
+ readonly 'duty_variance_result': io.flow.internal.v0.models.DutyVarianceResult;
17169
+ readonly 'taxonomy_alignment_result'?: io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
16995
17170
  }
16996
17171
 
16997
17172
  interface ExclusionRuleDeleted {
@@ -17149,6 +17324,16 @@ declare namespace io.flow.internal.v0.models {
17149
17324
  readonly 'fulfilled_via_replacement_order'?: boolean;
17150
17325
  }
17151
17326
 
17327
+ interface ExternalRatecardLink {
17328
+ readonly 'external_ratecard_id': string;
17329
+ readonly 'flow_ratecard_ids': string[];
17330
+ }
17331
+
17332
+ interface ExternalRatecardLinkResponse {
17333
+ readonly 'external_ratecard_id': string;
17334
+ readonly 'flow_ratecard_ids': string[];
17335
+ }
17336
+
17152
17337
  interface FacebookPixel {
17153
17338
  readonly 'discriminator': 'facebook_pixel';
17154
17339
  readonly 'name'?: string;
@@ -17270,6 +17455,12 @@ declare namespace io.flow.internal.v0.models {
17270
17455
  readonly 'account_number': string;
17271
17456
  }
17272
17457
 
17458
+ interface FedexCarrierLabelAttributes {
17459
+ readonly 'discriminator': 'fedex_carrier_label_attributes';
17460
+ readonly 'origin_location_id'?: string;
17461
+ readonly 'destination_location_id'?: string;
17462
+ }
17463
+
17273
17464
  interface FedexCrossborder {
17274
17465
  readonly 'discriminator': 'fedex_crossborder';
17275
17466
  readonly 'api_key': string;
@@ -18417,6 +18608,7 @@ declare namespace io.flow.internal.v0.models {
18417
18608
  readonly 'gender'?: string;
18418
18609
  readonly 'material'?: string;
18419
18610
  readonly 'url'?: string;
18611
+ readonly 'preferential_rate_statement'?: string;
18420
18612
  }
18421
18613
 
18422
18614
  interface InvoiceInfoForm {
@@ -18444,6 +18636,7 @@ declare namespace io.flow.internal.v0.models {
18444
18636
  readonly 'total_price': number;
18445
18637
  readonly 'manufacturer_id'?: string;
18446
18638
  readonly 'export_control_classification_number': string;
18639
+ readonly 'preferential_rate_statement'?: string;
18447
18640
  }
18448
18641
 
18449
18642
  interface InvoiceTransaction {
@@ -18710,6 +18903,11 @@ declare namespace io.flow.internal.v0.models {
18710
18903
  readonly 'id': string;
18711
18904
  }
18712
18905
 
18906
+ interface KeywordCancelling {
18907
+ readonly 'positive_keyword': string;
18908
+ readonly 'negative_keywords': string[];
18909
+ }
18910
+
18713
18911
  interface KlarnaAuthorizationParameters {
18714
18912
  readonly 'discriminator': 'klarna_authorization_parameters';
18715
18913
  readonly 'client_token': string;
@@ -18948,6 +19146,7 @@ declare namespace io.flow.internal.v0.models {
18948
19146
  readonly 'saturday_stop'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
18949
19147
  readonly 'residential_extended_area_pickup'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
18950
19148
  readonly 'package_level_detail'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
19149
+ readonly 'pickup'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
18951
19150
  }
18952
19151
 
18953
19152
  interface LabelSurchargeSingleForm {
@@ -19470,6 +19669,20 @@ declare namespace io.flow.internal.v0.models {
19470
19669
  readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
19471
19670
  }
19472
19671
 
19672
+ interface MerchantOverrideDeleted {
19673
+ readonly 'discriminator': 'merchant_override_deleted';
19674
+ readonly 'event_id': string;
19675
+ readonly 'timestamp': string;
19676
+ readonly 'id': string;
19677
+ }
19678
+
19679
+ interface MerchantOverrideUpserted {
19680
+ readonly 'discriminator': 'merchant_override_upserted';
19681
+ readonly 'event_id': string;
19682
+ readonly 'timestamp': string;
19683
+ readonly 'merchant_override': io.flow.internal.v0.models.MerchantOverride;
19684
+ }
19685
+
19473
19686
  interface MerchantSearchResult {
19474
19687
  readonly 'organization_id': string;
19475
19688
  readonly 'shop_name'?: string;
@@ -19501,6 +19714,10 @@ declare namespace io.flow.internal.v0.models {
19501
19714
  readonly 'freight': number;
19502
19715
  readonly 'total': number;
19503
19716
  readonly 'tax_refund'?: number;
19717
+ readonly 'tax_reversal'?: number;
19718
+ readonly 'duty_reversal'?: number;
19719
+ readonly 'tax_reversal_for_lvg_order'?: boolean;
19720
+ readonly 'duty_reversal_for_lvg_order'?: boolean;
19504
19721
  }
19505
19722
 
19506
19723
  interface MerchantUpserted {
@@ -19572,6 +19789,12 @@ declare namespace io.flow.internal.v0.models {
19572
19789
  readonly 'account': io.flow.internal.v0.models.ReportAccount;
19573
19790
  }
19574
19791
 
19792
+ interface NonL4LTaxDutyFxFeeMetadata {
19793
+ readonly 'discriminator': 'non_l4l_tax_duty_fx_fee_metadata';
19794
+ readonly 'tax'?: io.flow.internal.v0.models.TransactionReference;
19795
+ readonly 'duty'?: io.flow.internal.v0.models.TransactionReference;
19796
+ }
19797
+
19575
19798
  interface NonL4LTaxDutyFxTransaction {
19576
19799
  readonly 'discriminator': 'non_l4l_tax_duty_fx_transaction';
19577
19800
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -19608,15 +19831,6 @@ declare namespace io.flow.internal.v0.models {
19608
19831
  readonly 'execution_time_ms'?: number;
19609
19832
  }
19610
19833
 
19611
- interface OnboardingAuditSnapshot {
19612
- readonly 'id': string;
19613
- readonly 'organization': io.flow.common.v0.models.Organization;
19614
- readonly 'result': io.flow.internal.v0.enums.OnboardingAuditResult;
19615
- readonly 'theme_reports': io.flow.internal.v0.models.OnboardingAuditThemeReport[];
19616
- readonly 'requested_by': io.flow.common.v0.models.User;
19617
- readonly 'requested_at': string;
19618
- }
19619
-
19620
19834
  interface OnboardingAuditThemeReport {
19621
19835
  readonly 'name': string;
19622
19836
  readonly 'key': io.flow.internal.v0.enums.OnboardingAuditThemeKey;
@@ -19833,6 +20047,29 @@ declare namespace io.flow.internal.v0.models {
19833
20047
  readonly 'number': string;
19834
20048
  }
19835
20049
 
20050
+ interface OrderRefundTransaction {
20051
+ readonly 'id': string;
20052
+ readonly 'organization_id': string;
20053
+ readonly 'order_number': string;
20054
+ readonly 'price': io.flow.common.v0.models.PriceWithBase;
20055
+ }
20056
+
20057
+ interface OrderRefundTransactionDeleted {
20058
+ readonly 'discriminator': 'order_refund_transaction_deleted';
20059
+ readonly 'event_id': string;
20060
+ readonly 'timestamp': string;
20061
+ readonly 'organization': string;
20062
+ readonly 'id': string;
20063
+ }
20064
+
20065
+ interface OrderRefundTransactionUpserted {
20066
+ readonly 'discriminator': 'order_refund_transaction_upserted';
20067
+ readonly 'event_id': string;
20068
+ readonly 'timestamp': string;
20069
+ readonly 'organization': string;
20070
+ readonly 'transaction': io.flow.internal.v0.models.OrderRefundTransaction;
20071
+ }
20072
+
19836
20073
  interface OrderRevenueRegionChart {
19837
20074
  readonly 'total': io.flow.common.v0.models.Price;
19838
20075
  readonly 'period': io.flow.common.v0.models.DatetimeRange;
@@ -20203,6 +20440,7 @@ declare namespace io.flow.internal.v0.models {
20203
20440
  readonly 'pending_classification_count'?: number;
20204
20441
  readonly 'oldest_pending_restriction_date'?: string;
20205
20442
  readonly 'oldest_pending_verification_date'?: string;
20443
+ readonly 'oldest_pending_classification_date'?: string;
20206
20444
  readonly 'product_count': number;
20207
20445
  readonly 'restricted_product_count': number;
20208
20446
  readonly 'last_order_submitted_at'?: string;
@@ -20746,6 +20984,11 @@ declare namespace io.flow.internal.v0.models {
20746
20984
  readonly 'merchant': io.flow.internal.v0.unions.ProcessorMerchant;
20747
20985
  }
20748
20986
 
20987
+ interface PaymentRequestAuthorization {
20988
+ readonly 'payment_request_id': string;
20989
+ readonly 'authorization_id': string;
20990
+ }
20991
+
20749
20992
  interface PaymentShortUrl {
20750
20993
  readonly 'id': string;
20751
20994
  readonly 'key': string;
@@ -21344,6 +21587,7 @@ declare namespace io.flow.internal.v0.models {
21344
21587
  readonly 'pending_classification_count'?: number;
21345
21588
  readonly 'oldest_pending_restriction_date'?: string;
21346
21589
  readonly 'oldest_pending_verification_date'?: string;
21590
+ readonly 'oldest_pending_classification_date'?: string;
21347
21591
  }
21348
21592
 
21349
21593
  interface ProductRestrictionStateDeleted {
@@ -21406,6 +21650,7 @@ declare namespace io.flow.internal.v0.models {
21406
21650
  readonly 'restricted_regions'?: string[];
21407
21651
  readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
21408
21652
  readonly 'rule_ids'?: string[];
21653
+ readonly 'taxonomy_category'?: string;
21409
21654
  }
21410
21655
 
21411
21656
  interface ProductTransaction {
@@ -22060,6 +22305,12 @@ declare namespace io.flow.internal.v0.models {
22060
22305
  readonly 'refund_records'?: any/*object*/[];
22061
22306
  }
22062
22307
 
22308
+ interface ReportingFees {
22309
+ readonly 'mor': io.flow.internal.v0.models.ReportingMonetaryValue;
22310
+ readonly 'fx': io.flow.internal.v0.models.ReportingMonetaryValue;
22311
+ readonly 'sp': io.flow.internal.v0.models.ReportingMonetaryValue;
22312
+ }
22313
+
22063
22314
  interface ReportingFulfillment {
22064
22315
  readonly 'id': string;
22065
22316
  readonly 'sequence_number': number;
@@ -22144,6 +22395,10 @@ declare namespace io.flow.internal.v0.models {
22144
22395
  readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
22145
22396
  readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
22146
22397
  readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
22398
+ readonly 'tax_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
22399
+ readonly 'duty_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
22400
+ readonly 'tax_reversal_for_lvg_order'?: boolean;
22401
+ readonly 'duty_reversal_for_lvg_order'?: boolean;
22147
22402
  }
22148
22403
 
22149
22404
  interface ReportingMonetaryValue {
@@ -22160,6 +22415,7 @@ declare namespace io.flow.internal.v0.models {
22160
22415
  readonly 'number': string;
22161
22416
  readonly 'submitted_at': string;
22162
22417
  readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
22418
+ readonly 'is_edited'?: boolean;
22163
22419
  }
22164
22420
 
22165
22421
  interface ReportingOrganizationSummary {
@@ -22236,6 +22492,26 @@ declare namespace io.flow.internal.v0.models {
22236
22492
  readonly 'placeholder'?: boolean;
22237
22493
  }
22238
22494
 
22495
+ interface RestrictionAttributeConditionMultiple {
22496
+ readonly 'discriminator': 'multiple';
22497
+ readonly 'attribute': string;
22498
+ readonly 'operator': io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
22499
+ readonly 'values': string[];
22500
+ }
22501
+
22502
+ interface RestrictionAttributeConditionSingle {
22503
+ readonly 'discriminator': 'single';
22504
+ readonly 'attribute': string;
22505
+ readonly 'operator': io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
22506
+ readonly 'value': string;
22507
+ }
22508
+
22509
+ interface RestrictionAttributeRule {
22510
+ readonly 'conditions': io.flow.internal.v0.unions.RestrictionAttributeRuleCondition[];
22511
+ readonly 'operator'?: io.flow.internal.v0.enums.RestrictionAttributeOperator;
22512
+ readonly 'result': io.flow.internal.v0.enums.RestrictionAttributeResult;
22513
+ }
22514
+
22239
22515
  interface RestrictionBlanketOrganizationExemption {
22240
22516
  readonly 'id': string;
22241
22517
  readonly 'organization_id': string;
@@ -22279,6 +22555,7 @@ declare namespace io.flow.internal.v0.models {
22279
22555
  readonly 'price': io.flow.common.v0.models.Price;
22280
22556
  readonly 'hs_code'?: string;
22281
22557
  readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
22558
+ readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
22282
22559
  readonly 'description': string;
22283
22560
  readonly 'category'?: string;
22284
22561
  readonly 'categories': string[];
@@ -22295,6 +22572,7 @@ declare namespace io.flow.internal.v0.models {
22295
22572
  readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
22296
22573
  readonly 'rule_ids'?: string[];
22297
22574
  readonly 'user_ids'?: string[];
22575
+ readonly 'exclude_items_with_pc'?: boolean;
22298
22576
  readonly 'category'?: string;
22299
22577
  readonly 'product_name_query'?: string;
22300
22578
  readonly 'hs6'?: string;
@@ -22405,6 +22683,7 @@ declare namespace io.flow.internal.v0.models {
22405
22683
  readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
22406
22684
  readonly 'hs_code'?: string;
22407
22685
  readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
22686
+ readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
22408
22687
  readonly 'url'?: string;
22409
22688
  readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
22410
22689
  readonly 'created_at': string;
@@ -22449,6 +22728,10 @@ declare namespace io.flow.internal.v0.models {
22449
22728
  readonly 'sellability_positive_keywords'?: string[];
22450
22729
  readonly 'community_exemption': io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
22451
22730
  readonly 'reason_code': string;
22731
+ readonly 'attribute_names'?: string[];
22732
+ readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
22733
+ readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
22734
+ readonly 'activation_status'?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
22452
22735
  }
22453
22736
 
22454
22737
  interface RestrictionRuleDecisionForm {
@@ -22506,6 +22789,10 @@ declare namespace io.flow.internal.v0.models {
22506
22789
  readonly 'sellability_positive_keywords'?: string[];
22507
22790
  readonly 'community_exemption': io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
22508
22791
  readonly 'reason_code': string;
22792
+ readonly 'attribute_names'?: string[];
22793
+ readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
22794
+ readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
22795
+ readonly 'activation_status'?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
22509
22796
  }
22510
22797
 
22511
22798
  interface RestrictionRuleLaneExemption {
@@ -22526,6 +22813,7 @@ declare namespace io.flow.internal.v0.models {
22526
22813
  readonly 'ignored_keywords'?: string[];
22527
22814
  readonly 'additional_keywords'?: string[];
22528
22815
  readonly 'community_exemption_override'?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
22816
+ readonly 'is_rule_active'?: boolean;
22529
22817
  }
22530
22818
 
22531
22819
  interface RestrictionRuleOverride {
@@ -22691,6 +22979,11 @@ declare namespace io.flow.internal.v0.models {
22691
22979
  readonly 'refund': io.flow.payment.v0.models.RefundReference;
22692
22980
  }
22693
22981
 
22982
+ interface ReturnTriggerReversal {
22983
+ readonly 'discriminator': 'by_reversal';
22984
+ readonly 'reversal': io.flow.internal.v0.models.TransactionReference;
22985
+ }
22986
+
22694
22987
  interface RevenueRecord {
22695
22988
  readonly 'id': string;
22696
22989
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
@@ -22762,10 +23055,12 @@ declare namespace io.flow.internal.v0.models {
22762
23055
  interface SalesPaymentRecord {
22763
23056
  readonly 'id': string;
22764
23057
  readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
23058
+ readonly 'vendor'?: io.flow.internal.v0.models.ReportingVendor;
22765
23059
  readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
22766
23060
  readonly 'order_total': io.flow.internal.v0.models.ReportingMonetaryValue;
22767
23061
  readonly 'shopper_breakdown': io.flow.internal.v0.models.ShopperBreakdown;
22768
23062
  readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
23063
+ readonly 'fees': io.flow.internal.v0.models.ReportingFees;
22769
23064
  readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
22770
23065
  readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
22771
23066
  readonly 'destination_country': string;
@@ -22892,6 +23187,17 @@ declare namespace io.flow.internal.v0.models {
22892
23187
  readonly 'label': io.flow.internal.v0.models.LabelSummary;
22893
23188
  }
22894
23189
 
23190
+ interface SellabilityCheckResult {
23191
+ readonly 'status': io.flow.internal.v0.enums.SellabilityCheckStatus;
23192
+ readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
23193
+ readonly 'current_rule_ids'?: string[];
23194
+ readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
23195
+ readonly 'merchant_rule_ids'?: string[];
23196
+ readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
23197
+ readonly 'current_error'?: io.flow.sellability.v0.models.SellabilityError[];
23198
+ readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
23199
+ }
23200
+
22895
23201
  interface SessionOrderData {
22896
23202
  readonly 'id': string;
22897
23203
  readonly 'session': io.flow.common.v0.models.SessionReference;
@@ -23213,6 +23519,7 @@ declare namespace io.flow.internal.v0.models {
23213
23519
  readonly 'api_password_masked'?: string;
23214
23520
  readonly 'access_token_masked'?: string;
23215
23521
  readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
23522
+ readonly 'catalog_publication_owner'?: io.flow.internal.v0.enums.CatalogPublicationOwner;
23216
23523
  }
23217
23524
 
23218
23525
  interface ShopifyMarketsShopDeleted {
@@ -23369,12 +23676,6 @@ declare namespace io.flow.internal.v0.models {
23369
23676
  readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
23370
23677
  }
23371
23678
 
23372
- interface ShopifyMonitoringOrderMonitorReview {
23373
- readonly 'id': string;
23374
- readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
23375
- readonly 'status': io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
23376
- }
23377
-
23378
23679
  interface ShopifyMonitoringTrackingNumber {
23379
23680
  readonly 'number': string;
23380
23681
  }
@@ -23540,6 +23841,50 @@ declare namespace io.flow.internal.v0.models {
23540
23841
  readonly 'product_delete': io.flow.shopify.external.v0.models.ProductDelete;
23541
23842
  }
23542
23843
 
23844
+ interface ShopifyProductTaxonomyAttribute {
23845
+ readonly 'id': string;
23846
+ readonly 'handle': string;
23847
+ readonly 'name': string;
23848
+ readonly 'friendly_id': string;
23849
+ readonly 'description'?: string;
23850
+ }
23851
+
23852
+ interface ShopifyProductTaxonomyAttributeDeleted {
23853
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_deleted';
23854
+ readonly 'event_id': string;
23855
+ readonly 'timestamp': string;
23856
+ readonly 'id': string;
23857
+ }
23858
+
23859
+ interface ShopifyProductTaxonomyAttributeUpserted {
23860
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_upserted';
23861
+ readonly 'event_id': string;
23862
+ readonly 'timestamp': string;
23863
+ readonly 'shopify_product_taxonomy_attribute': io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
23864
+ }
23865
+
23866
+ interface ShopifyProductTaxonomyAttributeValue {
23867
+ readonly 'id': string;
23868
+ readonly 'attribute_id': string;
23869
+ readonly 'handle': string;
23870
+ readonly 'name': string;
23871
+ readonly 'friendly_id': string;
23872
+ }
23873
+
23874
+ interface ShopifyProductTaxonomyAttributeValueDeleted {
23875
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_deleted';
23876
+ readonly 'event_id': string;
23877
+ readonly 'timestamp': string;
23878
+ readonly 'id': string;
23879
+ }
23880
+
23881
+ interface ShopifyProductTaxonomyAttributeValueUpserted {
23882
+ readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_upserted';
23883
+ readonly 'event_id': string;
23884
+ readonly 'timestamp': string;
23885
+ readonly 'shopify_product_taxonomy_attribute_value': io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
23886
+ }
23887
+
23543
23888
  interface ShopifyProductUpdateDeleted {
23544
23889
  readonly 'discriminator': 'shopify_product_update_deleted';
23545
23890
  readonly 'event_id': string;
@@ -23602,6 +23947,24 @@ declare namespace io.flow.internal.v0.models {
23602
23947
  readonly 'request'?: any/*object*/;
23603
23948
  }
23604
23949
 
23950
+ interface ShopifyTaxonomyAlignmentConfig {
23951
+ readonly 'id': string;
23952
+ readonly 'taxonomy_category': string;
23953
+ readonly 'allowable_hs_prefixes': string[];
23954
+ readonly 'default_hs6_code'?: string;
23955
+ readonly 'auto_correct': boolean;
23956
+ readonly 'created_at': string;
23957
+ readonly 'updated_at': string;
23958
+ readonly 'updated_by_user_id': string;
23959
+ }
23960
+
23961
+ interface ShopifyTaxonomyAlignmentConfigForm {
23962
+ readonly 'taxonomy_category': string;
23963
+ readonly 'allowable_hs_prefixes': string[];
23964
+ readonly 'default_hs6_code'?: string;
23965
+ readonly 'auto_correct': boolean;
23966
+ }
23967
+
23605
23968
  interface ShopperBreakdown {
23606
23969
  readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
23607
23970
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
@@ -24145,11 +24508,6 @@ declare namespace io.flow.internal.v0.models {
24145
24508
  readonly 'reversal': io.flow.internal.v0.models.StripeInternalReversal;
24146
24509
  }
24147
24510
 
24148
- interface SubcatalogItemCount {
24149
- readonly 'key': string;
24150
- readonly 'count': number;
24151
- }
24152
-
24153
24511
  interface SubmittedOrderUpserted {
24154
24512
  readonly 'discriminator': 'submitted_order_upserted';
24155
24513
  readonly 'event_id': string;
@@ -24210,11 +24568,6 @@ declare namespace io.flow.internal.v0.models {
24210
24568
  readonly 'snooze_id'?: string;
24211
24569
  }
24212
24570
 
24213
- interface TaskCount {
24214
- readonly 'discriminator': string;
24215
- readonly 'count': number;
24216
- }
24217
-
24218
24571
  interface TaskImport {
24219
24572
  readonly 'discriminator': 'task_import';
24220
24573
  readonly 'import_id': string;
@@ -24351,6 +24704,13 @@ declare namespace io.flow.internal.v0.models {
24351
24704
  readonly 'tax_transaction': io.flow.internal.v0.models.TaxTransaction;
24352
24705
  }
24353
24706
 
24707
+ interface TaxonomyAlignmentCheckResult {
24708
+ readonly 'status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
24709
+ readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
24710
+ readonly 'merchant_taxonomy_status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
24711
+ readonly 'current_taxonomy_status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
24712
+ }
24713
+
24354
24714
  interface TaxonomyCategory {
24355
24715
  readonly 'discriminator': 'category';
24356
24716
  readonly 'name': string;
@@ -25000,6 +25360,7 @@ declare namespace io.flow.internal.v0.models {
25000
25360
  readonly 'provided_charges'?: io.flow.internal.v0.models.ChargeInput[];
25001
25361
  readonly 'direction'?: io.flow.label.v0.enums.Direction;
25002
25362
  readonly 'package_dimensions_source': io.flow.label.v0.enums.PackageDimensionsSource;
25363
+ readonly 'shipping_date_time'?: string;
25003
25364
  }
25004
25365
 
25005
25366
  interface ViesResult {
@@ -25057,6 +25418,8 @@ declare namespace io.flow.internal.v0.unions {
25057
25418
  type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
25058
25419
  type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
25059
25420
  type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex | io.flow.internal.v0.models.FedexApi);
25421
+ type CarrierDocumentContent = (io.flow.internal.v0.models.Base64CarrierDocumentContent);
25422
+ type CarrierLabelAttributes = (io.flow.internal.v0.models.FedexCarrierLabelAttributes);
25060
25423
  type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
25061
25424
  type ClassificationAction = (io.flow.internal.v0.models.SingleClassificationAction | io.flow.internal.v0.models.BulkClassificationAction);
25062
25425
  type ClassificationActionForm = (io.flow.internal.v0.models.ClassificationActionFormUndo);
@@ -25077,7 +25440,7 @@ declare namespace io.flow.internal.v0.unions {
25077
25440
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
25078
25441
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
25079
25442
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
25080
- 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.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.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.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.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.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.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.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.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.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.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.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);
25443
+ 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.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.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.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.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.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.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.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.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.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.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);
25081
25444
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
25082
25445
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
25083
25446
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -25111,7 +25474,8 @@ declare namespace io.flow.internal.v0.unions {
25111
25474
  type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
25112
25475
  type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
25113
25476
  type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed);
25114
- type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund);
25477
+ type RestrictionAttributeRuleCondition = (io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple);
25478
+ type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal);
25115
25479
  type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
25116
25480
  type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
25117
25481
  type SimplifiedClassificationTaxonomy = (io.flow.internal.v0.models.SimplifiedTaxonomyCategory | io.flow.internal.v0.models.SimplifiedItemLabel);
@@ -25120,7 +25484,7 @@ declare namespace io.flow.internal.v0.unions {
25120
25484
  type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
25121
25485
  type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
25122
25486
  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);
25123
- type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata);
25487
+ 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);
25124
25488
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
25125
25489
  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);
25126
25490
  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);
@@ -25133,6 +25497,7 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
25133
25497
  export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
25134
25498
  export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
25135
25499
  export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoItemType>;
25500
+ export const anirbanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnirbanItemType>;
25136
25501
  export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
25137
25502
  export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
25138
25503
  export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
@@ -25149,6 +25514,7 @@ export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.e
25149
25514
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
25150
25515
  export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
25151
25516
  export const carrierChargeType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeType>;
25517
+ export const carrierDocumentType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierDocumentType>;
25152
25518
  export const carrierFileType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierFileType>;
25153
25519
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
25154
25520
  export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
@@ -25162,6 +25528,7 @@ export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flo
25162
25528
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
25163
25529
  export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
25164
25530
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
25531
+ export const chapterCheckStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChapterCheckStatus>;
25165
25532
  export const chargeEstimateSource: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeEstimateSource>;
25166
25533
  export const chargeInputType: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeInputType>;
25167
25534
  export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
@@ -25205,8 +25572,10 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
25205
25572
  export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
25206
25573
  export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
25207
25574
  export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
25575
+ export const dutyVarianceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DutyVarianceStatus>;
25208
25576
  export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
25209
25577
  export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
25578
+ export const evaluationCheckResult: PropTypes.Requireable<io.flow.internal.v0.enums.EvaluationCheckResult>;
25210
25579
  export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
25211
25580
  export const experienceImportType: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceImportType>;
25212
25581
  export const experienceOrderAction: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderAction>;
@@ -25216,6 +25585,7 @@ export const featureScope: PropTypes.Requireable<io.flow.internal.v0.enums.Featu
25216
25585
  export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureStatus>;
25217
25586
  export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
25218
25587
  export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
25588
+ export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
25219
25589
  export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
25220
25590
  export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
25221
25591
  export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
@@ -25307,9 +25677,14 @@ export const reportingFulfillmentIsVirtual: PropTypes.Requireable<io.flow.intern
25307
25677
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
25308
25678
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
25309
25679
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
25680
+ export const restrictionAttributeConditionMultipleOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator>;
25681
+ export const restrictionAttributeConditionSingleOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator>;
25682
+ export const restrictionAttributeOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeOperator>;
25683
+ export const restrictionAttributeResult: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeResult>;
25310
25684
  export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
25311
25685
  export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationChannel>;
25312
25686
  export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
25687
+ export const restrictionRuleActivationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleActivationStatus>;
25313
25688
  export const restrictionRuleCommunityExemption: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleCommunityExemption>;
25314
25689
  export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
25315
25690
  export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
@@ -25319,6 +25694,8 @@ export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskChec
25319
25694
  export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
25320
25695
  export const rohanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RohanItemType>;
25321
25696
  export const sarveshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.SarveshItemType>;
25697
+ export const sellabilityCheckStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityCheckStatus>;
25698
+ export const sellabilityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityStatus>;
25322
25699
  export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
25323
25700
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
25324
25701
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
@@ -25380,6 +25757,7 @@ export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.int
25380
25757
  export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
25381
25758
  export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
25382
25759
  export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
25760
+ export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
25383
25761
  export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
25384
25762
  export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
25385
25763
  export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
@@ -25436,21 +25814,19 @@ export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.m
25436
25814
  export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
25437
25815
  export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
25438
25816
  export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
25439
- export const alertErrorSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertErrorSummary>;
25440
- export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummary>;
25441
- export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
25442
- export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
25443
- export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
25444
25817
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
25445
25818
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
25446
25819
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
25447
25820
  export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
25821
+ export const anirbanItem: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItem>;
25822
+ export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
25448
25823
  export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
25449
25824
  export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
25450
25825
  export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
25451
25826
  export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
25452
25827
  export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
25453
25828
  export const attributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.AttributeLabel>;
25829
+ export const attributeRule: PropTypes.Requireable<io.flow.internal.v0.models.AttributeRule>;
25454
25830
  export const authenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.AuthenticationForm>;
25455
25831
  export const authorizationBundle: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundle>;
25456
25832
  export const authorizationBundleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundleDeleted>;
@@ -25481,6 +25857,7 @@ export const bankPaymentStatusSentImportForm: PropTypes.Requireable<io.flow.inte
25481
25857
  export const bankPaymentStatusSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusSingleForm>;
25482
25858
  export const bankPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentUpserted>;
25483
25859
  export const bankPaymentUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentUpsertedV2>;
25860
+ export const base64CarrierDocumentContent: PropTypes.Requireable<io.flow.internal.v0.models.Base64CarrierDocumentContent>;
25484
25861
  export const billingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingAuthorizationReference>;
25485
25862
  export const billingCsvTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingCsvTransactionDeleted>;
25486
25863
  export const billingCsvTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingCsvTransactionUpserted>;
@@ -25543,6 +25920,7 @@ export const carrierChargeReference: PropTypes.Requireable<io.flow.internal.v0.m
25543
25920
  export const carrierChargeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeTransaction>;
25544
25921
  export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
25545
25922
  export const carrierChargeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUpserted>;
25923
+ export const carrierDocument: PropTypes.Requireable<io.flow.internal.v0.models.CarrierDocument>;
25546
25924
  export const carrierFile: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFile>;
25547
25925
  export const carrierFileForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFileForm>;
25548
25926
  export const carrierFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFileResult>;
@@ -25605,6 +25983,10 @@ export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal
25605
25983
  export const channelOrganizationIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifier>;
25606
25984
  export const channelOrganizationIdentifierDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted>;
25607
25985
  export const channelOrganizationIdentifierUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted>;
25986
+ export const channelOrganizationPublicationOwner: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationPublicationOwner>;
25987
+ export const channelOrganizationPublicationOwnerPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationPublicationOwnerPutForm>;
25988
+ export const channelOrganizationSellabilityStatus: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationSellabilityStatus>;
25989
+ export const channelOrganizationSellabilityStatusPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationSellabilityStatusPutForm>;
25608
25990
  export const channelOrganizationShopify: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopify>;
25609
25991
  export const channelOrganizationShopifyForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyForm>;
25610
25992
  export const channelOrganizationShopifyPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm>;
@@ -25614,6 +25996,7 @@ export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.model
25614
25996
  export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
25615
25997
  export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
25616
25998
  export const channelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionUpserted>;
25999
+ export const chapterCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.ChapterCheckResult>;
25617
26000
  export const chargeInput: PropTypes.Requireable<io.flow.internal.v0.models.ChargeInput>;
25618
26001
  export const chargeback: PropTypes.Requireable<io.flow.internal.v0.models.Chargeback>;
25619
26002
  export const chargebackDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackDeleted>;
@@ -25724,6 +26107,7 @@ export const deliveredDutyOptions: PropTypes.Requireable<io.flow.internal.v0.mod
25724
26107
  export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptionsMessage>;
25725
26108
  export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
25726
26109
  export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
26110
+ export const destinationDutyComparison: PropTypes.Requireable<io.flow.internal.v0.models.DestinationDutyComparison>;
25727
26111
  export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
25728
26112
  export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
25729
26113
  export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
@@ -25766,6 +26150,7 @@ export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.mod
25766
26150
  export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
25767
26151
  export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
25768
26152
  export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
26153
+ export const dutyVarianceResult: PropTypes.Requireable<io.flow.internal.v0.models.DutyVarianceResult>;
25769
26154
  export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
25770
26155
  export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
25771
26156
  export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
@@ -25807,6 +26192,8 @@ export const externalFulfillmentProof: PropTypes.Requireable<io.flow.internal.v0
25807
26192
  export const externalFulfillmentProofForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofForm>;
25808
26193
  export const externalFulfillmentProofTracking: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTracking>;
25809
26194
  export const externalFulfillmentProofTrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm>;
26195
+ export const externalRatecardLink: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLink>;
26196
+ export const externalRatecardLinkResponse: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLinkResponse>;
25810
26197
  export const facebookPixel: PropTypes.Requireable<io.flow.internal.v0.models.FacebookPixel>;
25811
26198
  export const failedDimensionEstimateOpsInputWithReason: PropTypes.Requireable<io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason>;
25812
26199
  export const feature: PropTypes.Requireable<io.flow.internal.v0.models.Feature>;
@@ -25825,6 +26212,7 @@ export const featureValueForm: PropTypes.Requireable<io.flow.internal.v0.models.
25825
26212
  export const featureValueResult: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueResult>;
25826
26213
  export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
25827
26214
  export const fedexApi: PropTypes.Requireable<io.flow.internal.v0.models.FedexApi>;
26215
+ export const fedexCarrierLabelAttributes: PropTypes.Requireable<io.flow.internal.v0.models.FedexCarrierLabelAttributes>;
25828
26216
  export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
25829
26217
  export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
25830
26218
  export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
@@ -26004,6 +26392,7 @@ export const journal: PropTypes.Requireable<io.flow.internal.v0.models.Journal>;
26004
26392
  export const journalFailure: PropTypes.Requireable<io.flow.internal.v0.models.JournalFailure>;
26005
26393
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
26006
26394
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
26395
+ export const keywordCancelling: PropTypes.Requireable<io.flow.internal.v0.models.KeywordCancelling>;
26007
26396
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
26008
26397
  export const klarnaPaymentMethodCategory: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaPaymentMethodCategory>;
26009
26398
  export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
@@ -26098,6 +26487,8 @@ export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.inter
26098
26487
  export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
26099
26488
  export const merchantOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverride>;
26100
26489
  export const merchantOverrideDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDecisionForm>;
26490
+ export const merchantOverrideDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDeleted>;
26491
+ export const merchantOverrideUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideUpserted>;
26101
26492
  export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
26102
26493
  export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
26103
26494
  export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
@@ -26113,12 +26504,12 @@ export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.Nia
26113
26504
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
26114
26505
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
26115
26506
  export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
26507
+ export const nonL4LTaxDutyFxFeeMetadata: PropTypes.Requireable<io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata>;
26116
26508
  export const nonL4LTaxDutyFxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction>;
26117
26509
  export const notification: PropTypes.Requireable<io.flow.internal.v0.models.Notification>;
26118
26510
  export const onboardingAuditMessage: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditMessage>;
26119
26511
  export const onboardingAuditReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReport>;
26120
26512
  export const onboardingAuditReportLine: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReportLine>;
26121
- export const onboardingAuditSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditSnapshot>;
26122
26513
  export const onboardingAuditThemeReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditThemeReport>;
26123
26514
  export const onboardingOrganization: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingOrganization>;
26124
26515
  export const onboardingStateForm: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingStateForm>;
@@ -26148,6 +26539,9 @@ export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v
26148
26539
  export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
26149
26540
  export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
26150
26541
  export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
26542
+ export const orderRefundTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransaction>;
26543
+ export const orderRefundTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransactionDeleted>;
26544
+ export const orderRefundTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransactionUpserted>;
26151
26545
  export const orderRevenueRegionChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionChart>;
26152
26546
  export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionDataPoint>;
26153
26547
  export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
@@ -26268,6 +26662,7 @@ export const paymentProcessorAccountDeleted: PropTypes.Requireable<io.flow.inter
26268
26662
  export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorAccountUpserted>;
26269
26663
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
26270
26664
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
26665
+ export const paymentRequestAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PaymentRequestAuthorization>;
26271
26666
  export const paymentShortUrl: PropTypes.Requireable<io.flow.internal.v0.models.PaymentShortUrl>;
26272
26667
  export const paymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummary>;
26273
26668
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
@@ -26439,6 +26834,7 @@ export const reportingDebug: PropTypes.Requireable<io.flow.internal.v0.models.Re
26439
26834
  export const reportingDebugMissingSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebugMissingSubsidies>;
26440
26835
  export const reportingDestination: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDestination>;
26441
26836
  export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
26837
+ export const reportingFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFees>;
26442
26838
  export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
26443
26839
  export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
26444
26840
  export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
@@ -26462,6 +26858,9 @@ export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.
26462
26858
  export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
26463
26859
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
26464
26860
  export const rescreenRestrictionsProducts: PropTypes.Requireable<io.flow.internal.v0.models.RescreenRestrictionsProducts>;
26861
+ export const restrictionAttributeConditionMultiple: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeConditionMultiple>;
26862
+ export const restrictionAttributeConditionSingle: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeConditionSingle>;
26863
+ export const restrictionAttributeRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeRule>;
26465
26864
  export const restrictionBlanketOrganizationExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption>;
26466
26865
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
26467
26866
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
@@ -26510,6 +26909,7 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
26510
26909
  export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
26511
26910
  export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
26512
26911
  export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
26912
+ export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerReversal>;
26513
26913
  export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
26514
26914
  export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
26515
26915
  export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
@@ -26536,6 +26936,7 @@ export const searchItemSummary: PropTypes.Requireable<io.flow.internal.v0.models
26536
26936
  export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchOrderSummary>;
26537
26937
  export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
26538
26938
  export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
26939
+ export const sellabilityCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityCheckResult>;
26539
26940
  export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
26540
26941
  export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
26541
26942
  export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
@@ -26603,7 +27004,6 @@ export const shopifyMonitoringFulfillmentMissingDetails: PropTypes.Requireable<i
26603
27004
  export const shopifyMonitoringOrderMonitor: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor>;
26604
27005
  export const shopifyMonitoringOrderMonitorEventDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted>;
26605
27006
  export const shopifyMonitoringOrderMonitorEventUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted>;
26606
- export const shopifyMonitoringOrderMonitorReview: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview>;
26607
27007
  export const shopifyMonitoringTrackingNumber: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber>;
26608
27008
  export const shopifyMonitoringTrackingUrl: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl>;
26609
27009
  export const shopifyOrderCancelForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderCancelForm>;
@@ -26630,6 +27030,12 @@ export const shopifyProductCreateWebhookEvent: PropTypes.Requireable<io.flow.int
26630
27030
  export const shopifyProductDeleteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteDeleted>;
26631
27031
  export const shopifyProductDeleteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteUpserted>;
26632
27032
  export const shopifyProductDeleteWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent>;
27033
+ export const shopifyProductTaxonomyAttribute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute>;
27034
+ export const shopifyProductTaxonomyAttributeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted>;
27035
+ export const shopifyProductTaxonomyAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted>;
27036
+ export const shopifyProductTaxonomyAttributeValue: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue>;
27037
+ export const shopifyProductTaxonomyAttributeValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted>;
27038
+ export const shopifyProductTaxonomyAttributeValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted>;
26633
27039
  export const shopifyProductUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateDeleted>;
26634
27040
  export const shopifyProductUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateUpserted>;
26635
27041
  export const shopifyProductUpdateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent>;
@@ -26639,6 +27045,8 @@ export const shopifyReportFileUpserted: PropTypes.Requireable<io.flow.internal.v
26639
27045
  export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
26640
27046
  export const shopifyStoreDetail: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStoreDetail>;
26641
27047
  export const shopifyStripeEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStripeEvent>;
27048
+ export const shopifyTaxonomyAlignmentConfig: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig>;
27049
+ export const shopifyTaxonomyAlignmentConfigForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm>;
26642
27050
  export const shopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ShopperBreakdown>;
26643
27051
  export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
26644
27052
  export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
@@ -26700,7 +27108,6 @@ export const stripeRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
26700
27108
  export const stripeRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeRefundUpserted>;
26701
27109
  export const stripeReversalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeReversalDeleted>;
26702
27110
  export const stripeReversalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeReversalUpserted>;
26703
- export const subcatalogItemCount: PropTypes.Requireable<io.flow.internal.v0.models.SubcatalogItemCount>;
26704
27111
  export const submittedOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SubmittedOrderUpserted>;
26705
27112
  export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subscription>;
26706
27113
  export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
@@ -26708,7 +27115,6 @@ export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.S
26708
27115
  export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
26709
27116
  export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
26710
27117
  export const task: PropTypes.Requireable<io.flow.internal.v0.models.Task>;
26711
- export const taskCount: PropTypes.Requireable<io.flow.internal.v0.models.TaskCount>;
26712
27118
  export const taskImport: PropTypes.Requireable<io.flow.internal.v0.models.TaskImport>;
26713
27119
  export const taskItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaskItemUpserted>;
26714
27120
  export const taskProcessQueuedEvent: PropTypes.Requireable<io.flow.internal.v0.models.TaskProcessQueuedEvent>;
@@ -26725,6 +27131,7 @@ export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.int
26725
27131
  export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransaction>;
26726
27132
  export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
26727
27133
  export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
27134
+ export const taxonomyAlignmentCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyAlignmentCheckResult>;
26728
27135
  export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
26729
27136
  export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
26730
27137
  export const taxonomyCategoryHs6RefDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted>;
@@ -26825,6 +27232,8 @@ export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.un
26825
27232
  export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
26826
27233
  export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
26827
27234
  export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
27235
+ export const carrierDocumentContent: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierDocumentContent>;
27236
+ export const carrierLabelAttributes: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierLabelAttributes>;
26828
27237
  export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
26829
27238
  export const classificationAction: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationAction>;
26830
27239
  export const classificationActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationActionForm>;
@@ -26874,6 +27283,7 @@ export const processorMerchantForm: PropTypes.Requireable<io.flow.internal.v0.un
26874
27283
  export const processorMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.unions.ProcessorMerchantModificationForm>;
26875
27284
  export const processorMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.unions.ProcessorMerchantPutForm>;
26876
27285
  export const proofOfPosting: PropTypes.Requireable<io.flow.internal.v0.unions.ProofOfPosting>;
27286
+ export const restrictionAttributeRuleCondition: PropTypes.Requireable<io.flow.internal.v0.unions.RestrictionAttributeRuleCondition>;
26877
27287
  export const returnTrigger: PropTypes.Requireable<io.flow.internal.v0.unions.ReturnTrigger>;
26878
27288
  export const routingEntity: PropTypes.Requireable<io.flow.internal.v0.unions.RoutingEntity>;
26879
27289
  export const shopifyMonitoringOrderMonitorType: PropTypes.Requireable<io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType>;