@flowio/types 11.24.129 → 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;
@@ -7223,9 +7484,9 @@ declare namespace io.flow.channel.internal.v0.models {
7223
7484
  readonly description: string;
7224
7485
  readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
7225
7486
  }
7226
- interface ChannelOrganizationDomain {
7487
+ interface ChannelOrganizationDomains {
7227
7488
  readonly internal: string;
7228
- readonly public: string;
7489
+ readonly external: string;
7229
7490
  }
7230
7491
  interface ChannelOrganizationInstallation {
7231
7492
  readonly organization: io.flow.channel.v0.models.ChannelOrganization;
@@ -7236,7 +7497,7 @@ declare namespace io.flow.channel.internal.v0.models {
7236
7497
  readonly metadata: io.flow.channel.internal.v0.models.ChannelOrganizationMetadata;
7237
7498
  }
7238
7499
  interface ChannelOrganizationMetadata {
7239
- readonly domain: io.flow.channel.internal.v0.models.ChannelOrganizationDomain;
7500
+ readonly domain: io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
7240
7501
  readonly token: string;
7241
7502
  }
7242
7503
  interface ChannelOrganizationToken {
@@ -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;
@@ -11104,6 +11511,22 @@ declare namespace io.flow.billing.v0.models {
11104
11511
  interface TransactionMetadataTaxDuty {
11105
11512
  readonly discriminator: 'transaction_tax_duty';
11106
11513
  readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
11514
+ readonly local_currency?: string;
11515
+ readonly actual?: io.flow.billing.v0.models.TransactionMetadataTaxDutyActual;
11516
+ readonly estimate?: io.flow.billing.v0.models.TransactionMetadataTaxDutyEstimate;
11517
+ readonly delta?: io.flow.billing.v0.models.TransactionMetadataTaxDutyDelta;
11518
+ }
11519
+ interface TransactionMetadataTaxDutyActual {
11520
+ readonly base?: number;
11521
+ readonly local?: number;
11522
+ }
11523
+ interface TransactionMetadataTaxDutyDelta {
11524
+ readonly base?: number;
11525
+ readonly local?: number;
11526
+ }
11527
+ interface TransactionMetadataTaxDutyEstimate {
11528
+ readonly base?: number;
11529
+ readonly local?: number;
11107
11530
  }
11108
11531
  interface TransactionMetadataTrueup {
11109
11532
  readonly discriminator: 'trueup';
@@ -11515,6 +11938,9 @@ declare namespace io.flow.sellability.v0.enums {
11515
11938
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
11516
11939
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
11517
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';
11518
11944
  }
11519
11945
  declare namespace io.flow.sellability.v0.models {
11520
11946
  interface ProductSellability {
@@ -11523,9 +11949,10 @@ declare namespace io.flow.sellability.v0.models {
11523
11949
  readonly product_id?: string;
11524
11950
  readonly request_id: string;
11525
11951
  readonly hs6_code: string;
11526
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
11952
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
11527
11953
  }
11528
11954
  interface ProductSellabilityForm {
11955
+ readonly discriminator: 'product_sellability_form';
11529
11956
  readonly shop_id: string;
11530
11957
  readonly product_id?: string;
11531
11958
  readonly name: string;
@@ -11535,18 +11962,64 @@ declare namespace io.flow.sellability.v0.models {
11535
11962
  readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
11536
11963
  readonly dry_run?: boolean;
11537
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
+ }
11538
11972
  interface SellabilityError {
11539
11973
  readonly discriminator: 'sellability_error';
11540
11974
  readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
11541
11975
  readonly messages: string[];
11542
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
+ }
11543
12015
  interface SellablilityRegionResult {
11544
12016
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
11545
12017
  readonly regions: string[];
11546
12018
  }
11547
12019
  }
11548
12020
  declare namespace io.flow.sellability.v0.unions {
11549
- 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;
11550
12023
  }
11551
12024
  declare namespace io.flow.currency.v0.models {
11552
12025
  interface Rate {
@@ -11663,6 +12136,20 @@ declare namespace io.flow.organization.v0.models {
11663
12136
  readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
11664
12137
  readonly status?: io.flow.common.v0.enums.OrganizationStatus;
11665
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
+ }
11666
12153
  interface OrganizationVersion {
11667
12154
  readonly id: string;
11668
12155
  readonly timestamp: string;
@@ -11677,6 +12164,16 @@ declare namespace io.flow.organization.v0.models {
11677
12164
  interface RegionSettingForm {
11678
12165
  readonly status: io.flow.common.v0.enums.AvailabilityStatus;
11679
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
+ }
11680
12177
  }
11681
12178
  declare namespace io.flow.billing.bank.account.v0.models {
11682
12179
  interface BankAccountInfoCan {
@@ -11721,6 +12218,8 @@ declare namespace io.flow.internal.v0.enums {
11721
12218
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
11722
12219
  type ApplicablePreferentialRate = 'baby' | 'children';
11723
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';
11724
12223
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
11725
12224
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
11726
12225
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
@@ -11728,7 +12227,7 @@ declare namespace io.flow.internal.v0.enums {
11728
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';
11729
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';
11730
12229
  type BillingTransactionStatus = 'pending_proof' | 'posted';
11731
- 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';
11732
12231
  type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
11733
12232
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
11734
12233
  type CarrierChargeType = 'label' | 'tax' | 'other';
@@ -11742,7 +12241,7 @@ declare namespace io.flow.internal.v0.enums {
11742
12241
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
11743
12242
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
11744
12243
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
11745
- 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';
11746
12245
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
11747
12246
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
11748
12247
  type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
@@ -11750,7 +12249,7 @@ declare namespace io.flow.internal.v0.enums {
11750
12249
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing' | 'order';
11751
12250
  type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
11752
12251
  type ChargeEstimateSource = 'global-e' | 'shopify';
11753
- type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
12252
+ type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge' | 'fuel_surcharge' | 'delivery_area_surcharge';
11754
12253
  type ChargebackPaymentStatus = 'captured' | 'refunded';
11755
12254
  type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
11756
12255
  type CheckoutAssetType = 'stylesheet' | 'javascript';
@@ -11759,7 +12258,8 @@ declare namespace io.flow.internal.v0.enums {
11759
12258
  type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
11760
12259
  type ClassificationDecision = 'Accept' | 'Reject';
11761
12260
  type ClassificationErrorCode = 'generic_error';
11762
- type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
12261
+ type ClassificationFailureReason = 'low_confidence' | 'timeout';
12262
+ type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
11763
12263
  type ClassificationScope = 'Item' | 'Product';
11764
12264
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
11765
12265
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
@@ -11796,7 +12296,7 @@ declare namespace io.flow.internal.v0.enums {
11796
12296
  type EmptyAttribute = 'irrelevant';
11797
12297
  type ErpFileType = 'vendor';
11798
12298
  type EvaluationCheckResult = 'pass' | 'fail';
11799
- 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';
11800
12300
  type ExperienceImportType = 'experience_with_settings';
11801
12301
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
11802
12302
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -11809,12 +12309,14 @@ declare namespace io.flow.internal.v0.enums {
11809
12309
  type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
11810
12310
  type FraudProviderStatus = 'active' | 'archived';
11811
12311
  type FraudReviewResponsibleParty = 'flow' | 'organization';
12312
+ type GabrielItemType = 'physical' | 'digital';
11812
12313
  type GeIngestionFileStatus = 'pending' | 'processed';
11813
12314
  type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
11814
12315
  type GoogleAnalyticsPlugin = 'ec';
11815
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';
11816
12317
  type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
11817
12318
  type HoseinItemType = 'physical' | 'digital';
12319
+ type Hs6CodeSource = 'sellability' | 'classification' | 'human';
11818
12320
  type HttpMethod = 'get' | 'post';
11819
12321
  type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
11820
12322
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
@@ -11833,13 +12335,15 @@ declare namespace io.flow.internal.v0.enums {
11833
12335
  type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
11834
12336
  type LabelRequestResultState = 'success' | 'failure';
11835
12337
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12338
+ type LedgerReportType = 'periodic_mor_jurisdiction_report';
12339
+ type LedgerReportUrlType = 'sharepoint' | 's3';
11836
12340
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
11837
12341
  type LogisticsCapability = 'logistics_address_correction';
11838
12342
  type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
11839
12343
  type ManualReviewRuleStatus = 'active' | 'archived';
11840
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';
11841
12345
  type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
11842
- 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';
11843
12347
  type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
11844
12348
  type MixedBagWeight = '0' | '1' | '2';
11845
12349
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
@@ -11848,7 +12352,7 @@ declare namespace io.flow.internal.v0.enums {
11848
12352
  type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
11849
12353
  type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
11850
12354
  type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
11851
- 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';
11852
12356
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
11853
12357
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
11854
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';
@@ -11869,7 +12373,7 @@ declare namespace io.flow.internal.v0.enums {
11869
12373
  type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
11870
12374
  type OrganizationRestrictionRiskLevel = '5' | '15';
11871
12375
  type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
11872
- type OrganizationSource = 'shopify' | 'smb' | 'enterprise';
12376
+ type OrganizationSource = 'smb' | 'enterprise';
11873
12377
  type OutputStyle = 'flow' | 'shopify_p1';
11874
12378
  type Owner = 'flow' | 'organization';
11875
12379
  type PaymentShortUrlDiscriminator = 'adyen_3ds2';
@@ -11879,6 +12383,10 @@ declare namespace io.flow.internal.v0.enums {
11879
12383
  type PendingRecordType = 'verification' | 'classification' | 'restriction';
11880
12384
  type PrateekItemType = 'physical' | 'digital';
11881
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';
11882
12390
  type PriceSelector = 'minimum' | 'maximum';
11883
12391
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
11884
12392
  type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
@@ -11893,7 +12401,7 @@ declare namespace io.flow.internal.v0.enums {
11893
12401
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
11894
12402
  type ReportPaymentType = 'credit' | 'debit';
11895
12403
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
11896
- 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';
11897
12405
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
11898
12406
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
11899
12407
  type ResponsibleParty = 'flow' | 'organization';
@@ -11903,8 +12411,8 @@ declare namespace io.flow.internal.v0.enums {
11903
12411
  type RestrictionAttributeOperator = 'and' | 'or';
11904
12412
  type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
11905
12413
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
11906
- type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
11907
- type RestrictionOrganizationSource = 'shopify' | 'smb' | 'enterprise';
12414
+ type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
12415
+ type RestrictionOrganizationSource = 'smb' | 'enterprise';
11908
12416
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
11909
12417
  type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
11910
12418
  type RestrictionRuleExceptionAction = 'allow' | 'deny';
@@ -11935,7 +12443,7 @@ declare namespace io.flow.internal.v0.enums {
11935
12443
  type SubscriptionFrequency = 'yearly' | 'monthly';
11936
12444
  type SuggestionAction = 'accept' | 'validate' | 'review';
11937
12445
  type TariffEligibilityType = 'rex';
11938
- 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';
11939
12447
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
11940
12448
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
11941
12449
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
@@ -12562,6 +13070,12 @@ declare namespace io.flow.internal.v0.models {
12562
13070
  readonly type: io.flow.internal.v0.enums.AldoItemType;
12563
13071
  readonly added_on: string;
12564
13072
  }
13073
+ interface AldoItemDeleted {
13074
+ readonly discriminator: 'aldo_item_deleted';
13075
+ readonly event_id: string;
13076
+ readonly timestamp: string;
13077
+ readonly id: string;
13078
+ }
12565
13079
  interface AldoItemForm {
12566
13080
  readonly number: string;
12567
13081
  readonly amount: io.flow.common.v0.models.Price;
@@ -12569,6 +13083,12 @@ declare namespace io.flow.internal.v0.models {
12569
13083
  readonly type: io.flow.internal.v0.enums.AldoItemType;
12570
13084
  readonly added_on: string;
12571
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
+ }
12572
13092
  interface AllItemsExport {
12573
13093
  readonly discriminator: 'all_items_export';
12574
13094
  readonly event_id: string;
@@ -12595,6 +13115,12 @@ declare namespace io.flow.internal.v0.models {
12595
13115
  readonly type: io.flow.internal.v0.enums.AnirbanItemType;
12596
13116
  readonly added_on: string;
12597
13117
  }
13118
+ interface AnirbanItemDeleted {
13119
+ readonly discriminator: 'anirban_item_deleted';
13120
+ readonly event_id: string;
13121
+ readonly timestamp: string;
13122
+ readonly id: string;
13123
+ }
12598
13124
  interface AnirbanItemForm {
12599
13125
  readonly number: string;
12600
13126
  readonly amount: io.flow.common.v0.models.Price;
@@ -12602,6 +13128,12 @@ declare namespace io.flow.internal.v0.models {
12602
13128
  readonly type: io.flow.internal.v0.enums.AnirbanItemType;
12603
13129
  readonly added_on: string;
12604
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
+ }
12605
13137
  interface AnshItem {
12606
13138
  readonly id: string;
12607
13139
  readonly number: string;
@@ -12610,6 +13142,12 @@ declare namespace io.flow.internal.v0.models {
12610
13142
  readonly type: io.flow.internal.v0.enums.AnshItemType;
12611
13143
  readonly added_on: string;
12612
13144
  }
13145
+ interface AnshItemDeleted {
13146
+ readonly discriminator: 'ansh_item_deleted';
13147
+ readonly event_id: string;
13148
+ readonly timestamp: string;
13149
+ readonly id: string;
13150
+ }
12613
13151
  interface AnshItemForm {
12614
13152
  readonly number: string;
12615
13153
  readonly amount: io.flow.common.v0.models.Price;
@@ -12617,6 +13155,12 @@ declare namespace io.flow.internal.v0.models {
12617
13155
  readonly type: io.flow.internal.v0.enums.AnshItemType;
12618
13156
  readonly added_on: string;
12619
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
+ }
12620
13164
  interface ApplePayAuthorizationPayload {
12621
13165
  readonly discriminator: 'apple_pay_authorization_payload';
12622
13166
  readonly apple_pay_token: string;
@@ -12638,6 +13182,7 @@ declare namespace io.flow.internal.v0.models {
12638
13182
  interface AttributeRule {
12639
13183
  readonly restriction_attribute_rules: io.flow.internal.v0.models.RestrictionAttributeRule[];
12640
13184
  readonly default_result?: io.flow.internal.v0.enums.RestrictionAttributeResult;
13185
+ readonly require_msds?: boolean;
12641
13186
  }
12642
13187
  interface AuthenticationForm {
12643
13188
  readonly password: string;
@@ -12703,6 +13248,41 @@ declare namespace io.flow.internal.v0.models {
12703
13248
  readonly keywords?: string[];
12704
13249
  readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
12705
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
+ }
12706
13286
  interface BankAccount {
12707
13287
  readonly status: io.flow.internal.v0.enums.BankAccountStatus;
12708
13288
  readonly hold_created_at?: string;
@@ -12969,6 +13549,8 @@ declare namespace io.flow.internal.v0.models {
12969
13549
  readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
12970
13550
  readonly ending_balance: io.flow.common.v0.models.Price;
12971
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;
12972
13554
  }
12973
13555
  interface BillingStatementUpserted {
12974
13556
  readonly discriminator: 'billing_statement_upserted';
@@ -13069,6 +13651,9 @@ declare namespace io.flow.internal.v0.models {
13069
13651
  readonly reason: string;
13070
13652
  readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
13071
13653
  }
13654
+ interface Cafe24MarketsWebhook {
13655
+ readonly placeholder?: any;
13656
+ }
13072
13657
  interface CalculatedTaxAmount {
13073
13658
  readonly discriminator: 'calculated_tax_amount';
13074
13659
  readonly amount: number;
@@ -13596,6 +14181,7 @@ declare namespace io.flow.internal.v0.models {
13596
14181
  readonly order_updated_at?: string;
13597
14182
  readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
13598
14183
  readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
14184
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
13599
14185
  }
13600
14186
  interface ChannelOrderAcceptanceDeleted {
13601
14187
  readonly discriminator: 'channel_order_acceptance_deleted';
@@ -13665,9 +14251,9 @@ declare namespace io.flow.internal.v0.models {
13665
14251
  readonly channel_id: string;
13666
14252
  readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
13667
14253
  }
13668
- interface ChannelOrganizationDomain {
14254
+ interface ChannelOrganizationDomains {
13669
14255
  readonly internal: string;
13670
- readonly public: string;
14256
+ readonly external: string;
13671
14257
  }
13672
14258
  interface ChannelOrganizationIdentifier {
13673
14259
  readonly id: string;
@@ -13697,7 +14283,7 @@ declare namespace io.flow.internal.v0.models {
13697
14283
  readonly metadata: io.flow.internal.v0.models.ChannelOrganizationMetadata;
13698
14284
  }
13699
14285
  interface ChannelOrganizationMetadata {
13700
- readonly domain: io.flow.internal.v0.models.ChannelOrganizationDomain;
14286
+ readonly domain: io.flow.internal.v0.models.ChannelOrganizationDomains;
13701
14287
  readonly token: string;
13702
14288
  }
13703
14289
  interface ChannelOrganizationPublicationOwner {
@@ -13747,6 +14333,21 @@ declare namespace io.flow.internal.v0.models {
13747
14333
  readonly effective_at: string;
13748
14334
  readonly timestamp?: string;
13749
14335
  }
14336
+ interface ChannelShop {
14337
+ readonly id: string;
14338
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
14339
+ readonly channel: io.flow.common.v0.models.ChannelReference;
14340
+ readonly external_id: string;
14341
+ readonly name: string;
14342
+ readonly domains: io.flow.internal.v0.models.ChannelOrganizationDomains;
14343
+ }
14344
+ interface ChannelShopForm {
14345
+ readonly channel_id: string;
14346
+ readonly external_id: string;
14347
+ readonly name: string;
14348
+ readonly domains: io.flow.internal.v0.models.ChannelOrganizationDomains;
14349
+ readonly tokens: io.flow.internal.v0.models.Tokens;
14350
+ }
13750
14351
  interface ChannelTransaction {
13751
14352
  readonly discriminator: 'channel_transaction';
13752
14353
  readonly transaction: io.flow.internal.v0.models.TransactionReference;
@@ -15229,9 +15830,6 @@ declare namespace io.flow.internal.v0.models {
15229
15830
  readonly locale?: string;
15230
15831
  readonly region?: string;
15231
15832
  }
15232
- interface FeatureIdReference {
15233
- readonly id: string;
15234
- }
15235
15833
  interface FeatureReference {
15236
15834
  readonly id: string;
15237
15835
  readonly key: string;
@@ -15844,6 +16442,7 @@ declare namespace io.flow.internal.v0.models {
15844
16442
  readonly fulfilled_at: string;
15845
16443
  readonly sequence_number: number;
15846
16444
  readonly completes_order: boolean;
16445
+ readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
15847
16446
  }
15848
16447
  interface FulfillmentStatusUpserted {
15849
16448
  readonly discriminator: 'fulfillment_status_upserted';
@@ -15912,6 +16511,33 @@ declare namespace io.flow.internal.v0.models {
15912
16511
  readonly local: io.flow.common.v0.models.Money;
15913
16512
  readonly transaction_created_at: string;
15914
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
+ }
15915
16541
  interface GeRevenueShareTransaction {
15916
16542
  readonly discriminator: 'ge_revenue_share_transaction';
15917
16543
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -16083,6 +16709,12 @@ declare namespace io.flow.internal.v0.models {
16083
16709
  readonly type: io.flow.internal.v0.enums.HoseinItemType;
16084
16710
  readonly added_on: string;
16085
16711
  }
16712
+ interface HoseinItemDeleted {
16713
+ readonly discriminator: 'hosein_item_deleted';
16714
+ readonly event_id: string;
16715
+ readonly timestamp: string;
16716
+ readonly id: string;
16717
+ }
16086
16718
  interface HoseinItemForm {
16087
16719
  readonly number: string;
16088
16720
  readonly amount: io.flow.common.v0.models.Price;
@@ -16090,6 +16722,12 @@ declare namespace io.flow.internal.v0.models {
16090
16722
  readonly type: io.flow.internal.v0.enums.HoseinItemType;
16091
16723
  readonly added_on: string;
16092
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
+ }
16093
16731
  interface Hs6 {
16094
16732
  readonly code: string;
16095
16733
  readonly description: string;
@@ -16287,8 +16925,6 @@ declare namespace io.flow.internal.v0.models {
16287
16925
  readonly customs_value: number;
16288
16926
  readonly total_value: number;
16289
16927
  readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
16290
- readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
16291
- readonly feature_new_export_declaration: boolean;
16292
16928
  }
16293
16929
  interface InvoiceDataLineItem {
16294
16930
  readonly i: number;
@@ -16298,7 +16934,7 @@ declare namespace io.flow.internal.v0.models {
16298
16934
  readonly tariff_code: string;
16299
16935
  readonly country_of_origin: string;
16300
16936
  readonly display_country_of_origin: string;
16301
- readonly gst_paid: boolean;
16937
+ readonly remitter: io.flow.internal.v0.enums.TaxParty;
16302
16938
  readonly gst_paid_text: string;
16303
16939
  readonly unit_price: number;
16304
16940
  readonly vat_price: number;
@@ -16720,6 +17356,8 @@ declare namespace io.flow.internal.v0.models {
16720
17356
  readonly service_id?: string;
16721
17357
  readonly errors: string[];
16722
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;
16723
17361
  }
16724
17362
  interface LabelRequestErrorDeleted {
16725
17363
  readonly discriminator: 'label_request_error_deleted';
@@ -16868,6 +17506,19 @@ declare namespace io.flow.internal.v0.models {
16868
17506
  readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
16869
17507
  readonly errors: string[];
16870
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
+ }
16871
17522
  interface LevyRateSummary {
16872
17523
  readonly id: string;
16873
17524
  readonly number: string;
@@ -17343,6 +17994,12 @@ declare namespace io.flow.internal.v0.models {
17343
17994
  readonly type: io.flow.internal.v0.enums.NiallItemType;
17344
17995
  readonly added_on: string;
17345
17996
  }
17997
+ interface NiallItemDeleted {
17998
+ readonly discriminator: 'niall_item_deleted';
17999
+ readonly event_id: string;
18000
+ readonly timestamp: string;
18001
+ readonly id: string;
18002
+ }
17346
18003
  interface NiallItemForm {
17347
18004
  readonly number: string;
17348
18005
  readonly amount: io.flow.common.v0.models.Price;
@@ -17350,6 +18007,12 @@ declare namespace io.flow.internal.v0.models {
17350
18007
  readonly type: io.flow.internal.v0.enums.NiallItemType;
17351
18008
  readonly added_on: string;
17352
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
+ }
17353
18016
  interface NoCalculatedTaxAmount {
17354
18017
  readonly discriminator: 'no_calculated_tax_amount';
17355
18018
  readonly amount: number;
@@ -17421,6 +18084,7 @@ declare namespace io.flow.internal.v0.models {
17421
18084
  readonly health_score?: number;
17422
18085
  readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
17423
18086
  readonly blocked_since?: string;
18087
+ readonly onboarding_segment?: string;
17424
18088
  }
17425
18089
  interface OnboardingStateForm {
17426
18090
  readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
@@ -17809,24 +18473,6 @@ declare namespace io.flow.internal.v0.models {
17809
18473
  readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
17810
18474
  readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
17811
18475
  }
17812
- interface OrganizationBooleanValue {
17813
- readonly id: string;
17814
- readonly organization: io.flow.common.v0.models.OrganizationReference;
17815
- readonly feature: io.flow.internal.v0.models.FeatureIdReference;
17816
- readonly value: boolean;
17817
- }
17818
- interface OrganizationBooleanValueDeleted {
17819
- readonly discriminator: 'organization_boolean_value_deleted';
17820
- readonly event_id: string;
17821
- readonly timestamp: string;
17822
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
17823
- }
17824
- interface OrganizationBooleanValueUpserted {
17825
- readonly discriminator: 'organization_boolean_value_upserted';
17826
- readonly event_id: string;
17827
- readonly timestamp: string;
17828
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
17829
- }
17830
18476
  interface OrganizationBusinessEntity {
17831
18477
  readonly id: string;
17832
18478
  readonly name: string;
@@ -18344,6 +18990,7 @@ declare namespace io.flow.internal.v0.models {
18344
18990
  interface PaymentIs {
18345
18991
  readonly lvg: boolean;
18346
18992
  readonly manual: boolean;
18993
+ readonly managed_pricing?: boolean;
18347
18994
  }
18348
18995
  interface PaymentMethodDetail {
18349
18996
  readonly method: io.flow.reference.v0.models.PaymentMethod;
@@ -18750,6 +19397,70 @@ declare namespace io.flow.internal.v0.models {
18750
19397
  readonly construction?: string;
18751
19398
  readonly item: string;
18752
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
+ }
18753
19464
  interface PriceInclusivity {
18754
19465
  readonly tax?: boolean;
18755
19466
  readonly duty?: boolean;
@@ -18973,7 +19684,7 @@ declare namespace io.flow.internal.v0.models {
18973
19684
  readonly product_id?: string;
18974
19685
  readonly request_id: string;
18975
19686
  readonly hs6_code: string;
18976
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
19687
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
18977
19688
  readonly rule_ids: string[];
18978
19689
  }
18979
19690
  interface ProductSellabilityInternalForm {
@@ -18984,7 +19695,7 @@ declare namespace io.flow.internal.v0.models {
18984
19695
  readonly categories: string[];
18985
19696
  }
18986
19697
  interface ProductSellabilityInternalResult {
18987
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
19698
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
18988
19699
  readonly rule_ids: string[];
18989
19700
  }
18990
19701
  interface ProductSellabilityResult {
@@ -18993,7 +19704,7 @@ declare namespace io.flow.internal.v0.models {
18993
19704
  readonly request_id: string;
18994
19705
  readonly hs6_code: string;
18995
19706
  readonly restricted_regions?: string[];
18996
- readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
19707
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
18997
19708
  readonly rule_ids?: string[];
18998
19709
  readonly taxonomy_category?: string;
18999
19710
  }
@@ -19022,6 +19733,11 @@ declare namespace io.flow.internal.v0.models {
19022
19733
  readonly discriminator: 'shipping_notification';
19023
19734
  readonly shipping_notification_id: string;
19024
19735
  }
19736
+ interface ProofOfPostingSynthetic {
19737
+ readonly discriminator: 'synthetic';
19738
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19739
+ readonly created_at: string;
19740
+ }
19025
19741
  interface ProofOfPostingTimeElapsed {
19026
19742
  readonly discriminator: 'time_elapsed';
19027
19743
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -19434,6 +20150,10 @@ declare namespace io.flow.internal.v0.models {
19434
20150
  readonly currency: string;
19435
20151
  readonly source: io.flow.internal.v0.models.AccountSource;
19436
20152
  }
20153
+ interface ReportAmountRange {
20154
+ readonly min?: number;
20155
+ readonly max?: number;
20156
+ }
19437
20157
  interface ReportBankAccount {
19438
20158
  readonly id?: string;
19439
20159
  readonly last4?: string;
@@ -19455,6 +20175,7 @@ declare namespace io.flow.internal.v0.models {
19455
20175
  interface ReportFilter {
19456
20176
  readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
19457
20177
  readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
20178
+ readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
19458
20179
  }
19459
20180
  interface ReportForm {
19460
20181
  readonly type: io.flow.internal.v0.enums.ReportType;
@@ -19836,7 +20557,7 @@ declare namespace io.flow.internal.v0.models {
19836
20557
  interface RestrictionOrganization {
19837
20558
  readonly id: string;
19838
20559
  readonly name: string;
19839
- readonly environment: io.flow.common.v0.enums.Environment;
20560
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
19840
20561
  readonly url?: string;
19841
20562
  readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
19842
20563
  readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
@@ -19882,7 +20603,7 @@ declare namespace io.flow.internal.v0.models {
19882
20603
  interface RestrictionOrganizationSummary {
19883
20604
  readonly id: string;
19884
20605
  readonly name: string;
19885
- readonly environment: io.flow.common.v0.enums.Environment;
20606
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
19886
20607
  readonly source: io.flow.internal.v0.enums.OrganizationSource;
19887
20608
  }
19888
20609
  interface RestrictionProduct {
@@ -19945,7 +20666,7 @@ declare namespace io.flow.internal.v0.models {
19945
20666
  readonly attribute_names?: string[];
19946
20667
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
19947
20668
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
19948
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20669
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
19949
20670
  }
19950
20671
  interface RestrictionRuleDecisionForm {
19951
20672
  readonly rule_id: string;
@@ -19999,7 +20720,7 @@ declare namespace io.flow.internal.v0.models {
19999
20720
  readonly attribute_names?: string[];
20000
20721
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
20001
20722
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
20002
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20723
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
20003
20724
  }
20004
20725
  interface RestrictionRuleLaneExemption {
20005
20726
  readonly id: string;
@@ -20056,23 +20777,12 @@ declare namespace io.flow.internal.v0.models {
20056
20777
  readonly oldest_pv_product_date_transacting: string;
20057
20778
  readonly oldest_pc_product_date_setup_complete: string;
20058
20779
  readonly oldest_pc_product_date_transacting: string;
20059
- readonly num_orgs_setup_complete_prs: number;
20060
- readonly num_products_setup_complete_prs: number;
20061
- readonly num_orgs_transacting_prs: number;
20062
- readonly num_products_transacting_prs: number;
20063
- readonly oldest_pr_product_date_setup_complete: string;
20064
- readonly oldest_pr_date_transacting: string;
20065
20780
  readonly percent_products_reviewed_transacting?: number;
20066
20781
  readonly num_pv_inflow_net_new: number;
20067
20782
  readonly num_pv_outflow_human_decisions: number;
20068
20783
  readonly num_pv_outflow_auto_review_decisions: number;
20069
20784
  readonly num_pv_outflow_side_effect_decisions: number;
20070
- readonly num_pr_inflow_net_new: number;
20071
- readonly num_pr_outflow_human_decisions: number;
20072
- readonly num_pr_outflow_auto_review_decisions: number;
20073
- readonly num_pr_outflow_side_effect_decisions: number;
20074
20785
  readonly num_pending_decisions_transacting: number;
20075
- readonly oldest_insufficient_details_pv_onboarding?: string;
20076
20786
  readonly oldest_insufficient_details_pv_active?: string;
20077
20787
  readonly oldest_insufficient_details_pv_transacting?: string;
20078
20788
  readonly num_products_with_fs_result?: number;
@@ -20206,6 +20916,12 @@ declare namespace io.flow.internal.v0.models {
20206
20916
  readonly type: io.flow.internal.v0.enums.RohanItemType;
20207
20917
  readonly added_on: string;
20208
20918
  }
20919
+ interface RohanItemDeleted {
20920
+ readonly discriminator: 'rohan_item_deleted';
20921
+ readonly event_id: string;
20922
+ readonly timestamp: string;
20923
+ readonly id: string;
20924
+ }
20209
20925
  interface RohanItemForm {
20210
20926
  readonly number: string;
20211
20927
  readonly amount: io.flow.common.v0.models.Price;
@@ -20213,6 +20929,12 @@ declare namespace io.flow.internal.v0.models {
20213
20929
  readonly type: io.flow.internal.v0.enums.RohanItemType;
20214
20930
  readonly added_on: string;
20215
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
+ }
20216
20938
  interface RoutingAccount {
20217
20939
  readonly discriminator: 'routing_account';
20218
20940
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -20236,6 +20958,8 @@ declare namespace io.flow.internal.v0.models {
20236
20958
  readonly order_total: io.flow.internal.v0.models.ReportingMonetaryValue;
20237
20959
  readonly shopper_breakdown: io.flow.internal.v0.models.ShopperBreakdown;
20238
20960
  readonly payment: io.flow.internal.v0.models.ReportingPayment;
20961
+ readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
20962
+ readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
20239
20963
  readonly fees: io.flow.internal.v0.models.ReportingFees;
20240
20964
  readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
20241
20965
  readonly payment_is: io.flow.internal.v0.models.PaymentIs;
@@ -20257,6 +20981,12 @@ declare namespace io.flow.internal.v0.models {
20257
20981
  readonly type: io.flow.internal.v0.enums.SarveshItemType;
20258
20982
  readonly added_on: string;
20259
20983
  }
20984
+ interface SarveshItemDeleted {
20985
+ readonly discriminator: 'sarvesh_item_deleted';
20986
+ readonly event_id: string;
20987
+ readonly timestamp: string;
20988
+ readonly id: string;
20989
+ }
20260
20990
  interface SarveshItemForm {
20261
20991
  readonly number: string;
20262
20992
  readonly amount: io.flow.common.v0.models.Price;
@@ -20264,6 +20994,12 @@ declare namespace io.flow.internal.v0.models {
20264
20994
  readonly type: io.flow.internal.v0.enums.SarveshItemType;
20265
20995
  readonly added_on: string;
20266
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
+ }
20267
21003
  interface ScheduledPayment {
20268
21004
  readonly payment: io.flow.internal.v0.models.ReportPayment;
20269
21005
  readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -20350,9 +21086,9 @@ declare namespace io.flow.internal.v0.models {
20350
21086
  readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
20351
21087
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
20352
21088
  readonly current_rule_ids?: string[];
20353
- readonly current_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
21089
+ readonly current_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
20354
21090
  readonly merchant_rule_ids?: string[];
20355
- readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
21091
+ readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
20356
21092
  readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
20357
21093
  readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
20358
21094
  }
@@ -20396,6 +21132,48 @@ declare namespace io.flow.internal.v0.models {
20396
21132
  readonly freight_cost: number;
20397
21133
  readonly customer_price: number;
20398
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
+ }
20399
21177
  interface ShopifyCatalogPublication {
20400
21178
  readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
20401
21179
  }
@@ -20607,6 +21385,13 @@ declare namespace io.flow.internal.v0.models {
20607
21385
  readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
20608
21386
  readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
20609
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;
20610
21395
  }
20611
21396
  interface ShopifyMarketsQueuedRecord {
20612
21397
  readonly id: string;
@@ -21015,6 +21800,7 @@ declare namespace io.flow.internal.v0.models {
21015
21800
  }
21016
21801
  interface ShopperBreakdown {
21017
21802
  readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
21803
+ readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
21018
21804
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
21019
21805
  readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
21020
21806
  readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
@@ -21668,6 +22454,9 @@ declare namespace io.flow.internal.v0.models {
21668
22454
  readonly timestamp: string;
21669
22455
  readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
21670
22456
  }
22457
+ interface TaxTypeTotal {
22458
+ readonly value: io.flow.common.v0.models.Money;
22459
+ }
21671
22460
  interface TaxonomyAlignmentCheckResult {
21672
22461
  readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
21673
22462
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
@@ -21778,6 +22567,10 @@ declare namespace io.flow.internal.v0.models {
21778
22567
  readonly time: string;
21779
22568
  readonly timezone: string;
21780
22569
  }
22570
+ interface Tokens {
22571
+ readonly webhook_signature_verification: string;
22572
+ readonly api: string;
22573
+ }
21781
22574
  interface TrackingAssuranceAnalysis {
21782
22575
  readonly id: string;
21783
22576
  readonly job_id: string;
@@ -22308,7 +23101,7 @@ declare namespace io.flow.internal.v0.unions {
22308
23101
  type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
22309
23102
  type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
22310
23103
  type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
22311
- 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;
22312
23105
  type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
22313
23106
  type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
22314
23107
  type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
@@ -22341,7 +23134,7 @@ declare namespace io.flow.internal.v0.unions {
22341
23134
  type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
22342
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;
22343
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;
22344
- 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;
22345
23138
  type RestrictionAttributeRuleCondition = io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
22346
23139
  type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal;
22347
23140
  type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
@@ -22451,18 +23244,24 @@ export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayR
22451
23244
  export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
22452
23245
  export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
22453
23246
  export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
23247
+ export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
22454
23248
  export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
22455
23249
  export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
23250
+ export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
22456
23251
  export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
22457
23252
  export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
22458
23253
  export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
22459
23254
  export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
22460
23255
  export declare type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
23256
+ export declare type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
22461
23257
  export declare type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
22462
23258
  export declare type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
23259
+ export declare type AnirbanItemUpserted = io.flow.internal.v0.models.AnirbanItemUpserted;
22463
23260
  export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
23261
+ export declare type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
22464
23262
  export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
22465
23263
  export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
23264
+ export declare type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
22466
23265
  export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
22467
23266
  export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
22468
23267
  export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
@@ -22485,6 +23284,10 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
22485
23284
  export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
22486
23285
  export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
22487
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;
22488
23291
  export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
22489
23292
  export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
22490
23293
  export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
@@ -22550,6 +23353,7 @@ export declare type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookE
22550
23353
  export declare type BrickWebhookEventResponse = io.flow.internal.v0.models.BrickWebhookEventResponse;
22551
23354
  export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
22552
23355
  export declare type BulkDutyUpdateValidationError = io.flow.internal.v0.models.BulkDutyUpdateValidationError;
23356
+ export declare type Cafe24MarketsWebhook = io.flow.internal.v0.models.Cafe24MarketsWebhook;
22553
23357
  export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
22554
23358
  export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
22555
23359
  export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
@@ -22656,7 +23460,7 @@ export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrde
22656
23460
  export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
22657
23461
  export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
22658
23462
  export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
22659
- export declare type ChannelOrganizationDomain = io.flow.internal.v0.models.ChannelOrganizationDomain;
23463
+ export declare type ChannelOrganizationDomains = io.flow.internal.v0.models.ChannelOrganizationDomains;
22660
23464
  export declare type ChannelOrganizationIdentifier = io.flow.internal.v0.models.ChannelOrganizationIdentifier;
22661
23465
  export declare type ChannelOrganizationIdentifierDeleted = io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
22662
23466
  export declare type ChannelOrganizationIdentifierUpserted = io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
@@ -22676,6 +23480,8 @@ export declare type ChannelRateMetadata = io.flow.internal.v0.unions.ChannelRate
22676
23480
  export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.ChannelRateMetadataIdentity;
22677
23481
  export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
22678
23482
  export declare type ChannelService = io.flow.internal.v0.enums.ChannelService;
23483
+ export declare type ChannelShop = io.flow.internal.v0.models.ChannelShop;
23484
+ export declare type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
22679
23485
  export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
22680
23486
  export declare type ChannelTransactionDeleted = io.flow.internal.v0.models.ChannelTransactionDeleted;
22681
23487
  export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
@@ -22722,6 +23528,7 @@ export declare type ClassificationDecision = io.flow.internal.v0.enums.Classific
22722
23528
  export declare type ClassificationDetails = io.flow.internal.v0.models.ClassificationDetails;
22723
23529
  export declare type ClassificationError = io.flow.internal.v0.models.ClassificationError;
22724
23530
  export declare type ClassificationErrorCode = io.flow.internal.v0.enums.ClassificationErrorCode;
23531
+ export declare type ClassificationFailureReason = io.flow.internal.v0.enums.ClassificationFailureReason;
22725
23532
  export declare type ClassificationForm = io.flow.internal.v0.unions.ClassificationForm;
22726
23533
  export declare type ClassificationFormWrapper = io.flow.internal.v0.models.ClassificationFormWrapper;
22727
23534
  export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
@@ -22959,7 +23766,6 @@ export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefa
22959
23766
  export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
22960
23767
  export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
22961
23768
  export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
22962
- export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
22963
23769
  export declare type FeatureReference = io.flow.internal.v0.models.FeatureReference;
22964
23770
  export declare type FeatureReleaseForm = io.flow.internal.v0.models.FeatureReleaseForm;
22965
23771
  export declare type FeatureRule = io.flow.internal.v0.unions.FeatureRule;
@@ -23077,6 +23883,11 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
23077
23883
  export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
23078
23884
  export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
23079
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;
23080
23891
  export declare type GeIngestionFileStatus = io.flow.internal.v0.enums.GeIngestionFileStatus;
23081
23892
  export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
23082
23893
  export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
@@ -23112,9 +23923,12 @@ export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.mo
23112
23923
  export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
23113
23924
  export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
23114
23925
  export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
23926
+ export declare type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
23115
23927
  export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
23116
23928
  export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
23929
+ export declare type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
23117
23930
  export declare type Hs6 = io.flow.internal.v0.models.Hs6;
23931
+ export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
23118
23932
  export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
23119
23933
  export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
23120
23934
  export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
@@ -23242,6 +24056,10 @@ export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPredicti
23242
24056
  export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
23243
24057
  export declare type Landmark = io.flow.internal.v0.models.Landmark;
23244
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;
23245
24063
  export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
23246
24064
  export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
23247
24065
  export declare type Liability = io.flow.internal.v0.models.Liability;
@@ -23321,8 +24139,10 @@ export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
23321
24139
  export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
23322
24140
  export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
23323
24141
  export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
24142
+ export declare type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
23324
24143
  export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
23325
24144
  export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
24145
+ export declare type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
23326
24146
  export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
23327
24147
  export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
23328
24148
  export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
@@ -23409,9 +24229,6 @@ export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.O
23409
24229
  export declare type OrganizationBankAccountDeleted = io.flow.internal.v0.models.OrganizationBankAccountDeleted;
23410
24230
  export declare type OrganizationBankAccountUpserted = io.flow.internal.v0.models.OrganizationBankAccountUpserted;
23411
24231
  export declare type OrganizationBillingStatement = io.flow.internal.v0.models.OrganizationBillingStatement;
23412
- export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
23413
- export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
23414
- export declare type OrganizationBooleanValueUpserted = io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
23415
24232
  export declare type OrganizationBusinessEntity = io.flow.internal.v0.models.OrganizationBusinessEntity;
23416
24233
  export declare type OrganizationBusinessEntityDeleted = io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
23417
24234
  export declare type OrganizationBusinessEntityUpserted = io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
@@ -23568,6 +24385,16 @@ export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm
23568
24385
  export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
23569
24386
  export declare type Prediction = io.flow.internal.v0.models.Prediction;
23570
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;
23571
24398
  export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
23572
24399
  export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
23573
24400
  export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
@@ -23620,6 +24447,7 @@ export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOf
23620
24447
  export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
23621
24448
  export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
23622
24449
  export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
24450
+ export declare type ProofOfPostingSynthetic = io.flow.internal.v0.models.ProofOfPostingSynthetic;
23623
24451
  export declare type ProofOfPostingTimeElapsed = io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
23624
24452
  export declare type PspDistribution = io.flow.internal.v0.models.PspDistribution;
23625
24453
  export declare type PspRoutingDistribution = io.flow.internal.v0.models.PspRoutingDistribution;
@@ -23691,6 +24519,7 @@ export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
23691
24519
  export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
23692
24520
  export declare type Report = io.flow.internal.v0.models.Report;
23693
24521
  export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
24522
+ export declare type ReportAmountRange = io.flow.internal.v0.models.ReportAmountRange;
23694
24523
  export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
23695
24524
  export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
23696
24525
  export declare type ReportFile = io.flow.internal.v0.models.ReportFile;
@@ -23821,8 +24650,10 @@ export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRe
23821
24650
  export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
23822
24651
  export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
23823
24652
  export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
24653
+ export declare type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
23824
24654
  export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
23825
24655
  export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
24656
+ export declare type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
23826
24657
  export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
23827
24658
  export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
23828
24659
  export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
@@ -23831,8 +24662,10 @@ export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPayment
23831
24662
  export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
23832
24663
  export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
23833
24664
  export declare type SarveshItem = io.flow.internal.v0.models.SarveshItem;
24665
+ export declare type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
23834
24666
  export declare type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
23835
24667
  export declare type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
24668
+ export declare type SarveshItemUpserted = io.flow.internal.v0.models.SarveshItemUpserted;
23836
24669
  export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
23837
24670
  export declare type Screen = io.flow.internal.v0.models.Screen;
23838
24671
  export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -23856,6 +24689,9 @@ export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCos
23856
24689
  export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
23857
24690
  export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
23858
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;
23859
24695
  export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
23860
24696
  export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
23861
24697
  export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
@@ -23895,6 +24731,7 @@ export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.Shop
23895
24731
  export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
23896
24732
  export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
23897
24733
  export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
24734
+ export declare type ShopifyMarketsOrganizationOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics;
23898
24735
  export declare type ShopifyMarketsQueuedRecord = io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
23899
24736
  export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
23900
24737
  export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
@@ -24075,6 +24912,7 @@ export declare type TaxTransaction = io.flow.internal.v0.models.TaxTransaction;
24075
24912
  export declare type TaxTransactionDeleted = io.flow.internal.v0.models.TaxTransactionDeleted;
24076
24913
  export declare type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
24077
24914
  export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTransactionUpserted;
24915
+ export declare type TaxTypeTotal = io.flow.internal.v0.models.TaxTypeTotal;
24078
24916
  export declare type TaxonomyAlignmentCheckResult = io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
24079
24917
  export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
24080
24918
  export declare type TaxonomyCategoryClassificationAlignment = io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
@@ -24096,6 +24934,7 @@ export declare type TimeToClassifyAggregatedUpserted = io.flow.internal.v0.model
24096
24934
  export declare type TimeToClassifyDeleted = io.flow.internal.v0.models.TimeToClassifyDeleted;
24097
24935
  export declare type TimeToClassifyUpserted = io.flow.internal.v0.models.TimeToClassifyUpserted;
24098
24936
  export declare type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
24937
+ export declare type Tokens = io.flow.internal.v0.models.Tokens;
24099
24938
  export declare type Tracker = io.flow.internal.v0.unions.Tracker;
24100
24939
  export declare type TrackingAssuranceAnalysis = io.flow.internal.v0.models.TrackingAssuranceAnalysis;
24101
24940
  export declare type TrackingAssuranceAnalysisDeleted = io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;