@flowio/types 11.24.130 → 11.24.132

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.
@@ -937,6 +937,7 @@ declare namespace io.flow.payment.gateway.v0.models {
937
937
  readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
938
938
  readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
939
939
  readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
940
+ readonly client_secret?: string;
940
941
  }
941
942
 
942
943
  interface PaymentRequestCancellationReasonOrderMissing {
@@ -1252,6 +1253,47 @@ declare namespace io.flow.channel.v0.models {
1252
1253
  }
1253
1254
  }
1254
1255
 
1256
+ declare namespace io.flow.restrictions.v0.enums {
1257
+ type RestrictedReviewStatus = 'in_review' | 'reviewed';
1258
+ type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
1259
+ type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
1260
+ }
1261
+
1262
+ declare namespace io.flow.restrictions.v0.models {
1263
+ interface CarrierRestrictions {
1264
+ readonly carrier: string;
1265
+ readonly regions: string[];
1266
+ }
1267
+
1268
+ interface NeedsActionAttributes {
1269
+ readonly reason_code: string;
1270
+ readonly category_metafield_handles: string[];
1271
+ readonly require_msds?: boolean;
1272
+ }
1273
+
1274
+ interface ProductRestrictionResult {
1275
+ readonly id: string;
1276
+ readonly product_id: string;
1277
+ readonly item_numbers: string[];
1278
+ readonly prohibited_regions: string[];
1279
+ readonly sellability_restricted_regions?: string[];
1280
+ readonly reasons_per_region?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
1281
+ readonly review_status?: io.flow.restrictions.v0.enums.ReviewStatus;
1282
+ readonly rules?: string[];
1283
+ readonly updated_by?: string;
1284
+ readonly product_restriction_id?: string;
1285
+ readonly hs_code?: string;
1286
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
1287
+ readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
1288
+ }
1289
+
1290
+ interface ReasonsPerRegion {
1291
+ readonly region: string;
1292
+ readonly reasons: string[];
1293
+ readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
1294
+ }
1295
+ }
1296
+
1255
1297
  declare namespace io.flow.fulfillment.v0.enums {
1256
1298
  type CenterCapability =
1257
1299
  | 'international'
@@ -2292,7 +2334,7 @@ declare namespace io.flow.payment.v0.enums {
2292
2334
  | 'invalid_customer'
2293
2335
  | 'invalid_destination'
2294
2336
  | 'unknown';
2295
- type PaymentFeeType = 'fx' | 'mor' | 'sp';
2337
+ type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
2296
2338
  type PaymentSourceConfirmationActionType =
2297
2339
  | 'cvv'
2298
2340
  | 'billing_address'
@@ -5261,6 +5303,7 @@ declare namespace io.flow.stripe.v0.unions {
5261
5303
  }
5262
5304
 
5263
5305
  declare namespace io.flow.label.v0.enums {
5306
+ type CommercialInvoiceMode = 'direct' | 'indirect';
5264
5307
  type CostEstimateSource = 'flow' | 'channel';
5265
5308
  type Direction = 'outbound' | 'return';
5266
5309
  type LabelRequestMethod =
@@ -7038,6 +7081,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7038
7081
  readonly shopify: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
7039
7082
  readonly internal: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
7040
7083
  readonly discrepancy_data: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
7084
+ readonly organization_metrics?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
7085
+ }
7086
+
7087
+ interface ShopifyMarketsOrganizationOrderMetrics {
7088
+ readonly organization_id: string;
7089
+ readonly shopify_order_count: number;
7090
+ readonly internal_order_count: number;
7091
+ readonly discrepancy_count?: number;
7041
7092
  }
7042
7093
 
7043
7094
  interface ShopifyMarketsQueuedRecord {
@@ -7165,6 +7216,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7165
7216
  readonly initial_product_restrictions_synced_at?: string;
7166
7217
  }
7167
7218
 
7219
+ interface ShopifyTestOrder {
7220
+ readonly id: string;
7221
+ }
7222
+
7168
7223
  interface ThirdPartyLogisticsPartner {
7169
7224
  readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
7170
7225
  readonly warehouse_url?: string;
@@ -7180,6 +7235,260 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7180
7235
  }
7181
7236
  }
7182
7237
 
7238
+ declare namespace io.flow.consumer.invoice.v0.enums {
7239
+ type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
7240
+ type ConsumerInvoiceCustomerType =
7241
+ | 'business_eu_verified'
7242
+ | 'business_non_verified'
7243
+ | 'individual';
7244
+ type ConsumerInvoiceDocumentType = 'pdf';
7245
+ type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
7246
+ type TaxJurisdictionType = 'country' | 'province';
7247
+ type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
7248
+ }
7249
+
7250
+ declare namespace io.flow.consumer.invoice.v0.models {
7251
+ interface B2BCreditMemo {
7252
+ readonly id: string;
7253
+ readonly number: string;
7254
+ readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
7255
+ readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
7256
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
7257
+ readonly date: string;
7258
+ readonly key: string;
7259
+ readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
7260
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
7261
+ readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
7262
+ readonly tax?: io.flow.common.v0.models.Money;
7263
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
7264
+ readonly attributes: Record<string, string>;
7265
+ readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
7266
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7267
+ readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7268
+ }
7269
+
7270
+ interface B2BInvoice {
7271
+ readonly id: string;
7272
+ readonly number: string;
7273
+ readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
7274
+ readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
7275
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
7276
+ readonly date: string;
7277
+ readonly key: string;
7278
+ readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7279
+ readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
7280
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7281
+ readonly destination?: io.flow.experience.v0.models.OrderAddress;
7282
+ readonly tax: io.flow.common.v0.models.Money;
7283
+ readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
7284
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
7285
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
7286
+ readonly attributes: Record<string, string>;
7287
+ readonly estimated_delivery_date?: string;
7288
+ readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
7289
+ }
7290
+
7291
+ interface B2BInvoiceReference {
7292
+ readonly id: string;
7293
+ readonly key: string;
7294
+ readonly number: string;
7295
+ }
7296
+
7297
+ interface ConsumerInvoice {
7298
+ readonly id: string;
7299
+ readonly number: string;
7300
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
7301
+ readonly date: string;
7302
+ readonly key: string;
7303
+ readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7304
+ readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
7305
+ readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
7306
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7307
+ readonly destination: io.flow.experience.v0.models.OrderAddress;
7308
+ readonly billing_address?: io.flow.common.v0.models.BillingAddress;
7309
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
7310
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
7311
+ readonly attributes: Record<string, string>;
7312
+ readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
7313
+ readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
7314
+ readonly estimated_delivery_date?: string;
7315
+ }
7316
+
7317
+ interface ConsumerInvoiceCenterReference {
7318
+ readonly id: string;
7319
+ readonly key: string;
7320
+ readonly name: string;
7321
+ readonly address: io.flow.common.v0.models.Address;
7322
+ }
7323
+
7324
+ interface ConsumerInvoiceDocument {
7325
+ readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
7326
+ readonly language: string;
7327
+ readonly url: string;
7328
+ }
7329
+
7330
+ interface ConsumerInvoiceForm {
7331
+ readonly order_number: string;
7332
+ readonly attributes?: Record<string, string>;
7333
+ }
7334
+
7335
+ interface ConsumerInvoiceFormByOrder {
7336
+ readonly attributes?: Record<string, string>;
7337
+ }
7338
+
7339
+ interface ConsumerInvoiceLevy {
7340
+ readonly rate: number;
7341
+ readonly value: io.flow.common.v0.models.Price;
7342
+ }
7343
+
7344
+ interface ConsumerInvoiceLevyForm {
7345
+ readonly rate: number;
7346
+ readonly amount: number;
7347
+ }
7348
+
7349
+ interface ConsumerInvoiceLineDiscount {
7350
+ readonly discriminator: 'discount';
7351
+ readonly line_id?: string;
7352
+ readonly price: io.flow.common.v0.models.Price;
7353
+ }
7354
+
7355
+ interface ConsumerInvoiceLineDiscountForm {
7356
+ readonly discriminator: 'discount';
7357
+ readonly price: number;
7358
+ }
7359
+
7360
+ interface ConsumerInvoiceLineItem {
7361
+ readonly discriminator: 'item';
7362
+ readonly line_id?: string;
7363
+ readonly item: io.flow.common.v0.models.ItemReference;
7364
+ readonly description: string;
7365
+ readonly quantity: number;
7366
+ readonly unit_price: io.flow.common.v0.models.Price;
7367
+ readonly unit_discount?: io.flow.common.v0.models.Price;
7368
+ readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
7369
+ readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
7370
+ }
7371
+
7372
+ interface ConsumerInvoiceLineItemForm {
7373
+ readonly discriminator: 'item';
7374
+ readonly item_number: string;
7375
+ readonly quantity: number;
7376
+ readonly unit_price: number;
7377
+ readonly unit_discount?: number;
7378
+ readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
7379
+ readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
7380
+ }
7381
+
7382
+ interface ConsumerInvoiceLineShipping {
7383
+ readonly discriminator: 'shipping';
7384
+ readonly line_id?: string;
7385
+ readonly price: io.flow.common.v0.models.Price;
7386
+ readonly discount?: io.flow.common.v0.models.Price;
7387
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
7388
+ readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
7389
+ }
7390
+
7391
+ interface ConsumerInvoiceLineShippingForm {
7392
+ readonly discriminator: 'shipping';
7393
+ readonly price: number;
7394
+ readonly discount?: number;
7395
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
7396
+ readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
7397
+ }
7398
+
7399
+ interface ConsumerInvoiceLineTip {
7400
+ readonly discriminator: 'tip';
7401
+ readonly line_id?: string;
7402
+ readonly price: io.flow.common.v0.models.Price;
7403
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
7404
+ }
7405
+
7406
+ interface ConsumerInvoiceLineTipForm {
7407
+ readonly discriminator: 'tip';
7408
+ readonly price: number;
7409
+ readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
7410
+ }
7411
+
7412
+ interface ConsumerInvoiceOrderSummary {
7413
+ readonly id: string;
7414
+ readonly number: string;
7415
+ readonly submitted_at: string;
7416
+ }
7417
+
7418
+ interface ConsumerInvoicePayment {
7419
+ readonly date: string;
7420
+ readonly description: string;
7421
+ readonly value: io.flow.common.v0.models.Price;
7422
+ readonly billing_address?: io.flow.common.v0.models.BillingAddress;
7423
+ }
7424
+
7425
+ interface ConsumerInvoiceReference {
7426
+ readonly id: string;
7427
+ readonly key: string;
7428
+ readonly number: string;
7429
+ }
7430
+
7431
+ interface CreditMemo {
7432
+ readonly id: string;
7433
+ readonly number?: string;
7434
+ readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
7435
+ readonly date: string;
7436
+ readonly key: string;
7437
+ readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
7438
+ readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
7439
+ readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
7440
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
7441
+ readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
7442
+ readonly attributes: Record<string, string>;
7443
+ readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
7444
+ readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7445
+ readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7446
+ }
7447
+
7448
+ interface CreditMemoForm {
7449
+ readonly refund_id?: string;
7450
+ readonly refund_key?: string;
7451
+ readonly refund_identifier?: string;
7452
+ readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
7453
+ readonly attributes?: Record<string, string>;
7454
+ }
7455
+
7456
+ interface InvoiceExport {
7457
+ readonly id: string;
7458
+ }
7459
+
7460
+ interface InvoiceExportForm {
7461
+ readonly date_from?: string;
7462
+ readonly date_to?: string;
7463
+ }
7464
+
7465
+ interface InvoiceTaxLine {
7466
+ readonly line_id: string;
7467
+ readonly tax_breakdown: io.flow.consumer.invoice.v0.models.TaxBreakdown[];
7468
+ }
7469
+
7470
+ interface TaxBreakdown {
7471
+ readonly label: string;
7472
+ readonly calculated_tax: io.flow.common.v0.models.Money;
7473
+ readonly rate: number;
7474
+ readonly line_total: io.flow.common.v0.models.Money;
7475
+ readonly jurisdiction_type: io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
7476
+ }
7477
+ }
7478
+
7479
+ declare namespace io.flow.consumer.invoice.v0.unions {
7480
+ type ConsumerInvoiceLine =
7481
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem
7482
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount
7483
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping
7484
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
7485
+ type ConsumerInvoiceLineForm =
7486
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm
7487
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm
7488
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm
7489
+ | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm;
7490
+ }
7491
+
7183
7492
  declare namespace io.flow.adyen.v0.enums {
7184
7493
  type Channel = 'web';
7185
7494
  type Contract = 'RECURRING';
@@ -9417,6 +9726,7 @@ declare namespace io.flow.shopify.markets.v0.models {
9417
9726
  readonly tags?: string;
9418
9727
  readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
9419
9728
  readonly taxes_included: boolean;
9729
+ readonly test?: boolean;
9420
9730
  readonly token?: string;
9421
9731
  readonly total_weight?: number;
9422
9732
  readonly updated_at?: string;
@@ -9429,6 +9739,7 @@ declare namespace io.flow.shopify.markets.v0.models {
9429
9739
  readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
9430
9740
  readonly merchant_of_record_app_id?: number;
9431
9741
  readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
9742
+ readonly current_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
9432
9743
  readonly total_tip_received?: string;
9433
9744
  }
9434
9745
 
@@ -10033,6 +10344,7 @@ declare namespace io.flow.channel.internal.v0.enums {
10033
10344
  | 'unsupported_virtual_goods'
10034
10345
  | 'non_matching_currencies'
10035
10346
  | 'unsupported_order_edit'
10347
+ | 'order_allocation_duties_mismatch'
10036
10348
  | 'order_missing';
10037
10349
  type ChannelOrderAcceptanceStatus =
10038
10350
  | 'accepted'
@@ -10094,6 +10406,7 @@ declare namespace io.flow.channel.internal.v0.models {
10094
10406
  readonly order_updated_at?: string;
10095
10407
  readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
10096
10408
  readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
10409
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
10097
10410
  }
10098
10411
 
10099
10412
  interface ChannelOrderAcceptanceDetails {
@@ -10624,6 +10937,8 @@ declare namespace io.flow.common.v0.models {
10624
10937
  interface MerchantOfRecordEntityRegistration {
10625
10938
  readonly number: string;
10626
10939
  readonly country: string;
10940
+ readonly province_number?: string;
10941
+ readonly province?: string;
10627
10942
  }
10628
10943
 
10629
10944
  interface Money {
@@ -11082,6 +11397,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
11082
11397
  readonly timestamp: string;
11083
11398
  readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
11084
11399
  }
11400
+
11401
+ interface ShopifyTestOrderDeleted {
11402
+ readonly discriminator: 'shopify_test_order_deleted';
11403
+ readonly event_id: string;
11404
+ readonly timestamp: string;
11405
+ readonly organization: string;
11406
+ readonly id: string;
11407
+ }
11408
+
11409
+ interface ShopifyTestOrderUpserted {
11410
+ readonly discriminator: 'shopify_test_order_upserted';
11411
+ readonly event_id: string;
11412
+ readonly timestamp: string;
11413
+ readonly organization: string;
11414
+ readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
11415
+ }
11085
11416
  }
11086
11417
 
11087
11418
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
@@ -11114,7 +11445,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
11114
11445
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
11115
11446
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted
11116
11447
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
11117
- | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted;
11448
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
11449
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
11450
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted;
11118
11451
  }
11119
11452
 
11120
11453
  declare namespace io.flow.experience.v0.enums {
@@ -11183,6 +11516,7 @@ declare namespace io.flow.experience.v0.enums {
11183
11516
  type OrganizationPaymentMethodTag = 'deny';
11184
11517
  type PaymentMethodRuleContentKey = 'description';
11185
11518
  type PriceFacetBoundary = 'min' | 'max';
11519
+ type PricingType = 'inclusive_pricing';
11186
11520
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
11187
11521
  }
11188
11522
 
@@ -11804,6 +12138,7 @@ declare namespace io.flow.experience.v0.models {
11804
12138
  readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
11805
12139
  readonly edits?: io.flow.experience.v0.models.EditSummary[];
11806
12140
  readonly rates?: io.flow.experience.v0.models.OrderRate[];
12141
+ readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
11807
12142
  }
11808
12143
 
11809
12144
  interface OrderAddress {
@@ -12385,6 +12720,7 @@ declare namespace io.flow.ratecard.v0.models {
12385
12720
  readonly amount: io.flow.common.v0.models.Money;
12386
12721
  readonly origin_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
12387
12722
  readonly destination_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
12723
+ readonly destination_regions?: io.flow.ratecard.v0.models.RatecardRegionReference[];
12388
12724
  readonly interval_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
12389
12725
  }
12390
12726
 
@@ -12589,6 +12925,7 @@ declare namespace io.flow.ratecard.v0.models {
12589
12925
  readonly center_id?: string;
12590
12926
  readonly taxes_owed?: io.flow.common.v0.models.Money;
12591
12927
  readonly duties_owed?: io.flow.common.v0.models.Money;
12928
+ readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
12592
12929
  }
12593
12930
 
12594
12931
  interface RatecardEstimateSummaryForm {
@@ -12808,6 +13145,43 @@ declare namespace io.flow.ratecard.v0.models {
12808
13145
  readonly from: number;
12809
13146
  readonly to: number;
12810
13147
  }
13148
+
13149
+ interface ShippingRateEstimate {
13150
+ readonly origin_address: io.flow.common.v0.models.Address;
13151
+ readonly destination_address: io.flow.common.v0.models.Address;
13152
+ readonly shipping_date_time: string;
13153
+ readonly services: string[];
13154
+ readonly available: io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
13155
+ readonly unavailable?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
13156
+ }
13157
+
13158
+ interface ShippingRateEstimateAvailable {
13159
+ readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
13160
+ readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
13161
+ readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
13162
+ readonly total_amount: io.flow.common.v0.models.Money;
13163
+ readonly base_amount: io.flow.common.v0.models.Money;
13164
+ readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
13165
+ readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
13166
+ readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
13167
+ readonly weight_break?: number;
13168
+ }
13169
+
13170
+ interface ShippingRateEstimateRequest {
13171
+ readonly origin_address: io.flow.common.v0.models.Address;
13172
+ readonly destination_address: io.flow.common.v0.models.Address;
13173
+ readonly package_dimensions: io.flow.common.v0.models.Dimension;
13174
+ readonly shipping_date_time: string;
13175
+ readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
13176
+ readonly duties_owed?: io.flow.common.v0.models.Money;
13177
+ readonly taxes_owed?: io.flow.common.v0.models.Money;
13178
+ readonly line_items?: io.flow.common.v0.models.LineItemForm[];
13179
+ }
13180
+
13181
+ interface ShippingRateEstimateUnavailable {
13182
+ readonly service: string;
13183
+ readonly reason: string;
13184
+ }
12811
13185
  }
12812
13186
 
12813
13187
  declare namespace io.flow.ratecard.v0.unions {
@@ -13118,6 +13492,35 @@ declare namespace io.flow.crypto.v0.models {
13118
13492
  }
13119
13493
  }
13120
13494
 
13495
+ declare namespace io.flow.channel.shopify.v0.enums {
13496
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
13497
+ }
13498
+
13499
+ declare namespace io.flow.channel.shopify.v0.models {
13500
+ interface ChannelShopifyOrderState {
13501
+ readonly id: string;
13502
+ readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
13503
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
13504
+ readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
13505
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
13506
+ }
13507
+
13508
+ interface ChannelShopifyOrderStateReason {
13509
+ readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
13510
+ readonly message: string;
13511
+ }
13512
+
13513
+ interface ChannelShopifyOrderSummary {
13514
+ readonly order_id: number;
13515
+ readonly shop_id: number;
13516
+ }
13517
+
13518
+ interface ExternalOrderSummary {
13519
+ readonly id: string;
13520
+ readonly edit_ids: string[];
13521
+ }
13522
+ }
13523
+
13121
13524
  declare namespace io.flow.shopify.merchant.config.v0.models {
13122
13525
  interface Company {
13123
13526
  readonly discriminator: 'company';
@@ -13846,22 +14249,94 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
13846
14249
  }
13847
14250
 
13848
14251
  declare namespace io.flow.merchant.onboarding.v0.models {
13849
- interface IndirectTax {
13850
- readonly number?: string;
13851
- readonly id?: string;
13852
- }
13853
-
13854
- interface LogisticsFormat {
13855
- readonly preference: io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference;
13856
- readonly description?: string;
14252
+ interface CommonMerchantApplication {
14253
+ readonly discriminator: 'common_merchant_application';
14254
+ readonly id: string;
14255
+ readonly organization_id: string;
14256
+ readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
14257
+ readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
14258
+ readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
14259
+ readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
14260
+ readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
14261
+ readonly business_url?: string;
14262
+ readonly business_description?: string;
14263
+ readonly business_address?: io.flow.common.v0.models.Address;
14264
+ readonly refund_percentage?: number;
14265
+ readonly chargeback_percentage?: number;
14266
+ readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14267
+ readonly other_trade_sector?: string;
14268
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14269
+ readonly center_address?: io.flow.common.v0.models.Address;
14270
+ readonly average_order_weight?: number;
14271
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14272
+ readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
14273
+ readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
14274
+ readonly default_country_of_origin?: string;
14275
+ readonly rate_card: string;
14276
+ readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
14277
+ readonly created_at: string;
14278
+ readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
14279
+ readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
14280
+ readonly average_order_value?: io.flow.common.v0.models.Money;
14281
+ readonly mcc_codes?: number[];
13857
14282
  }
13858
14283
 
13859
- interface MerchantInfo {
13860
- readonly legal_name?: string;
13861
- readonly country: string;
13862
- readonly region?: io.flow.merchant.onboarding.v0.enums.RegionType;
13863
- readonly region_value?: string;
14284
+ interface CommonMerchantApplicationForm {
14285
+ readonly discriminator: 'common_merchant_application_form';
14286
+ readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
14287
+ readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
14288
+ readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
14289
+ readonly business_url?: string;
14290
+ readonly business_description?: string;
14291
+ readonly business_address?: io.flow.common.v0.models.Address;
14292
+ readonly refund_percentage?: number;
14293
+ readonly chargeback_percentage?: number;
14294
+ readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14295
+ readonly other_trade_sector?: string;
14296
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14297
+ readonly center_address?: io.flow.common.v0.models.Address;
14298
+ readonly average_order_weight?: number;
14299
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14300
+ readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
14301
+ readonly monthly_average_volume_amount?: number;
14302
+ readonly monthly_average_volume_currency?: string;
14303
+ readonly monthly_average_number_transactions?: number;
14304
+ readonly default_country_of_origin?: string;
14305
+ readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
14306
+ readonly rate_card?: string;
14307
+ readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
14308
+ readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
14309
+ readonly average_order_value?: io.flow.common.v0.models.Money;
14310
+ readonly mcc_codes?: number[];
14311
+ }
14312
+
14313
+ interface CommonMerchantApplicationPutForm {
14314
+ readonly discriminator: 'common_merchant_application_put_form';
14315
+ readonly status?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
14316
+ }
14317
+
14318
+ interface CommonMerchantApplicationsSummary {
14319
+ readonly discriminator: 'common_merchant_applications_summary';
14320
+ readonly total: number;
14321
+ }
14322
+
14323
+ interface IndirectTax {
14324
+ readonly number?: string;
14325
+ readonly id?: string;
14326
+ }
14327
+
14328
+ interface LogisticsFormat {
14329
+ readonly preference: io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference;
14330
+ readonly description?: string;
14331
+ }
14332
+
14333
+ interface MerchantInfo {
14334
+ readonly legal_name?: string;
14335
+ readonly country: string;
14336
+ readonly region?: io.flow.merchant.onboarding.v0.enums.RegionType;
14337
+ readonly region_value?: string;
13864
14338
  readonly category_code?: string;
14339
+ readonly description?: string;
13865
14340
  }
13866
14341
 
13867
14342
  interface MerchantOnboardingAddress {
@@ -13873,6 +14348,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
13873
14348
  readonly country?: string;
13874
14349
  }
13875
14350
 
14351
+ interface MerchantOnboardingBeneficiaryDetails {
14352
+ readonly name?: string;
14353
+ readonly address?: io.flow.common.v0.models.Address;
14354
+ readonly phone?: string;
14355
+ readonly email?: string;
14356
+ readonly bank_account_number?: string;
14357
+ readonly bank_routing_number?: string;
14358
+ readonly bank_name?: string;
14359
+ readonly bank_address?: io.flow.common.v0.models.Address;
14360
+ }
14361
+
13876
14362
  interface MonthlyAverage {
13877
14363
  readonly volume?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
13878
14364
  readonly number_transactions?: number;
@@ -13937,6 +14423,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
13937
14423
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
13938
14424
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
13939
14425
  readonly average_order_weight?: number;
14426
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
13940
14427
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
13941
14428
  readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
13942
14429
  readonly default_country_of_origin?: string;
@@ -13970,6 +14457,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
13970
14457
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
13971
14458
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
13972
14459
  readonly average_order_weight?: number;
14460
+ readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
13973
14461
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
13974
14462
  readonly monthly_average_volume_amount?: number;
13975
14463
  readonly monthly_average_volume_currency?: string;
@@ -14011,13 +14499,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14011
14499
 
14012
14500
  declare namespace io.flow.merchant.onboarding.v0.unions {
14013
14501
  type MerchantApplication =
14014
- io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication;
14502
+ | io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication
14503
+ | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication;
14015
14504
  type MerchantApplicationForm =
14016
- io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm;
14505
+ | io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm
14506
+ | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm;
14017
14507
  type MerchantApplicationPutForm =
14018
- io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm;
14508
+ | io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm
14509
+ | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm;
14019
14510
  type MerchantApplicationsSummary =
14020
- io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary;
14511
+ | io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary
14512
+ | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary;
14021
14513
  }
14022
14514
 
14023
14515
  declare namespace io.flow.catalog.v0.enums {
@@ -14752,7 +15244,8 @@ declare namespace io.flow.billing.v0.enums {
14752
15244
  | 'waiting_for_positive_account_balance'
14753
15245
  | 'unfulfilled_amount_greater_than_negative_balance'
14754
15246
  | 'account_payment_hold';
14755
- type StatementAttachmentType = 'csv';
15247
+ type StatementAttachmentType = 'csv' | 'pdf';
15248
+ type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
14756
15249
  type TaxDutyTransactionReasonCode =
14757
15250
  | 'post_capture'
14758
15251
  | 'post_fulfilment'
@@ -14760,6 +15253,7 @@ declare namespace io.flow.billing.v0.enums {
14760
15253
  | 'order_edit'
14761
15254
  | 'mixed_fulfilment_non_lvg'
14762
15255
  | 'lvg_refund'
15256
+ | 'us_inbound_tax_refund'
14763
15257
  | 'order_cancellation_above_de_min'
14764
15258
  | 'wyol_shipment_above_de_min'
14765
15259
  | 'full_refund_without_shipment'
@@ -14796,8 +15290,16 @@ declare namespace io.flow.billing.v0.enums {
14796
15290
  | 'merchant_payout'
14797
15291
  | 'merchant_refund'
14798
15292
  | 'ge_revenue_share'
14799
- | 'merchant_fee';
14800
- type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
15293
+ | 'merchant_fee'
15294
+ | 'b2b_tax'
15295
+ | 'b2b_tax_refund';
15296
+ type TrueupSource =
15297
+ | 'flow'
15298
+ | 'channel'
15299
+ | 'dhl-parcel'
15300
+ | 'dhl'
15301
+ | 'ups'
15302
+ | 'fedex';
14801
15303
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
14802
15304
  }
14803
15305
 
@@ -15059,6 +15561,11 @@ declare namespace io.flow.billing.v0.models {
15059
15561
  readonly created_at: string;
15060
15562
  }
15061
15563
 
15564
+ interface StatementStatusForm {
15565
+ readonly code: io.flow.billing.v0.enums.StatementStatusCode;
15566
+ readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
15567
+ }
15568
+
15062
15569
  interface Transaction {
15063
15570
  readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
15064
15571
  readonly id: string;
@@ -15723,6 +16230,9 @@ declare namespace io.flow.sellability.v0.enums {
15723
16230
  | 'wait_for_high_fidelity'
15724
16231
  | 'external_service_unavailable';
15725
16232
  type SellabilityRequestStatus = 'commit';
16233
+ type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
16234
+ type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
16235
+ type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
15726
16236
  }
15727
16237
 
15728
16238
  declare namespace io.flow.sellability.v0.models {
@@ -15732,10 +16242,11 @@ declare namespace io.flow.sellability.v0.models {
15732
16242
  readonly product_id?: string;
15733
16243
  readonly request_id: string;
15734
16244
  readonly hs6_code: string;
15735
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
16245
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
15736
16246
  }
15737
16247
 
15738
16248
  interface ProductSellabilityForm {
16249
+ readonly discriminator: 'product_sellability_form';
15739
16250
  readonly shop_id: string;
15740
16251
  readonly product_id?: string;
15741
16252
  readonly name: string;
@@ -15746,12 +16257,76 @@ declare namespace io.flow.sellability.v0.models {
15746
16257
  readonly dry_run?: boolean;
15747
16258
  }
15748
16259
 
16260
+ interface ProductSellabilityResult {
16261
+ readonly merchant_id?: string;
16262
+ readonly product_id: string;
16263
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
16264
+ readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
16265
+ readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
16266
+ readonly request_id?: string;
16267
+ readonly hs6_code?: string;
16268
+ }
16269
+
15749
16270
  interface SellabilityError {
15750
16271
  readonly discriminator: 'sellability_error';
15751
16272
  readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
15752
16273
  readonly messages: string[];
15753
16274
  }
15754
16275
 
16276
+ interface SellabilityNeedsActionAttributes {
16277
+ readonly reason_code: string;
16278
+ readonly category_metafield_handles: string[];
16279
+ readonly require_msds?: boolean;
16280
+ }
16281
+
16282
+ interface SellabilityReasonWithRegions {
16283
+ readonly reason: string;
16284
+ readonly regions: string[];
16285
+ }
16286
+
16287
+ interface SellabilityRegionResult {
16288
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16289
+ readonly regions: string[];
16290
+ }
16291
+
16292
+ interface SellabilityRegionWithReasons {
16293
+ readonly region: string;
16294
+ readonly reasons: string[];
16295
+ }
16296
+
16297
+ interface SellabilityRestrictedReason {
16298
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16299
+ readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
16300
+ }
16301
+
16302
+ interface SellabilityRestrictedRegion {
16303
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16304
+ readonly regions: string[];
16305
+ }
16306
+
16307
+ interface SellabilityScreening {
16308
+ readonly discriminator: 'sellability_screening';
16309
+ readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
16310
+ readonly request_id: string;
16311
+ readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
16312
+ readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
16313
+ readonly error_message?: string;
16314
+ }
16315
+
16316
+ interface SellabilityScreeningForm {
16317
+ readonly discriminator: 'sellability_screening_form';
16318
+ readonly merchant_id: string;
16319
+ readonly product_id: string;
16320
+ readonly name: string;
16321
+ readonly price: io.flow.common.v0.models.Money;
16322
+ readonly description: string;
16323
+ readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
16324
+ readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
16325
+ readonly catalog_size?: number;
16326
+ readonly relative_ranking?: number;
16327
+ readonly dry_run?: boolean;
16328
+ }
16329
+
15755
16330
  interface SellablilityRegionResult {
15756
16331
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
15757
16332
  readonly regions: string[];
@@ -15759,9 +16334,13 @@ declare namespace io.flow.sellability.v0.models {
15759
16334
  }
15760
16335
 
15761
16336
  declare namespace io.flow.sellability.v0.unions {
16337
+ type SellabilityRequest =
16338
+ | io.flow.sellability.v0.models.ProductSellabilityForm
16339
+ | io.flow.sellability.v0.models.SellabilityScreeningForm;
15762
16340
  type SellabilityResponse =
15763
16341
  | io.flow.sellability.v0.models.ProductSellability
15764
- | io.flow.sellability.v0.models.SellabilityError;
16342
+ | io.flow.sellability.v0.models.SellabilityError
16343
+ | io.flow.sellability.v0.models.SellabilityScreening;
15765
16344
  }
15766
16345
 
15767
16346
  declare namespace io.flow.currency.v0.models {
@@ -15908,6 +16487,22 @@ declare namespace io.flow.organization.v0.models {
15908
16487
  readonly status?: io.flow.common.v0.enums.OrganizationStatus;
15909
16488
  }
15910
16489
 
16490
+ interface OrganizationTaxRegistration {
16491
+ readonly id: string;
16492
+ readonly organization: io.flow.common.v0.models.OrganizationSummary;
16493
+ readonly address: io.flow.common.v0.models.BillingAddress;
16494
+ readonly registration: io.flow.organization.v0.models.TaxRegistrationDetail;
16495
+ readonly self_billing_agreement: io.flow.organization.v0.models.SelfBillingAgreement;
16496
+ }
16497
+
16498
+ interface OrganizationTaxRegistrationForm {
16499
+ readonly tax_number: string;
16500
+ readonly country: string;
16501
+ readonly province?: string;
16502
+ readonly self_billing_agreement_effective_at: string;
16503
+ readonly self_billing_agreement_expires_at?: string;
16504
+ }
16505
+
15911
16506
  interface OrganizationVersion {
15912
16507
  readonly id: string;
15913
16508
  readonly timestamp: string;
@@ -15924,6 +16519,18 @@ declare namespace io.flow.organization.v0.models {
15924
16519
  interface RegionSettingForm {
15925
16520
  readonly status: io.flow.common.v0.enums.AvailabilityStatus;
15926
16521
  }
16522
+
16523
+ interface SelfBillingAgreement {
16524
+ readonly effective_at: string;
16525
+ readonly expires_at: string;
16526
+ }
16527
+
16528
+ interface TaxRegistrationDetail {
16529
+ readonly tax_number: string;
16530
+ readonly country: string;
16531
+ readonly tax_code: string;
16532
+ readonly province?: string;
16533
+ }
15927
16534
  }
15928
16535
 
15929
16536
  declare namespace io.flow.billing.bank.account.v0.models {
@@ -15951,6 +16558,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
15951
16558
  readonly iban: string;
15952
16559
  }
15953
16560
 
16561
+ interface BankAccountInfoKor {
16562
+ readonly discriminator: 'kor';
16563
+ readonly name?: string;
16564
+ readonly address?: io.flow.common.v0.models.Address;
16565
+ readonly phone?: string;
16566
+ readonly email?: string;
16567
+ readonly bank_account_number: string;
16568
+ readonly bank_routing_number?: string;
16569
+ readonly bank_name?: string;
16570
+ readonly bank_address?: io.flow.common.v0.models.Address;
16571
+ }
16572
+
15954
16573
  interface BankAccountInfoUsa {
15955
16574
  readonly discriminator: 'usa';
15956
16575
  readonly routing_number: string;
@@ -15964,7 +16583,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
15964
16583
  | io.flow.billing.bank.account.v0.models.BankAccountInfoCan
15965
16584
  | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
15966
16585
  | io.flow.billing.bank.account.v0.models.BankAccountInfoFra
15967
- | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
16586
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoIta
16587
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
15968
16588
  }
15969
16589
 
15970
16590
  declare namespace io.flow.internal.v0.enums {
@@ -15980,6 +16600,7 @@ declare namespace io.flow.internal.v0.enums {
15980
16600
  | 'checkout_payments_api'
15981
16601
  | 'classic_authorise_api';
15982
16602
  type AldoItemType = 'physical' | 'digital';
16603
+ type AmruthaItemType = 'physical' | 'digital';
15983
16604
  type AnirbanItemType = 'physical' | 'digital';
15984
16605
  type AnshItemType = 'physical' | 'digital';
15985
16606
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
@@ -16003,6 +16624,8 @@ declare namespace io.flow.internal.v0.enums {
16003
16624
  | 'prr-76544617791b4ce8af96b3a7879474c6'
16004
16625
  | 'prr-566cc67167944bc4bd08167aa9c0beba'
16005
16626
  | 'prr-74e1320efb7741cf9ace400b69800f9b';
16627
+ type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
16628
+ type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
16006
16629
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
16007
16630
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
16008
16631
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
@@ -16273,7 +16896,9 @@ declare namespace io.flow.internal.v0.enums {
16273
16896
  | 'ge_revenue_share'
16274
16897
  | 'merchant_fee'
16275
16898
  | 'merchant_payout'
16276
- | 'merchant_refund';
16899
+ | 'merchant_refund'
16900
+ | 'b2b_tax'
16901
+ | 'b2b_tax_refund';
16277
16902
  type CalculatorEngine =
16278
16903
  | 'dtce_with_deminimis'
16279
16904
  | 'dtce_with_inclusive_pricing'
@@ -16329,6 +16954,7 @@ declare namespace io.flow.internal.v0.enums {
16329
16954
  | 'unsupported_virtual_goods'
16330
16955
  | 'non_matching_currencies'
16331
16956
  | 'unsupported_order_edit'
16957
+ | 'order_allocation_duties_mismatch'
16332
16958
  | 'order_missing';
16333
16959
  type ChannelOrderAcceptanceStatus =
16334
16960
  | 'accepted'
@@ -16386,7 +17012,12 @@ declare namespace io.flow.internal.v0.enums {
16386
17012
  | 'invalid_checkout';
16387
17013
  type ClassificationDecision = 'Accept' | 'Reject';
16388
17014
  type ClassificationErrorCode = 'generic_error';
16389
- type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
17015
+ type ClassificationFailureReason = 'low_confidence' | 'timeout';
17016
+ type ClassificationPlatform =
17017
+ | 'GlobalE'
17018
+ | 'Flow'
17019
+ | 'FlowOnboarding'
17020
+ | 'Borderfree';
16390
17021
  type ClassificationScope = 'Item' | 'Product';
16391
17022
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
16392
17023
  type ClothingAgeClassification =
@@ -16574,8 +17205,6 @@ declare namespace io.flow.internal.v0.enums {
16574
17205
  | 'export_failed'
16575
17206
  | 'feature_upserted'
16576
17207
  | 'feature_deleted'
16577
- | 'organization_boolean_value_upserted'
16578
- | 'organization_boolean_value_deleted'
16579
17208
  | 'account_settings_upserted'
16580
17209
  | 'account_settings_deleted'
16581
17210
  | 'account_processing_rates_upserted'
@@ -16775,6 +17404,8 @@ declare namespace io.flow.internal.v0.enums {
16775
17404
  | 'shopify_order_risk_assessment_deleted'
16776
17405
  | 'shopify_order_transaction_upserted'
16777
17406
  | 'shopify_order_transaction_deleted'
17407
+ | 'shopify_test_order_upserted'
17408
+ | 'shopify_test_order_deleted'
16778
17409
  | 'shopify_product_create_upserted'
16779
17410
  | 'shopify_product_create_deleted'
16780
17411
  | 'shopify_product_update_upserted'
@@ -16811,6 +17442,22 @@ declare namespace io.flow.internal.v0.enums {
16811
17442
  | 'stripe_connect_report_record_deleted'
16812
17443
  | 'liability_remittance_plan_upserted'
16813
17444
  | 'liability_remittance_plan_deleted'
17445
+ | 'anirban_item_upserted'
17446
+ | 'anirban_item_deleted'
17447
+ | 'sarvesh_item_upserted'
17448
+ | 'sarvesh_item_deleted'
17449
+ | 'hosein_item_upserted'
17450
+ | 'hosein_item_deleted'
17451
+ | 'niall_item_upserted'
17452
+ | 'niall_item_deleted'
17453
+ | 'rohan_item_upserted'
17454
+ | 'rohan_item_deleted'
17455
+ | 'aldo_item_upserted'
17456
+ | 'aldo_item_deleted'
17457
+ | 'ansh_item_upserted'
17458
+ | 'ansh_item_deleted'
17459
+ | 'gabriel_item_upserted'
17460
+ | 'gabriel_item_deleted'
16814
17461
  | 'tracking_processing_error_upserted'
16815
17462
  | 'tracking_processing_error_deleted'
16816
17463
  | 'tracking_label_event_upserted_v2'
@@ -16850,6 +17497,7 @@ declare namespace io.flow.internal.v0.enums {
16850
17497
  | 'none';
16851
17498
  type FraudProviderStatus = 'active' | 'archived';
16852
17499
  type FraudReviewResponsibleParty = 'flow' | 'organization';
17500
+ type GabrielItemType = 'physical' | 'digital';
16853
17501
  type GeIngestionFileStatus = 'pending' | 'processed';
16854
17502
  type GeRevenueShareTransactionType =
16855
17503
  | 'adjustment'
@@ -16874,6 +17522,7 @@ declare namespace io.flow.internal.v0.enums {
16874
17522
  | 'enterprise_model'
16875
17523
  | 'merchant';
16876
17524
  type HoseinItemType = 'physical' | 'digital';
17525
+ type Hs6CodeSource = 'sellability' | 'classification' | 'human';
16877
17526
  type HttpMethod = 'get' | 'post';
16878
17527
  type InternalPaymentEntityType =
16879
17528
  | 'authorization'
@@ -16927,6 +17576,8 @@ declare namespace io.flow.internal.v0.enums {
16927
17576
  | 'billable_label'
16928
17577
  | 'fee'
16929
17578
  | 'revenue_share';
17579
+ type LedgerReportType = 'periodic_mor_jurisdiction_report';
17580
+ type LedgerReportUrlType = 'sharepoint' | 's3';
16930
17581
  type LiabilityType =
16931
17582
  | 'full_value_tax'
16932
17583
  | 'low_value_goods_tax'
@@ -16954,7 +17605,13 @@ declare namespace io.flow.internal.v0.enums {
16954
17605
  | 'global_e_united_states'
16955
17606
  | 'global_e_united_kingdom'
16956
17607
  | 'global_e_canada'
16957
- | 'global_e_netherlands';
17608
+ | 'global_e_netherlands'
17609
+ | 'uk_global_e_canada'
17610
+ | 'uk_global_e_netherlands'
17611
+ | 'uk_global_e_united_states'
17612
+ | 'ca_global_e_united_kingdom'
17613
+ | 'ca_global_e_netherlands'
17614
+ | 'ca_global_e_united_states';
16958
17615
  type MerchantOverrideStatus =
16959
17616
  | 'pending'
16960
17617
  | 'in_review'
@@ -16991,7 +17648,6 @@ declare namespace io.flow.internal.v0.enums {
16991
17648
  | 'fraud'
16992
17649
  | 'logistics'
16993
17650
  | 'payments'
16994
- | 'shopify_markets'
16995
17651
  | 'integration_partner'
16996
17652
  | 'dtce'
16997
17653
  | 'restrictions'
@@ -17088,6 +17744,14 @@ declare namespace io.flow.internal.v0.enums {
17088
17744
  type PendingRecordType = 'verification' | 'classification' | 'restriction';
17089
17745
  type PrateekItemType = 'physical' | 'digital';
17090
17746
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
17747
+ type PreonboardingClassificationDecision = 'Accept' | 'Reject';
17748
+ type PreonboardingClassificationPlatform = 'FlowOnboarding';
17749
+ type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
17750
+ type PreonboardingRequestStatus =
17751
+ | 'pending'
17752
+ | 'completed'
17753
+ | 'failed'
17754
+ | 'discarded';
17091
17755
  type PriceSelector = 'minimum' | 'maximum';
17092
17756
  type ProcessingTransactionType =
17093
17757
  | 'adjustment'
@@ -17138,6 +17802,7 @@ declare namespace io.flow.internal.v0.enums {
17138
17802
  | 'trueup_overview'
17139
17803
  | 'non_channel_payment_bank_account'
17140
17804
  | 'scheduled_payment'
17805
+ | 'scheduled_payment_citi'
17141
17806
  | 'account_quarterly_balances'
17142
17807
  | 'invariants'
17143
17808
  | 'payments'
@@ -17166,7 +17831,8 @@ declare namespace io.flow.internal.v0.enums {
17166
17831
  | 'shopify'
17167
17832
  | 'enterprise'
17168
17833
  | 'shopify-sandbox'
17169
- | 'enterprise-sandbox';
17834
+ | 'enterprise-sandbox'
17835
+ | 'enterprise-qa';
17170
17836
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
17171
17837
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
17172
17838
  type RestrictionRuleCommunityExemption =
@@ -17273,7 +17939,8 @@ declare namespace io.flow.internal.v0.enums {
17273
17939
  | 'carrier_account'
17274
17940
  | 'payment'
17275
17941
  | 'rate_levels'
17276
- | 'center_defaults';
17942
+ | 'center_defaults'
17943
+ | 'item_dimensions';
17277
17944
  type TaxAndDutyInclusivitySetting =
17278
17945
  | 'duty_exclusive_tax_exclusive'
17279
17946
  | 'duty_inclusive_tax_exclusive'
@@ -18008,6 +18675,13 @@ declare namespace io.flow.internal.v0.models {
18008
18675
  readonly added_on: string;
18009
18676
  }
18010
18677
 
18678
+ interface AldoItemDeleted {
18679
+ readonly discriminator: 'aldo_item_deleted';
18680
+ readonly event_id: string;
18681
+ readonly timestamp: string;
18682
+ readonly id: string;
18683
+ }
18684
+
18011
18685
  interface AldoItemForm {
18012
18686
  readonly number: string;
18013
18687
  readonly amount: io.flow.common.v0.models.Price;
@@ -18016,6 +18690,13 @@ declare namespace io.flow.internal.v0.models {
18016
18690
  readonly added_on: string;
18017
18691
  }
18018
18692
 
18693
+ interface AldoItemUpserted {
18694
+ readonly discriminator: 'aldo_item_upserted';
18695
+ readonly event_id: string;
18696
+ readonly timestamp: string;
18697
+ readonly item: io.flow.internal.v0.models.AldoItem;
18698
+ }
18699
+
18019
18700
  interface AllItemsExport {
18020
18701
  readonly discriminator: 'all_items_export';
18021
18702
  readonly event_id: string;
@@ -18038,6 +18719,23 @@ declare namespace io.flow.internal.v0.models {
18038
18719
  readonly labels: Record<string, string[]>;
18039
18720
  }
18040
18721
 
18722
+ interface AmruthaItem {
18723
+ readonly id: string;
18724
+ readonly number: string;
18725
+ readonly amount: io.flow.common.v0.models.Price;
18726
+ readonly description?: string;
18727
+ readonly type: io.flow.internal.v0.enums.AmruthaItemType;
18728
+ readonly added_on: string;
18729
+ }
18730
+
18731
+ interface AmruthaItemForm {
18732
+ readonly number: string;
18733
+ readonly amount: io.flow.common.v0.models.Price;
18734
+ readonly description?: string;
18735
+ readonly type: io.flow.internal.v0.enums.AmruthaItemType;
18736
+ readonly added_on: string;
18737
+ }
18738
+
18041
18739
  interface AnirbanItem {
18042
18740
  readonly id: string;
18043
18741
  readonly number: string;
@@ -18047,6 +18745,13 @@ declare namespace io.flow.internal.v0.models {
18047
18745
  readonly added_on: string;
18048
18746
  }
18049
18747
 
18748
+ interface AnirbanItemDeleted {
18749
+ readonly discriminator: 'anirban_item_deleted';
18750
+ readonly event_id: string;
18751
+ readonly timestamp: string;
18752
+ readonly id: string;
18753
+ }
18754
+
18050
18755
  interface AnirbanItemForm {
18051
18756
  readonly number: string;
18052
18757
  readonly amount: io.flow.common.v0.models.Price;
@@ -18055,6 +18760,13 @@ declare namespace io.flow.internal.v0.models {
18055
18760
  readonly added_on: string;
18056
18761
  }
18057
18762
 
18763
+ interface AnirbanItemUpserted {
18764
+ readonly discriminator: 'anirban_item_upserted';
18765
+ readonly event_id: string;
18766
+ readonly timestamp: string;
18767
+ readonly item: io.flow.internal.v0.models.AnirbanItem;
18768
+ }
18769
+
18058
18770
  interface AnshItem {
18059
18771
  readonly id: string;
18060
18772
  readonly number: string;
@@ -18064,6 +18776,13 @@ declare namespace io.flow.internal.v0.models {
18064
18776
  readonly added_on: string;
18065
18777
  }
18066
18778
 
18779
+ interface AnshItemDeleted {
18780
+ readonly discriminator: 'ansh_item_deleted';
18781
+ readonly event_id: string;
18782
+ readonly timestamp: string;
18783
+ readonly id: string;
18784
+ }
18785
+
18067
18786
  interface AnshItemForm {
18068
18787
  readonly number: string;
18069
18788
  readonly amount: io.flow.common.v0.models.Price;
@@ -18072,6 +18791,13 @@ declare namespace io.flow.internal.v0.models {
18072
18791
  readonly added_on: string;
18073
18792
  }
18074
18793
 
18794
+ interface AnshItemUpserted {
18795
+ readonly discriminator: 'ansh_item_upserted';
18796
+ readonly event_id: string;
18797
+ readonly timestamp: string;
18798
+ readonly item: io.flow.internal.v0.models.AnshItem;
18799
+ }
18800
+
18075
18801
  interface ApplePayAuthorizationPayload {
18076
18802
  readonly discriminator: 'apple_pay_authorization_payload';
18077
18803
  readonly apple_pay_token: string;
@@ -18175,6 +18901,43 @@ declare namespace io.flow.internal.v0.models {
18175
18901
  readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
18176
18902
  }
18177
18903
 
18904
+ interface B2BTaxLedger {
18905
+ readonly id: string;
18906
+ readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
18907
+ readonly tax_amount: io.flow.common.v0.models.Money;
18908
+ readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
18909
+ readonly tax_rate: number;
18910
+ readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
18911
+ readonly organization_id: string;
18912
+ readonly organization_country: string;
18913
+ readonly organization_province?: string;
18914
+ readonly mor_tax_number: string;
18915
+ readonly mor_country: string;
18916
+ readonly mor_province?: string;
18917
+ readonly document_id: string;
18918
+ readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18919
+ readonly document_date: string;
18920
+ readonly ledger_report_id?: string;
18921
+ }
18922
+
18923
+ interface B2BTaxLedgerForm {
18924
+ readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
18925
+ readonly tax_amount: io.flow.common.v0.models.Money;
18926
+ readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
18927
+ readonly tax_rate: number;
18928
+ readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
18929
+ readonly organization_id: string;
18930
+ readonly organization_country: string;
18931
+ readonly organization_province?: string;
18932
+ readonly mor_tax_number: string;
18933
+ readonly mor_country: string;
18934
+ readonly mor_province?: string;
18935
+ readonly document_id: string;
18936
+ readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18937
+ readonly document_date: string;
18938
+ readonly ledger_report_id?: string;
18939
+ }
18940
+
18178
18941
  interface BankAccount {
18179
18942
  readonly status: io.flow.internal.v0.enums.BankAccountStatus;
18180
18943
  readonly hold_created_at?: string;
@@ -18481,6 +19244,8 @@ declare namespace io.flow.internal.v0.models {
18481
19244
  readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
18482
19245
  readonly ending_balance: io.flow.common.v0.models.Price;
18483
19246
  readonly tax_refund: io.flow.common.v0.models.Price;
19247
+ readonly b2b_tax: io.flow.common.v0.models.Price;
19248
+ readonly b2b_tax_refund: io.flow.common.v0.models.Price;
18484
19249
  }
18485
19250
 
18486
19251
  interface BillingStatementUpserted {
@@ -18598,6 +19363,10 @@ declare namespace io.flow.internal.v0.models {
18598
19363
  readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
18599
19364
  }
18600
19365
 
19366
+ interface Cafe24MarketsWebhook {
19367
+ readonly placeholder?: any /*json*/;
19368
+ }
19369
+
18601
19370
  interface CalculatedTaxAmount {
18602
19371
  readonly discriminator: 'calculated_tax_amount';
18603
19372
  readonly amount: number;
@@ -19198,6 +19967,7 @@ declare namespace io.flow.internal.v0.models {
19198
19967
  readonly order_updated_at?: string;
19199
19968
  readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
19200
19969
  readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
19970
+ readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
19201
19971
  }
19202
19972
 
19203
19973
  interface ChannelOrderAcceptanceDeleted {
@@ -21094,10 +21864,6 @@ declare namespace io.flow.internal.v0.models {
21094
21864
  readonly region?: string;
21095
21865
  }
21096
21866
 
21097
- interface FeatureIdReference {
21098
- readonly id: string;
21099
- }
21100
-
21101
21867
  interface FeatureReference {
21102
21868
  readonly id: string;
21103
21869
  readonly key: string;
@@ -21796,6 +22562,7 @@ declare namespace io.flow.internal.v0.models {
21796
22562
  readonly fulfilled_at: string;
21797
22563
  readonly sequence_number: number;
21798
22564
  readonly completes_order: boolean;
22565
+ readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
21799
22566
  }
21800
22567
 
21801
22568
  interface FulfillmentStatusUpserted {
@@ -21878,6 +22645,37 @@ declare namespace io.flow.internal.v0.models {
21878
22645
  readonly transaction_created_at: string;
21879
22646
  }
21880
22647
 
22648
+ interface GabrielItem {
22649
+ readonly id: string;
22650
+ readonly number: string;
22651
+ readonly amount: io.flow.common.v0.models.Price;
22652
+ readonly description?: string;
22653
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
22654
+ readonly added_on: string;
22655
+ }
22656
+
22657
+ interface GabrielItemDeleted {
22658
+ readonly discriminator: 'gabriel_item_deleted';
22659
+ readonly event_id: string;
22660
+ readonly timestamp: string;
22661
+ readonly id: string;
22662
+ }
22663
+
22664
+ interface GabrielItemForm {
22665
+ readonly number: string;
22666
+ readonly amount: io.flow.common.v0.models.Price;
22667
+ readonly description?: string;
22668
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
22669
+ readonly added_on: string;
22670
+ }
22671
+
22672
+ interface GabrielItemUpserted {
22673
+ readonly discriminator: 'gabriel_item_upserted';
22674
+ readonly event_id: string;
22675
+ readonly timestamp: string;
22676
+ readonly item: io.flow.internal.v0.models.GabrielItem;
22677
+ }
22678
+
21881
22679
  interface GeRevenueShareTransaction {
21882
22680
  readonly discriminator: 'ge_revenue_share_transaction';
21883
22681
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -22077,6 +22875,13 @@ declare namespace io.flow.internal.v0.models {
22077
22875
  readonly added_on: string;
22078
22876
  }
22079
22877
 
22878
+ interface HoseinItemDeleted {
22879
+ readonly discriminator: 'hosein_item_deleted';
22880
+ readonly event_id: string;
22881
+ readonly timestamp: string;
22882
+ readonly id: string;
22883
+ }
22884
+
22080
22885
  interface HoseinItemForm {
22081
22886
  readonly number: string;
22082
22887
  readonly amount: io.flow.common.v0.models.Price;
@@ -22085,6 +22890,13 @@ declare namespace io.flow.internal.v0.models {
22085
22890
  readonly added_on: string;
22086
22891
  }
22087
22892
 
22893
+ interface HoseinItemUpserted {
22894
+ readonly discriminator: 'hosein_item_upserted';
22895
+ readonly event_id: string;
22896
+ readonly timestamp: string;
22897
+ readonly item: io.flow.internal.v0.models.HoseinItem;
22898
+ }
22899
+
22088
22900
  interface Hs6 {
22089
22901
  readonly code: string;
22090
22902
  readonly description: string;
@@ -22309,8 +23121,6 @@ declare namespace io.flow.internal.v0.models {
22309
23121
  readonly customs_value: number;
22310
23122
  readonly total_value: number;
22311
23123
  readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
22312
- readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
22313
- readonly feature_new_export_declaration: boolean;
22314
23124
  }
22315
23125
 
22316
23126
  interface InvoiceDataLineItem {
@@ -22321,7 +23131,7 @@ declare namespace io.flow.internal.v0.models {
22321
23131
  readonly tariff_code: string;
22322
23132
  readonly country_of_origin: string;
22323
23133
  readonly display_country_of_origin: string;
22324
- readonly gst_paid: boolean;
23134
+ readonly remitter: io.flow.internal.v0.enums.TaxParty;
22325
23135
  readonly gst_paid_text: string;
22326
23136
  readonly unit_price: number;
22327
23137
  readonly vat_price: number;
@@ -22805,6 +23615,8 @@ declare namespace io.flow.internal.v0.models {
22805
23615
  readonly service_id?: string;
22806
23616
  readonly errors: string[];
22807
23617
  readonly direction?: io.flow.label.v0.enums.Direction;
23618
+ readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
23619
+ readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
22808
23620
  }
22809
23621
 
22810
23622
  interface LabelRequestErrorDeleted {
@@ -22970,6 +23782,21 @@ declare namespace io.flow.internal.v0.models {
22970
23782
  readonly errors: string[];
22971
23783
  }
22972
23784
 
23785
+ interface LedgerReport {
23786
+ readonly id: string;
23787
+ readonly mor_tax_number: string;
23788
+ readonly jurisdiction: string;
23789
+ readonly start_date: string;
23790
+ readonly end_date: string;
23791
+ readonly report_type: io.flow.internal.v0.enums.LedgerReportType;
23792
+ readonly urls: io.flow.internal.v0.models.LedgerReportUrl[];
23793
+ }
23794
+
23795
+ interface LedgerReportUrl {
23796
+ readonly url: string;
23797
+ readonly type: io.flow.internal.v0.enums.LedgerReportUrlType;
23798
+ }
23799
+
22973
23800
  interface LevyRateSummary {
22974
23801
  readonly id: string;
22975
23802
  readonly number: string;
@@ -23514,6 +24341,13 @@ declare namespace io.flow.internal.v0.models {
23514
24341
  readonly added_on: string;
23515
24342
  }
23516
24343
 
24344
+ interface NiallItemDeleted {
24345
+ readonly discriminator: 'niall_item_deleted';
24346
+ readonly event_id: string;
24347
+ readonly timestamp: string;
24348
+ readonly id: string;
24349
+ }
24350
+
23517
24351
  interface NiallItemForm {
23518
24352
  readonly number: string;
23519
24353
  readonly amount: io.flow.common.v0.models.Price;
@@ -23522,6 +24356,13 @@ declare namespace io.flow.internal.v0.models {
23522
24356
  readonly added_on: string;
23523
24357
  }
23524
24358
 
24359
+ interface NiallItemUpserted {
24360
+ readonly discriminator: 'niall_item_upserted';
24361
+ readonly event_id: string;
24362
+ readonly timestamp: string;
24363
+ readonly item: io.flow.internal.v0.models.NiallItem;
24364
+ }
24365
+
23525
24366
  interface NoCalculatedTaxAmount {
23526
24367
  readonly discriminator: 'no_calculated_tax_amount';
23527
24368
  readonly amount: number;
@@ -23603,6 +24444,7 @@ declare namespace io.flow.internal.v0.models {
23603
24444
  readonly health_score?: number;
23604
24445
  readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
23605
24446
  readonly blocked_since?: string;
24447
+ readonly onboarding_segment?: string;
23606
24448
  }
23607
24449
 
23608
24450
  interface OnboardingStateForm {
@@ -24048,27 +24890,6 @@ declare namespace io.flow.internal.v0.models {
24048
24890
  readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
24049
24891
  }
24050
24892
 
24051
- interface OrganizationBooleanValue {
24052
- readonly id: string;
24053
- readonly organization: io.flow.common.v0.models.OrganizationReference;
24054
- readonly feature: io.flow.internal.v0.models.FeatureIdReference;
24055
- readonly value: boolean;
24056
- }
24057
-
24058
- interface OrganizationBooleanValueDeleted {
24059
- readonly discriminator: 'organization_boolean_value_deleted';
24060
- readonly event_id: string;
24061
- readonly timestamp: string;
24062
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
24063
- }
24064
-
24065
- interface OrganizationBooleanValueUpserted {
24066
- readonly discriminator: 'organization_boolean_value_upserted';
24067
- readonly event_id: string;
24068
- readonly timestamp: string;
24069
- readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
24070
- }
24071
-
24072
24893
  interface OrganizationBusinessEntity {
24073
24894
  readonly id: string;
24074
24895
  readonly name: string;
@@ -24668,6 +25489,7 @@ declare namespace io.flow.internal.v0.models {
24668
25489
  interface PaymentIs {
24669
25490
  readonly lvg: boolean;
24670
25491
  readonly manual: boolean;
25492
+ readonly managed_pricing?: boolean;
24671
25493
  }
24672
25494
 
24673
25495
  interface PaymentMethodDetail {
@@ -25127,6 +25949,76 @@ declare namespace io.flow.internal.v0.models {
25127
25949
  readonly item: string;
25128
25950
  }
25129
25951
 
25952
+ interface PreonboardingClassificationRabbitmqEnvelope {
25953
+ readonly messageType: string[];
25954
+ readonly message: io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
25955
+ }
25956
+
25957
+ interface PreonboardingClassificationRabbitmqMessage {
25958
+ readonly MerchantId: string;
25959
+ readonly ProductName: string;
25960
+ readonly ProductDescription: string;
25961
+ readonly ProductIdInternal: string;
25962
+ readonly ProductIdExternal: string;
25963
+ readonly ProductGroupCode?: string;
25964
+ readonly ProductUrl?: string;
25965
+ readonly ProductImage?: string;
25966
+ readonly ProductAttributes: Record<string, string>;
25967
+ readonly Categories?: string[];
25968
+ readonly PlatformId: io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
25969
+ }
25970
+
25971
+ interface PreonboardingClassificationRequest {
25972
+ readonly id: string;
25973
+ readonly merchant_id: string;
25974
+ readonly product_id: string;
25975
+ readonly channel: string;
25976
+ readonly request_id: string;
25977
+ readonly status: io.flow.internal.v0.enums.PreonboardingRequestStatus;
25978
+ readonly name: string;
25979
+ readonly price: io.flow.common.v0.models.Money;
25980
+ readonly description: string;
25981
+ readonly relative_ranking: number;
25982
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
25983
+ readonly fingerprint: string;
25984
+ }
25985
+
25986
+ interface PreonboardingClassificationResult {
25987
+ readonly id: string;
25988
+ readonly merchant_id: string;
25989
+ readonly product_id: string;
25990
+ readonly channel: string;
25991
+ readonly hs6_code?: string;
25992
+ readonly probability?: number;
25993
+ readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
25994
+ readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
25995
+ }
25996
+
25997
+ interface PreonboardingMerchant {
25998
+ readonly merchant_id: string;
25999
+ readonly channel: string;
26000
+ readonly catalog_size: number;
26001
+ readonly processed_product_count: number;
26002
+ readonly last_request: string;
26003
+ }
26004
+
26005
+ interface PreonboardingSellabilityResult {
26006
+ readonly merchant_id: string;
26007
+ readonly product_id: string;
26008
+ readonly channel: string;
26009
+ readonly request_id: string;
26010
+ readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
26011
+ readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
26012
+ readonly hs6_code?: string;
26013
+ readonly hs6_code_source?: io.flow.internal.v0.enums.Hs6CodeSource;
26014
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
26015
+ readonly rule_ids?: string[];
26016
+ readonly matching_positive_keywords?: string[];
26017
+ readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
26018
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
26019
+ readonly fingerprint: string;
26020
+ }
26021
+
25130
26022
  interface PriceInclusivity {
25131
26023
  readonly tax?: boolean;
25132
26024
  readonly duty?: boolean;
@@ -25379,7 +26271,7 @@ declare namespace io.flow.internal.v0.models {
25379
26271
  readonly product_id?: string;
25380
26272
  readonly request_id: string;
25381
26273
  readonly hs6_code: string;
25382
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
26274
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
25383
26275
  readonly rule_ids: string[];
25384
26276
  }
25385
26277
 
@@ -25392,7 +26284,7 @@ declare namespace io.flow.internal.v0.models {
25392
26284
  }
25393
26285
 
25394
26286
  interface ProductSellabilityInternalResult {
25395
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
26287
+ readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
25396
26288
  readonly rule_ids: string[];
25397
26289
  }
25398
26290
 
@@ -25402,7 +26294,7 @@ declare namespace io.flow.internal.v0.models {
25402
26294
  readonly request_id: string;
25403
26295
  readonly hs6_code: string;
25404
26296
  readonly restricted_regions?: string[];
25405
- readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
26297
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
25406
26298
  readonly rule_ids?: string[];
25407
26299
  readonly taxonomy_category?: string;
25408
26300
  }
@@ -25438,6 +26330,12 @@ declare namespace io.flow.internal.v0.models {
25438
26330
  readonly shipping_notification_id: string;
25439
26331
  }
25440
26332
 
26333
+ interface ProofOfPostingSynthetic {
26334
+ readonly discriminator: 'synthetic';
26335
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
26336
+ readonly created_at: string;
26337
+ }
26338
+
25441
26339
  interface ProofOfPostingTimeElapsed {
25442
26340
  readonly discriminator: 'time_elapsed';
25443
26341
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -25917,6 +26815,11 @@ declare namespace io.flow.internal.v0.models {
25917
26815
  readonly source: io.flow.internal.v0.models.AccountSource;
25918
26816
  }
25919
26817
 
26818
+ interface ReportAmountRange {
26819
+ readonly min?: number;
26820
+ readonly max?: number;
26821
+ }
26822
+
25920
26823
  interface ReportBankAccount {
25921
26824
  readonly id?: string;
25922
26825
  readonly last4?: string;
@@ -25941,6 +26844,7 @@ declare namespace io.flow.internal.v0.models {
25941
26844
  interface ReportFilter {
25942
26845
  readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
25943
26846
  readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
26847
+ readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
25944
26848
  }
25945
26849
 
25946
26850
  interface ReportForm {
@@ -26379,7 +27283,7 @@ declare namespace io.flow.internal.v0.models {
26379
27283
  interface RestrictionOrganization {
26380
27284
  readonly id: string;
26381
27285
  readonly name: string;
26382
- readonly environment: io.flow.common.v0.enums.Environment;
27286
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
26383
27287
  readonly url?: string;
26384
27288
  readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
26385
27289
  readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
@@ -26430,7 +27334,7 @@ declare namespace io.flow.internal.v0.models {
26430
27334
  interface RestrictionOrganizationSummary {
26431
27335
  readonly id: string;
26432
27336
  readonly name: string;
26433
- readonly environment: io.flow.common.v0.enums.Environment;
27337
+ readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
26434
27338
  readonly source: io.flow.internal.v0.enums.OrganizationSource;
26435
27339
  }
26436
27340
 
@@ -26498,7 +27402,7 @@ declare namespace io.flow.internal.v0.models {
26498
27402
  readonly attribute_names?: string[];
26499
27403
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
26500
27404
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
26501
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
27405
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
26502
27406
  }
26503
27407
 
26504
27408
  interface RestrictionRuleDecisionForm {
@@ -26559,7 +27463,7 @@ declare namespace io.flow.internal.v0.models {
26559
27463
  readonly attribute_names?: string[];
26560
27464
  readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
26561
27465
  readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
26562
- readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
27466
+ readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
26563
27467
  }
26564
27468
 
26565
27469
  interface RestrictionRuleLaneExemption {
@@ -26623,23 +27527,12 @@ declare namespace io.flow.internal.v0.models {
26623
27527
  readonly oldest_pv_product_date_transacting: string;
26624
27528
  readonly oldest_pc_product_date_setup_complete: string;
26625
27529
  readonly oldest_pc_product_date_transacting: string;
26626
- readonly num_orgs_setup_complete_prs: number;
26627
- readonly num_products_setup_complete_prs: number;
26628
- readonly num_orgs_transacting_prs: number;
26629
- readonly num_products_transacting_prs: number;
26630
- readonly oldest_pr_product_date_setup_complete: string;
26631
- readonly oldest_pr_date_transacting: string;
26632
27530
  readonly percent_products_reviewed_transacting?: number;
26633
27531
  readonly num_pv_inflow_net_new: number;
26634
27532
  readonly num_pv_outflow_human_decisions: number;
26635
27533
  readonly num_pv_outflow_auto_review_decisions: number;
26636
27534
  readonly num_pv_outflow_side_effect_decisions: number;
26637
- readonly num_pr_inflow_net_new: number;
26638
- readonly num_pr_outflow_human_decisions: number;
26639
- readonly num_pr_outflow_auto_review_decisions: number;
26640
- readonly num_pr_outflow_side_effect_decisions: number;
26641
27535
  readonly num_pending_decisions_transacting: number;
26642
- readonly oldest_insufficient_details_pv_onboarding?: string;
26643
27536
  readonly oldest_insufficient_details_pv_active?: string;
26644
27537
  readonly oldest_insufficient_details_pv_transacting?: string;
26645
27538
  readonly num_products_with_fs_result?: number;
@@ -26792,6 +27685,13 @@ declare namespace io.flow.internal.v0.models {
26792
27685
  readonly added_on: string;
26793
27686
  }
26794
27687
 
27688
+ interface RohanItemDeleted {
27689
+ readonly discriminator: 'rohan_item_deleted';
27690
+ readonly event_id: string;
27691
+ readonly timestamp: string;
27692
+ readonly id: string;
27693
+ }
27694
+
26795
27695
  interface RohanItemForm {
26796
27696
  readonly number: string;
26797
27697
  readonly amount: io.flow.common.v0.models.Price;
@@ -26800,6 +27700,13 @@ declare namespace io.flow.internal.v0.models {
26800
27700
  readonly added_on: string;
26801
27701
  }
26802
27702
 
27703
+ interface RohanItemUpserted {
27704
+ readonly discriminator: 'rohan_item_upserted';
27705
+ readonly event_id: string;
27706
+ readonly timestamp: string;
27707
+ readonly item: io.flow.internal.v0.models.RohanItem;
27708
+ }
27709
+
26803
27710
  interface RoutingAccount {
26804
27711
  readonly discriminator: 'routing_account';
26805
27712
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -26853,6 +27760,13 @@ declare namespace io.flow.internal.v0.models {
26853
27760
  readonly added_on: string;
26854
27761
  }
26855
27762
 
27763
+ interface SarveshItemDeleted {
27764
+ readonly discriminator: 'sarvesh_item_deleted';
27765
+ readonly event_id: string;
27766
+ readonly timestamp: string;
27767
+ readonly id: string;
27768
+ }
27769
+
26856
27770
  interface SarveshItemForm {
26857
27771
  readonly number: string;
26858
27772
  readonly amount: io.flow.common.v0.models.Price;
@@ -26861,6 +27775,13 @@ declare namespace io.flow.internal.v0.models {
26861
27775
  readonly added_on: string;
26862
27776
  }
26863
27777
 
27778
+ interface SarveshItemUpserted {
27779
+ readonly discriminator: 'sarvesh_item_upserted';
27780
+ readonly event_id: string;
27781
+ readonly timestamp: string;
27782
+ readonly item: io.flow.internal.v0.models.SarveshItem;
27783
+ }
27784
+
26864
27785
  interface ScheduledPayment {
26865
27786
  readonly payment: io.flow.internal.v0.models.ReportPayment;
26866
27787
  readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -26960,9 +27881,9 @@ declare namespace io.flow.internal.v0.models {
26960
27881
  readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
26961
27882
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
26962
27883
  readonly current_rule_ids?: string[];
26963
- readonly current_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
27884
+ readonly current_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
26964
27885
  readonly merchant_rule_ids?: string[];
26965
- readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
27886
+ readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
26966
27887
  readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
26967
27888
  readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
26968
27889
  }
@@ -27014,6 +27935,51 @@ declare namespace io.flow.internal.v0.models {
27014
27935
  readonly customer_price: number;
27015
27936
  }
27016
27937
 
27938
+ interface ShippingRateEstimateAvailableInternal {
27939
+ readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
27940
+ readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
27941
+ readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
27942
+ readonly total_amount: io.flow.common.v0.models.Money;
27943
+ readonly base_amount: io.flow.common.v0.models.Money;
27944
+ readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
27945
+ readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
27946
+ readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
27947
+ readonly weight_break?: number;
27948
+ readonly ratecard_id?: string;
27949
+ readonly lane_id?: string;
27950
+ readonly rate_level_key?: string;
27951
+ readonly glbe_shipping_method_id?: string;
27952
+ readonly glbe_proposition_name?: string;
27953
+ readonly channel_revenue_share_percentage?: number;
27954
+ readonly distance_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
27955
+ readonly weight_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
27956
+ }
27957
+
27958
+ interface ShippingRateEstimateInternal {
27959
+ readonly channel_id: string;
27960
+ readonly organization_id: string;
27961
+ readonly service: string;
27962
+ readonly origin_address: io.flow.common.v0.models.Address;
27963
+ readonly destination_address: io.flow.common.v0.models.Address;
27964
+ readonly shipping_date_time: string;
27965
+ readonly available: io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
27966
+ }
27967
+
27968
+ interface ShippingRateEstimateRequestInternal {
27969
+ readonly channel_id: string;
27970
+ readonly organization_id: string;
27971
+ readonly origin_address: io.flow.common.v0.models.Address;
27972
+ readonly destination_address: io.flow.common.v0.models.Address;
27973
+ readonly package_dimensions: io.flow.common.v0.models.Dimension;
27974
+ readonly shipping_date_time: string;
27975
+ readonly service: string;
27976
+ readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
27977
+ readonly duties_owed?: io.flow.common.v0.models.Money;
27978
+ readonly taxes_owed?: io.flow.common.v0.models.Money;
27979
+ readonly line_items?: io.flow.common.v0.models.LineItemForm[];
27980
+ readonly include_unpublished?: boolean;
27981
+ }
27982
+
27017
27983
  interface ShopifyCatalogPublication {
27018
27984
  readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
27019
27985
  }
@@ -27260,6 +28226,14 @@ declare namespace io.flow.internal.v0.models {
27260
28226
  readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
27261
28227
  readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
27262
28228
  readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
28229
+ readonly organization_metrics?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
28230
+ }
28231
+
28232
+ interface ShopifyMarketsOrganizationOrderMetrics {
28233
+ readonly organization_id: string;
28234
+ readonly shopify_order_count: number;
28235
+ readonly internal_order_count: number;
28236
+ readonly discrepancy_count?: number;
27263
28237
  }
27264
28238
 
27265
28239
  interface ShopifyMarketsQueuedRecord {
@@ -27734,8 +28708,29 @@ declare namespace io.flow.internal.v0.models {
27734
28708
  readonly auto_correct: boolean;
27735
28709
  }
27736
28710
 
28711
+ interface ShopifyTestOrder {
28712
+ readonly id: string;
28713
+ }
28714
+
28715
+ interface ShopifyTestOrderDeleted {
28716
+ readonly discriminator: 'shopify_test_order_deleted';
28717
+ readonly event_id: string;
28718
+ readonly timestamp: string;
28719
+ readonly organization: string;
28720
+ readonly id: string;
28721
+ }
28722
+
28723
+ interface ShopifyTestOrderUpserted {
28724
+ readonly discriminator: 'shopify_test_order_upserted';
28725
+ readonly event_id: string;
28726
+ readonly timestamp: string;
28727
+ readonly organization: string;
28728
+ readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
28729
+ }
28730
+
27737
28731
  interface ShopperBreakdown {
27738
28732
  readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
28733
+ readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
27739
28734
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
27740
28735
  readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
27741
28736
  readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
@@ -28092,6 +29087,7 @@ declare namespace io.flow.internal.v0.models {
28092
29087
  readonly mor_fees?: number;
28093
29088
  readonly mor_foreign_exchange_fees?: number;
28094
29089
  readonly sp_processing_fees?: number;
29090
+ readonly mor_fees_tax?: number;
28095
29091
  }
28096
29092
 
28097
29093
  interface StripeConnectReportRecordTransferMetadata {
@@ -28473,6 +29469,10 @@ declare namespace io.flow.internal.v0.models {
28473
29469
  readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
28474
29470
  }
28475
29471
 
29472
+ interface TaxTypeTotal {
29473
+ readonly value: io.flow.common.v0.models.Money;
29474
+ }
29475
+
28476
29476
  interface TaxonomyAlignmentCheckResult {
28477
29477
  readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
28478
29478
  readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
@@ -29381,8 +30381,6 @@ declare namespace io.flow.internal.v0.unions {
29381
30381
  | io.flow.internal.v0.models.ExportFailed
29382
30382
  | io.flow.internal.v0.models.FeatureUpserted
29383
30383
  | io.flow.internal.v0.models.FeatureDeleted
29384
- | io.flow.internal.v0.models.OrganizationBooleanValueUpserted
29385
- | io.flow.internal.v0.models.OrganizationBooleanValueDeleted
29386
30384
  | io.flow.internal.v0.models.AccountSettingsUpserted
29387
30385
  | io.flow.internal.v0.models.AccountSettingsDeleted
29388
30386
  | io.flow.internal.v0.models.AccountProcessingRatesUpserted
@@ -29582,6 +30580,8 @@ declare namespace io.flow.internal.v0.unions {
29582
30580
  | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
29583
30581
  | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted
29584
30582
  | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
30583
+ | io.flow.internal.v0.models.ShopifyTestOrderUpserted
30584
+ | io.flow.internal.v0.models.ShopifyTestOrderDeleted
29585
30585
  | io.flow.internal.v0.models.ShopifyProductCreateUpserted
29586
30586
  | io.flow.internal.v0.models.ShopifyProductCreateDeleted
29587
30587
  | io.flow.internal.v0.models.ShopifyProductUpdateUpserted
@@ -29618,6 +30618,22 @@ declare namespace io.flow.internal.v0.unions {
29618
30618
  | io.flow.internal.v0.models.StripeConnectReportRecordDeleted
29619
30619
  | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
29620
30620
  | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
30621
+ | io.flow.internal.v0.models.AnirbanItemUpserted
30622
+ | io.flow.internal.v0.models.AnirbanItemDeleted
30623
+ | io.flow.internal.v0.models.SarveshItemUpserted
30624
+ | io.flow.internal.v0.models.SarveshItemDeleted
30625
+ | io.flow.internal.v0.models.HoseinItemUpserted
30626
+ | io.flow.internal.v0.models.HoseinItemDeleted
30627
+ | io.flow.internal.v0.models.NiallItemUpserted
30628
+ | io.flow.internal.v0.models.NiallItemDeleted
30629
+ | io.flow.internal.v0.models.RohanItemUpserted
30630
+ | io.flow.internal.v0.models.RohanItemDeleted
30631
+ | io.flow.internal.v0.models.AldoItemUpserted
30632
+ | io.flow.internal.v0.models.AldoItemDeleted
30633
+ | io.flow.internal.v0.models.AnshItemUpserted
30634
+ | io.flow.internal.v0.models.AnshItemDeleted
30635
+ | io.flow.internal.v0.models.GabrielItemUpserted
30636
+ | io.flow.internal.v0.models.GabrielItemDeleted
29621
30637
  | io.flow.internal.v0.models.TrackingProcessingErrorUpserted
29622
30638
  | io.flow.internal.v0.models.TrackingProcessingErrorDeleted
29623
30639
  | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
@@ -29767,7 +30783,8 @@ declare namespace io.flow.internal.v0.unions {
29767
30783
  | io.flow.internal.v0.models.ProofOfPostingShippingNotification
29768
30784
  | io.flow.internal.v0.models.ProofOfPostingOrderCancellation
29769
30785
  | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment
29770
- | io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
30786
+ | io.flow.internal.v0.models.ProofOfPostingTimeElapsed
30787
+ | io.flow.internal.v0.models.ProofOfPostingSynthetic;
29771
30788
  type RestrictionAttributeRuleCondition =
29772
30789
  | io.flow.internal.v0.models.RestrictionAttributeConditionSingle
29773
30790
  | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
@@ -29998,20 +31015,30 @@ export type AfterpayRefundUpserted =
29998
31015
  io.flow.internal.v0.models.AfterpayRefundUpserted;
29999
31016
  export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
30000
31017
  export type AldoItem = io.flow.internal.v0.models.AldoItem;
31018
+ export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
30001
31019
  export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
30002
31020
  export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
31021
+ export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
30003
31022
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
30004
31023
  export type AllOrganizationsMembership =
30005
31024
  io.flow.internal.v0.models.AllOrganizationsMembership;
30006
31025
  export type AllocationItemReference =
30007
31026
  io.flow.internal.v0.models.AllocationItemReference;
30008
31027
  export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
31028
+ export type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
31029
+ export type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
31030
+ export type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
30009
31031
  export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
31032
+ export type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
30010
31033
  export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
30011
31034
  export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
31035
+ export type AnirbanItemUpserted =
31036
+ io.flow.internal.v0.models.AnirbanItemUpserted;
30012
31037
  export type AnshItem = io.flow.internal.v0.models.AnshItem;
31038
+ export type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
30013
31039
  export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
30014
31040
  export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
31041
+ export type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
30015
31042
  export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
30016
31043
  export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
30017
31044
  export type ApplePayAuthorizationPayload =
@@ -30047,6 +31074,11 @@ export type AuthorizedShippingCharge =
30047
31074
  io.flow.internal.v0.models.AuthorizedShippingCharge;
30048
31075
  export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
30049
31076
  export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
31077
+ export type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
31078
+ export type B2BTaxLedgerDocumentType =
31079
+ io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
31080
+ export type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
31081
+ export type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
30050
31082
  export type BankAccount = io.flow.internal.v0.models.BankAccount;
30051
31083
  export type BankAccountReference =
30052
31084
  io.flow.internal.v0.models.BankAccountReference;
@@ -30166,6 +31198,8 @@ export type BulkClassificationAction =
30166
31198
  io.flow.internal.v0.models.BulkClassificationAction;
30167
31199
  export type BulkDutyUpdateValidationError =
30168
31200
  io.flow.internal.v0.models.BulkDutyUpdateValidationError;
31201
+ export type Cafe24MarketsWebhook =
31202
+ io.flow.internal.v0.models.Cafe24MarketsWebhook;
30169
31203
  export type CalculatedTaxAmount =
30170
31204
  io.flow.internal.v0.models.CalculatedTaxAmount;
30171
31205
  export type CalculationStampingLineItem =
@@ -30460,6 +31494,8 @@ export type ClassificationError =
30460
31494
  io.flow.internal.v0.models.ClassificationError;
30461
31495
  export type ClassificationErrorCode =
30462
31496
  io.flow.internal.v0.enums.ClassificationErrorCode;
31497
+ export type ClassificationFailureReason =
31498
+ io.flow.internal.v0.enums.ClassificationFailureReason;
30463
31499
  export type ClassificationForm = io.flow.internal.v0.unions.ClassificationForm;
30464
31500
  export type ClassificationFormWrapper =
30465
31501
  io.flow.internal.v0.models.ClassificationFormWrapper;
@@ -30836,7 +31872,6 @@ export type FeatureDefaultValue =
30836
31872
  export type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
30837
31873
  export type FeatureForm = io.flow.internal.v0.models.FeatureForm;
30838
31874
  export type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
30839
- export type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
30840
31875
  export type FeatureReference = io.flow.internal.v0.models.FeatureReference;
30841
31876
  export type FeatureReleaseForm = io.flow.internal.v0.models.FeatureReleaseForm;
30842
31877
  export type FeatureRule = io.flow.internal.v0.unions.FeatureRule;
@@ -31027,6 +32062,12 @@ export type FxRevenueRecognitionRate =
31027
32062
  io.flow.internal.v0.models.FxRevenueRecognitionRate;
31028
32063
  export type FxRevenueRecognitionSource =
31029
32064
  io.flow.internal.v0.models.FxRevenueRecognitionSource;
32065
+ export type GabrielItem = io.flow.internal.v0.models.GabrielItem;
32066
+ export type GabrielItemDeleted = io.flow.internal.v0.models.GabrielItemDeleted;
32067
+ export type GabrielItemForm = io.flow.internal.v0.models.GabrielItemForm;
32068
+ export type GabrielItemType = io.flow.internal.v0.enums.GabrielItemType;
32069
+ export type GabrielItemUpserted =
32070
+ io.flow.internal.v0.models.GabrielItemUpserted;
31030
32071
  export type GeIngestionFileStatus =
31031
32072
  io.flow.internal.v0.enums.GeIngestionFileStatus;
31032
32073
  export type GeRevenueShareTransaction =
@@ -31087,9 +32128,12 @@ export type HarmonizeFullyRequestV2 =
31087
32128
  export type HarmonizedItemsHs6Export =
31088
32129
  io.flow.internal.v0.models.HarmonizedItemsHs6Export;
31089
32130
  export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
32131
+ export type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
31090
32132
  export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
31091
32133
  export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
32134
+ export type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
31092
32135
  export type Hs6 = io.flow.internal.v0.models.Hs6;
32136
+ export type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
31093
32137
  export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
31094
32138
  export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
31095
32139
  export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
@@ -31290,6 +32334,10 @@ export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
31290
32334
  export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
31291
32335
  export type Landmark = io.flow.internal.v0.models.Landmark;
31292
32336
  export type LastFailureSummary = io.flow.internal.v0.models.LastFailureSummary;
32337
+ export type LedgerReport = io.flow.internal.v0.models.LedgerReport;
32338
+ export type LedgerReportType = io.flow.internal.v0.enums.LedgerReportType;
32339
+ export type LedgerReportUrl = io.flow.internal.v0.models.LedgerReportUrl;
32340
+ export type LedgerReportUrlType = io.flow.internal.v0.enums.LedgerReportUrlType;
31293
32341
  export type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
31294
32342
  export type LevyRateSummaryUpserted =
31295
32343
  io.flow.internal.v0.models.LevyRateSummaryUpserted;
@@ -31420,8 +32468,10 @@ export type NegativeDebitMetrics =
31420
32468
  export type NextBillingStatement =
31421
32469
  io.flow.internal.v0.models.NextBillingStatement;
31422
32470
  export type NiallItem = io.flow.internal.v0.models.NiallItem;
32471
+ export type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
31423
32472
  export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
31424
32473
  export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
32474
+ export type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
31425
32475
  export type NoCalculatedTaxAmount =
31426
32476
  io.flow.internal.v0.models.NoCalculatedTaxAmount;
31427
32477
  export type NoClassificationForm =
@@ -31577,12 +32627,6 @@ export type OrganizationBankAccountUpserted =
31577
32627
  io.flow.internal.v0.models.OrganizationBankAccountUpserted;
31578
32628
  export type OrganizationBillingStatement =
31579
32629
  io.flow.internal.v0.models.OrganizationBillingStatement;
31580
- export type OrganizationBooleanValue =
31581
- io.flow.internal.v0.models.OrganizationBooleanValue;
31582
- export type OrganizationBooleanValueDeleted =
31583
- io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
31584
- export type OrganizationBooleanValueUpserted =
31585
- io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
31586
32630
  export type OrganizationBusinessEntity =
31587
32631
  io.flow.internal.v0.models.OrganizationBusinessEntity;
31588
32632
  export type OrganizationBusinessEntityDeleted =
@@ -31858,6 +32902,26 @@ export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
31858
32902
  export type Prediction = io.flow.internal.v0.models.Prediction;
31859
32903
  export type PreferredBillingSchedule =
31860
32904
  io.flow.internal.v0.enums.PreferredBillingSchedule;
32905
+ export type PreonboardingClassificationDecision =
32906
+ io.flow.internal.v0.enums.PreonboardingClassificationDecision;
32907
+ export type PreonboardingClassificationPlatform =
32908
+ io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
32909
+ export type PreonboardingClassificationRabbitmqEnvelope =
32910
+ io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope;
32911
+ export type PreonboardingClassificationRabbitmqMessage =
32912
+ io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
32913
+ export type PreonboardingClassificationRequest =
32914
+ io.flow.internal.v0.models.PreonboardingClassificationRequest;
32915
+ export type PreonboardingClassificationResult =
32916
+ io.flow.internal.v0.models.PreonboardingClassificationResult;
32917
+ export type PreonboardingClassificationType =
32918
+ io.flow.internal.v0.enums.PreonboardingClassificationType;
32919
+ export type PreonboardingMerchant =
32920
+ io.flow.internal.v0.models.PreonboardingMerchant;
32921
+ export type PreonboardingRequestStatus =
32922
+ io.flow.internal.v0.enums.PreonboardingRequestStatus;
32923
+ export type PreonboardingSellabilityResult =
32924
+ io.flow.internal.v0.models.PreonboardingSellabilityResult;
31861
32925
  export type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
31862
32926
  export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
31863
32927
  export type PrioritizedCenterReference =
@@ -31951,6 +33015,8 @@ export type ProofOfPostingOrderCombinedShipment =
31951
33015
  io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
31952
33016
  export type ProofOfPostingShippingNotification =
31953
33017
  io.flow.internal.v0.models.ProofOfPostingShippingNotification;
33018
+ export type ProofOfPostingSynthetic =
33019
+ io.flow.internal.v0.models.ProofOfPostingSynthetic;
31954
33020
  export type ProofOfPostingTimeElapsed =
31955
33021
  io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
31956
33022
  export type PspDistribution = io.flow.internal.v0.models.PspDistribution;
@@ -32063,6 +33129,7 @@ export type RemittanceResponsibility =
32063
33129
  io.flow.internal.v0.models.RemittanceResponsibility;
32064
33130
  export type Report = io.flow.internal.v0.models.Report;
32065
33131
  export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
33132
+ export type ReportAmountRange = io.flow.internal.v0.models.ReportAmountRange;
32066
33133
  export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
32067
33134
  export type ReportBankAccountCleartext =
32068
33135
  io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -32277,8 +33344,10 @@ export type RevenueRecordUpserted =
32277
33344
  export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
32278
33345
  export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
32279
33346
  export type RohanItem = io.flow.internal.v0.models.RohanItem;
33347
+ export type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
32280
33348
  export type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
32281
33349
  export type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
33350
+ export type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
32282
33351
  export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
32283
33352
  export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
32284
33353
  export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
@@ -32287,8 +33356,11 @@ export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
32287
33356
  export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
32288
33357
  export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
32289
33358
  export type SarveshItem = io.flow.internal.v0.models.SarveshItem;
33359
+ export type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
32290
33360
  export type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
32291
33361
  export type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
33362
+ export type SarveshItemUpserted =
33363
+ io.flow.internal.v0.models.SarveshItemUpserted;
32292
33364
  export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
32293
33365
  export type Screen = io.flow.internal.v0.models.Screen;
32294
33366
  export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -32324,6 +33396,12 @@ export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
32324
33396
  export type ShippingMethodReference =
32325
33397
  io.flow.internal.v0.models.ShippingMethodReference;
32326
33398
  export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
33399
+ export type ShippingRateEstimateAvailableInternal =
33400
+ io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
33401
+ export type ShippingRateEstimateInternal =
33402
+ io.flow.internal.v0.models.ShippingRateEstimateInternal;
33403
+ export type ShippingRateEstimateRequestInternal =
33404
+ io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
32327
33405
  export type ShopifyCatalogPublication =
32328
33406
  io.flow.internal.v0.models.ShopifyCatalogPublication;
32329
33407
  export type ShopifyChannelOrganizationToken =
@@ -32399,6 +33477,8 @@ export type ShopifyMarketsOrderVersionWithShopId =
32399
33477
  io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
32400
33478
  export type ShopifyMarketsOrdersMetrics =
32401
33479
  io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
33480
+ export type ShopifyMarketsOrganizationOrderMetrics =
33481
+ io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics;
32402
33482
  export type ShopifyMarketsQueuedRecord =
32403
33483
  io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
32404
33484
  export type ShopifyMarketsQueuedRecordType =
@@ -32540,6 +33620,11 @@ export type ShopifyTaxonomyAlignmentConfig =
32540
33620
  io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
32541
33621
  export type ShopifyTaxonomyAlignmentConfigForm =
32542
33622
  io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
33623
+ export type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
33624
+ export type ShopifyTestOrderDeleted =
33625
+ io.flow.internal.v0.models.ShopifyTestOrderDeleted;
33626
+ export type ShopifyTestOrderUpserted =
33627
+ io.flow.internal.v0.models.ShopifyTestOrderUpserted;
32543
33628
  export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
32544
33629
  export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
32545
33630
  export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
@@ -32710,6 +33795,7 @@ export type TaxTransactionDeleted =
32710
33795
  export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
32711
33796
  export type TaxTransactionUpserted =
32712
33797
  io.flow.internal.v0.models.TaxTransactionUpserted;
33798
+ export type TaxTypeTotal = io.flow.internal.v0.models.TaxTypeTotal;
32713
33799
  export type TaxonomyAlignmentCheckResult =
32714
33800
  io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
32715
33801
  export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;