@flowio/types 11.24.122 → 11.24.124

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.
@@ -5351,6 +5351,7 @@ declare namespace io.flow.label.v0.models {
5351
5351
  readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
5352
5352
  readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
5353
5353
  readonly reference_id?: string;
5354
+ readonly shipping_date_time?: string;
5354
5355
  }
5355
5356
 
5356
5357
  interface DetailedShippingNotificationForm {
@@ -6844,6 +6845,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
6844
6845
  | 'sync_product_catalog'
6845
6846
  | 'shopify_webhook';
6846
6847
  type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
6848
+ type SellabilityStatus = 'complete' | 'incomplete';
6847
6849
  type ShopifyMarketsDangerousGoods =
6848
6850
  | 'aerosols'
6849
6851
  | 'air_bag_inflators_or_seat_belt_pretensioners'
@@ -6918,6 +6920,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
6918
6920
  readonly identifier: string;
6919
6921
  }
6920
6922
 
6923
+ interface ChannelOrganizationPublicationOwner {
6924
+ readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
6925
+ }
6926
+
6927
+ interface ChannelOrganizationPublicationOwnerPutForm {
6928
+ readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
6929
+ }
6930
+
6931
+ interface ChannelOrganizationSellabilityStatus {
6932
+ readonly status: io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
6933
+ }
6934
+
6935
+ interface ChannelOrganizationSellabilityStatusPutForm {
6936
+ readonly status: io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
6937
+ }
6938
+
6921
6939
  interface FlowShopValidationError {
6922
6940
  readonly message: string;
6923
6941
  readonly reason: string;
@@ -6961,6 +6979,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
6961
6979
  readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
6962
6980
  }
6963
6981
 
6982
+ interface PaymentRequestAuthorization {
6983
+ readonly payment_request_id: string;
6984
+ readonly authorization_id: string;
6985
+ }
6986
+
6964
6987
  interface ProductRestrictionResultValidationError {
6965
6988
  readonly message: string;
6966
6989
  readonly reason: string;
@@ -7042,6 +7065,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7042
7065
  readonly api_password_masked?: string;
7043
7066
  readonly access_token_masked?: string;
7044
7067
  readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
7068
+ readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
7045
7069
  }
7046
7070
 
7047
7071
  interface ShopifyMarketsShopForm {
@@ -7109,6 +7133,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7109
7133
  readonly product_ids: string[];
7110
7134
  }
7111
7135
 
7136
+ interface ShopifyProductTaxonomyAttribute {
7137
+ readonly id: string;
7138
+ readonly handle: string;
7139
+ readonly name: string;
7140
+ readonly friendly_id: string;
7141
+ readonly description?: string;
7142
+ }
7143
+
7144
+ interface ShopifyProductTaxonomyAttributeValue {
7145
+ readonly id: string;
7146
+ readonly attribute_id: string;
7147
+ readonly handle: string;
7148
+ readonly name: string;
7149
+ readonly friendly_id: string;
7150
+ }
7151
+
7112
7152
  interface ShopifyProductWrapper {
7113
7153
  readonly shopify_product: io.flow.shopify.external.v0.models.Product;
7114
7154
  readonly deleted_at?: string;
@@ -7968,6 +8008,7 @@ declare namespace io.flow.shopify.external.v0.models {
7968
8008
  interface GraphqlMetaobjectField {
7969
8009
  readonly key: string;
7970
8010
  readonly value?: string;
8011
+ readonly type?: string;
7971
8012
  }
7972
8013
 
7973
8014
  interface GraphqlOption {
@@ -9909,6 +9950,13 @@ declare namespace io.flow.order.price.v0.enums {
9909
9950
  | 'discount'
9910
9951
  | 'surcharges'
9911
9952
  | 'tip';
9953
+ type OrderPriceFeeType =
9954
+ | 'service'
9955
+ | 'fx'
9956
+ | 'tax'
9957
+ | 'duties'
9958
+ | 'tax_and_duties'
9959
+ | 'product';
9912
9960
  }
9913
9961
 
9914
9962
  declare namespace io.flow.order.price.v0.models {
@@ -9923,6 +9971,12 @@ declare namespace io.flow.order.price.v0.models {
9923
9971
  readonly rate?: number;
9924
9972
  readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
9925
9973
  readonly rate_label?: string;
9974
+ readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
9975
+ }
9976
+
9977
+ interface OrderPriceDetailBreakdown {
9978
+ readonly purchase_price: io.flow.order.price.v0.models.PurchasePriceBreakdown;
9979
+ readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
9926
9980
  }
9927
9981
 
9928
9982
  interface OrderPriceDetailComponent {
@@ -9933,6 +9987,18 @@ declare namespace io.flow.order.price.v0.models {
9933
9987
  readonly base: io.flow.common.v0.models.Price;
9934
9988
  readonly name?: string;
9935
9989
  }
9990
+
9991
+ interface OrderPriceFee {
9992
+ readonly key: string;
9993
+ readonly value: io.flow.common.v0.models.PriceWithBase;
9994
+ readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
9995
+ }
9996
+
9997
+ interface PurchasePriceBreakdown {
9998
+ readonly total_price: io.flow.common.v0.models.PriceWithBase;
9999
+ readonly product_price: io.flow.common.v0.models.PriceWithBase;
10000
+ readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
10001
+ }
9936
10002
  }
9937
10003
 
9938
10004
  declare namespace io.flow.channel.internal.v0.enums {
@@ -10013,6 +10079,7 @@ declare namespace io.flow.channel.internal.v0.models {
10013
10079
  readonly channel_id: string;
10014
10080
  readonly external_order_reference: string;
10015
10081
  readonly payment_request_id?: string;
10082
+ readonly order_payment_request_ids?: string[];
10016
10083
  readonly order_edit_payment_request_ids?: string[];
10017
10084
  readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
10018
10085
  readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
@@ -10952,6 +11019,34 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
10952
11019
  readonly organization: string;
10953
11020
  readonly shopify_product_bundle: io.flow.shopify.markets.internal.v0.models.ShopifyProductBundle;
10954
11021
  }
11022
+
11023
+ interface ShopifyProductTaxonomyAttributeDeleted {
11024
+ readonly discriminator: 'shopify_product_taxonomy_attribute_deleted';
11025
+ readonly event_id: string;
11026
+ readonly timestamp: string;
11027
+ readonly id: string;
11028
+ }
11029
+
11030
+ interface ShopifyProductTaxonomyAttributeUpserted {
11031
+ readonly discriminator: 'shopify_product_taxonomy_attribute_upserted';
11032
+ readonly event_id: string;
11033
+ readonly timestamp: string;
11034
+ readonly shopify_product_taxonomy_attribute: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttribute;
11035
+ }
11036
+
11037
+ interface ShopifyProductTaxonomyAttributeValueDeleted {
11038
+ readonly discriminator: 'shopify_product_taxonomy_attribute_value_deleted';
11039
+ readonly event_id: string;
11040
+ readonly timestamp: string;
11041
+ readonly id: string;
11042
+ }
11043
+
11044
+ interface ShopifyProductTaxonomyAttributeValueUpserted {
11045
+ readonly discriminator: 'shopify_product_taxonomy_attribute_value_upserted';
11046
+ readonly event_id: string;
11047
+ readonly timestamp: string;
11048
+ readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
11049
+ }
10955
11050
  }
10956
11051
 
10957
11052
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
@@ -10964,6 +11059,10 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
10964
11059
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted
10965
11060
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted
10966
11061
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted
11062
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted
11063
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted
11064
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted
11065
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted
10967
11066
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted
10968
11067
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted
10969
11068
  | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted
@@ -11327,6 +11426,11 @@ declare namespace io.flow.experience.v0.models {
11327
11426
  readonly targets: io.flow.experience.v0.enums.DiscountRuleSubsidyTarget[];
11328
11427
  }
11329
11428
 
11429
+ interface EditSummary {
11430
+ readonly id: string;
11431
+ readonly edited_at: string;
11432
+ }
11433
+
11330
11434
  interface Experience {
11331
11435
  readonly discriminator: 'experience';
11332
11436
  readonly id: string;
@@ -11617,6 +11721,7 @@ declare namespace io.flow.experience.v0.models {
11617
11721
  readonly local: io.flow.catalog.v0.models.Local;
11618
11722
  readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
11619
11723
  readonly price_source?: io.flow.common.v0.unions.PriceSource;
11724
+ readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
11620
11725
  }
11621
11726
 
11622
11727
  interface LocalizedLineItemDiscount {
@@ -11662,6 +11767,8 @@ declare namespace io.flow.experience.v0.models {
11662
11767
  readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
11663
11768
  readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
11664
11769
  readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
11770
+ readonly edits?: io.flow.experience.v0.models.EditSummary[];
11771
+ readonly rates?: io.flow.experience.v0.models.OrderRate[];
11665
11772
  }
11666
11773
 
11667
11774
  interface OrderAddress {
@@ -11866,6 +11973,12 @@ declare namespace io.flow.experience.v0.models {
11866
11973
  readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
11867
11974
  }
11868
11975
 
11976
+ interface OrderRate {
11977
+ readonly from: string;
11978
+ readonly to: string;
11979
+ readonly rate: number;
11980
+ }
11981
+
11869
11982
  interface OrderReference {
11870
11983
  readonly discriminator: 'order_reference';
11871
11984
  readonly id: string;
@@ -13248,7 +13361,8 @@ declare namespace io.flow.trueup.v0.enums {
13248
13361
  | 'direct_delivery'
13249
13362
  | 'saturday_stop'
13250
13363
  | 'residential_extended_area_pickup'
13251
- | 'package_level_detail';
13364
+ | 'package_level_detail'
13365
+ | 'pickup';
13252
13366
  }
13253
13367
 
13254
13368
  declare namespace io.flow.trueup.v0.models {
@@ -13457,6 +13571,12 @@ declare namespace io.flow.product.v0.models {
13457
13571
  interface ProductTaxonomyData {
13458
13572
  readonly key: string;
13459
13573
  readonly value: string[];
13574
+ readonly value_obj?: io.flow.product.v0.models.ProductTaxonomyValue[];
13575
+ }
13576
+
13577
+ interface ProductTaxonomyValue {
13578
+ readonly handle: string;
13579
+ readonly name: string;
13460
13580
  }
13461
13581
  }
13462
13582
 
@@ -14114,6 +14234,7 @@ declare namespace io.flow.catalog.v0.models {
14114
14234
  readonly amount: number;
14115
14235
  readonly label: string;
14116
14236
  readonly base: io.flow.common.v0.models.Price;
14237
+ readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
14117
14238
  }
14118
14239
 
14119
14240
  interface Options {
@@ -15792,6 +15913,7 @@ declare namespace io.flow.internal.v0.enums {
15792
15913
  | 'checkout_payments_api'
15793
15914
  | 'classic_authorise_api';
15794
15915
  type AldoItemType = 'physical' | 'digital';
15916
+ type AnirbanItemType = 'physical' | 'digital';
15795
15917
  type AnshItemType = 'physical' | 'digital';
15796
15918
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
15797
15919
  type ApiCallReferenceId =
@@ -16009,6 +16131,10 @@ declare namespace io.flow.internal.v0.enums {
16009
16131
  | 'sp_billable_label_transactions_count'
16010
16132
  | 'sp_billable_label_transactions_count_for_unique_orders'
16011
16133
  | 'sp_billable_label_transactions_total'
16134
+ | 'capture_transactions_standard_count'
16135
+ | 'capture_transactions_standard_total'
16136
+ | 'capture_transactions_shopify_plus_count'
16137
+ | 'capture_transactions_shopify_plus_total'
16012
16138
  | 'sp_capture_transactions_count'
16013
16139
  | 'sp_capture_transactions_total'
16014
16140
  | 'sp_carrier_charge_transactions_count'
@@ -16090,6 +16216,7 @@ declare namespace io.flow.internal.v0.enums {
16090
16216
  | 'charge'
16091
16217
  | 'revenue_share';
16092
16218
  type CarrierChargeType = 'label' | 'tax' | 'other';
16219
+ type CarrierDocumentType = 'commercial_invoice';
16093
16220
  type CarrierFileType = 'freight' | 'tax';
16094
16221
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
16095
16222
  type CarrierValidationStatus = 'success' | 'error';
@@ -16147,6 +16274,7 @@ declare namespace io.flow.internal.v0.enums {
16147
16274
  | 'partial'
16148
16275
  | 'cancelled';
16149
16276
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
16277
+ type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
16150
16278
  type ChargeEstimateSource = 'global-e' | 'shopify';
16151
16279
  type ChargeInputType =
16152
16280
  | 'fuelsc'
@@ -16244,8 +16372,10 @@ declare namespace io.flow.internal.v0.enums {
16244
16372
  | 'preferential_rate';
16245
16373
  type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
16246
16374
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
16375
+ type DutyVarianceStatus = 'acceptable' | 'exceeded';
16247
16376
  type EmptyAttribute = 'irrelevant';
16248
16377
  type ErpFileType = 'vendor';
16378
+ type EvaluationCheckResult = 'pass' | 'fail';
16249
16379
  type EventType =
16250
16380
  | 'adyen_authorization_deleted'
16251
16381
  | 'adyen_authorization_upserted'
@@ -16430,6 +16560,8 @@ declare namespace io.flow.internal.v0.enums {
16430
16560
  | 'rate_freshness_summary_deleted'
16431
16561
  | 'item_harmonization_upserted'
16432
16562
  | 'item_harmonization_deleted'
16563
+ | 'merchant_override_upserted'
16564
+ | 'merchant_override_deleted'
16433
16565
  | 'harmonization_classification_statistics_published'
16434
16566
  | 'item_form_import_request'
16435
16567
  | 'label_request_error_upserted'
@@ -16487,6 +16619,8 @@ declare namespace io.flow.internal.v0.enums {
16487
16619
  | 'authorization_bundle_deleted'
16488
16620
  | 'organization_payment_setting_upserted'
16489
16621
  | 'organization_payment_setting_deleted'
16622
+ | 'order_refund_transaction_upserted'
16623
+ | 'order_refund_transaction_deleted'
16490
16624
  | 'paypal_payment_deleted'
16491
16625
  | 'paypal_payment_upserted'
16492
16626
  | 'paypal_execution_deleted'
@@ -16538,6 +16672,10 @@ declare namespace io.flow.internal.v0.enums {
16538
16672
  | 'shopify_markets_webhook_registration_deleted'
16539
16673
  | 'shopify_markets_shop_statistics_upserted'
16540
16674
  | 'shopify_markets_shop_statistics_deleted'
16675
+ | 'shopify_product_taxonomy_attribute_upserted'
16676
+ | 'shopify_product_taxonomy_attribute_deleted'
16677
+ | 'shopify_product_taxonomy_attribute_value_upserted'
16678
+ | 'shopify_product_taxonomy_attribute_value_deleted'
16541
16679
  | 'shopify_markets_metrics_upserted'
16542
16680
  | 'shopify_markets_metrics_deleted'
16543
16681
  | 'channel_order_summary_upserted'
@@ -16619,6 +16757,7 @@ declare namespace io.flow.internal.v0.enums {
16619
16757
  type FeatureStatus = 'draft' | 'active' | 'archived';
16620
16758
  type FeatureType = 'boolean' | 'decimal' | 'string';
16621
16759
  type FeesSource = 'settings' | 'authorization_bundle';
16760
+ type FileType = 'pdf';
16622
16761
  type FraudProvider =
16623
16762
  | 'flow'
16624
16763
  | 'forter'
@@ -16671,7 +16810,8 @@ declare namespace io.flow.internal.v0.enums {
16671
16810
  | 'waiting_for_classification'
16672
16811
  | 'classified'
16673
16812
  | 'non_classifiable_not_enough_information'
16674
- | 'exempt';
16813
+ | 'exempt'
16814
+ | 'manual_classification_required';
16675
16815
  type ItemQuantityAction =
16676
16816
  | 'fulfillment_ship'
16677
16817
  | 'fulfillment_cancel'
@@ -16930,6 +17070,14 @@ declare namespace io.flow.internal.v0.enums {
16930
17070
  | 'paid_on_delivery';
16931
17071
  type ResponsibleParty = 'flow' | 'organization';
16932
17072
  type RestrictionAction = 'prohibited' | 'restricted';
17073
+ type RestrictionAttributeConditionMultipleOperator = 'in' | 'not_in';
17074
+ type RestrictionAttributeConditionSingleOperator = 'equals' | 'not_equals';
17075
+ type RestrictionAttributeOperator = 'and' | 'or';
17076
+ type RestrictionAttributeResult =
17077
+ | 'pending_classification'
17078
+ | 'pending_verification'
17079
+ | 'accepted'
17080
+ | 'restricted';
16933
17081
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
16934
17082
  type RestrictionOrganizationChannel =
16935
17083
  | 'shopify'
@@ -16937,6 +17085,7 @@ declare namespace io.flow.internal.v0.enums {
16937
17085
  | 'shopify-sandbox'
16938
17086
  | 'enterprise-sandbox';
16939
17087
  type RestrictionOrganizationSource = 'shopify' | 'enterprise';
17088
+ type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
16940
17089
  type RestrictionRuleCommunityExemption =
16941
17090
  | 'domestic_exemption'
16942
17091
  | 'intra_eu_exemption';
@@ -16958,6 +17107,13 @@ declare namespace io.flow.internal.v0.enums {
16958
17107
  | 'none';
16959
17108
  type RohanItemType = 'physical' | 'digital';
16960
17109
  type SarveshItemType = 'physical' | 'digital';
17110
+ type SellabilityCheckStatus =
17111
+ | 'more_restrictive'
17112
+ | 'less_restrictive'
17113
+ | 'similar'
17114
+ | 'regions_differ'
17115
+ | 'rules_differ';
17116
+ type SellabilityStatus = 'complete' | 'incomplete';
16961
17117
  type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
16962
17118
  type ShopifyMarketsDangerousGoods =
16963
17119
  | 'aerosols'
@@ -17313,6 +17469,14 @@ declare namespace io.flow.internal.v0.models {
17313
17469
  readonly fulfillment_id: string;
17314
17470
  }
17315
17471
 
17472
+ interface AccountingReturnMetadata {
17473
+ readonly discriminator: 'accounting_return_metadata';
17474
+ readonly transactions_until: string;
17475
+ readonly refund?: io.flow.payment.v0.models.RefundReference;
17476
+ readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
17477
+ readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
17478
+ }
17479
+
17316
17480
  interface ActionQuantity {
17317
17481
  readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
17318
17482
  readonly quantity: number;
@@ -17769,34 +17933,6 @@ declare namespace io.flow.internal.v0.models {
17769
17933
  readonly added_on: string;
17770
17934
  }
17771
17935
 
17772
- interface AlertErrorSummary {
17773
- readonly event_id: number;
17774
- readonly error: string;
17775
- }
17776
-
17777
- interface AlertFailureSummary {
17778
- readonly database: string;
17779
- readonly summaries: io.flow.internal.v0.models.AlertFailureSummaryDetail[];
17780
- }
17781
-
17782
- interface AlertFailureSummaryDetail {
17783
- readonly queue: string;
17784
- readonly count: number;
17785
- readonly errors: io.flow.internal.v0.models.AlertErrorSummary[];
17786
- }
17787
-
17788
- interface AlertImportSummary {
17789
- readonly organization_id: string;
17790
- readonly filename: string;
17791
- readonly type: string;
17792
- readonly started_at?: string;
17793
- }
17794
-
17795
- interface AlertRequeueSummary {
17796
- readonly queue: string;
17797
- readonly count: number;
17798
- }
17799
-
17800
17936
  interface AllItemsExport {
17801
17937
  readonly discriminator: 'all_items_export';
17802
17938
  readonly event_id: string;
@@ -17819,6 +17955,23 @@ declare namespace io.flow.internal.v0.models {
17819
17955
  readonly labels: Record<string, string[]>;
17820
17956
  }
17821
17957
 
17958
+ interface AnirbanItem {
17959
+ readonly id: string;
17960
+ readonly number: string;
17961
+ readonly amount: io.flow.common.v0.models.Price;
17962
+ readonly description?: string;
17963
+ readonly type: io.flow.internal.v0.enums.AnirbanItemType;
17964
+ readonly added_on: string;
17965
+ }
17966
+
17967
+ interface AnirbanItemForm {
17968
+ readonly number: string;
17969
+ readonly amount: io.flow.common.v0.models.Price;
17970
+ readonly description?: string;
17971
+ readonly type: io.flow.internal.v0.enums.AnirbanItemType;
17972
+ readonly added_on: string;
17973
+ }
17974
+
17822
17975
  interface AnshItem {
17823
17976
  readonly id: string;
17824
17977
  readonly number: string;
@@ -17858,6 +18011,11 @@ declare namespace io.flow.internal.v0.models {
17858
18011
  readonly unverified: boolean;
17859
18012
  }
17860
18013
 
18014
+ interface AttributeRule {
18015
+ readonly restriction_attribute_rules: io.flow.internal.v0.models.RestrictionAttributeRule[];
18016
+ readonly default_result?: io.flow.internal.v0.enums.RestrictionAttributeResult;
18017
+ }
18018
+
17861
18019
  interface AuthenticationForm {
17862
18020
  readonly password: string;
17863
18021
  }
@@ -18063,6 +18221,12 @@ declare namespace io.flow.internal.v0.models {
18063
18221
  readonly bank_payment: io.flow.internal.v0.models.BankPayment;
18064
18222
  }
18065
18223
 
18224
+ interface Base64CarrierDocumentContent {
18225
+ readonly discriminator: 'base_64_carrier_document_content';
18226
+ readonly base64_string: string;
18227
+ readonly file_type: io.flow.internal.v0.enums.FileType;
18228
+ }
18229
+
18066
18230
  interface BillingAuthorizationReference {
18067
18231
  readonly id: string;
18068
18232
  }
@@ -18591,6 +18755,11 @@ declare namespace io.flow.internal.v0.models {
18591
18755
  readonly carrier_charge: io.flow.internal.v0.models.CarrierCharge;
18592
18756
  }
18593
18757
 
18758
+ interface CarrierDocument {
18759
+ readonly document_type: io.flow.internal.v0.enums.CarrierDocumentType;
18760
+ readonly document_content: io.flow.internal.v0.unions.CarrierDocumentContent;
18761
+ }
18762
+
18594
18763
  interface CarrierFile {
18595
18764
  readonly id: string;
18596
18765
  readonly type: io.flow.internal.v0.enums.CarrierFileType;
@@ -18936,6 +19105,7 @@ declare namespace io.flow.internal.v0.models {
18936
19105
  readonly channel_id: string;
18937
19106
  readonly external_order_reference: string;
18938
19107
  readonly payment_request_id?: string;
19108
+ readonly order_payment_request_ids?: string[];
18939
19109
  readonly order_edit_payment_request_ids?: string[];
18940
19110
  readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
18941
19111
  readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
@@ -19047,6 +19217,22 @@ declare namespace io.flow.internal.v0.models {
19047
19217
  readonly channel_organization_identifier: io.flow.internal.v0.models.ChannelOrganizationIdentifier;
19048
19218
  }
19049
19219
 
19220
+ interface ChannelOrganizationPublicationOwner {
19221
+ readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
19222
+ }
19223
+
19224
+ interface ChannelOrganizationPublicationOwnerPutForm {
19225
+ readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
19226
+ }
19227
+
19228
+ interface ChannelOrganizationSellabilityStatus {
19229
+ readonly status: io.flow.internal.v0.enums.SellabilityStatus;
19230
+ }
19231
+
19232
+ interface ChannelOrganizationSellabilityStatusPutForm {
19233
+ readonly status: io.flow.internal.v0.enums.SellabilityStatus;
19234
+ }
19235
+
19050
19236
  interface ChannelOrganizationShopify {
19051
19237
  readonly organization: io.flow.channel.v0.models.ChannelOrganization;
19052
19238
  readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
@@ -19115,6 +19301,13 @@ declare namespace io.flow.internal.v0.models {
19115
19301
  readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
19116
19302
  }
19117
19303
 
19304
+ interface ChapterCheckResult {
19305
+ readonly status: io.flow.internal.v0.enums.ChapterCheckStatus;
19306
+ readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
19307
+ readonly current_chapter: string;
19308
+ readonly merchant_chapter: string;
19309
+ }
19310
+
19118
19311
  interface ChargeInput {
19119
19312
  readonly charge_input_code: io.flow.internal.v0.enums.ChargeInputType;
19120
19313
  readonly price: io.flow.common.v0.models.Money;
@@ -19945,6 +20138,14 @@ declare namespace io.flow.internal.v0.models {
19945
20138
  readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
19946
20139
  }
19947
20140
 
20141
+ interface DestinationDutyComparison {
20142
+ readonly country: string;
20143
+ readonly current_duty?: number;
20144
+ readonly merchant_duty?: number;
20145
+ readonly current_error?: number;
20146
+ readonly merchant_error?: number;
20147
+ }
20148
+
19948
20149
  interface DestinationError {
19949
20150
  readonly id: string;
19950
20151
  readonly failed_at: string;
@@ -20270,6 +20471,12 @@ declare namespace io.flow.internal.v0.models {
20270
20471
  readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
20271
20472
  }
20272
20473
 
20474
+ interface DutyVarianceResult {
20475
+ readonly status: io.flow.internal.v0.enums.DutyVarianceStatus;
20476
+ readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
20477
+ readonly destinations: io.flow.internal.v0.models.DestinationDutyComparison[];
20478
+ }
20479
+
20273
20480
  interface EmailForm {
20274
20481
  readonly to: string[];
20275
20482
  readonly cc?: string[];
@@ -20519,9 +20726,10 @@ declare namespace io.flow.internal.v0.models {
20519
20726
  }
20520
20727
 
20521
20728
  interface EvaluationResults {
20522
- readonly chapter_result: any /*object*/;
20523
- readonly sellability_result: any /*object*/;
20524
- readonly duty_variance_result: any /*object*/;
20729
+ readonly chapter_result: io.flow.internal.v0.models.ChapterCheckResult;
20730
+ readonly sellability_result: io.flow.internal.v0.models.SellabilityCheckResult;
20731
+ readonly duty_variance_result: io.flow.internal.v0.models.DutyVarianceResult;
20732
+ readonly taxonomy_alignment_result?: io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
20525
20733
  }
20526
20734
 
20527
20735
  interface ExclusionRuleDeleted {
@@ -20679,6 +20887,16 @@ declare namespace io.flow.internal.v0.models {
20679
20887
  readonly fulfilled_via_replacement_order?: boolean;
20680
20888
  }
20681
20889
 
20890
+ interface ExternalRatecardLink {
20891
+ readonly external_ratecard_id: string;
20892
+ readonly flow_ratecard_ids: string[];
20893
+ }
20894
+
20895
+ interface ExternalRatecardLinkResponse {
20896
+ readonly external_ratecard_id: string;
20897
+ readonly flow_ratecard_ids: string[];
20898
+ }
20899
+
20682
20900
  interface FacebookPixel {
20683
20901
  readonly discriminator: 'facebook_pixel';
20684
20902
  readonly name?: string;
@@ -20800,6 +21018,12 @@ declare namespace io.flow.internal.v0.models {
20800
21018
  readonly account_number: string;
20801
21019
  }
20802
21020
 
21021
+ interface FedexCarrierLabelAttributes {
21022
+ readonly discriminator: 'fedex_carrier_label_attributes';
21023
+ readonly origin_location_id?: string;
21024
+ readonly destination_location_id?: string;
21025
+ }
21026
+
20803
21027
  interface FedexCrossborder {
20804
21028
  readonly discriminator: 'fedex_crossborder';
20805
21029
  readonly api_key: string;
@@ -21947,6 +22171,7 @@ declare namespace io.flow.internal.v0.models {
21947
22171
  readonly gender?: string;
21948
22172
  readonly material?: string;
21949
22173
  readonly url?: string;
22174
+ readonly preferential_rate_statement?: string;
21950
22175
  }
21951
22176
 
21952
22177
  interface InvoiceInfoForm {
@@ -21974,6 +22199,7 @@ declare namespace io.flow.internal.v0.models {
21974
22199
  readonly total_price: number;
21975
22200
  readonly manufacturer_id?: string;
21976
22201
  readonly export_control_classification_number: string;
22202
+ readonly preferential_rate_statement?: string;
21977
22203
  }
21978
22204
 
21979
22205
  interface InvoiceTransaction {
@@ -22243,6 +22469,11 @@ declare namespace io.flow.internal.v0.models {
22243
22469
  readonly id: string;
22244
22470
  }
22245
22471
 
22472
+ interface KeywordCancelling {
22473
+ readonly positive_keyword: string;
22474
+ readonly negative_keywords: string[];
22475
+ }
22476
+
22246
22477
  interface KlarnaAuthorizationParameters {
22247
22478
  readonly discriminator: 'klarna_authorization_parameters';
22248
22479
  readonly client_token: string;
@@ -22481,6 +22712,7 @@ declare namespace io.flow.internal.v0.models {
22481
22712
  readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
22482
22713
  readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
22483
22714
  readonly package_level_detail?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
22715
+ readonly pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
22484
22716
  }
22485
22717
 
22486
22718
  interface LabelSurchargeSingleForm {
@@ -23003,6 +23235,20 @@ declare namespace io.flow.internal.v0.models {
23003
23235
  readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
23004
23236
  }
23005
23237
 
23238
+ interface MerchantOverrideDeleted {
23239
+ readonly discriminator: 'merchant_override_deleted';
23240
+ readonly event_id: string;
23241
+ readonly timestamp: string;
23242
+ readonly id: string;
23243
+ }
23244
+
23245
+ interface MerchantOverrideUpserted {
23246
+ readonly discriminator: 'merchant_override_upserted';
23247
+ readonly event_id: string;
23248
+ readonly timestamp: string;
23249
+ readonly merchant_override: io.flow.internal.v0.models.MerchantOverride;
23250
+ }
23251
+
23006
23252
  interface MerchantSearchResult {
23007
23253
  readonly organization_id: string;
23008
23254
  readonly shop_name?: string;
@@ -23034,6 +23280,10 @@ declare namespace io.flow.internal.v0.models {
23034
23280
  readonly freight: number;
23035
23281
  readonly total: number;
23036
23282
  readonly tax_refund?: number;
23283
+ readonly tax_reversal?: number;
23284
+ readonly duty_reversal?: number;
23285
+ readonly tax_reversal_for_lvg_order?: boolean;
23286
+ readonly duty_reversal_for_lvg_order?: boolean;
23037
23287
  }
23038
23288
 
23039
23289
  interface MerchantUpserted {
@@ -23105,6 +23355,12 @@ declare namespace io.flow.internal.v0.models {
23105
23355
  readonly account: io.flow.internal.v0.models.ReportAccount;
23106
23356
  }
23107
23357
 
23358
+ interface NonL4LTaxDutyFxFeeMetadata {
23359
+ readonly discriminator: 'non_l4l_tax_duty_fx_fee_metadata';
23360
+ readonly tax?: io.flow.internal.v0.models.TransactionReference;
23361
+ readonly duty?: io.flow.internal.v0.models.TransactionReference;
23362
+ }
23363
+
23108
23364
  interface NonL4LTaxDutyFxTransaction {
23109
23365
  readonly discriminator: 'non_l4l_tax_duty_fx_transaction';
23110
23366
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -23141,15 +23397,6 @@ declare namespace io.flow.internal.v0.models {
23141
23397
  readonly execution_time_ms?: number;
23142
23398
  }
23143
23399
 
23144
- interface OnboardingAuditSnapshot {
23145
- readonly id: string;
23146
- readonly organization: io.flow.common.v0.models.Organization;
23147
- readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
23148
- readonly theme_reports: io.flow.internal.v0.models.OnboardingAuditThemeReport[];
23149
- readonly requested_by: io.flow.common.v0.models.User;
23150
- readonly requested_at: string;
23151
- }
23152
-
23153
23400
  interface OnboardingAuditThemeReport {
23154
23401
  readonly name: string;
23155
23402
  readonly key: io.flow.internal.v0.enums.OnboardingAuditThemeKey;
@@ -23366,6 +23613,29 @@ declare namespace io.flow.internal.v0.models {
23366
23613
  readonly number: string;
23367
23614
  }
23368
23615
 
23616
+ interface OrderRefundTransaction {
23617
+ readonly id: string;
23618
+ readonly organization_id: string;
23619
+ readonly order_number: string;
23620
+ readonly price: io.flow.common.v0.models.PriceWithBase;
23621
+ }
23622
+
23623
+ interface OrderRefundTransactionDeleted {
23624
+ readonly discriminator: 'order_refund_transaction_deleted';
23625
+ readonly event_id: string;
23626
+ readonly timestamp: string;
23627
+ readonly organization: string;
23628
+ readonly id: string;
23629
+ }
23630
+
23631
+ interface OrderRefundTransactionUpserted {
23632
+ readonly discriminator: 'order_refund_transaction_upserted';
23633
+ readonly event_id: string;
23634
+ readonly timestamp: string;
23635
+ readonly organization: string;
23636
+ readonly transaction: io.flow.internal.v0.models.OrderRefundTransaction;
23637
+ }
23638
+
23369
23639
  interface OrderRevenueRegionChart {
23370
23640
  readonly total: io.flow.common.v0.models.Price;
23371
23641
  readonly period: io.flow.common.v0.models.DatetimeRange;
@@ -23736,6 +24006,7 @@ declare namespace io.flow.internal.v0.models {
23736
24006
  readonly pending_classification_count?: number;
23737
24007
  readonly oldest_pending_restriction_date?: string;
23738
24008
  readonly oldest_pending_verification_date?: string;
24009
+ readonly oldest_pending_classification_date?: string;
23739
24010
  readonly product_count: number;
23740
24011
  readonly restricted_product_count: number;
23741
24012
  readonly last_order_submitted_at?: string;
@@ -24279,6 +24550,11 @@ declare namespace io.flow.internal.v0.models {
24279
24550
  readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
24280
24551
  }
24281
24552
 
24553
+ interface PaymentRequestAuthorization {
24554
+ readonly payment_request_id: string;
24555
+ readonly authorization_id: string;
24556
+ }
24557
+
24282
24558
  interface PaymentShortUrl {
24283
24559
  readonly id: string;
24284
24560
  readonly key: string;
@@ -24877,6 +25153,7 @@ declare namespace io.flow.internal.v0.models {
24877
25153
  readonly pending_classification_count?: number;
24878
25154
  readonly oldest_pending_restriction_date?: string;
24879
25155
  readonly oldest_pending_verification_date?: string;
25156
+ readonly oldest_pending_classification_date?: string;
24880
25157
  }
24881
25158
 
24882
25159
  interface ProductRestrictionStateDeleted {
@@ -24939,6 +25216,7 @@ declare namespace io.flow.internal.v0.models {
24939
25216
  readonly restricted_regions?: string[];
24940
25217
  readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
24941
25218
  readonly rule_ids?: string[];
25219
+ readonly taxonomy_category?: string;
24942
25220
  }
24943
25221
 
24944
25222
  interface ProductTransaction {
@@ -25593,6 +25871,12 @@ declare namespace io.flow.internal.v0.models {
25593
25871
  readonly refund_records?: any /*object*/[];
25594
25872
  }
25595
25873
 
25874
+ interface ReportingFees {
25875
+ readonly mor: io.flow.internal.v0.models.ReportingMonetaryValue;
25876
+ readonly fx: io.flow.internal.v0.models.ReportingMonetaryValue;
25877
+ readonly sp: io.flow.internal.v0.models.ReportingMonetaryValue;
25878
+ }
25879
+
25596
25880
  interface ReportingFulfillment {
25597
25881
  readonly id: string;
25598
25882
  readonly sequence_number: number;
@@ -25677,6 +25961,10 @@ declare namespace io.flow.internal.v0.models {
25677
25961
  readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
25678
25962
  readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
25679
25963
  readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
25964
+ readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
25965
+ readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
25966
+ readonly tax_reversal_for_lvg_order?: boolean;
25967
+ readonly duty_reversal_for_lvg_order?: boolean;
25680
25968
  }
25681
25969
 
25682
25970
  interface ReportingMonetaryValue {
@@ -25693,6 +25981,7 @@ declare namespace io.flow.internal.v0.models {
25693
25981
  readonly number: string;
25694
25982
  readonly submitted_at: string;
25695
25983
  readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
25984
+ readonly is_edited?: boolean;
25696
25985
  }
25697
25986
 
25698
25987
  interface ReportingOrganizationSummary {
@@ -25769,6 +26058,26 @@ declare namespace io.flow.internal.v0.models {
25769
26058
  readonly placeholder?: boolean;
25770
26059
  }
25771
26060
 
26061
+ interface RestrictionAttributeConditionMultiple {
26062
+ readonly discriminator: 'multiple';
26063
+ readonly attribute: string;
26064
+ readonly operator: io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
26065
+ readonly values: string[];
26066
+ }
26067
+
26068
+ interface RestrictionAttributeConditionSingle {
26069
+ readonly discriminator: 'single';
26070
+ readonly attribute: string;
26071
+ readonly operator: io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
26072
+ readonly value: string;
26073
+ }
26074
+
26075
+ interface RestrictionAttributeRule {
26076
+ readonly conditions: io.flow.internal.v0.unions.RestrictionAttributeRuleCondition[];
26077
+ readonly operator?: io.flow.internal.v0.enums.RestrictionAttributeOperator;
26078
+ readonly result: io.flow.internal.v0.enums.RestrictionAttributeResult;
26079
+ }
26080
+
25772
26081
  interface RestrictionBlanketOrganizationExemption {
25773
26082
  readonly id: string;
25774
26083
  readonly organization_id: string;
@@ -25812,6 +26121,7 @@ declare namespace io.flow.internal.v0.models {
25812
26121
  readonly price: io.flow.common.v0.models.Price;
25813
26122
  readonly hs_code?: string;
25814
26123
  readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
26124
+ readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
25815
26125
  readonly description: string;
25816
26126
  readonly category?: string;
25817
26127
  readonly categories: string[];
@@ -25828,6 +26138,7 @@ declare namespace io.flow.internal.v0.models {
25828
26138
  readonly statuses?: io.flow.internal.v0.enums.RestrictionStatus[];
25829
26139
  readonly rule_ids?: string[];
25830
26140
  readonly user_ids?: string[];
26141
+ readonly exclude_items_with_pc?: boolean;
25831
26142
  readonly category?: string;
25832
26143
  readonly product_name_query?: string;
25833
26144
  readonly hs6?: string;
@@ -25938,6 +26249,7 @@ declare namespace io.flow.internal.v0.models {
25938
26249
  readonly thumbnails: io.flow.catalog.v0.models.Image[];
25939
26250
  readonly hs_code?: string;
25940
26251
  readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
26252
+ readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
25941
26253
  readonly url?: string;
25942
26254
  readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
25943
26255
  readonly created_at: string;
@@ -25982,6 +26294,10 @@ declare namespace io.flow.internal.v0.models {
25982
26294
  readonly sellability_positive_keywords?: string[];
25983
26295
  readonly community_exemption: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
25984
26296
  readonly reason_code: string;
26297
+ readonly attribute_names?: string[];
26298
+ readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
26299
+ readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
26300
+ readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
25985
26301
  }
25986
26302
 
25987
26303
  interface RestrictionRuleDecisionForm {
@@ -26039,6 +26355,10 @@ declare namespace io.flow.internal.v0.models {
26039
26355
  readonly sellability_positive_keywords?: string[];
26040
26356
  readonly community_exemption: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
26041
26357
  readonly reason_code: string;
26358
+ readonly attribute_names?: string[];
26359
+ readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
26360
+ readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
26361
+ readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
26042
26362
  }
26043
26363
 
26044
26364
  interface RestrictionRuleLaneExemption {
@@ -26059,6 +26379,7 @@ declare namespace io.flow.internal.v0.models {
26059
26379
  readonly ignored_keywords?: string[];
26060
26380
  readonly additional_keywords?: string[];
26061
26381
  readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
26382
+ readonly is_rule_active?: boolean;
26062
26383
  }
26063
26384
 
26064
26385
  interface RestrictionRuleOverride {
@@ -26224,6 +26545,11 @@ declare namespace io.flow.internal.v0.models {
26224
26545
  readonly refund: io.flow.payment.v0.models.RefundReference;
26225
26546
  }
26226
26547
 
26548
+ interface ReturnTriggerReversal {
26549
+ readonly discriminator: 'by_reversal';
26550
+ readonly reversal: io.flow.internal.v0.models.TransactionReference;
26551
+ }
26552
+
26227
26553
  interface RevenueRecord {
26228
26554
  readonly id: string;
26229
26555
  readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
@@ -26295,10 +26621,12 @@ declare namespace io.flow.internal.v0.models {
26295
26621
  interface SalesPaymentRecord {
26296
26622
  readonly id: string;
26297
26623
  readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
26624
+ readonly vendor?: io.flow.internal.v0.models.ReportingVendor;
26298
26625
  readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
26299
26626
  readonly order_total: io.flow.internal.v0.models.ReportingMonetaryValue;
26300
26627
  readonly shopper_breakdown: io.flow.internal.v0.models.ShopperBreakdown;
26301
26628
  readonly payment: io.flow.internal.v0.models.ReportingPayment;
26629
+ readonly fees: io.flow.internal.v0.models.ReportingFees;
26302
26630
  readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
26303
26631
  readonly payment_is: io.flow.internal.v0.models.PaymentIs;
26304
26632
  readonly destination_country: string;
@@ -26425,6 +26753,17 @@ declare namespace io.flow.internal.v0.models {
26425
26753
  readonly label: io.flow.internal.v0.models.LabelSummary;
26426
26754
  }
26427
26755
 
26756
+ interface SellabilityCheckResult {
26757
+ readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
26758
+ readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
26759
+ readonly current_rule_ids?: string[];
26760
+ readonly current_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
26761
+ readonly merchant_rule_ids?: string[];
26762
+ readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
26763
+ readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
26764
+ readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
26765
+ }
26766
+
26428
26767
  interface SessionOrderData {
26429
26768
  readonly id: string;
26430
26769
  readonly session: io.flow.common.v0.models.SessionReference;
@@ -26746,6 +27085,7 @@ declare namespace io.flow.internal.v0.models {
26746
27085
  readonly api_password_masked?: string;
26747
27086
  readonly access_token_masked?: string;
26748
27087
  readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
27088
+ readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
26749
27089
  }
26750
27090
 
26751
27091
  interface ShopifyMarketsShopDeleted {
@@ -26902,12 +27242,6 @@ declare namespace io.flow.internal.v0.models {
26902
27242
  readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
26903
27243
  }
26904
27244
 
26905
- interface ShopifyMonitoringOrderMonitorReview {
26906
- readonly id: string;
26907
- readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
26908
- readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
26909
- }
26910
-
26911
27245
  interface ShopifyMonitoringTrackingNumber {
26912
27246
  readonly number: string;
26913
27247
  }
@@ -27073,6 +27407,50 @@ declare namespace io.flow.internal.v0.models {
27073
27407
  readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
27074
27408
  }
27075
27409
 
27410
+ interface ShopifyProductTaxonomyAttribute {
27411
+ readonly id: string;
27412
+ readonly handle: string;
27413
+ readonly name: string;
27414
+ readonly friendly_id: string;
27415
+ readonly description?: string;
27416
+ }
27417
+
27418
+ interface ShopifyProductTaxonomyAttributeDeleted {
27419
+ readonly discriminator: 'shopify_product_taxonomy_attribute_deleted';
27420
+ readonly event_id: string;
27421
+ readonly timestamp: string;
27422
+ readonly id: string;
27423
+ }
27424
+
27425
+ interface ShopifyProductTaxonomyAttributeUpserted {
27426
+ readonly discriminator: 'shopify_product_taxonomy_attribute_upserted';
27427
+ readonly event_id: string;
27428
+ readonly timestamp: string;
27429
+ readonly shopify_product_taxonomy_attribute: io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
27430
+ }
27431
+
27432
+ interface ShopifyProductTaxonomyAttributeValue {
27433
+ readonly id: string;
27434
+ readonly attribute_id: string;
27435
+ readonly handle: string;
27436
+ readonly name: string;
27437
+ readonly friendly_id: string;
27438
+ }
27439
+
27440
+ interface ShopifyProductTaxonomyAttributeValueDeleted {
27441
+ readonly discriminator: 'shopify_product_taxonomy_attribute_value_deleted';
27442
+ readonly event_id: string;
27443
+ readonly timestamp: string;
27444
+ readonly id: string;
27445
+ }
27446
+
27447
+ interface ShopifyProductTaxonomyAttributeValueUpserted {
27448
+ readonly discriminator: 'shopify_product_taxonomy_attribute_value_upserted';
27449
+ readonly event_id: string;
27450
+ readonly timestamp: string;
27451
+ readonly shopify_product_taxonomy_attribute_value: io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
27452
+ }
27453
+
27076
27454
  interface ShopifyProductUpdateDeleted {
27077
27455
  readonly discriminator: 'shopify_product_update_deleted';
27078
27456
  readonly event_id: string;
@@ -27135,6 +27513,24 @@ declare namespace io.flow.internal.v0.models {
27135
27513
  readonly request?: any /*object*/;
27136
27514
  }
27137
27515
 
27516
+ interface ShopifyTaxonomyAlignmentConfig {
27517
+ readonly id: string;
27518
+ readonly taxonomy_category: string;
27519
+ readonly allowable_hs_prefixes: string[];
27520
+ readonly default_hs6_code?: string;
27521
+ readonly auto_correct: boolean;
27522
+ readonly created_at: string;
27523
+ readonly updated_at: string;
27524
+ readonly updated_by_user_id: string;
27525
+ }
27526
+
27527
+ interface ShopifyTaxonomyAlignmentConfigForm {
27528
+ readonly taxonomy_category: string;
27529
+ readonly allowable_hs_prefixes: string[];
27530
+ readonly default_hs6_code?: string;
27531
+ readonly auto_correct: boolean;
27532
+ }
27533
+
27138
27534
  interface ShopperBreakdown {
27139
27535
  readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
27140
27536
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
@@ -27678,11 +28074,6 @@ declare namespace io.flow.internal.v0.models {
27678
28074
  readonly reversal: io.flow.internal.v0.models.StripeInternalReversal;
27679
28075
  }
27680
28076
 
27681
- interface SubcatalogItemCount {
27682
- readonly key: string;
27683
- readonly count: number;
27684
- }
27685
-
27686
28077
  interface SubmittedOrderUpserted {
27687
28078
  readonly discriminator: 'submitted_order_upserted';
27688
28079
  readonly event_id: string;
@@ -27743,11 +28134,6 @@ declare namespace io.flow.internal.v0.models {
27743
28134
  readonly snooze_id?: string;
27744
28135
  }
27745
28136
 
27746
- interface TaskCount {
27747
- readonly discriminator: string;
27748
- readonly count: number;
27749
- }
27750
-
27751
28137
  interface TaskImport {
27752
28138
  readonly discriminator: 'task_import';
27753
28139
  readonly import_id: string;
@@ -27884,6 +28270,13 @@ declare namespace io.flow.internal.v0.models {
27884
28270
  readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
27885
28271
  }
27886
28272
 
28273
+ interface TaxonomyAlignmentCheckResult {
28274
+ readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
28275
+ readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
28276
+ readonly merchant_taxonomy_status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
28277
+ readonly current_taxonomy_status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
28278
+ }
28279
+
27887
28280
  interface TaxonomyCategory {
27888
28281
  readonly discriminator: 'category';
27889
28282
  readonly name: string;
@@ -28533,6 +28926,7 @@ declare namespace io.flow.internal.v0.models {
28533
28926
  readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
28534
28927
  readonly direction?: io.flow.label.v0.enums.Direction;
28535
28928
  readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
28929
+ readonly shipping_date_time?: string;
28536
28930
  }
28537
28931
 
28538
28932
  interface ViesResult {
@@ -28610,6 +29004,10 @@ declare namespace io.flow.internal.v0.unions {
28610
29004
  | io.flow.internal.v0.models.Ups
28611
29005
  | io.flow.internal.v0.models.Fedex
28612
29006
  | io.flow.internal.v0.models.FedexApi;
29007
+ type CarrierDocumentContent =
29008
+ io.flow.internal.v0.models.Base64CarrierDocumentContent;
29009
+ type CarrierLabelAttributes =
29010
+ io.flow.internal.v0.models.FedexCarrierLabelAttributes;
28613
29011
  type ChannelRateMetadata =
28614
29012
  | io.flow.internal.v0.models.ChannelRateMetadataIdentity
28615
29013
  | io.flow.internal.v0.models.ChannelRateMetadataRate;
@@ -28841,6 +29239,8 @@ declare namespace io.flow.internal.v0.unions {
28841
29239
  | io.flow.internal.v0.models.RateFreshnessSummaryDeleted
28842
29240
  | io.flow.internal.v0.models.ItemHarmonizationUpserted
28843
29241
  | io.flow.internal.v0.models.ItemHarmonizationDeleted
29242
+ | io.flow.internal.v0.models.MerchantOverrideUpserted
29243
+ | io.flow.internal.v0.models.MerchantOverrideDeleted
28844
29244
  | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
28845
29245
  | io.flow.internal.v0.models.ItemFormImportRequest
28846
29246
  | io.flow.internal.v0.models.LabelRequestErrorUpserted
@@ -28898,6 +29298,8 @@ declare namespace io.flow.internal.v0.unions {
28898
29298
  | io.flow.internal.v0.models.AuthorizationBundleDeleted
28899
29299
  | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted
28900
29300
  | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted
29301
+ | io.flow.internal.v0.models.OrderRefundTransactionUpserted
29302
+ | io.flow.internal.v0.models.OrderRefundTransactionDeleted
28901
29303
  | io.flow.internal.v0.models.PaypalPaymentDeleted
28902
29304
  | io.flow.internal.v0.models.PaypalPaymentUpserted
28903
29305
  | io.flow.internal.v0.models.PaypalExecutionDeleted
@@ -28949,6 +29351,10 @@ declare namespace io.flow.internal.v0.unions {
28949
29351
  | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted
28950
29352
  | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted
28951
29353
  | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted
29354
+ | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted
29355
+ | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted
29356
+ | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted
29357
+ | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted
28952
29358
  | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted
28953
29359
  | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted
28954
29360
  | io.flow.internal.v0.models.ChannelOrderSummaryUpserted
@@ -29152,7 +29558,12 @@ declare namespace io.flow.internal.v0.unions {
29152
29558
  | io.flow.internal.v0.models.ProofOfPostingOrderCancellation
29153
29559
  | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment
29154
29560
  | io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
29155
- type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund;
29561
+ type RestrictionAttributeRuleCondition =
29562
+ | io.flow.internal.v0.models.RestrictionAttributeConditionSingle
29563
+ | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
29564
+ type ReturnTrigger =
29565
+ | io.flow.internal.v0.models.ReturnTriggerRefund
29566
+ | io.flow.internal.v0.models.ReturnTriggerReversal;
29156
29567
  type RoutingEntity =
29157
29568
  | io.flow.internal.v0.models.RoutingProcessor
29158
29569
  | io.flow.internal.v0.models.RoutingAccount
@@ -29181,7 +29592,9 @@ declare namespace io.flow.internal.v0.unions {
29181
29592
  type TaskMetadata =
29182
29593
  | io.flow.internal.v0.models.StatementCreationMetadata
29183
29594
  | io.flow.internal.v0.models.AccountingPendingOrderMetadata
29184
- | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
29595
+ | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata
29596
+ | io.flow.internal.v0.models.AccountingReturnMetadata
29597
+ | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
29185
29598
  type TaxAmount =
29186
29599
  | io.flow.internal.v0.models.CalculatedTaxAmount
29187
29600
  | io.flow.internal.v0.models.NoCalculatedTaxAmount;
@@ -29266,6 +29679,8 @@ export type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
29266
29679
  export type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
29267
29680
  export type AccountingPendingOrderMetadata =
29268
29681
  io.flow.internal.v0.models.AccountingPendingOrderMetadata;
29682
+ export type AccountingReturnMetadata =
29683
+ io.flow.internal.v0.models.AccountingReturnMetadata;
29269
29684
  export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
29270
29685
  export type AdditionalImportTax =
29271
29686
  io.flow.internal.v0.models.AdditionalImportTax;
@@ -29373,20 +29788,15 @@ export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
29373
29788
  export type AldoItem = io.flow.internal.v0.models.AldoItem;
29374
29789
  export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
29375
29790
  export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
29376
- export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
29377
- export type AlertFailureSummary =
29378
- io.flow.internal.v0.models.AlertFailureSummary;
29379
- export type AlertFailureSummaryDetail =
29380
- io.flow.internal.v0.models.AlertFailureSummaryDetail;
29381
- export type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
29382
- export type AlertRequeueSummary =
29383
- io.flow.internal.v0.models.AlertRequeueSummary;
29384
29791
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
29385
29792
  export type AllOrganizationsMembership =
29386
29793
  io.flow.internal.v0.models.AllOrganizationsMembership;
29387
29794
  export type AllocationItemReference =
29388
29795
  io.flow.internal.v0.models.AllocationItemReference;
29389
29796
  export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
29797
+ export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
29798
+ export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
29799
+ export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
29390
29800
  export type AnshItem = io.flow.internal.v0.models.AnshItem;
29391
29801
  export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
29392
29802
  export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
@@ -29399,6 +29809,7 @@ export type ApplicablePreferentialRate =
29399
29809
  export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
29400
29810
  export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
29401
29811
  export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
29812
+ export type AttributeRule = io.flow.internal.v0.models.AttributeRule;
29402
29813
  export type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
29403
29814
  export type AuthorizationBundle =
29404
29815
  io.flow.internal.v0.models.AuthorizationBundle;
@@ -29462,6 +29873,8 @@ export type BankPaymentUpserted =
29462
29873
  io.flow.internal.v0.models.BankPaymentUpserted;
29463
29874
  export type BankPaymentUpsertedV2 =
29464
29875
  io.flow.internal.v0.models.BankPaymentUpsertedV2;
29876
+ export type Base64CarrierDocumentContent =
29877
+ io.flow.internal.v0.models.Base64CarrierDocumentContent;
29465
29878
  export type BillingAllocationKey =
29466
29879
  io.flow.internal.v0.enums.BillingAllocationKey;
29467
29880
  export type BillingAuthorizationReference =
@@ -29591,11 +30004,17 @@ export type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
29591
30004
  export type CarrierChargeUpserted =
29592
30005
  io.flow.internal.v0.models.CarrierChargeUpserted;
29593
30006
  export type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
30007
+ export type CarrierDocument = io.flow.internal.v0.models.CarrierDocument;
30008
+ export type CarrierDocumentContent =
30009
+ io.flow.internal.v0.unions.CarrierDocumentContent;
30010
+ export type CarrierDocumentType = io.flow.internal.v0.enums.CarrierDocumentType;
29594
30011
  export type CarrierFile = io.flow.internal.v0.models.CarrierFile;
29595
30012
  export type CarrierFileForm = io.flow.internal.v0.models.CarrierFileForm;
29596
30013
  export type CarrierFileResult = io.flow.internal.v0.models.CarrierFileResult;
29597
30014
  export type CarrierFileType = io.flow.internal.v0.enums.CarrierFileType;
29598
30015
  export type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
30016
+ export type CarrierLabelAttributes =
30017
+ io.flow.internal.v0.unions.CarrierLabelAttributes;
29599
30018
  export type CarrierLabelGenerationMethod =
29600
30019
  io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
29601
30020
  export type CarrierTaxForm = io.flow.internal.v0.models.CarrierTaxForm;
@@ -29722,6 +30141,14 @@ export type ChannelOrganizationIdentifierDeleted =
29722
30141
  io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
29723
30142
  export type ChannelOrganizationIdentifierUpserted =
29724
30143
  io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
30144
+ export type ChannelOrganizationPublicationOwner =
30145
+ io.flow.internal.v0.models.ChannelOrganizationPublicationOwner;
30146
+ export type ChannelOrganizationPublicationOwnerPutForm =
30147
+ io.flow.internal.v0.models.ChannelOrganizationPublicationOwnerPutForm;
30148
+ export type ChannelOrganizationSellabilityStatus =
30149
+ io.flow.internal.v0.models.ChannelOrganizationSellabilityStatus;
30150
+ export type ChannelOrganizationSellabilityStatusPutForm =
30151
+ io.flow.internal.v0.models.ChannelOrganizationSellabilityStatusPutForm;
29725
30152
  export type ChannelOrganizationShopify =
29726
30153
  io.flow.internal.v0.models.ChannelOrganizationShopify;
29727
30154
  export type ChannelOrganizationShopifyForm =
@@ -29743,6 +30170,8 @@ export type ChannelTransactionType =
29743
30170
  io.flow.internal.v0.enums.ChannelTransactionType;
29744
30171
  export type ChannelTransactionUpserted =
29745
30172
  io.flow.internal.v0.models.ChannelTransactionUpserted;
30173
+ export type ChapterCheckResult = io.flow.internal.v0.models.ChapterCheckResult;
30174
+ export type ChapterCheckStatus = io.flow.internal.v0.enums.ChapterCheckStatus;
29746
30175
  export type ChargeEstimateSource =
29747
30176
  io.flow.internal.v0.enums.ChargeEstimateSource;
29748
30177
  export type ChargeInput = io.flow.internal.v0.models.ChargeInput;
@@ -29981,6 +30410,8 @@ export type DeliveredDutyPreferenceForm =
29981
30410
  io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
29982
30411
  export type DeminimisAdjustmentType =
29983
30412
  io.flow.internal.v0.enums.DeminimisAdjustmentType;
30413
+ export type DestinationDutyComparison =
30414
+ io.flow.internal.v0.models.DestinationDutyComparison;
29984
30415
  export type DestinationError = io.flow.internal.v0.models.DestinationError;
29985
30416
  export type Dhl = io.flow.internal.v0.models.Dhl;
29986
30417
  export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
@@ -30074,6 +30505,8 @@ export type DutyTransactionDeleted =
30074
30505
  export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
30075
30506
  export type DutyTransactionUpserted =
30076
30507
  io.flow.internal.v0.models.DutyTransactionUpserted;
30508
+ export type DutyVarianceResult = io.flow.internal.v0.models.DutyVarianceResult;
30509
+ export type DutyVarianceStatus = io.flow.internal.v0.enums.DutyVarianceStatus;
30077
30510
  export type EmailForm = io.flow.internal.v0.models.EmailForm;
30078
30511
  export type EmailModificationForm =
30079
30512
  io.flow.internal.v0.models.EmailModificationForm;
@@ -30106,6 +30539,8 @@ export type ErpVendorStatusFlowFile =
30106
30539
  io.flow.internal.v0.models.ErpVendorStatusFlowFile;
30107
30540
  export type ErpVendorStatusPriorityFile =
30108
30541
  io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
30542
+ export type EvaluationCheckResult =
30543
+ io.flow.internal.v0.enums.EvaluationCheckResult;
30109
30544
  export type EvaluationResults = io.flow.internal.v0.models.EvaluationResults;
30110
30545
  export type Event = io.flow.internal.v0.unions.Event;
30111
30546
  export type EventType = io.flow.internal.v0.enums.EventType;
@@ -30156,6 +30591,10 @@ export type ExternalFulfillmentProofTracking =
30156
30591
  io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
30157
30592
  export type ExternalFulfillmentProofTrackingForm =
30158
30593
  io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
30594
+ export type ExternalRatecardLink =
30595
+ io.flow.internal.v0.models.ExternalRatecardLink;
30596
+ export type ExternalRatecardLinkResponse =
30597
+ io.flow.internal.v0.models.ExternalRatecardLinkResponse;
30159
30598
  export type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
30160
30599
  export type FailedDimensionEstimateOpsInputWithReason =
30161
30600
  io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason;
@@ -30186,10 +30625,13 @@ export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
30186
30625
  export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
30187
30626
  export type Fedex = io.flow.internal.v0.models.Fedex;
30188
30627
  export type FedexApi = io.flow.internal.v0.models.FedexApi;
30628
+ export type FedexCarrierLabelAttributes =
30629
+ io.flow.internal.v0.models.FedexCarrierLabelAttributes;
30189
30630
  export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
30190
30631
  export type Fee = io.flow.internal.v0.models.Fee;
30191
30632
  export type Fees = io.flow.internal.v0.models.Fees;
30192
30633
  export type FeesSource = io.flow.internal.v0.enums.FeesSource;
30634
+ export type FileType = io.flow.internal.v0.enums.FileType;
30193
30635
  export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
30194
30636
  export type FinanceBankAccountOwner =
30195
30637
  io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -30532,6 +30974,7 @@ export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
30532
30974
  export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
30533
30975
  export type Key = io.flow.internal.v0.models.Key;
30534
30976
  export type KeyReference = io.flow.internal.v0.models.KeyReference;
30977
+ export type KeywordCancelling = io.flow.internal.v0.models.KeywordCancelling;
30535
30978
  export type KeywordType = io.flow.internal.v0.enums.KeywordType;
30536
30979
  export type KlarnaAuthorizationParameters =
30537
30980
  io.flow.internal.v0.models.KlarnaAuthorizationParameters;
@@ -30712,8 +31155,12 @@ export type MerchantOfRecordEntitySettingsForm =
30712
31155
  export type MerchantOverride = io.flow.internal.v0.models.MerchantOverride;
30713
31156
  export type MerchantOverrideDecisionForm =
30714
31157
  io.flow.internal.v0.models.MerchantOverrideDecisionForm;
31158
+ export type MerchantOverrideDeleted =
31159
+ io.flow.internal.v0.models.MerchantOverrideDeleted;
30715
31160
  export type MerchantOverrideStatus =
30716
31161
  io.flow.internal.v0.enums.MerchantOverrideStatus;
31162
+ export type MerchantOverrideUpserted =
31163
+ io.flow.internal.v0.models.MerchantOverrideUpserted;
30717
31164
  export type MerchantSearchResult =
30718
31165
  io.flow.internal.v0.models.MerchantSearchResult;
30719
31166
  export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
@@ -30742,6 +31189,8 @@ export type NoLiabilityReasonCode =
30742
31189
  io.flow.internal.v0.enums.NoLiabilityReasonCode;
30743
31190
  export type NonChannelPaymentBankAccount =
30744
31191
  io.flow.internal.v0.models.NonChannelPaymentBankAccount;
31192
+ export type NonL4LTaxDutyFxFeeMetadata =
31193
+ io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
30745
31194
  export type NonL4LTaxDutyFxTransaction =
30746
31195
  io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
30747
31196
  export type NonL4LTaxDutyFxTransactionType =
@@ -30757,8 +31206,6 @@ export type OnboardingAuditReportLine =
30757
31206
  io.flow.internal.v0.models.OnboardingAuditReportLine;
30758
31207
  export type OnboardingAuditResult =
30759
31208
  io.flow.internal.v0.enums.OnboardingAuditResult;
30760
- export type OnboardingAuditSnapshot =
30761
- io.flow.internal.v0.models.OnboardingAuditSnapshot;
30762
31209
  export type OnboardingAuditThemeKey =
30763
31210
  io.flow.internal.v0.enums.OnboardingAuditThemeKey;
30764
31211
  export type OnboardingAuditThemeReport =
@@ -30830,6 +31277,12 @@ export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
30830
31277
  export type OrderRatesPublishedV3 =
30831
31278
  io.flow.internal.v0.models.OrderRatesPublishedV3;
30832
31279
  export type OrderReference = io.flow.internal.v0.models.OrderReference;
31280
+ export type OrderRefundTransaction =
31281
+ io.flow.internal.v0.models.OrderRefundTransaction;
31282
+ export type OrderRefundTransactionDeleted =
31283
+ io.flow.internal.v0.models.OrderRefundTransactionDeleted;
31284
+ export type OrderRefundTransactionUpserted =
31285
+ io.flow.internal.v0.models.OrderRefundTransactionUpserted;
30833
31286
  export type OrderRevenueRegionChart =
30834
31287
  io.flow.internal.v0.models.OrderRevenueRegionChart;
30835
31288
  export type OrderRevenueRegionDataPoint =
@@ -31079,6 +31532,8 @@ export type PaymentProcessorMerchantDeleted =
31079
31532
  export type PaymentProcessorMerchantUpserted =
31080
31533
  io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
31081
31534
  export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
31535
+ export type PaymentRequestAuthorization =
31536
+ io.flow.internal.v0.models.PaymentRequestAuthorization;
31082
31537
  export type PaymentShortUrl = io.flow.internal.v0.models.PaymentShortUrl;
31083
31538
  export type PaymentShortUrlDiscriminator =
31084
31539
  io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
@@ -31404,6 +31859,7 @@ export type ReportingDebugMissingSubsidies =
31404
31859
  export type ReportingDestination =
31405
31860
  io.flow.internal.v0.models.ReportingDestination;
31406
31861
  export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
31862
+ export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
31407
31863
  export type ReportingFulfillment =
31408
31864
  io.flow.internal.v0.models.ReportingFulfillment;
31409
31865
  export type ReportingFulfillmentHas =
@@ -31448,6 +31904,22 @@ export type RescreenRestrictionsProducts =
31448
31904
  io.flow.internal.v0.models.RescreenRestrictionsProducts;
31449
31905
  export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
31450
31906
  export type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
31907
+ export type RestrictionAttributeConditionMultiple =
31908
+ io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
31909
+ export type RestrictionAttributeConditionMultipleOperator =
31910
+ io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
31911
+ export type RestrictionAttributeConditionSingle =
31912
+ io.flow.internal.v0.models.RestrictionAttributeConditionSingle;
31913
+ export type RestrictionAttributeConditionSingleOperator =
31914
+ io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
31915
+ export type RestrictionAttributeOperator =
31916
+ io.flow.internal.v0.enums.RestrictionAttributeOperator;
31917
+ export type RestrictionAttributeResult =
31918
+ io.flow.internal.v0.enums.RestrictionAttributeResult;
31919
+ export type RestrictionAttributeRule =
31920
+ io.flow.internal.v0.models.RestrictionAttributeRule;
31921
+ export type RestrictionAttributeRuleCondition =
31922
+ io.flow.internal.v0.unions.RestrictionAttributeRuleCondition;
31451
31923
  export type RestrictionBlanketOrganizationExemption =
31452
31924
  io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption;
31453
31925
  export type RestrictionCategory =
@@ -31491,6 +31963,8 @@ export type RestrictionProductRequestForm =
31491
31963
  export type RestrictionProductSummary =
31492
31964
  io.flow.internal.v0.models.RestrictionProductSummary;
31493
31965
  export type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
31966
+ export type RestrictionRuleActivationStatus =
31967
+ io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
31494
31968
  export type RestrictionRuleCommunityExemption =
31495
31969
  io.flow.internal.v0.enums.RestrictionRuleCommunityExemption;
31496
31970
  export type RestrictionRuleDecisionForm =
@@ -31550,6 +32024,8 @@ export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
31550
32024
  export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
31551
32025
  export type ReturnTriggerRefund =
31552
32026
  io.flow.internal.v0.models.ReturnTriggerRefund;
32027
+ export type ReturnTriggerReversal =
32028
+ io.flow.internal.v0.models.ReturnTriggerReversal;
31553
32029
  export type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
31554
32030
  export type RevenueRecordDeleted =
31555
32031
  io.flow.internal.v0.models.RevenueRecordDeleted;
@@ -31592,6 +32068,11 @@ export type SearchProviderExport =
31592
32068
  io.flow.internal.v0.models.SearchProviderExport;
31593
32069
  export type SearchTrackingSummary =
31594
32070
  io.flow.internal.v0.models.SearchTrackingSummary;
32071
+ export type SellabilityCheckResult =
32072
+ io.flow.internal.v0.models.SellabilityCheckResult;
32073
+ export type SellabilityCheckStatus =
32074
+ io.flow.internal.v0.enums.SellabilityCheckStatus;
32075
+ export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
31595
32076
  export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
31596
32077
  export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
31597
32078
  export type SfExpress = io.flow.internal.v0.models.SfExpress;
@@ -31727,8 +32208,6 @@ export type ShopifyMonitoringOrderMonitorEventDeleted =
31727
32208
  io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
31728
32209
  export type ShopifyMonitoringOrderMonitorEventUpserted =
31729
32210
  io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
31730
- export type ShopifyMonitoringOrderMonitorReview =
31731
- io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
31732
32211
  export type ShopifyMonitoringOrderMonitorType =
31733
32212
  io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
31734
32213
  export type ShopifyMonitoringTrackingField =
@@ -31786,6 +32265,18 @@ export type ShopifyProductDeleteUpserted =
31786
32265
  io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
31787
32266
  export type ShopifyProductDeleteWebhookEvent =
31788
32267
  io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
32268
+ export type ShopifyProductTaxonomyAttribute =
32269
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
32270
+ export type ShopifyProductTaxonomyAttributeDeleted =
32271
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted;
32272
+ export type ShopifyProductTaxonomyAttributeUpserted =
32273
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted;
32274
+ export type ShopifyProductTaxonomyAttributeValue =
32275
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
32276
+ export type ShopifyProductTaxonomyAttributeValueDeleted =
32277
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted;
32278
+ export type ShopifyProductTaxonomyAttributeValueUpserted =
32279
+ io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted;
31789
32280
  export type ShopifyProductUpdateDeleted =
31790
32281
  io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
31791
32282
  export type ShopifyProductUpdateUpserted =
@@ -31803,6 +32294,10 @@ export type ShopifyShopStatistics =
31803
32294
  io.flow.internal.v0.models.ShopifyShopStatistics;
31804
32295
  export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
31805
32296
  export type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
32297
+ export type ShopifyTaxonomyAlignmentConfig =
32298
+ io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
32299
+ export type ShopifyTaxonomyAlignmentConfigForm =
32300
+ io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
31806
32301
  export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
31807
32302
  export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
31808
32303
  export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
@@ -31919,8 +32414,6 @@ export type StripeReversalDeleted =
31919
32414
  io.flow.internal.v0.models.StripeReversalDeleted;
31920
32415
  export type StripeReversalUpserted =
31921
32416
  io.flow.internal.v0.models.StripeReversalUpserted;
31922
- export type SubcatalogItemCount =
31923
- io.flow.internal.v0.models.SubcatalogItemCount;
31924
32417
  export type SubmittedOrderUpserted =
31925
32418
  io.flow.internal.v0.models.SubmittedOrderUpserted;
31926
32419
  export type Subscription = io.flow.internal.v0.models.Subscription;
@@ -31939,7 +32432,6 @@ export type TariffEligibilityForm =
31939
32432
  export type TariffEligibilityType =
31940
32433
  io.flow.internal.v0.enums.TariffEligibilityType;
31941
32434
  export type Task = io.flow.internal.v0.models.Task;
31942
- export type TaskCount = io.flow.internal.v0.models.TaskCount;
31943
32435
  export type TaskData = io.flow.internal.v0.unions.TaskData;
31944
32436
  export type TaskImport = io.flow.internal.v0.models.TaskImport;
31945
32437
  export type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
@@ -31976,6 +32468,8 @@ export type TaxTransactionDeleted =
31976
32468
  export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
31977
32469
  export type TaxTransactionUpserted =
31978
32470
  io.flow.internal.v0.models.TaxTransactionUpserted;
32471
+ export type TaxonomyAlignmentCheckResult =
32472
+ io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
31979
32473
  export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
31980
32474
  export type TaxonomyCategoryClassificationAlignment =
31981
32475
  io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;