@flowio/types 11.24.130 → 11.24.131

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.
@@ -721,6 +721,7 @@ declare namespace io.flow.payment.gateway.v0.models {
721
721
  readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
722
722
  readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
723
723
  readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
724
+ readonly client_secret?: string;
724
725
  }
725
726
  interface PaymentRequestCancellationReasonOrderMissing {
726
727
  readonly type: 'order_missing';
@@ -926,6 +927,42 @@ declare namespace io.flow.channel.v0.models {
926
927
  readonly attributes?: Record<string, string>;
927
928
  }
928
929
  }
930
+ declare namespace io.flow.restrictions.v0.enums {
931
+ type RestrictedReviewStatus = 'in_review' | 'reviewed';
932
+ type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
933
+ type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
934
+ }
935
+ declare namespace io.flow.restrictions.v0.models {
936
+ interface CarrierRestrictions {
937
+ readonly carrier: string;
938
+ readonly regions: string[];
939
+ }
940
+ interface NeedsActionAttributes {
941
+ readonly reason_code: string;
942
+ readonly category_metafield_handles: string[];
943
+ readonly require_msds?: boolean;
944
+ }
945
+ interface ProductRestrictionResult {
946
+ readonly id: string;
947
+ readonly product_id: string;
948
+ readonly item_numbers: string[];
949
+ readonly prohibited_regions: string[];
950
+ readonly sellability_restricted_regions?: string[];
951
+ readonly reasons_per_region?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
952
+ readonly review_status?: io.flow.restrictions.v0.enums.ReviewStatus;
953
+ readonly rules?: string[];
954
+ readonly updated_by?: string;
955
+ readonly product_restriction_id?: string;
956
+ readonly hs_code?: string;
957
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
958
+ readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
959
+ }
960
+ interface ReasonsPerRegion {
961
+ readonly region: string;
962
+ readonly reasons: string[];
963
+ readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
964
+ }
965
+ }
929
966
  declare namespace io.flow.fulfillment.v0.enums {
930
967
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
931
968
  type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
@@ -3808,6 +3845,7 @@ declare namespace io.flow.stripe.v0.unions {
3808
3845
  type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
3809
3846
  }
3810
3847
  declare namespace io.flow.label.v0.enums {
3848
+ type CommercialInvoiceMode = 'direct' | 'indirect';
3811
3849
  type CostEstimateSource = 'flow' | 'channel';
3812
3850
  type Direction = 'outbound' | 'return';
3813
3851
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
@@ -4961,6 +4999,13 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
4961
4999
  readonly shopify: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
4962
5000
  readonly internal: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
4963
5001
  readonly discrepancy_data: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
5002
+ readonly organization_metrics?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
5003
+ }
5004
+ interface ShopifyMarketsOrganizationOrderMetrics {
5005
+ readonly organization_id: string;
5006
+ readonly shopify_order_count: number;
5007
+ readonly internal_order_count: number;
5008
+ readonly discrepancy_count?: number;
4964
5009
  }
4965
5010
  interface ShopifyMarketsQueuedRecord {
4966
5011
  readonly id: string;
@@ -5081,6 +5126,220 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5081
5126
  readonly placeholder?: any;
5082
5127
  }
5083
5128
  }
5129
+ declare namespace io.flow.consumer.invoice.v0.enums {
5130
+ type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
5131
+ type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
5132
+ type ConsumerInvoiceDocumentType = 'pdf';
5133
+ type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
5134
+ type TaxJurisdictionType = 'country' | 'province';
5135
+ type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
5136
+ }
5137
+ declare namespace io.flow.consumer.invoice.v0.models {
5138
+ interface B2BCreditMemo {
5139
+ readonly id: string;
5140
+ readonly number: string;
5141
+ readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
5142
+ readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
5143
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5144
+ readonly date: string;
5145
+ readonly key: string;
5146
+ readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
5147
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5148
+ readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
5149
+ readonly tax?: io.flow.common.v0.models.Money;
5150
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5151
+ readonly attributes: Record<string, string>;
5152
+ readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
5153
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5154
+ readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5155
+ }
5156
+ interface B2BInvoice {
5157
+ readonly id: string;
5158
+ readonly number: string;
5159
+ readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
5160
+ readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
5161
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5162
+ readonly date: string;
5163
+ readonly key: string;
5164
+ readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5165
+ readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
5166
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5167
+ readonly destination?: io.flow.experience.v0.models.OrderAddress;
5168
+ readonly tax: io.flow.common.v0.models.Money;
5169
+ readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
5170
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5171
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5172
+ readonly attributes: Record<string, string>;
5173
+ readonly estimated_delivery_date?: string;
5174
+ readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
5175
+ }
5176
+ interface B2BInvoiceReference {
5177
+ readonly id: string;
5178
+ readonly key: string;
5179
+ readonly number: string;
5180
+ }
5181
+ interface ConsumerInvoice {
5182
+ readonly id: string;
5183
+ readonly number: string;
5184
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5185
+ readonly date: string;
5186
+ readonly key: string;
5187
+ readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5188
+ readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
5189
+ readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
5190
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5191
+ readonly destination: io.flow.experience.v0.models.OrderAddress;
5192
+ readonly billing_address?: io.flow.common.v0.models.BillingAddress;
5193
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5194
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5195
+ readonly attributes: Record<string, string>;
5196
+ readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
5197
+ readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
5198
+ readonly estimated_delivery_date?: string;
5199
+ }
5200
+ interface ConsumerInvoiceCenterReference {
5201
+ readonly id: string;
5202
+ readonly key: string;
5203
+ readonly name: string;
5204
+ readonly address: io.flow.common.v0.models.Address;
5205
+ }
5206
+ interface ConsumerInvoiceDocument {
5207
+ readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
5208
+ readonly language: string;
5209
+ readonly url: string;
5210
+ }
5211
+ interface ConsumerInvoiceForm {
5212
+ readonly order_number: string;
5213
+ readonly attributes?: Record<string, string>;
5214
+ }
5215
+ interface ConsumerInvoiceFormByOrder {
5216
+ readonly attributes?: Record<string, string>;
5217
+ }
5218
+ interface ConsumerInvoiceLevy {
5219
+ readonly rate: number;
5220
+ readonly value: io.flow.common.v0.models.Price;
5221
+ }
5222
+ interface ConsumerInvoiceLevyForm {
5223
+ readonly rate: number;
5224
+ readonly amount: number;
5225
+ }
5226
+ interface ConsumerInvoiceLineDiscount {
5227
+ readonly discriminator: 'discount';
5228
+ readonly line_id?: string;
5229
+ readonly price: io.flow.common.v0.models.Price;
5230
+ }
5231
+ interface ConsumerInvoiceLineDiscountForm {
5232
+ readonly discriminator: 'discount';
5233
+ readonly price: number;
5234
+ }
5235
+ interface ConsumerInvoiceLineItem {
5236
+ readonly discriminator: 'item';
5237
+ readonly line_id?: string;
5238
+ readonly item: io.flow.common.v0.models.ItemReference;
5239
+ readonly description: string;
5240
+ readonly quantity: number;
5241
+ readonly unit_price: io.flow.common.v0.models.Price;
5242
+ readonly unit_discount?: io.flow.common.v0.models.Price;
5243
+ readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5244
+ readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5245
+ }
5246
+ interface ConsumerInvoiceLineItemForm {
5247
+ readonly discriminator: 'item';
5248
+ readonly item_number: string;
5249
+ readonly quantity: number;
5250
+ readonly unit_price: number;
5251
+ readonly unit_discount?: number;
5252
+ readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5253
+ readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5254
+ }
5255
+ interface ConsumerInvoiceLineShipping {
5256
+ readonly discriminator: 'shipping';
5257
+ readonly line_id?: string;
5258
+ readonly price: io.flow.common.v0.models.Price;
5259
+ readonly discount?: io.flow.common.v0.models.Price;
5260
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5261
+ readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5262
+ }
5263
+ interface ConsumerInvoiceLineShippingForm {
5264
+ readonly discriminator: 'shipping';
5265
+ readonly price: number;
5266
+ readonly discount?: number;
5267
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5268
+ readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5269
+ }
5270
+ interface ConsumerInvoiceLineTip {
5271
+ readonly discriminator: 'tip';
5272
+ readonly line_id?: string;
5273
+ readonly price: io.flow.common.v0.models.Price;
5274
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5275
+ }
5276
+ interface ConsumerInvoiceLineTipForm {
5277
+ readonly discriminator: 'tip';
5278
+ readonly price: number;
5279
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5280
+ }
5281
+ interface ConsumerInvoiceOrderSummary {
5282
+ readonly id: string;
5283
+ readonly number: string;
5284
+ readonly submitted_at: string;
5285
+ }
5286
+ interface ConsumerInvoicePayment {
5287
+ readonly date: string;
5288
+ readonly description: string;
5289
+ readonly value: io.flow.common.v0.models.Price;
5290
+ readonly billing_address?: io.flow.common.v0.models.BillingAddress;
5291
+ }
5292
+ interface ConsumerInvoiceReference {
5293
+ readonly id: string;
5294
+ readonly key: string;
5295
+ readonly number: string;
5296
+ }
5297
+ interface CreditMemo {
5298
+ readonly id: string;
5299
+ readonly number?: string;
5300
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5301
+ readonly date: string;
5302
+ readonly key: string;
5303
+ readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
5304
+ readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
5305
+ readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
5306
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5307
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5308
+ readonly attributes: Record<string, string>;
5309
+ readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
5310
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5311
+ readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5312
+ }
5313
+ interface CreditMemoForm {
5314
+ readonly refund_id?: string;
5315
+ readonly refund_key?: string;
5316
+ readonly refund_identifier?: string;
5317
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
5318
+ readonly attributes?: Record<string, string>;
5319
+ }
5320
+ interface InvoiceExport {
5321
+ readonly id: string;
5322
+ }
5323
+ interface InvoiceExportForm {
5324
+ readonly date_from?: string;
5325
+ readonly date_to?: string;
5326
+ }
5327
+ interface InvoiceTaxLine {
5328
+ readonly line_id: string;
5329
+ readonly tax_breakdown: io.flow.consumer.invoice.v0.models.TaxBreakdown[];
5330
+ }
5331
+ interface TaxBreakdown {
5332
+ readonly label: string;
5333
+ readonly calculated_tax: io.flow.common.v0.models.Money;
5334
+ readonly rate: number;
5335
+ readonly line_total: io.flow.common.v0.models.Money;
5336
+ readonly jurisdiction_type: io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
5337
+ }
5338
+ }
5339
+ declare namespace io.flow.consumer.invoice.v0.unions {
5340
+ type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
5341
+ type ConsumerInvoiceLineForm = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm;
5342
+ }
5084
5343
  declare namespace io.flow.adyen.v0.enums {
5085
5344
  type Channel = 'web';
5086
5345
  type Contract = 'RECURRING';
@@ -6691,6 +6950,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6691
6950
  readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
6692
6951
  readonly merchant_of_record_app_id?: number;
6693
6952
  readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6953
+ readonly current_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6694
6954
  readonly total_tip_received?: string;
6695
6955
  }
6696
6956
  interface ShopifyOrderAddress {
@@ -7157,7 +7417,7 @@ declare namespace io.flow.channel.internal.v0.enums {
7157
7417
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
7158
7418
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
7159
7419
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
7160
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
7420
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
7161
7421
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
7162
7422
  type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
7163
7423
  type OrderPaymentSourceType = 'globale' | 'third_party';
@@ -7203,6 +7463,7 @@ declare namespace io.flow.channel.internal.v0.models {
7203
7463
  readonly order_updated_at?: string;
7204
7464
  readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
7205
7465
  readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
7466
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
7206
7467
  }
7207
7468
  interface ChannelOrderAcceptanceDetails {
7208
7469
  readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
@@ -7610,6 +7871,8 @@ declare namespace io.flow.common.v0.models {
7610
7871
  interface MerchantOfRecordEntityRegistration {
7611
7872
  readonly number: string;
7612
7873
  readonly country: string;
7874
+ readonly province_number?: string;
7875
+ readonly province?: string;
7613
7876
  }
7614
7877
  interface Money {
7615
7878
  readonly amount: number;
@@ -9027,6 +9290,7 @@ declare namespace io.flow.ratecard.v0.models {
9027
9290
  readonly amount: io.flow.common.v0.models.Money;
9028
9291
  readonly origin_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
9029
9292
  readonly destination_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
9293
+ readonly destination_regions?: io.flow.ratecard.v0.models.RatecardRegionReference[];
9030
9294
  readonly interval_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
9031
9295
  }
9032
9296
  interface EstimatedDimensions {
@@ -9204,6 +9468,7 @@ declare namespace io.flow.ratecard.v0.models {
9204
9468
  readonly center_id?: string;
9205
9469
  readonly taxes_owed?: io.flow.common.v0.models.Money;
9206
9470
  readonly duties_owed?: io.flow.common.v0.models.Money;
9471
+ readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
9207
9472
  }
9208
9473
  interface RatecardEstimateSummaryForm {
9209
9474
  readonly origin?: string;
@@ -9396,6 +9661,39 @@ declare namespace io.flow.ratecard.v0.models {
9396
9661
  readonly from: number;
9397
9662
  readonly to: number;
9398
9663
  }
9664
+ interface ShippingRateEstimate {
9665
+ readonly origin_address: io.flow.common.v0.models.Address;
9666
+ readonly destination_address: io.flow.common.v0.models.Address;
9667
+ readonly shipping_date_time: string;
9668
+ readonly services: string[];
9669
+ readonly available: io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
9670
+ readonly unavailable?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
9671
+ }
9672
+ interface ShippingRateEstimateAvailable {
9673
+ readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
9674
+ readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
9675
+ readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
9676
+ readonly total_amount: io.flow.common.v0.models.Money;
9677
+ readonly base_amount: io.flow.common.v0.models.Money;
9678
+ readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
9679
+ readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
9680
+ readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
9681
+ readonly weight_break?: number;
9682
+ }
9683
+ interface ShippingRateEstimateRequest {
9684
+ readonly origin_address: io.flow.common.v0.models.Address;
9685
+ readonly destination_address: io.flow.common.v0.models.Address;
9686
+ readonly package_dimensions: io.flow.common.v0.models.Dimension;
9687
+ readonly shipping_date_time: string;
9688
+ readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
9689
+ readonly duties_owed?: io.flow.common.v0.models.Money;
9690
+ readonly taxes_owed?: io.flow.common.v0.models.Money;
9691
+ readonly line_items?: io.flow.common.v0.models.LineItemForm[];
9692
+ }
9693
+ interface ShippingRateEstimateUnavailable {
9694
+ readonly service: string;
9695
+ readonly reason: string;
9696
+ }
9399
9697
  }
9400
9698
  declare namespace io.flow.ratecard.v0.unions {
9401
9699
  type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
@@ -9618,6 +9916,30 @@ declare namespace io.flow.crypto.v0.models {
9618
9916
  readonly object: io.flow.crypto.v0.models.Refund;
9619
9917
  }
9620
9918
  }
9919
+ declare namespace io.flow.channel.shopify.v0.enums {
9920
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
9921
+ }
9922
+ declare namespace io.flow.channel.shopify.v0.models {
9923
+ interface ChannelShopifyOrderState {
9924
+ readonly id: string;
9925
+ readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
9926
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
9927
+ readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
9928
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
9929
+ }
9930
+ interface ChannelShopifyOrderStateReason {
9931
+ readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
9932
+ readonly message: string;
9933
+ }
9934
+ interface ChannelShopifyOrderSummary {
9935
+ readonly order_id: number;
9936
+ readonly shop_id: number;
9937
+ }
9938
+ interface ExternalOrderSummary {
9939
+ readonly id: string;
9940
+ readonly edit_ids: string[];
9941
+ }
9942
+ }
9621
9943
  declare namespace io.flow.shopify.merchant.config.v0.models {
9622
9944
  interface Company {
9623
9945
  readonly discriminator: 'company';
@@ -10103,6 +10425,73 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
10103
10425
  type RegionType = 'state' | 'province' | 'jurisdiction';
10104
10426
  }
10105
10427
  declare namespace io.flow.merchant.onboarding.v0.models {
10428
+ interface CommonMerchantApplication {
10429
+ readonly discriminator: 'common_merchant_application';
10430
+ readonly id: string;
10431
+ readonly organization_id: string;
10432
+ readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
10433
+ readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
10434
+ readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
10435
+ readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
10436
+ readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
10437
+ readonly business_url?: string;
10438
+ readonly business_description?: string;
10439
+ readonly business_address?: io.flow.common.v0.models.Address;
10440
+ readonly refund_percentage?: number;
10441
+ readonly chargeback_percentage?: number;
10442
+ readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
10443
+ readonly other_trade_sector?: string;
10444
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
10445
+ readonly center_address?: io.flow.common.v0.models.Address;
10446
+ readonly average_order_weight?: number;
10447
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10448
+ readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
10449
+ readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
10450
+ readonly default_country_of_origin?: string;
10451
+ readonly rate_card: string;
10452
+ readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
10453
+ readonly created_at: string;
10454
+ readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
10455
+ readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
10456
+ readonly average_order_value?: io.flow.common.v0.models.Money;
10457
+ readonly mcc_codes?: number[];
10458
+ }
10459
+ interface CommonMerchantApplicationForm {
10460
+ readonly discriminator: 'common_merchant_application_form';
10461
+ readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
10462
+ readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
10463
+ readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
10464
+ readonly business_url?: string;
10465
+ readonly business_description?: string;
10466
+ readonly business_address?: io.flow.common.v0.models.Address;
10467
+ readonly refund_percentage?: number;
10468
+ readonly chargeback_percentage?: number;
10469
+ readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
10470
+ readonly other_trade_sector?: string;
10471
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
10472
+ readonly center_address?: io.flow.common.v0.models.Address;
10473
+ readonly average_order_weight?: number;
10474
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10475
+ readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
10476
+ readonly monthly_average_volume_amount?: number;
10477
+ readonly monthly_average_volume_currency?: string;
10478
+ readonly monthly_average_number_transactions?: number;
10479
+ readonly default_country_of_origin?: string;
10480
+ readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
10481
+ readonly rate_card?: string;
10482
+ readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
10483
+ readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
10484
+ readonly average_order_value?: io.flow.common.v0.models.Money;
10485
+ readonly mcc_codes?: number[];
10486
+ }
10487
+ interface CommonMerchantApplicationPutForm {
10488
+ readonly discriminator: 'common_merchant_application_put_form';
10489
+ readonly status?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
10490
+ }
10491
+ interface CommonMerchantApplicationsSummary {
10492
+ readonly discriminator: 'common_merchant_applications_summary';
10493
+ readonly total: number;
10494
+ }
10106
10495
  interface IndirectTax {
10107
10496
  readonly number?: string;
10108
10497
  readonly id?: string;
@@ -10117,6 +10506,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10117
10506
  readonly region?: io.flow.merchant.onboarding.v0.enums.RegionType;
10118
10507
  readonly region_value?: string;
10119
10508
  readonly category_code?: string;
10509
+ readonly description?: string;
10120
10510
  }
10121
10511
  interface MerchantOnboardingAddress {
10122
10512
  readonly full_name?: string;
@@ -10126,6 +10516,16 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10126
10516
  readonly postal?: string;
10127
10517
  readonly country?: string;
10128
10518
  }
10519
+ interface MerchantOnboardingBeneficiaryDetails {
10520
+ readonly name?: string;
10521
+ readonly address?: io.flow.common.v0.models.Address;
10522
+ readonly phone?: string;
10523
+ readonly email?: string;
10524
+ readonly bank_account_number?: string;
10525
+ readonly bank_routing_number?: string;
10526
+ readonly bank_name?: string;
10527
+ readonly bank_address?: io.flow.common.v0.models.Address;
10528
+ }
10129
10529
  interface MonthlyAverage {
10130
10530
  readonly volume?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
10131
10531
  readonly number_transactions?: number;
@@ -10182,6 +10582,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10182
10582
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
10183
10583
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
10184
10584
  readonly average_order_weight?: number;
10585
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10185
10586
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
10186
10587
  readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
10187
10588
  readonly default_country_of_origin?: string;
@@ -10214,6 +10615,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10214
10615
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
10215
10616
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
10216
10617
  readonly average_order_weight?: number;
10618
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10217
10619
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
10218
10620
  readonly monthly_average_volume_amount?: number;
10219
10621
  readonly monthly_average_volume_currency?: string;
@@ -10249,10 +10651,10 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10249
10651
  }
10250
10652
  }
10251
10653
  declare namespace io.flow.merchant.onboarding.v0.unions {
10252
- type MerchantApplication = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication;
10253
- type MerchantApplicationForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm;
10254
- type MerchantApplicationPutForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm;
10255
- type MerchantApplicationsSummary = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary;
10654
+ type MerchantApplication = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication;
10655
+ type MerchantApplicationForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm;
10656
+ type MerchantApplicationPutForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm;
10657
+ type MerchantApplicationsSummary = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary;
10256
10658
  }
10257
10659
  declare namespace io.flow.catalog.v0.enums {
10258
10660
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
@@ -10793,10 +11195,11 @@ declare namespace io.flow.billing.v0.enums {
10793
11195
  type PayoutAttachmentType = 'transactions';
10794
11196
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
10795
11197
  type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
10796
- type StatementAttachmentType = 'csv';
10797
- type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
10798
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee';
10799
- type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
11198
+ type StatementAttachmentType = 'csv' | 'pdf';
11199
+ type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
11200
+ type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
11201
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
11202
+ type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
10800
11203
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10801
11204
  }
10802
11205
  declare namespace io.flow.billing.v0.models {
@@ -11020,6 +11423,10 @@ declare namespace io.flow.billing.v0.models {
11020
11423
  readonly attachments: io.flow.billing.v0.models.Attachment[];
11021
11424
  readonly created_at: string;
11022
11425
  }
11426
+ interface StatementStatusForm {
11427
+ readonly code: io.flow.billing.v0.enums.StatementStatusCode;
11428
+ readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
11429
+ }
11023
11430
  interface Transaction {
11024
11431
  readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
11025
11432
  readonly id: string;
@@ -11531,6 +11938,9 @@ declare namespace io.flow.sellability.v0.enums {
11531
11938
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
11532
11939
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
11533
11940
  type SellabilityRequestStatus = 'commit';
11941
+ type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
11942
+ type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
11943
+ type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
11534
11944
  }
11535
11945
  declare namespace io.flow.sellability.v0.models {
11536
11946
  interface ProductSellability {
@@ -11539,9 +11949,10 @@ declare namespace io.flow.sellability.v0.models {
11539
11949
  readonly product_id?: string;
11540
11950
  readonly request_id: string;
11541
11951
  readonly hs6_code: string;
11542
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
11952
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
11543
11953
  }
11544
11954
  interface ProductSellabilityForm {
11955
+ readonly discriminator: 'product_sellability_form';
11545
11956
  readonly shop_id: string;
11546
11957
  readonly product_id?: string;
11547
11958
  readonly name: string;
@@ -11551,18 +11962,64 @@ declare namespace io.flow.sellability.v0.models {
11551
11962
  readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
11552
11963
  readonly dry_run?: boolean;
11553
11964
  }
11965
+ interface ProductSellabilityResult {
11966
+ readonly merchant_id?: string;
11967
+ readonly product_id: string;
11968
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
11969
+ readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
11970
+ readonly request_id?: string;
11971
+ }
11554
11972
  interface SellabilityError {
11555
11973
  readonly discriminator: 'sellability_error';
11556
11974
  readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
11557
11975
  readonly messages: string[];
11558
11976
  }
11977
+ interface SellabilityNeedsActionAttributes {
11978
+ readonly reason_code: string;
11979
+ readonly category_metafield_handles: string[];
11980
+ readonly require_msds?: boolean;
11981
+ }
11982
+ interface SellabilityRegionResult {
11983
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
11984
+ readonly regions: string[];
11985
+ }
11986
+ interface SellabilityRegionWithReasons {
11987
+ readonly region: string;
11988
+ readonly reasons: string[];
11989
+ }
11990
+ interface SellabilityRestrictedRegion {
11991
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
11992
+ readonly regions_with_reasons: io.flow.sellability.v0.models.SellabilityRegionWithReasons[];
11993
+ }
11994
+ interface SellabilityScreening {
11995
+ readonly discriminator: 'sellability_screening';
11996
+ readonly sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
11997
+ readonly request_id: string;
11998
+ readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
11999
+ readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
12000
+ readonly error_message?: string;
12001
+ }
12002
+ interface SellabilityScreeningForm {
12003
+ readonly discriminator: 'sellability_screening_form';
12004
+ readonly merchant_id: string;
12005
+ readonly product_id: string;
12006
+ readonly name: string;
12007
+ readonly price: io.flow.common.v0.models.Money;
12008
+ readonly description: string;
12009
+ readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
12010
+ readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
12011
+ readonly catalog_size?: number;
12012
+ readonly relative_ranking?: number;
12013
+ readonly dry_run?: boolean;
12014
+ }
11559
12015
  interface SellablilityRegionResult {
11560
12016
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
11561
12017
  readonly regions: string[];
11562
12018
  }
11563
12019
  }
11564
12020
  declare namespace io.flow.sellability.v0.unions {
11565
- type SellabilityResponse = io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError;
12021
+ type SellabilityRequest = io.flow.sellability.v0.models.ProductSellabilityForm | io.flow.sellability.v0.models.SellabilityScreeningForm;
12022
+ type SellabilityResponse = io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError | io.flow.sellability.v0.models.SellabilityScreening;
11566
12023
  }
11567
12024
  declare namespace io.flow.currency.v0.models {
11568
12025
  interface Rate {
@@ -11679,6 +12136,20 @@ declare namespace io.flow.organization.v0.models {
11679
12136
  readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
11680
12137
  readonly status?: io.flow.common.v0.enums.OrganizationStatus;
11681
12138
  }
12139
+ interface OrganizationTaxRegistration {
12140
+ readonly id: string;
12141
+ readonly organization: io.flow.common.v0.models.OrganizationSummary;
12142
+ readonly address: io.flow.common.v0.models.BillingAddress;
12143
+ readonly registration: io.flow.organization.v0.models.TaxRegistrationDetail;
12144
+ readonly self_billing_agreement: io.flow.organization.v0.models.SelfBillingAgreement;
12145
+ }
12146
+ interface OrganizationTaxRegistrationForm {
12147
+ readonly tax_number: string;
12148
+ readonly country: string;
12149
+ readonly province?: string;
12150
+ readonly self_billing_agreement_effective_at: string;
12151
+ readonly self_billing_agreement_expires_at?: string;
12152
+ }
11682
12153
  interface OrganizationVersion {
11683
12154
  readonly id: string;
11684
12155
  readonly timestamp: string;
@@ -11693,6 +12164,16 @@ declare namespace io.flow.organization.v0.models {
11693
12164
  interface RegionSettingForm {
11694
12165
  readonly status: io.flow.common.v0.enums.AvailabilityStatus;
11695
12166
  }
12167
+ interface SelfBillingAgreement {
12168
+ readonly effective_at: string;
12169
+ readonly expires_at: string;
12170
+ }
12171
+ interface TaxRegistrationDetail {
12172
+ readonly tax_number: string;
12173
+ readonly country: string;
12174
+ readonly tax_code: string;
12175
+ readonly province?: string;
12176
+ }
11696
12177
  }
11697
12178
  declare namespace io.flow.billing.bank.account.v0.models {
11698
12179
  interface BankAccountInfoCan {
@@ -11737,6 +12218,8 @@ declare namespace io.flow.internal.v0.enums {
11737
12218
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
11738
12219
  type ApplicablePreferentialRate = 'baby' | 'children';
11739
12220
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
12221
+ type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
12222
+ type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
11740
12223
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
11741
12224
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
11742
12225
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
@@ -11744,7 +12227,7 @@ declare namespace io.flow.internal.v0.enums {
11744
12227
  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';
11745
12228
  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';
11746
12229
  type BillingTransactionStatus = 'pending_proof' | 'posted';
11747
- type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund';
12230
+ type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund';
11748
12231
  type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
11749
12232
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
11750
12233
  type CarrierChargeType = 'label' | 'tax' | 'other';
@@ -11758,7 +12241,7 @@ declare namespace io.flow.internal.v0.enums {
11758
12241
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
11759
12242
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
11760
12243
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
11761
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
12244
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
11762
12245
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
11763
12246
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
11764
12247
  type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
@@ -11775,7 +12258,8 @@ declare namespace io.flow.internal.v0.enums {
11775
12258
  type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
11776
12259
  type ClassificationDecision = 'Accept' | 'Reject';
11777
12260
  type ClassificationErrorCode = 'generic_error';
11778
- type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
12261
+ type ClassificationFailureReason = 'low_confidence' | 'timeout';
12262
+ type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
11779
12263
  type ClassificationScope = 'Item' | 'Product';
11780
12264
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
11781
12265
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
@@ -11812,7 +12296,7 @@ declare namespace io.flow.internal.v0.enums {
11812
12296
  type EmptyAttribute = 'irrelevant';
11813
12297
  type ErpFileType = 'vendor';
11814
12298
  type EvaluationCheckResult = 'pass' | 'fail';
11815
- 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' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | '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';
12299
+ 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' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | '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' | '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' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
11816
12300
  type ExperienceImportType = 'experience_with_settings';
11817
12301
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
11818
12302
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -11825,12 +12309,14 @@ declare namespace io.flow.internal.v0.enums {
11825
12309
  type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
11826
12310
  type FraudProviderStatus = 'active' | 'archived';
11827
12311
  type FraudReviewResponsibleParty = 'flow' | 'organization';
12312
+ type GabrielItemType = 'physical' | 'digital';
11828
12313
  type GeIngestionFileStatus = 'pending' | 'processed';
11829
12314
  type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
11830
12315
  type GoogleAnalyticsPlugin = 'ec';
11831
12316
  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';
11832
12317
  type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
11833
12318
  type HoseinItemType = 'physical' | 'digital';
12319
+ type Hs6CodeSource = 'sellability' | 'classification' | 'human';
11834
12320
  type HttpMethod = 'get' | 'post';
11835
12321
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
11836
12322
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
@@ -11849,13 +12335,15 @@ declare namespace io.flow.internal.v0.enums {
11849
12335
  type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
11850
12336
  type LabelRequestResultState = 'success' | 'failure';
11851
12337
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12338
+ type LedgerReportType = 'periodic_mor_jurisdiction_report';
12339
+ type LedgerReportUrlType = 'sharepoint' | 's3';
11852
12340
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
11853
12341
  type LogisticsCapability = 'logistics_address_correction';
11854
12342
  type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
11855
12343
  type ManualReviewRuleStatus = 'active' | 'archived';
11856
12344
  type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
11857
12345
  type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
11858
- type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
12346
+ type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands' | 'uk_global_e_canada' | 'uk_global_e_netherlands' | 'uk_global_e_united_states' | 'ca_global_e_united_kingdom' | 'ca_global_e_netherlands' | 'ca_global_e_united_states';
11859
12347
  type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
11860
12348
  type MixedBagWeight = '0' | '1' | '2';
11861
12349
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
@@ -11864,7 +12352,7 @@ declare namespace io.flow.internal.v0.enums {
11864
12352
  type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
11865
12353
  type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
11866
12354
  type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
11867
- type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
12355
+ type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
11868
12356
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
11869
12357
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
11870
12358
  type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
@@ -11895,6 +12383,10 @@ declare namespace io.flow.internal.v0.enums {
11895
12383
  type PendingRecordType = 'verification' | 'classification' | 'restriction';
11896
12384
  type PrateekItemType = 'physical' | 'digital';
11897
12385
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
12386
+ type PreonboardingClassificationDecision = 'Accept' | 'Reject';
12387
+ type PreonboardingClassificationPlatform = 'FlowOnboarding';
12388
+ type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
12389
+ type PreonboardingRequestStatus = 'pending' | 'completed' | 'failed' | 'discarded';
11898
12390
  type PriceSelector = 'minimum' | 'maximum';
11899
12391
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
11900
12392
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
@@ -11909,7 +12401,7 @@ declare namespace io.flow.internal.v0.enums {
11909
12401
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
11910
12402
  type ReportPaymentType = 'credit' | 'debit';
11911
12403
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
11912
- type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
12404
+ type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
11913
12405
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
11914
12406
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
11915
12407
  type ResponsibleParty = 'flow' | 'organization';
@@ -11919,7 +12411,7 @@ declare namespace io.flow.internal.v0.enums {
11919
12411
  type RestrictionAttributeOperator = 'and' | 'or';
11920
12412
  type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
11921
12413
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
11922
- type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
12414
+ type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
11923
12415
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
11924
12416
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
11925
12417
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
@@ -11951,7 +12443,7 @@ declare namespace io.flow.internal.v0.enums {
11951
12443
  type SubscriptionFrequency = 'yearly' | 'monthly';
11952
12444
  type SuggestionAction = 'accept' | 'validate' | 'review';
11953
12445
  type TariffEligibilityType = 'rex';
11954
- type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
12446
+ type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
11955
12447
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
11956
12448
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
11957
12449
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
@@ -12578,6 +13070,12 @@ declare namespace io.flow.internal.v0.models {
12578
13070
  readonly type: io.flow.internal.v0.enums.AldoItemType;
12579
13071
  readonly added_on: string;
12580
13072
  }
13073
+ interface AldoItemDeleted {
13074
+ readonly discriminator: 'aldo_item_deleted';
13075
+ readonly event_id: string;
13076
+ readonly timestamp: string;
13077
+ readonly id: string;
13078
+ }
12581
13079
  interface AldoItemForm {
12582
13080
  readonly number: string;
12583
13081
  readonly amount: io.flow.common.v0.models.Price;
@@ -12585,6 +13083,12 @@ declare namespace io.flow.internal.v0.models {
12585
13083
  readonly type: io.flow.internal.v0.enums.AldoItemType;
12586
13084
  readonly added_on: string;
12587
13085
  }
13086
+ interface AldoItemUpserted {
13087
+ readonly discriminator: 'aldo_item_upserted';
13088
+ readonly event_id: string;
13089
+ readonly timestamp: string;
13090
+ readonly item: io.flow.internal.v0.models.AldoItem;
13091
+ }
12588
13092
  interface AllItemsExport {
12589
13093
  readonly discriminator: 'all_items_export';
12590
13094
  readonly event_id: string;
@@ -12611,6 +13115,12 @@ declare namespace io.flow.internal.v0.models {
12611
13115
  readonly type: io.flow.internal.v0.enums.AnirbanItemType;
12612
13116
  readonly added_on: string;
12613
13117
  }
13118
+ interface AnirbanItemDeleted {
13119
+ readonly discriminator: 'anirban_item_deleted';
13120
+ readonly event_id: string;
13121
+ readonly timestamp: string;
13122
+ readonly id: string;
13123
+ }
12614
13124
  interface AnirbanItemForm {
12615
13125
  readonly number: string;
12616
13126
  readonly amount: io.flow.common.v0.models.Price;
@@ -12618,6 +13128,12 @@ declare namespace io.flow.internal.v0.models {
12618
13128
  readonly type: io.flow.internal.v0.enums.AnirbanItemType;
12619
13129
  readonly added_on: string;
12620
13130
  }
13131
+ interface AnirbanItemUpserted {
13132
+ readonly discriminator: 'anirban_item_upserted';
13133
+ readonly event_id: string;
13134
+ readonly timestamp: string;
13135
+ readonly item: io.flow.internal.v0.models.AnirbanItem;
13136
+ }
12621
13137
  interface AnshItem {
12622
13138
  readonly id: string;
12623
13139
  readonly number: string;
@@ -12626,6 +13142,12 @@ declare namespace io.flow.internal.v0.models {
12626
13142
  readonly type: io.flow.internal.v0.enums.AnshItemType;
12627
13143
  readonly added_on: string;
12628
13144
  }
13145
+ interface AnshItemDeleted {
13146
+ readonly discriminator: 'ansh_item_deleted';
13147
+ readonly event_id: string;
13148
+ readonly timestamp: string;
13149
+ readonly id: string;
13150
+ }
12629
13151
  interface AnshItemForm {
12630
13152
  readonly number: string;
12631
13153
  readonly amount: io.flow.common.v0.models.Price;
@@ -12633,6 +13155,12 @@ declare namespace io.flow.internal.v0.models {
12633
13155
  readonly type: io.flow.internal.v0.enums.AnshItemType;
12634
13156
  readonly added_on: string;
12635
13157
  }
13158
+ interface AnshItemUpserted {
13159
+ readonly discriminator: 'ansh_item_upserted';
13160
+ readonly event_id: string;
13161
+ readonly timestamp: string;
13162
+ readonly item: io.flow.internal.v0.models.AnshItem;
13163
+ }
12636
13164
  interface ApplePayAuthorizationPayload {
12637
13165
  readonly discriminator: 'apple_pay_authorization_payload';
12638
13166
  readonly apple_pay_token: string;
@@ -12720,6 +13248,41 @@ declare namespace io.flow.internal.v0.models {
12720
13248
  readonly keywords?: string[];
12721
13249
  readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
12722
13250
  }
13251
+ interface B2BTaxLedger {
13252
+ readonly id: string;
13253
+ readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
13254
+ readonly tax_amount: io.flow.common.v0.models.Money;
13255
+ readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
13256
+ readonly tax_rate: number;
13257
+ readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
13258
+ readonly organization_id: string;
13259
+ readonly organization_country: string;
13260
+ readonly organization_province?: string;
13261
+ readonly mor_tax_number: string;
13262
+ readonly mor_country: string;
13263
+ readonly mor_province?: string;
13264
+ readonly document_id: string;
13265
+ readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
13266
+ readonly document_date: string;
13267
+ readonly ledger_report_id?: string;
13268
+ }
13269
+ interface B2BTaxLedgerForm {
13270
+ readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
13271
+ readonly tax_amount: io.flow.common.v0.models.Money;
13272
+ readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
13273
+ readonly tax_rate: number;
13274
+ readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
13275
+ readonly organization_id: string;
13276
+ readonly organization_country: string;
13277
+ readonly organization_province?: string;
13278
+ readonly mor_tax_number: string;
13279
+ readonly mor_country: string;
13280
+ readonly mor_province?: string;
13281
+ readonly document_id: string;
13282
+ readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
13283
+ readonly document_date: string;
13284
+ readonly ledger_report_id?: string;
13285
+ }
12723
13286
  interface BankAccount {
12724
13287
  readonly status: io.flow.internal.v0.enums.BankAccountStatus;
12725
13288
  readonly hold_created_at?: string;
@@ -12986,6 +13549,8 @@ declare namespace io.flow.internal.v0.models {
12986
13549
  readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
12987
13550
  readonly ending_balance: io.flow.common.v0.models.Price;
12988
13551
  readonly tax_refund: io.flow.common.v0.models.Price;
13552
+ readonly b2b_tax: io.flow.common.v0.models.Price;
13553
+ readonly b2b_tax_refund: io.flow.common.v0.models.Price;
12989
13554
  }
12990
13555
  interface BillingStatementUpserted {
12991
13556
  readonly discriminator: 'billing_statement_upserted';
@@ -13086,6 +13651,9 @@ declare namespace io.flow.internal.v0.models {
13086
13651
  readonly reason: string;
13087
13652
  readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
13088
13653
  }
13654
+ interface Cafe24MarketsWebhook {
13655
+ readonly placeholder?: any;
13656
+ }
13089
13657
  interface CalculatedTaxAmount {
13090
13658
  readonly discriminator: 'calculated_tax_amount';
13091
13659
  readonly amount: number;
@@ -13613,6 +14181,7 @@ declare namespace io.flow.internal.v0.models {
13613
14181
  readonly order_updated_at?: string;
13614
14182
  readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
13615
14183
  readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
14184
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
13616
14185
  }
13617
14186
  interface ChannelOrderAcceptanceDeleted {
13618
14187
  readonly discriminator: 'channel_order_acceptance_deleted';
@@ -15261,9 +15830,6 @@ declare namespace io.flow.internal.v0.models {
15261
15830
  readonly locale?: string;
15262
15831
  readonly region?: string;
15263
15832
  }
15264
- interface FeatureIdReference {
15265
- readonly id: string;
15266
- }
15267
15833
  interface FeatureReference {
15268
15834
  readonly id: string;
15269
15835
  readonly key: string;
@@ -15876,6 +16442,7 @@ declare namespace io.flow.internal.v0.models {
15876
16442
  readonly fulfilled_at: string;
15877
16443
  readonly sequence_number: number;
15878
16444
  readonly completes_order: boolean;
16445
+ readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
15879
16446
  }
15880
16447
  interface FulfillmentStatusUpserted {
15881
16448
  readonly discriminator: 'fulfillment_status_upserted';
@@ -15944,6 +16511,33 @@ declare namespace io.flow.internal.v0.models {
15944
16511
  readonly local: io.flow.common.v0.models.Money;
15945
16512
  readonly transaction_created_at: string;
15946
16513
  }
16514
+ interface GabrielItem {
16515
+ readonly id: string;
16516
+ readonly number: string;
16517
+ readonly amount: io.flow.common.v0.models.Price;
16518
+ readonly description?: string;
16519
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
16520
+ readonly added_on: string;
16521
+ }
16522
+ interface GabrielItemDeleted {
16523
+ readonly discriminator: 'gabriel_item_deleted';
16524
+ readonly event_id: string;
16525
+ readonly timestamp: string;
16526
+ readonly id: string;
16527
+ }
16528
+ interface GabrielItemForm {
16529
+ readonly number: string;
16530
+ readonly amount: io.flow.common.v0.models.Price;
16531
+ readonly description?: string;
16532
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
16533
+ readonly added_on: string;
16534
+ }
16535
+ interface GabrielItemUpserted {
16536
+ readonly discriminator: 'gabriel_item_upserted';
16537
+ readonly event_id: string;
16538
+ readonly timestamp: string;
16539
+ readonly item: io.flow.internal.v0.models.GabrielItem;
16540
+ }
15947
16541
  interface GeRevenueShareTransaction {
15948
16542
  readonly discriminator: 'ge_revenue_share_transaction';
15949
16543
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -16115,6 +16709,12 @@ declare namespace io.flow.internal.v0.models {
16115
16709
  readonly type: io.flow.internal.v0.enums.HoseinItemType;
16116
16710
  readonly added_on: string;
16117
16711
  }
16712
+ interface HoseinItemDeleted {
16713
+ readonly discriminator: 'hosein_item_deleted';
16714
+ readonly event_id: string;
16715
+ readonly timestamp: string;
16716
+ readonly id: string;
16717
+ }
16118
16718
  interface HoseinItemForm {
16119
16719
  readonly number: string;
16120
16720
  readonly amount: io.flow.common.v0.models.Price;
@@ -16122,6 +16722,12 @@ declare namespace io.flow.internal.v0.models {
16122
16722
  readonly type: io.flow.internal.v0.enums.HoseinItemType;
16123
16723
  readonly added_on: string;
16124
16724
  }
16725
+ interface HoseinItemUpserted {
16726
+ readonly discriminator: 'hosein_item_upserted';
16727
+ readonly event_id: string;
16728
+ readonly timestamp: string;
16729
+ readonly item: io.flow.internal.v0.models.HoseinItem;
16730
+ }
16125
16731
  interface Hs6 {
16126
16732
  readonly code: string;
16127
16733
  readonly description: string;
@@ -16319,8 +16925,6 @@ declare namespace io.flow.internal.v0.models {
16319
16925
  readonly customs_value: number;
16320
16926
  readonly total_value: number;
16321
16927
  readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
16322
- readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
16323
- readonly feature_new_export_declaration: boolean;
16324
16928
  }
16325
16929
  interface InvoiceDataLineItem {
16326
16930
  readonly i: number;
@@ -16330,7 +16934,7 @@ declare namespace io.flow.internal.v0.models {
16330
16934
  readonly tariff_code: string;
16331
16935
  readonly country_of_origin: string;
16332
16936
  readonly display_country_of_origin: string;
16333
- readonly gst_paid: boolean;
16937
+ readonly remitter: io.flow.internal.v0.enums.TaxParty;
16334
16938
  readonly gst_paid_text: string;
16335
16939
  readonly unit_price: number;
16336
16940
  readonly vat_price: number;
@@ -16752,6 +17356,8 @@ declare namespace io.flow.internal.v0.models {
16752
17356
  readonly service_id?: string;
16753
17357
  readonly errors: string[];
16754
17358
  readonly direction?: io.flow.label.v0.enums.Direction;
17359
+ readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
17360
+ readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
16755
17361
  }
16756
17362
  interface LabelRequestErrorDeleted {
16757
17363
  readonly discriminator: 'label_request_error_deleted';
@@ -16900,6 +17506,19 @@ declare namespace io.flow.internal.v0.models {
16900
17506
  readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
16901
17507
  readonly errors: string[];
16902
17508
  }
17509
+ interface LedgerReport {
17510
+ readonly id: string;
17511
+ readonly mor_tax_number: string;
17512
+ readonly jurisdiction: string;
17513
+ readonly start_date: string;
17514
+ readonly end_date: string;
17515
+ readonly report_type: io.flow.internal.v0.enums.LedgerReportType;
17516
+ readonly urls: io.flow.internal.v0.models.LedgerReportUrl[];
17517
+ }
17518
+ interface LedgerReportUrl {
17519
+ readonly url: string;
17520
+ readonly type: io.flow.internal.v0.enums.LedgerReportUrlType;
17521
+ }
16903
17522
  interface LevyRateSummary {
16904
17523
  readonly id: string;
16905
17524
  readonly number: string;
@@ -17375,6 +17994,12 @@ declare namespace io.flow.internal.v0.models {
17375
17994
  readonly type: io.flow.internal.v0.enums.NiallItemType;
17376
17995
  readonly added_on: string;
17377
17996
  }
17997
+ interface NiallItemDeleted {
17998
+ readonly discriminator: 'niall_item_deleted';
17999
+ readonly event_id: string;
18000
+ readonly timestamp: string;
18001
+ readonly id: string;
18002
+ }
17378
18003
  interface NiallItemForm {
17379
18004
  readonly number: string;
17380
18005
  readonly amount: io.flow.common.v0.models.Price;
@@ -17382,6 +18007,12 @@ declare namespace io.flow.internal.v0.models {
17382
18007
  readonly type: io.flow.internal.v0.enums.NiallItemType;
17383
18008
  readonly added_on: string;
17384
18009
  }
18010
+ interface NiallItemUpserted {
18011
+ readonly discriminator: 'niall_item_upserted';
18012
+ readonly event_id: string;
18013
+ readonly timestamp: string;
18014
+ readonly item: io.flow.internal.v0.models.NiallItem;
18015
+ }
17385
18016
  interface NoCalculatedTaxAmount {
17386
18017
  readonly discriminator: 'no_calculated_tax_amount';
17387
18018
  readonly amount: number;
@@ -17453,6 +18084,7 @@ declare namespace io.flow.internal.v0.models {
17453
18084
  readonly health_score?: number;
17454
18085
  readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
17455
18086
  readonly blocked_since?: string;
18087
+ readonly onboarding_segment?: string;
17456
18088
  }
17457
18089
  interface OnboardingStateForm {
17458
18090
  readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
@@ -17841,24 +18473,6 @@ declare namespace io.flow.internal.v0.models {
17841
18473
  readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
17842
18474
  readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
17843
18475
  }
17844
- interface OrganizationBooleanValue {
17845
- readonly id: string;
17846
- readonly organization: io.flow.common.v0.models.OrganizationReference;
17847
- readonly feature: io.flow.internal.v0.models.FeatureIdReference;
17848
- readonly value: boolean;
17849
- }
17850
- interface OrganizationBooleanValueDeleted {
17851
- readonly discriminator: 'organization_boolean_value_deleted';
17852
- readonly event_id: string;
17853
- readonly timestamp: string;
17854
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
17855
- }
17856
- interface OrganizationBooleanValueUpserted {
17857
- readonly discriminator: 'organization_boolean_value_upserted';
17858
- readonly event_id: string;
17859
- readonly timestamp: string;
17860
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
17861
- }
17862
18476
  interface OrganizationBusinessEntity {
17863
18477
  readonly id: string;
17864
18478
  readonly name: string;
@@ -18376,6 +18990,7 @@ declare namespace io.flow.internal.v0.models {
18376
18990
  interface PaymentIs {
18377
18991
  readonly lvg: boolean;
18378
18992
  readonly manual: boolean;
18993
+ readonly managed_pricing?: boolean;
18379
18994
  }
18380
18995
  interface PaymentMethodDetail {
18381
18996
  readonly method: io.flow.reference.v0.models.PaymentMethod;
@@ -18782,6 +19397,70 @@ declare namespace io.flow.internal.v0.models {
18782
19397
  readonly construction?: string;
18783
19398
  readonly item: string;
18784
19399
  }
19400
+ interface PreonboardingClassificationRabbitmqEnvelope {
19401
+ readonly messageType: string[];
19402
+ readonly message: io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
19403
+ }
19404
+ interface PreonboardingClassificationRabbitmqMessage {
19405
+ readonly MerchantId: string;
19406
+ readonly ProductName: string;
19407
+ readonly ProductDescription: string;
19408
+ readonly ProductIdInternal: string;
19409
+ readonly ProductIdExternal: string;
19410
+ readonly ProductGroupCode?: string;
19411
+ readonly ProductUrl?: string;
19412
+ readonly ProductImage?: string;
19413
+ readonly ProductAttributes: Record<string, string>;
19414
+ readonly Categories?: string[];
19415
+ readonly PlatformId: io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
19416
+ }
19417
+ interface PreonboardingClassificationRequest {
19418
+ readonly id: string;
19419
+ readonly merchant_id: string;
19420
+ readonly product_id: string;
19421
+ readonly channel: string;
19422
+ readonly request_id: string;
19423
+ readonly status: io.flow.internal.v0.enums.PreonboardingRequestStatus;
19424
+ readonly name: string;
19425
+ readonly price: io.flow.common.v0.models.Money;
19426
+ readonly description: string;
19427
+ readonly relative_ranking: number;
19428
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
19429
+ readonly fingerprint: string;
19430
+ }
19431
+ interface PreonboardingClassificationResult {
19432
+ readonly id: string;
19433
+ readonly merchant_id: string;
19434
+ readonly product_id: string;
19435
+ readonly channel: string;
19436
+ readonly hs6_code?: string;
19437
+ readonly probability?: number;
19438
+ readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
19439
+ readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
19440
+ }
19441
+ interface PreonboardingMerchant {
19442
+ readonly merchant_id: string;
19443
+ readonly channel: string;
19444
+ readonly catalog_size: number;
19445
+ readonly processed_product_count: number;
19446
+ readonly last_request: string;
19447
+ }
19448
+ interface PreonboardingSellabilityResult {
19449
+ readonly merchant_id: string;
19450
+ readonly product_id: string;
19451
+ readonly channel: string;
19452
+ readonly request_id: string;
19453
+ readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
19454
+ readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
19455
+ readonly hs6_code?: string;
19456
+ readonly hs6_code_source?: io.flow.internal.v0.enums.Hs6CodeSource;
19457
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
19458
+ readonly rule_ids?: string[];
19459
+ readonly matching_positive_keywords?: string[];
19460
+ readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
19461
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
19462
+ readonly fingerprint: string;
19463
+ }
18785
19464
  interface PriceInclusivity {
18786
19465
  readonly tax?: boolean;
18787
19466
  readonly duty?: boolean;
@@ -19005,7 +19684,7 @@ declare namespace io.flow.internal.v0.models {
19005
19684
  readonly product_id?: string;
19006
19685
  readonly request_id: string;
19007
19686
  readonly hs6_code: string;
19008
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
19687
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
19009
19688
  readonly rule_ids: string[];
19010
19689
  }
19011
19690
  interface ProductSellabilityInternalForm {
@@ -19016,7 +19695,7 @@ declare namespace io.flow.internal.v0.models {
19016
19695
  readonly categories: string[];
19017
19696
  }
19018
19697
  interface ProductSellabilityInternalResult {
19019
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
19698
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
19020
19699
  readonly rule_ids: string[];
19021
19700
  }
19022
19701
  interface ProductSellabilityResult {
@@ -19025,7 +19704,7 @@ declare namespace io.flow.internal.v0.models {
19025
19704
  readonly request_id: string;
19026
19705
  readonly hs6_code: string;
19027
19706
  readonly restricted_regions?: string[];
19028
- readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
19707
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
19029
19708
  readonly rule_ids?: string[];
19030
19709
  readonly taxonomy_category?: string;
19031
19710
  }
@@ -19054,6 +19733,11 @@ declare namespace io.flow.internal.v0.models {
19054
19733
  readonly discriminator: 'shipping_notification';
19055
19734
  readonly shipping_notification_id: string;
19056
19735
  }
19736
+ interface ProofOfPostingSynthetic {
19737
+ readonly discriminator: 'synthetic';
19738
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19739
+ readonly created_at: string;
19740
+ }
19057
19741
  interface ProofOfPostingTimeElapsed {
19058
19742
  readonly discriminator: 'time_elapsed';
19059
19743
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -19466,6 +20150,10 @@ declare namespace io.flow.internal.v0.models {
19466
20150
  readonly currency: string;
19467
20151
  readonly source: io.flow.internal.v0.models.AccountSource;
19468
20152
  }
20153
+ interface ReportAmountRange {
20154
+ readonly min?: number;
20155
+ readonly max?: number;
20156
+ }
19469
20157
  interface ReportBankAccount {
19470
20158
  readonly id?: string;
19471
20159
  readonly last4?: string;
@@ -19487,6 +20175,7 @@ declare namespace io.flow.internal.v0.models {
19487
20175
  interface ReportFilter {
19488
20176
  readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
19489
20177
  readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
20178
+ readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
19490
20179
  }
19491
20180
  interface ReportForm {
19492
20181
  readonly type: io.flow.internal.v0.enums.ReportType;
@@ -19868,7 +20557,7 @@ declare namespace io.flow.internal.v0.models {
19868
20557
  interface RestrictionOrganization {
19869
20558
  readonly id: string;
19870
20559
  readonly name: string;
19871
- readonly environment: io.flow.common.v0.enums.Environment;
20560
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
19872
20561
  readonly url?: string;
19873
20562
  readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
19874
20563
  readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
@@ -19914,7 +20603,7 @@ declare namespace io.flow.internal.v0.models {
19914
20603
  interface RestrictionOrganizationSummary {
19915
20604
  readonly id: string;
19916
20605
  readonly name: string;
19917
- readonly environment: io.flow.common.v0.enums.Environment;
20606
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
19918
20607
  readonly source: io.flow.internal.v0.enums.OrganizationSource;
19919
20608
  }
19920
20609
  interface RestrictionProduct {
@@ -19977,7 +20666,7 @@ declare namespace io.flow.internal.v0.models {
19977
20666
  readonly attribute_names?: string[];
19978
20667
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
19979
20668
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
19980
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20669
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
19981
20670
  }
19982
20671
  interface RestrictionRuleDecisionForm {
19983
20672
  readonly rule_id: string;
@@ -20031,7 +20720,7 @@ declare namespace io.flow.internal.v0.models {
20031
20720
  readonly attribute_names?: string[];
20032
20721
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
20033
20722
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
20034
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20723
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20035
20724
  }
20036
20725
  interface RestrictionRuleLaneExemption {
20037
20726
  readonly id: string;
@@ -20088,23 +20777,12 @@ declare namespace io.flow.internal.v0.models {
20088
20777
  readonly oldest_pv_product_date_transacting: string;
20089
20778
  readonly oldest_pc_product_date_setup_complete: string;
20090
20779
  readonly oldest_pc_product_date_transacting: string;
20091
- readonly num_orgs_setup_complete_prs: number;
20092
- readonly num_products_setup_complete_prs: number;
20093
- readonly num_orgs_transacting_prs: number;
20094
- readonly num_products_transacting_prs: number;
20095
- readonly oldest_pr_product_date_setup_complete: string;
20096
- readonly oldest_pr_date_transacting: string;
20097
20780
  readonly percent_products_reviewed_transacting?: number;
20098
20781
  readonly num_pv_inflow_net_new: number;
20099
20782
  readonly num_pv_outflow_human_decisions: number;
20100
20783
  readonly num_pv_outflow_auto_review_decisions: number;
20101
20784
  readonly num_pv_outflow_side_effect_decisions: number;
20102
- readonly num_pr_inflow_net_new: number;
20103
- readonly num_pr_outflow_human_decisions: number;
20104
- readonly num_pr_outflow_auto_review_decisions: number;
20105
- readonly num_pr_outflow_side_effect_decisions: number;
20106
20785
  readonly num_pending_decisions_transacting: number;
20107
- readonly oldest_insufficient_details_pv_onboarding?: string;
20108
20786
  readonly oldest_insufficient_details_pv_active?: string;
20109
20787
  readonly oldest_insufficient_details_pv_transacting?: string;
20110
20788
  readonly num_products_with_fs_result?: number;
@@ -20238,6 +20916,12 @@ declare namespace io.flow.internal.v0.models {
20238
20916
  readonly type: io.flow.internal.v0.enums.RohanItemType;
20239
20917
  readonly added_on: string;
20240
20918
  }
20919
+ interface RohanItemDeleted {
20920
+ readonly discriminator: 'rohan_item_deleted';
20921
+ readonly event_id: string;
20922
+ readonly timestamp: string;
20923
+ readonly id: string;
20924
+ }
20241
20925
  interface RohanItemForm {
20242
20926
  readonly number: string;
20243
20927
  readonly amount: io.flow.common.v0.models.Price;
@@ -20245,6 +20929,12 @@ declare namespace io.flow.internal.v0.models {
20245
20929
  readonly type: io.flow.internal.v0.enums.RohanItemType;
20246
20930
  readonly added_on: string;
20247
20931
  }
20932
+ interface RohanItemUpserted {
20933
+ readonly discriminator: 'rohan_item_upserted';
20934
+ readonly event_id: string;
20935
+ readonly timestamp: string;
20936
+ readonly item: io.flow.internal.v0.models.RohanItem;
20937
+ }
20248
20938
  interface RoutingAccount {
20249
20939
  readonly discriminator: 'routing_account';
20250
20940
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -20291,6 +20981,12 @@ declare namespace io.flow.internal.v0.models {
20291
20981
  readonly type: io.flow.internal.v0.enums.SarveshItemType;
20292
20982
  readonly added_on: string;
20293
20983
  }
20984
+ interface SarveshItemDeleted {
20985
+ readonly discriminator: 'sarvesh_item_deleted';
20986
+ readonly event_id: string;
20987
+ readonly timestamp: string;
20988
+ readonly id: string;
20989
+ }
20294
20990
  interface SarveshItemForm {
20295
20991
  readonly number: string;
20296
20992
  readonly amount: io.flow.common.v0.models.Price;
@@ -20298,6 +20994,12 @@ declare namespace io.flow.internal.v0.models {
20298
20994
  readonly type: io.flow.internal.v0.enums.SarveshItemType;
20299
20995
  readonly added_on: string;
20300
20996
  }
20997
+ interface SarveshItemUpserted {
20998
+ readonly discriminator: 'sarvesh_item_upserted';
20999
+ readonly event_id: string;
21000
+ readonly timestamp: string;
21001
+ readonly item: io.flow.internal.v0.models.SarveshItem;
21002
+ }
20301
21003
  interface ScheduledPayment {
20302
21004
  readonly payment: io.flow.internal.v0.models.ReportPayment;
20303
21005
  readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -20384,9 +21086,9 @@ declare namespace io.flow.internal.v0.models {
20384
21086
  readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
20385
21087
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
20386
21088
  readonly current_rule_ids?: string[];
20387
- readonly current_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
21089
+ readonly current_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
20388
21090
  readonly merchant_rule_ids?: string[];
20389
- readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
21091
+ readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
20390
21092
  readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
20391
21093
  readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
20392
21094
  }
@@ -20430,6 +21132,48 @@ declare namespace io.flow.internal.v0.models {
20430
21132
  readonly freight_cost: number;
20431
21133
  readonly customer_price: number;
20432
21134
  }
21135
+ interface ShippingRateEstimateAvailableInternal {
21136
+ readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
21137
+ readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
21138
+ readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
21139
+ readonly total_amount: io.flow.common.v0.models.Money;
21140
+ readonly base_amount: io.flow.common.v0.models.Money;
21141
+ readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
21142
+ readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
21143
+ readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
21144
+ readonly weight_break?: number;
21145
+ readonly ratecard_id?: string;
21146
+ readonly lane_id?: string;
21147
+ readonly rate_level_key?: string;
21148
+ readonly glbe_shipping_method_id?: string;
21149
+ readonly glbe_proposition_name?: string;
21150
+ readonly channel_revenue_share_percentage?: number;
21151
+ readonly distance_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
21152
+ readonly weight_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
21153
+ }
21154
+ interface ShippingRateEstimateInternal {
21155
+ readonly channel_id: string;
21156
+ readonly organization_id: string;
21157
+ readonly service: string;
21158
+ readonly origin_address: io.flow.common.v0.models.Address;
21159
+ readonly destination_address: io.flow.common.v0.models.Address;
21160
+ readonly shipping_date_time: string;
21161
+ readonly available: io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
21162
+ }
21163
+ interface ShippingRateEstimateRequestInternal {
21164
+ readonly channel_id: string;
21165
+ readonly organization_id: string;
21166
+ readonly origin_address: io.flow.common.v0.models.Address;
21167
+ readonly destination_address: io.flow.common.v0.models.Address;
21168
+ readonly package_dimensions: io.flow.common.v0.models.Dimension;
21169
+ readonly shipping_date_time: string;
21170
+ readonly service: string;
21171
+ readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
21172
+ readonly duties_owed?: io.flow.common.v0.models.Money;
21173
+ readonly taxes_owed?: io.flow.common.v0.models.Money;
21174
+ readonly line_items?: io.flow.common.v0.models.LineItemForm[];
21175
+ readonly include_unpublished?: boolean;
21176
+ }
20433
21177
  interface ShopifyCatalogPublication {
20434
21178
  readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
20435
21179
  }
@@ -20641,6 +21385,13 @@ declare namespace io.flow.internal.v0.models {
20641
21385
  readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
20642
21386
  readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
20643
21387
  readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
21388
+ readonly organization_metrics?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
21389
+ }
21390
+ interface ShopifyMarketsOrganizationOrderMetrics {
21391
+ readonly organization_id: string;
21392
+ readonly shopify_order_count: number;
21393
+ readonly internal_order_count: number;
21394
+ readonly discrepancy_count?: number;
20644
21395
  }
20645
21396
  interface ShopifyMarketsQueuedRecord {
20646
21397
  readonly id: string;
@@ -21049,6 +21800,7 @@ declare namespace io.flow.internal.v0.models {
21049
21800
  }
21050
21801
  interface ShopperBreakdown {
21051
21802
  readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
21803
+ readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
21052
21804
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
21053
21805
  readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
21054
21806
  readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
@@ -21702,6 +22454,9 @@ declare namespace io.flow.internal.v0.models {
21702
22454
  readonly timestamp: string;
21703
22455
  readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
21704
22456
  }
22457
+ interface TaxTypeTotal {
22458
+ readonly value: io.flow.common.v0.models.Money;
22459
+ }
21705
22460
  interface TaxonomyAlignmentCheckResult {
21706
22461
  readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
21707
22462
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
@@ -22346,7 +23101,7 @@ declare namespace io.flow.internal.v0.unions {
22346
23101
  type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
22347
23102
  type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
22348
23103
  type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
22349
- 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.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.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;
23104
+ 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.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.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.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.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | 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;
22350
23105
  type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
22351
23106
  type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
22352
23107
  type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
@@ -22379,7 +23134,7 @@ declare namespace io.flow.internal.v0.unions {
22379
23134
  type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
22380
23135
  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;
22381
23136
  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;
22382
- 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;
23137
+ 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 | io.flow.internal.v0.models.ProofOfPostingSynthetic;
22383
23138
  type RestrictionAttributeRuleCondition = io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
22384
23139
  type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal;
22385
23140
  type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
@@ -22489,18 +23244,24 @@ export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayR
22489
23244
  export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
22490
23245
  export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
22491
23246
  export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
23247
+ export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
22492
23248
  export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
22493
23249
  export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
23250
+ export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
22494
23251
  export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
22495
23252
  export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
22496
23253
  export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
22497
23254
  export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
22498
23255
  export declare type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
23256
+ export declare type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
22499
23257
  export declare type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
22500
23258
  export declare type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
23259
+ export declare type AnirbanItemUpserted = io.flow.internal.v0.models.AnirbanItemUpserted;
22501
23260
  export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
23261
+ export declare type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
22502
23262
  export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
22503
23263
  export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
23264
+ export declare type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
22504
23265
  export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
22505
23266
  export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
22506
23267
  export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
@@ -22523,6 +23284,10 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
22523
23284
  export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
22524
23285
  export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
22525
23286
  export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
23287
+ export declare type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
23288
+ export declare type B2BTaxLedgerDocumentType = io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
23289
+ export declare type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
23290
+ export declare type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
22526
23291
  export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
22527
23292
  export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
22528
23293
  export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
@@ -22588,6 +23353,7 @@ export declare type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookE
22588
23353
  export declare type BrickWebhookEventResponse = io.flow.internal.v0.models.BrickWebhookEventResponse;
22589
23354
  export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
22590
23355
  export declare type BulkDutyUpdateValidationError = io.flow.internal.v0.models.BulkDutyUpdateValidationError;
23356
+ export declare type Cafe24MarketsWebhook = io.flow.internal.v0.models.Cafe24MarketsWebhook;
22591
23357
  export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
22592
23358
  export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
22593
23359
  export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
@@ -22762,6 +23528,7 @@ export declare type ClassificationDecision = io.flow.internal.v0.enums.Classific
22762
23528
  export declare type ClassificationDetails = io.flow.internal.v0.models.ClassificationDetails;
22763
23529
  export declare type ClassificationError = io.flow.internal.v0.models.ClassificationError;
22764
23530
  export declare type ClassificationErrorCode = io.flow.internal.v0.enums.ClassificationErrorCode;
23531
+ export declare type ClassificationFailureReason = io.flow.internal.v0.enums.ClassificationFailureReason;
22765
23532
  export declare type ClassificationForm = io.flow.internal.v0.unions.ClassificationForm;
22766
23533
  export declare type ClassificationFormWrapper = io.flow.internal.v0.models.ClassificationFormWrapper;
22767
23534
  export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
@@ -22999,7 +23766,6 @@ export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefa
22999
23766
  export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
23000
23767
  export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
23001
23768
  export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
23002
- export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
23003
23769
  export declare type FeatureReference = io.flow.internal.v0.models.FeatureReference;
23004
23770
  export declare type FeatureReleaseForm = io.flow.internal.v0.models.FeatureReleaseForm;
23005
23771
  export declare type FeatureRule = io.flow.internal.v0.unions.FeatureRule;
@@ -23117,6 +23883,11 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
23117
23883
  export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
23118
23884
  export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
23119
23885
  export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
23886
+ export declare type GabrielItem = io.flow.internal.v0.models.GabrielItem;
23887
+ export declare type GabrielItemDeleted = io.flow.internal.v0.models.GabrielItemDeleted;
23888
+ export declare type GabrielItemForm = io.flow.internal.v0.models.GabrielItemForm;
23889
+ export declare type GabrielItemType = io.flow.internal.v0.enums.GabrielItemType;
23890
+ export declare type GabrielItemUpserted = io.flow.internal.v0.models.GabrielItemUpserted;
23120
23891
  export declare type GeIngestionFileStatus = io.flow.internal.v0.enums.GeIngestionFileStatus;
23121
23892
  export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
23122
23893
  export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
@@ -23152,9 +23923,12 @@ export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.mo
23152
23923
  export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
23153
23924
  export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
23154
23925
  export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
23926
+ export declare type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
23155
23927
  export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
23156
23928
  export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
23929
+ export declare type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
23157
23930
  export declare type Hs6 = io.flow.internal.v0.models.Hs6;
23931
+ export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
23158
23932
  export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
23159
23933
  export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
23160
23934
  export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
@@ -23282,6 +24056,10 @@ export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPredicti
23282
24056
  export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
23283
24057
  export declare type Landmark = io.flow.internal.v0.models.Landmark;
23284
24058
  export declare type LastFailureSummary = io.flow.internal.v0.models.LastFailureSummary;
24059
+ export declare type LedgerReport = io.flow.internal.v0.models.LedgerReport;
24060
+ export declare type LedgerReportType = io.flow.internal.v0.enums.LedgerReportType;
24061
+ export declare type LedgerReportUrl = io.flow.internal.v0.models.LedgerReportUrl;
24062
+ export declare type LedgerReportUrlType = io.flow.internal.v0.enums.LedgerReportUrlType;
23285
24063
  export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
23286
24064
  export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
23287
24065
  export declare type Liability = io.flow.internal.v0.models.Liability;
@@ -23361,8 +24139,10 @@ export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
23361
24139
  export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
23362
24140
  export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
23363
24141
  export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
24142
+ export declare type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
23364
24143
  export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
23365
24144
  export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
24145
+ export declare type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
23366
24146
  export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
23367
24147
  export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
23368
24148
  export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
@@ -23449,9 +24229,6 @@ export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.O
23449
24229
  export declare type OrganizationBankAccountDeleted = io.flow.internal.v0.models.OrganizationBankAccountDeleted;
23450
24230
  export declare type OrganizationBankAccountUpserted = io.flow.internal.v0.models.OrganizationBankAccountUpserted;
23451
24231
  export declare type OrganizationBillingStatement = io.flow.internal.v0.models.OrganizationBillingStatement;
23452
- export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
23453
- export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
23454
- export declare type OrganizationBooleanValueUpserted = io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
23455
24232
  export declare type OrganizationBusinessEntity = io.flow.internal.v0.models.OrganizationBusinessEntity;
23456
24233
  export declare type OrganizationBusinessEntityDeleted = io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
23457
24234
  export declare type OrganizationBusinessEntityUpserted = io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
@@ -23608,6 +24385,16 @@ export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm
23608
24385
  export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
23609
24386
  export declare type Prediction = io.flow.internal.v0.models.Prediction;
23610
24387
  export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
24388
+ export declare type PreonboardingClassificationDecision = io.flow.internal.v0.enums.PreonboardingClassificationDecision;
24389
+ export declare type PreonboardingClassificationPlatform = io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
24390
+ export declare type PreonboardingClassificationRabbitmqEnvelope = io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope;
24391
+ export declare type PreonboardingClassificationRabbitmqMessage = io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
24392
+ export declare type PreonboardingClassificationRequest = io.flow.internal.v0.models.PreonboardingClassificationRequest;
24393
+ export declare type PreonboardingClassificationResult = io.flow.internal.v0.models.PreonboardingClassificationResult;
24394
+ export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.PreonboardingClassificationType;
24395
+ export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
24396
+ export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
24397
+ export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
23611
24398
  export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
23612
24399
  export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
23613
24400
  export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
@@ -23660,6 +24447,7 @@ export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOf
23660
24447
  export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
23661
24448
  export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
23662
24449
  export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
24450
+ export declare type ProofOfPostingSynthetic = io.flow.internal.v0.models.ProofOfPostingSynthetic;
23663
24451
  export declare type ProofOfPostingTimeElapsed = io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
23664
24452
  export declare type PspDistribution = io.flow.internal.v0.models.PspDistribution;
23665
24453
  export declare type PspRoutingDistribution = io.flow.internal.v0.models.PspRoutingDistribution;
@@ -23731,6 +24519,7 @@ export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
23731
24519
  export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
23732
24520
  export declare type Report = io.flow.internal.v0.models.Report;
23733
24521
  export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
24522
+ export declare type ReportAmountRange = io.flow.internal.v0.models.ReportAmountRange;
23734
24523
  export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
23735
24524
  export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
23736
24525
  export declare type ReportFile = io.flow.internal.v0.models.ReportFile;
@@ -23861,8 +24650,10 @@ export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRe
23861
24650
  export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
23862
24651
  export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
23863
24652
  export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
24653
+ export declare type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
23864
24654
  export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
23865
24655
  export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
24656
+ export declare type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
23866
24657
  export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
23867
24658
  export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
23868
24659
  export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
@@ -23871,8 +24662,10 @@ export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPayment
23871
24662
  export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
23872
24663
  export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
23873
24664
  export declare type SarveshItem = io.flow.internal.v0.models.SarveshItem;
24665
+ export declare type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
23874
24666
  export declare type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
23875
24667
  export declare type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
24668
+ export declare type SarveshItemUpserted = io.flow.internal.v0.models.SarveshItemUpserted;
23876
24669
  export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
23877
24670
  export declare type Screen = io.flow.internal.v0.models.Screen;
23878
24671
  export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -23896,6 +24689,9 @@ export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCos
23896
24689
  export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
23897
24690
  export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
23898
24691
  export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
24692
+ export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
24693
+ export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
24694
+ export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
23899
24695
  export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
23900
24696
  export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
23901
24697
  export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
@@ -23935,6 +24731,7 @@ export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.Shop
23935
24731
  export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
23936
24732
  export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
23937
24733
  export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
24734
+ export declare type ShopifyMarketsOrganizationOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics;
23938
24735
  export declare type ShopifyMarketsQueuedRecord = io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
23939
24736
  export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
23940
24737
  export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
@@ -24115,6 +24912,7 @@ export declare type TaxTransaction = io.flow.internal.v0.models.TaxTransaction;
24115
24912
  export declare type TaxTransactionDeleted = io.flow.internal.v0.models.TaxTransactionDeleted;
24116
24913
  export declare type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
24117
24914
  export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTransactionUpserted;
24915
+ export declare type TaxTypeTotal = io.flow.internal.v0.models.TaxTypeTotal;
24118
24916
  export declare type TaxonomyAlignmentCheckResult = io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
24119
24917
  export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
24120
24918
  export declare type TaxonomyCategoryClassificationAlignment = io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;