@flowio/types 11.24.110 → 11.24.112

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.
@@ -1710,6 +1710,17 @@ declare namespace io.flow.payment.v0.models {
1710
1710
  readonly display: string;
1711
1711
  }
1712
1712
 
1713
+ interface AuthorizationRetry {
1714
+ readonly id: string;
1715
+ readonly authorization_request_id: string;
1716
+ readonly authorization_id: string;
1717
+ readonly organization_id: string;
1718
+ readonly attempt: number;
1719
+ readonly last_failure_code: string;
1720
+ readonly created_at: string;
1721
+ readonly updated_at: string;
1722
+ }
1723
+
1713
1724
  interface AuthorizationVersion {
1714
1725
  readonly id: string;
1715
1726
  readonly timestamp: string;
@@ -1827,6 +1838,7 @@ declare namespace io.flow.payment.v0.models {
1827
1838
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1828
1839
  readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
1829
1840
  readonly authorized_at?: string;
1841
+ readonly authorization_request_id?: string;
1830
1842
  }
1831
1843
 
1832
1844
  interface CardBrowserActionConfiguration {
@@ -2108,6 +2120,7 @@ declare namespace io.flow.payment.v0.models {
2108
2120
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
2109
2121
  readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
2110
2122
  readonly authorized_at?: string;
2123
+ readonly authorization_request_id?: string;
2111
2124
  }
2112
2125
 
2113
2126
  interface OnlinePaymentAuthorizationForm {
@@ -2716,6 +2729,12 @@ declare namespace io.flow.stripe.v0.enums {
2716
2729
  | 'fraudulent'
2717
2730
  | 'requested_by_customer'
2718
2731
  | 'void_invoice';
2732
+ type CapabilityStatus =
2733
+ | 'active'
2734
+ | 'disabled'
2735
+ | 'inactive'
2736
+ | 'pending'
2737
+ | 'unrequested';
2719
2738
  type CaptureMethod = 'automatic' | 'manual';
2720
2739
  type CardBrand =
2721
2740
  | 'American Express'
@@ -2909,6 +2928,7 @@ declare namespace io.flow.stripe.v0.enums {
2909
2928
  | 'rate_limit_error'
2910
2929
  | 'validation_error';
2911
2930
  type EventType =
2931
+ | 'capability.updated'
2912
2932
  | 'charge.captured'
2913
2933
  | 'charge.failed'
2914
2934
  | 'charge.pending'
@@ -3030,12 +3050,58 @@ declare namespace io.flow.stripe.v0.enums {
3030
3050
  | 'unknown';
3031
3051
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
3032
3052
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
3053
+ type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
3054
+ type ReportingReportType =
3055
+ | 'ending_balance_reconciliation.itemized.1'
3056
+ | 'ending_balance_reconciliation.itemized.2'
3057
+ | 'ending_balance_reconciliation.itemized.3'
3058
+ | 'ending_balance_reconciliation.itemized.4'
3059
+ | 'payout_reconciliation.itemized.5'
3060
+ | 'payout_reconciliation.by_id.itemized.1'
3061
+ | 'payout_reconciliation.by_id.itemized.2'
3062
+ | 'payout_reconciliation.by_id.itemized.3'
3063
+ | 'payout_reconciliation.by_id.itemized.4'
3064
+ | 'payout_reconciliation.by_id.summary.1'
3065
+ | 'ending_balance_reconciliation.summary.1'
3066
+ | 'payout_reconciliation.itemized.1'
3067
+ | 'payout_reconciliation.itemized.2'
3068
+ | 'payout_reconciliation.itemized.3'
3069
+ | 'payout_reconciliation.itemized.4'
3070
+ | 'payout_reconciliation.summary.1';
3033
3071
  type RequestThreeDSecureType = 'automatic' | 'any';
3034
3072
  type RequestedCapabilities =
3035
3073
  | 'card_payments'
3036
3074
  | 'legacy_payments'
3037
3075
  | 'transfers';
3038
3076
  type SetupFutureUsage = 'on_session' | 'off_session';
3077
+ type ShopifyPaymentStripeEventType =
3078
+ | 'charge.captured'
3079
+ | 'charge.dispute.created'
3080
+ | 'charge.dispute.closed'
3081
+ | 'charge.dispute.funds_reinstated'
3082
+ | 'charge.dispute.funds_withdrawn'
3083
+ | 'charge.dispute.updated'
3084
+ | 'charge.expired'
3085
+ | 'charge.failed'
3086
+ | 'charge.pending'
3087
+ | 'charge.refund.updated'
3088
+ | 'charge.refunded'
3089
+ | 'charge.succeeded'
3090
+ | 'charge.updated'
3091
+ | 'payment_intent.amount_capturable_updated'
3092
+ | 'payment_intent.canceled'
3093
+ | 'payment_intent.created'
3094
+ | 'payment_intent.partially_funded'
3095
+ | 'payment_intent.payment_failed'
3096
+ | 'payment_intent.processing'
3097
+ | 'payment_intent.requires_action'
3098
+ | 'payment_intent.succeeded'
3099
+ | 'transfer.created'
3100
+ | 'transfer.reversed'
3101
+ | 'transfer.updated'
3102
+ | 'reporting.report_run.succeeded'
3103
+ | 'reporting.report_type.updated'
3104
+ | 'reporting.report_type.failed';
3039
3105
  type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
3040
3106
  type SourceStatus =
3041
3107
  | 'canceled'
@@ -3147,6 +3213,17 @@ declare namespace io.flow.stripe.v0.models {
3147
3213
  readonly type: io.flow.stripe.v0.enums.ApplePayType;
3148
3214
  }
3149
3215
 
3216
+ interface Capability {
3217
+ readonly id: string;
3218
+ readonly account: string;
3219
+ readonly requested: boolean;
3220
+ readonly requirements: any /*object*/;
3221
+ readonly status: io.flow.stripe.v0.enums.CapabilityStatus;
3222
+ readonly object: string;
3223
+ readonly future_requirements: any /*object*/;
3224
+ readonly requested_at?: number;
3225
+ }
3226
+
3150
3227
  interface Card {
3151
3228
  readonly id: string;
3152
3229
  readonly object: string;
@@ -3972,12 +4049,76 @@ declare namespace io.flow.stripe.v0.models {
3972
4049
  readonly url: string;
3973
4050
  }
3974
4051
 
4052
+ interface ReportRunParameters {
4053
+ readonly interval_start: number;
4054
+ readonly interval_end: number;
4055
+ readonly columns?: string[];
4056
+ readonly payout?: string;
4057
+ readonly connected_account?: string;
4058
+ readonly reporting_category?: string;
4059
+ }
4060
+
4061
+ interface ReportingReportRun {
4062
+ readonly id: string;
4063
+ readonly object: string;
4064
+ readonly created: number;
4065
+ readonly error?: string;
4066
+ readonly livemode: boolean;
4067
+ readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
4068
+ readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
4069
+ readonly succeeded_at?: number;
4070
+ }
4071
+
4072
+ interface ReportingReportRunForm {
4073
+ readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
4074
+ readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
4075
+ }
4076
+
4077
+ interface ReportingReportRunResult {
4078
+ readonly id: string;
4079
+ readonly object: string;
4080
+ readonly created: number;
4081
+ readonly expires_at: number;
4082
+ readonly filename: string;
4083
+ readonly links: any /*object*/;
4084
+ readonly purpose: string;
4085
+ readonly size: number;
4086
+ readonly title: string;
4087
+ readonly type: string;
4088
+ readonly url: string;
4089
+ }
4090
+
4091
+ interface ReportingReportRuns {
4092
+ readonly object: string;
4093
+ readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
4094
+ readonly has_more: boolean;
4095
+ readonly url?: string;
4096
+ }
4097
+
3975
4098
  interface Shipping {
3976
4099
  readonly address: io.flow.stripe.v0.models.Address;
3977
4100
  readonly name?: string;
3978
4101
  readonly phone?: string;
3979
4102
  }
3980
4103
 
4104
+ interface ShopifyPaymentStripeEvent {
4105
+ readonly id: string;
4106
+ readonly api_version?: string;
4107
+ readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
4108
+ readonly request?: any /*object*/;
4109
+ readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
4110
+ readonly object: string;
4111
+ readonly account?: string;
4112
+ readonly created: number;
4113
+ readonly livemode: boolean;
4114
+ readonly pending_webhooks: number;
4115
+ }
4116
+
4117
+ interface ShopifyPaymentStripeEventData {
4118
+ readonly object?: any /*object*/;
4119
+ readonly previous_attributes?: any /*object*/;
4120
+ }
4121
+
3981
4122
  interface Source {
3982
4123
  readonly id: string;
3983
4124
  readonly object: string;
@@ -4346,6 +4487,8 @@ declare namespace io.flow.customer.v0.models {
4346
4487
  declare namespace io.flow.label.v0.enums {
4347
4488
  type CostEstimateSource = 'flow' | 'channel';
4348
4489
  type Direction = 'outbound' | 'return';
4490
+ type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
4491
+ type EstimateType = 'Estimated' | 'Final';
4349
4492
  type LabelRequestMethod =
4350
4493
  | 'flow_web_sync'
4351
4494
  | 'channel_web_async'
@@ -4450,6 +4593,15 @@ declare namespace io.flow.label.v0.models {
4450
4593
  readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
4451
4594
  }
4452
4595
 
4596
+ interface Estimate {
4597
+ readonly id: string;
4598
+ readonly organization_id: string;
4599
+ readonly label_id: string;
4600
+ readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
4601
+ readonly type: io.flow.label.v0.enums.EstimateType;
4602
+ readonly origin?: io.flow.label.v0.enums.EstimateOrigin;
4603
+ }
4604
+
4453
4605
  interface LabelOrderSummary {
4454
4606
  readonly id: string;
4455
4607
  readonly number: string;
@@ -5407,7 +5559,7 @@ declare namespace io.flow.external.paypal.v1.models {
5407
5559
  readonly transaction_updated_date: string;
5408
5560
  readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
5409
5561
  readonly transaction_subject?: string;
5410
- readonly invoice_id: string;
5562
+ readonly invoice_id?: string;
5411
5563
  readonly custom_field?: string;
5412
5564
  readonly protection_eligibility?: string;
5413
5565
  readonly instrument_type?: string;
@@ -7014,8 +7166,21 @@ declare namespace io.flow.shopify.external.v0.models {
7014
7166
  }
7015
7167
 
7016
7168
  interface GraphqlMetafield {
7169
+ readonly id: string;
7017
7170
  readonly key: string;
7018
7171
  readonly value: string;
7172
+ readonly type?: string;
7173
+ }
7174
+
7175
+ interface GraphqlMetaobject {
7176
+ readonly id: string;
7177
+ readonly displayName: string;
7178
+ readonly fields: io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
7179
+ }
7180
+
7181
+ interface GraphqlMetaobjectField {
7182
+ readonly key: string;
7183
+ readonly value?: string;
7019
7184
  }
7020
7185
 
7021
7186
  interface GraphqlOption {
@@ -7191,6 +7356,7 @@ declare namespace io.flow.shopify.external.v0.models {
7191
7356
  readonly updated_at: string;
7192
7357
  readonly has_variants_that_requires_components?: boolean;
7193
7358
  readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
7359
+ readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
7194
7360
  }
7195
7361
 
7196
7362
  interface ProductDelete {
@@ -7208,6 +7374,17 @@ declare namespace io.flow.shopify.external.v0.models {
7208
7374
  readonly alt?: string;
7209
7375
  }
7210
7376
 
7377
+ interface ProductMetafield {
7378
+ readonly id: number;
7379
+ readonly namespace: string;
7380
+ readonly key: string;
7381
+ readonly value: string;
7382
+ readonly created_at: string;
7383
+ readonly updated_at: string;
7384
+ readonly type: string;
7385
+ readonly admin_graphql_api_id: string;
7386
+ }
7387
+
7211
7388
  interface ProductVariant {
7212
7389
  readonly id: number;
7213
7390
  readonly sku?: string;
@@ -10090,6 +10267,7 @@ declare namespace io.flow.experience.v0.enums {
10090
10267
  | 'item_out_of_stock'
10091
10268
  | 'gift_card_not_accepted'
10092
10269
  | 'total_changed';
10270
+ type OrderPaymentSourceType = 'globale' | 'third_party';
10093
10271
  type OrderPaymentType =
10094
10272
  | 'card'
10095
10273
  | 'online'
@@ -10722,6 +10900,7 @@ declare namespace io.flow.experience.v0.models {
10722
10900
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
10723
10901
  readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
10724
10902
  readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
10903
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10725
10904
  }
10726
10905
 
10727
10906
  interface OrderAddress {
@@ -10811,6 +10990,7 @@ declare namespace io.flow.experience.v0.models {
10811
10990
  readonly authorization_keys?: string[];
10812
10991
  readonly options?: io.flow.experience.v0.models.OrderOptions;
10813
10992
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
10993
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10814
10994
  }
10815
10995
 
10816
10996
  interface OrderGeo {
@@ -10922,6 +11102,7 @@ declare namespace io.flow.experience.v0.models {
10922
11102
  readonly authorization_keys?: string[];
10923
11103
  readonly options?: io.flow.experience.v0.models.OrderOptions;
10924
11104
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
11105
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10925
11106
  }
10926
11107
 
10927
11108
  interface OrderReference {
@@ -12552,7 +12733,9 @@ declare namespace io.flow.tracking.v0.enums {
12552
12733
  | 'delivered'
12553
12734
  | 'exception'
12554
12735
  | 'returned'
12555
- | 'expired';
12736
+ | 'expired'
12737
+ | 'unknown'
12738
+ | 'unmapped';
12556
12739
  }
12557
12740
 
12558
12741
  declare namespace io.flow.tracking.v0.models {
@@ -13654,7 +13837,7 @@ declare namespace io.flow.billing.v0.enums {
13654
13837
  | 'virtual_card_refund'
13655
13838
  | 'failed_payout'
13656
13839
  | 'tax_refund'
13657
- | 'order_fx'
13840
+ | 'non_l4l_tax_duty_fx'
13658
13841
  | 'ge_revenue_share'
13659
13842
  | 'tax_duty_delta';
13660
13843
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
@@ -15374,55 +15557,6 @@ declare namespace io.flow.merchant.of.record.v0.enums {
15374
15557
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
15375
15558
  }
15376
15559
 
15377
- declare namespace io.flow.checkout.v0.models {
15378
- interface CheckoutToken {
15379
- readonly id: string;
15380
- readonly organization: io.flow.common.v0.models.OrganizationReference;
15381
- readonly checkout: io.flow.common.v0.models.CheckoutReference;
15382
- readonly order: io.flow.experience.v0.models.OrderNumberReference;
15383
- readonly urls: io.flow.checkout.v0.models.CheckoutUrls;
15384
- readonly expires_at: string;
15385
- readonly session: io.flow.common.v0.models.SessionReference;
15386
- readonly customer?: io.flow.common.v0.models.CustomerReference;
15387
- }
15388
-
15389
- interface CheckoutTokenOrderForm {
15390
- readonly discriminator: 'checkout_token_order_form';
15391
- readonly order_form: io.flow.experience.v0.models.OrderForm;
15392
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
15393
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
15394
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
15395
- readonly session_id: string;
15396
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
15397
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
15398
- }
15399
-
15400
- interface CheckoutTokenReferenceForm {
15401
- readonly discriminator: 'checkout_token_reference_form';
15402
- readonly order_number: string;
15403
- readonly session_id: string;
15404
- readonly urls: io.flow.checkout.v0.models.CheckoutUrlsForm;
15405
- }
15406
-
15407
- interface CheckoutUrls {
15408
- readonly continue_shopping?: string;
15409
- readonly confirmation?: string;
15410
- readonly invalid_checkout?: string;
15411
- }
15412
-
15413
- interface CheckoutUrlsForm {
15414
- readonly continue_shopping?: string;
15415
- readonly confirmation?: string;
15416
- readonly invalid_checkout?: string;
15417
- }
15418
- }
15419
-
15420
- declare namespace io.flow.checkout.v0.unions {
15421
- type CheckoutTokenForm =
15422
- | io.flow.checkout.v0.models.CheckoutTokenOrderForm
15423
- | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
15424
- }
15425
-
15426
15560
  declare namespace io.flow.organization.onboarding.state.v0.enums {
15427
15561
  type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
15428
15562
  type MerchantRejectedReason =
@@ -15570,21 +15704,22 @@ declare namespace io.flow.fraud.v0.unions {
15570
15704
 
15571
15705
  declare namespace io.flow.sellability.v0.enums {
15572
15706
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
15707
+ type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
15573
15708
  }
15574
15709
 
15575
15710
  declare namespace io.flow.sellability.v0.models {
15576
15711
  interface ProductSellability {
15577
- readonly organization_id: string;
15712
+ readonly shop_id: string;
15578
15713
  readonly product_id?: string;
15579
- readonly product_correlation_id: string;
15714
+ readonly request_id: string;
15715
+ readonly hs6_code: string;
15580
15716
  readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
15581
- readonly in_review_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
15582
15717
  }
15583
15718
 
15584
15719
  interface ProductSellabilityForm {
15585
- readonly organization_id: string;
15720
+ readonly shop_id: string;
15586
15721
  readonly product_id?: string;
15587
- readonly product_correlation_id: string;
15722
+ readonly request_id: string;
15588
15723
  readonly name: string;
15589
15724
  readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
15590
15725
  readonly description: string;
@@ -15596,6 +15731,11 @@ declare namespace io.flow.sellability.v0.models {
15596
15731
  readonly amount: number;
15597
15732
  }
15598
15733
 
15734
+ interface SellabilityError {
15735
+ readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
15736
+ readonly messages: string[];
15737
+ }
15738
+
15599
15739
  interface SellablilityRegionResult {
15600
15740
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
15601
15741
  readonly regions: string[];
@@ -16162,12 +16302,11 @@ declare namespace io.flow.internal.v0.enums {
16162
16302
  | 'duty'
16163
16303
  | 'trueup'
16164
16304
  | 'carrier_charge'
16165
- | 'order_fx'
16305
+ | 'non_l4l_tax_duty_fx'
16166
16306
  | 'tax_refund'
16167
16307
  | 'duty_refund'
16168
16308
  | 'ge_revenue_share'
16169
16309
  | 'tax_duty_delta';
16170
- type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
16171
16310
  type CalculatorEngine =
16172
16311
  | 'dtce_with_deminimis'
16173
16312
  | 'dtce_with_inclusive_pricing'
@@ -16312,7 +16451,7 @@ declare namespace io.flow.internal.v0.enums {
16312
16451
  | 'general'
16313
16452
  | 'product'
16314
16453
  | 'returns';
16315
- type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
16454
+ type DisputeStatus = 'pending' | 'won' | 'lost' | 'refunded' | 'expired';
16316
16455
  type DisputeTransactionType = 'adjustment' | 'dispute';
16317
16456
  type DisputeType = 'chargeback';
16318
16457
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
@@ -16343,8 +16482,8 @@ declare namespace io.flow.internal.v0.enums {
16343
16482
  type EventType =
16344
16483
  | 'adjusted_estimates_upserted'
16345
16484
  | 'adjusted_estimates_deleted'
16346
- | 'final_estimate_upserted'
16347
- | 'final_estimate_deleted'
16485
+ | 'shipping_estimate_upserted'
16486
+ | 'shipping_estimate_deleted'
16348
16487
  | 'adyen_authorization_deleted'
16349
16488
  | 'adyen_authorization_upserted'
16350
16489
  | 'adyen_cancel_deleted'
@@ -16512,7 +16651,6 @@ declare namespace io.flow.internal.v0.enums {
16512
16651
  | 'center_defaults_deleted'
16513
16652
  | 'fulfillment_fallbacks_upserted'
16514
16653
  | 'fulfillment_fallbacks_deleted'
16515
- | 'pregenerated_request_event'
16516
16654
  | 'quote_upserted'
16517
16655
  | 'quote_deleted'
16518
16656
  | 'all_items_export'
@@ -16521,7 +16659,6 @@ declare namespace io.flow.internal.v0.enums {
16521
16659
  | 'dutied_items_export'
16522
16660
  | 'harmonization_phrase_suggestion_request_import'
16523
16661
  | 'harmonization_codes_import'
16524
- | 'item_classification_created'
16525
16662
  | 'harmonize_fully_request_v2'
16526
16663
  | 'import_completed'
16527
16664
  | 'import_failed'
@@ -16535,8 +16672,6 @@ declare namespace io.flow.internal.v0.enums {
16535
16672
  | 'rate_freshness_summary_deleted'
16536
16673
  | 'item_harmonization_upserted'
16537
16674
  | 'item_harmonization_deleted'
16538
- | 'harmonization_item_classification_upserted'
16539
- | 'harmonization_item_classification_deleted'
16540
16675
  | 'harmonization_classification_statistics_published'
16541
16676
  | 'issuer_upserted'
16542
16677
  | 'issuer_deleted'
@@ -16549,20 +16684,9 @@ declare namespace io.flow.internal.v0.enums {
16549
16684
  | 'order_validation_deleted'
16550
16685
  | 'label_tracking_summary_upserted'
16551
16686
  | 'label_tracking_summary_deleted'
16552
- | 'localized_item_upserted_v2'
16553
- | 'localized_item_deleted'
16554
- | 'localized_item_deleted_v2'
16555
- | 'localized_item_snapshot'
16556
- | 'localized_price_book_item_upserted'
16557
- | 'localized_price_book_item_deleted'
16558
16687
  | 'logistics_capabilities_upserted'
16559
16688
  | 'logistics_capabilities_deleted'
16560
- | 'feed_upserted'
16561
- | 'feed_deleted'
16562
- | 'feeds_export'
16563
16689
  | 'localized_item_prices_export_request'
16564
- | 'optin_prompt_upserted'
16565
- | 'optin_prompt_deleted'
16566
16690
  | 'order_combined_shipment_upserted'
16567
16691
  | 'order_combined_shipment_deleted'
16568
16692
  | 'order_fulfillment_deleted'
@@ -16628,8 +16752,6 @@ declare namespace io.flow.internal.v0.enums {
16628
16752
  | 'ratecard_standard_configuration_deleted'
16629
16753
  | 'ratecard_service_fee_upserted'
16630
16754
  | 'ratecard_service_fee_deleted'
16631
- | 'ratecard_lane_aggregate_upserted'
16632
- | 'ratecard_lane_aggregate_deleted'
16633
16755
  | 'ratecard_rate_level_upserted'
16634
16756
  | 'ratecard_rate_level_deleted'
16635
16757
  | 'ratecard_rate_level_ratecard_upserted'
@@ -16788,6 +16910,7 @@ declare namespace io.flow.internal.v0.enums {
16788
16910
  type LabelBillingStrategy = 'quote' | 'carrier';
16789
16911
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
16790
16912
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
16913
+ type LabelEventMedium = 'webhook' | 'pull' | 'post';
16791
16914
  type LabelEventSource = 'aftership' | 'carrier' | 'flow';
16792
16915
  type LabelRequestErrorHandlingResponsibility =
16793
16916
  | 'merchant'
@@ -16796,7 +16919,8 @@ declare namespace io.flow.internal.v0.enums {
16796
16919
  | 'globale_cx'
16797
16920
  | 'globale_address_repair'
16798
16921
  | 'merchant_operations'
16799
- | 'globale_system';
16922
+ | 'globale_system'
16923
+ | 'carrier';
16800
16924
  type LabelRequestResultOrganizationType =
16801
16925
  | 'all'
16802
16926
  | 'legacy_production'
@@ -16831,58 +16955,6 @@ declare namespace io.flow.internal.v0.enums {
16831
16955
  | 'negative_balance_guarantee'
16832
16956
  | 'bank_payment_failure'
16833
16957
  | 'non_fraud_chargeback';
16834
- type MarketingGatewayAccountConnectionStatus =
16835
- | 'not_connected'
16836
- | 'connecting'
16837
- | 'connected'
16838
- | 'disconnecting'
16839
- | 'disconnected';
16840
- type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
16841
- type MarketingGatewayChannelStatus =
16842
- | 'not_connected'
16843
- | 'connecting'
16844
- | 'connected'
16845
- | 'disconnecting'
16846
- | 'disconnected'
16847
- | 'unavailable';
16848
- type MarketingGatewayErrorCode =
16849
- | 'generic_error'
16850
- | 'google_api_error'
16851
- | 'facebook_api_error'
16852
- | 'invalid_oauth_token_error';
16853
- type MarketingGatewayFacebookTokenStatus = 'unknown' | 'active' | 'expired';
16854
- type MarketingGatewayFeedDownloadFormat = 'tsv' | 'csv' | 'txt';
16855
- type MarketingGatewayFeedState =
16856
- | 'initialized'
16857
- | 'generated'
16858
- | 'in_review'
16859
- | 'rejected'
16860
- | 'active';
16861
- type MarketingGatewayPlatform =
16862
- | 'google'
16863
- | 'facebook'
16864
- | 'adroll'
16865
- | 'aliexpress'
16866
- | 'amazon'
16867
- | 'bing'
16868
- | 'criteo'
16869
- | 'fruugo'
16870
- | 'pinterest'
16871
- | 'rakuten_japan'
16872
- | 'wish'
16873
- | 'snapchat'
16874
- | 'stylight';
16875
- type MarketingGatewayProductStatus =
16876
- | 'approved'
16877
- | 'not_approved'
16878
- | 'pending'
16879
- | 'not_found'
16880
- | 'excluded';
16881
- type MarketingGatewaySchemaCompatibility =
16882
- | 'google'
16883
- | 'facebook_primary'
16884
- | 'facebook_country_override'
16885
- | 'supplemental';
16886
16958
  type MixedBagWeight = '0' | '1' | '2';
16887
16959
  type NatureOfSale =
16888
16960
  | 'consumer'
@@ -16986,6 +17058,7 @@ declare namespace io.flow.internal.v0.enums {
16986
17058
  | 'unscreened';
16987
17059
  type OutputStyle = 'flow' | 'shopify_p1';
16988
17060
  type Owner = 'flow' | 'organization';
17061
+ type PaymentShortUrlDiscriminator = 'adyen_3ds2';
16989
17062
  type PaymentSummaryStatus =
16990
17063
  | 'authorized'
16991
17064
  | 'canceled'
@@ -17028,11 +17101,6 @@ declare namespace io.flow.internal.v0.enums {
17028
17101
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
17029
17102
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
17030
17103
  type PromptTarget = 'browse' | 'checkout';
17031
- type QuoteRequestType =
17032
- | 'generate'
17033
- | 'delete'
17034
- | 'update_currency_rate'
17035
- | 'update_country';
17036
17104
  type RateLevelKey =
17037
17105
  | 'shopify_small_usa'
17038
17106
  | 'shopify_medium_usa'
@@ -17149,6 +17217,7 @@ declare namespace io.flow.internal.v0.enums {
17149
17217
  | 'tracking_number'
17150
17218
  | 'carrier_service'
17151
17219
  | 'tracking_url';
17220
+ type ShopifyPlanType = 'standard' | 'shopify_plus';
17152
17221
  type ShopifyPromotionBehavior = 'disable_discount_codes';
17153
17222
  type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
17154
17223
  type ShopifyPromotionOrderEntitlementComponent =
@@ -18503,52 +18572,6 @@ declare namespace io.flow.internal.v0.models {
18503
18572
  readonly status: string;
18504
18573
  }
18505
18574
 
18506
- interface BrowserBundle {
18507
- readonly country_picker: io.flow.internal.v0.models.CountryPickerData;
18508
- readonly optins: io.flow.internal.v0.models.OptinPrompt[];
18509
- readonly features: io.flow.internal.v0.models.FeatureValueResult;
18510
- readonly payment_methods?: io.flow.internal.v0.models.BrowserBundlePaymentMethods;
18511
- }
18512
-
18513
- interface BrowserBundleCountryPickerForm {
18514
- readonly country?: string;
18515
- readonly ip?: string;
18516
- }
18517
-
18518
- interface BrowserBundleError {
18519
- readonly code: io.flow.internal.v0.enums.BrowserBundleErrorCode;
18520
- readonly messages: string[];
18521
- }
18522
-
18523
- interface BrowserBundleFeatureForm {
18524
- readonly keys: string[];
18525
- readonly context: io.flow.internal.v0.models.FeatureContextForm;
18526
- }
18527
-
18528
- interface BrowserBundleForm {
18529
- readonly optin?: io.flow.internal.v0.models.BrowserBundleOptinForm;
18530
- readonly country_picker?: io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
18531
- readonly feature?: io.flow.internal.v0.models.BrowserBundleFeatureForm;
18532
- readonly payment_method?: io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
18533
- }
18534
-
18535
- interface BrowserBundleOptinForm {
18536
- readonly country: string;
18537
- }
18538
-
18539
- interface BrowserBundlePaymentMethod {
18540
- readonly id: string;
18541
- }
18542
-
18543
- interface BrowserBundlePaymentMethodForm {
18544
- readonly experience_key: string;
18545
- readonly country: string;
18546
- }
18547
-
18548
- interface BrowserBundlePaymentMethods {
18549
- readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
18550
- }
18551
-
18552
18575
  interface BulkClassificationAction {
18553
18576
  readonly discriminator: 'bulk';
18554
18577
  readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
@@ -19412,29 +19435,6 @@ declare namespace io.flow.internal.v0.models {
19412
19435
  readonly prompt: io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
19413
19436
  }
19414
19437
 
19415
- interface CheckoutBundle {
19416
- readonly cart?: io.flow.shopify.v0.models.ShopifyCart;
19417
- readonly order: io.flow.experience.v0.models.Order;
19418
- readonly order_errors?: io.flow.experience.v0.models.OrderError[];
19419
- readonly checkout?: io.flow.internal.v0.models.CheckoutContentSummary;
19420
- readonly optins: io.flow.internal.v0.models.OptinPrompt[];
19421
- readonly destinations: io.flow.reference.v0.models.Country[];
19422
- readonly features: io.flow.internal.v0.models.FeatureValueResult;
19423
- readonly provinces: io.flow.reference.v0.models.Province[];
19424
- readonly checkout_items: io.flow.experience.v0.models.CheckoutItemContent[];
19425
- readonly metadata?: io.flow.internal.v0.models.CheckoutBundleMetadata;
19426
- readonly configuration?: io.flow.internal.v0.models.CheckoutConfiguration;
19427
- readonly address_configurations?: io.flow.experience.v0.models.AddressConfiguration[];
19428
- readonly customer?: io.flow.customer.v0.models.Customer;
19429
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBook;
19430
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSource[];
19431
- readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
19432
- }
19433
-
19434
- interface CheckoutBundleMetadata {
19435
- readonly organization: io.flow.common.v0.models.OrganizationSummary;
19436
- }
19437
-
19438
19438
  interface CheckoutConfiguration {
19439
19439
  readonly id: string;
19440
19440
  readonly behavior: io.flow.internal.v0.models.CheckoutBehavior;
@@ -19498,41 +19498,10 @@ declare namespace io.flow.internal.v0.models {
19498
19498
  readonly redirect?: io.flow.internal.v0.models.CheckoutRedirect;
19499
19499
  }
19500
19500
 
19501
- interface CheckoutFinalizeOrderForm {
19502
- readonly expected_order_summary: io.flow.internal.v0.models.ExpectedOrderSummary;
19503
- readonly order_put_form: io.flow.experience.v0.models.OrderPutForm;
19504
- }
19505
-
19506
19501
  interface CheckoutMarketingContent {
19507
19502
  readonly optins: io.flow.internal.v0.models.Checkbox[];
19508
19503
  }
19509
19504
 
19510
- interface CheckoutOrderForm {
19511
- readonly discriminator: 'order';
19512
- readonly organization: string;
19513
- readonly order: io.flow.experience.v0.models.OrderForm;
19514
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
19515
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
19516
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
19517
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19518
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19519
- readonly feature_keys?: string[];
19520
- readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
19521
- }
19522
-
19523
- interface CheckoutOrderNumberForm {
19524
- readonly discriminator: 'order_number';
19525
- readonly organization: string;
19526
- readonly order_number: string;
19527
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
19528
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
19529
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
19530
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19531
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19532
- readonly feature_keys?: string[];
19533
- readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
19534
- }
19535
-
19536
19505
  interface CheckoutPayment {
19537
19506
  readonly authorizations: io.flow.payment.v0.unions.Authorization[];
19538
19507
  readonly sources: io.flow.payment.v0.unions.PaymentSource[];
@@ -19557,15 +19526,6 @@ declare namespace io.flow.internal.v0.models {
19557
19526
  readonly body?: string;
19558
19527
  }
19559
19528
 
19560
- interface CheckoutReferenceForm {
19561
- readonly order_number: string;
19562
- readonly order_form: io.flow.experience.v0.models.OrderPutForm;
19563
- readonly order_geo: io.flow.experience.v0.models.OrderGeo;
19564
- readonly session_id: string;
19565
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19566
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19567
- }
19568
-
19569
19529
  interface CheckoutSettings {
19570
19530
  readonly session_persistence_timeout?: io.flow.common.v0.models.Duration;
19571
19531
  readonly session_persistence_attribute_keys?: string[];
@@ -19574,35 +19534,6 @@ declare namespace io.flow.internal.v0.models {
19574
19534
  readonly assets?: io.flow.internal.v0.models.CheckoutAsset[];
19575
19535
  }
19576
19536
 
19577
- interface CheckoutSourceOrderForm {
19578
- readonly source_order_number: string;
19579
- readonly feature_q?: string;
19580
- }
19581
-
19582
- interface CheckoutSubmission {
19583
- readonly builder: io.flow.experience.v0.models.OrderBuilder;
19584
- readonly action?: io.flow.payment.v0.unions.AuthorizationResultAction;
19585
- }
19586
-
19587
- interface CheckoutSubmissionForm {
19588
- readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
19589
- readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
19590
- readonly feature_keys?: string[];
19591
- }
19592
-
19593
- interface CheckoutSubmitOrderBundle {
19594
- readonly discriminator: 'checkout_submit_order_bundle';
19595
- readonly order?: io.flow.experience.v0.models.Order;
19596
- readonly redirect?: io.flow.payment.v0.unions.AuthorizationResultAction;
19597
- readonly errors?: io.flow.experience.v0.models.OrderError[];
19598
- }
19599
-
19600
- interface CheckoutSubmitOrderForm {
19601
- readonly discriminator: 'checkout_submit_order_form';
19602
- readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
19603
- readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
19604
- }
19605
-
19606
19537
  interface CheckoutUrl {
19607
19538
  readonly url: string;
19608
19539
  readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
@@ -20992,10 +20923,6 @@ declare namespace io.flow.internal.v0.models {
20992
20923
  readonly exclusion_rule: io.flow.catalog.exclusion.v0.models.ExclusionRule;
20993
20924
  }
20994
20925
 
20995
- interface ExpectedOrderSummary {
20996
- readonly total?: io.flow.common.v0.models.Money;
20997
- }
20998
-
20999
20926
  interface ExperienceExportRequest {
21000
20927
  readonly discriminator: 'experience_export_request';
21001
20928
  readonly event_id: string;
@@ -21097,6 +21024,8 @@ declare namespace io.flow.internal.v0.models {
21097
21024
  readonly raw_carrier_event_code?: string;
21098
21025
  readonly aggregator_status_code?: string;
21099
21026
  readonly created_at?: string;
21027
+ readonly source?: io.flow.internal.v0.enums.LabelEventSource;
21028
+ readonly medium?: io.flow.internal.v0.enums.LabelEventMedium;
21100
21029
  }
21101
21030
 
21102
21031
  interface ExternalFulfillmentProof {
@@ -21250,31 +21179,6 @@ declare namespace io.flow.internal.v0.models {
21250
21179
  readonly description?: string;
21251
21180
  }
21252
21181
 
21253
- interface FeedDeleted {
21254
- readonly discriminator: 'feed_deleted';
21255
- readonly event_id: string;
21256
- readonly timestamp: string;
21257
- readonly organization_id: string;
21258
- readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
21259
- }
21260
-
21261
- interface FeedUpserted {
21262
- readonly discriminator: 'feed_upserted';
21263
- readonly event_id: string;
21264
- readonly timestamp: string;
21265
- readonly organization_id: string;
21266
- readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
21267
- }
21268
-
21269
- interface FeedsExport {
21270
- readonly discriminator: 'feeds_export';
21271
- readonly event_id: string;
21272
- readonly timestamp: string;
21273
- readonly organization: string;
21274
- readonly export_id: string;
21275
- readonly feed_ids: string[];
21276
- }
21277
-
21278
21182
  interface Fees {
21279
21183
  readonly processing?: io.flow.internal.v0.models.Fee;
21280
21184
  readonly rate_lock: io.flow.internal.v0.models.Fee;
@@ -21285,29 +21189,6 @@ declare namespace io.flow.internal.v0.models {
21285
21189
  readonly negative_balance?: io.flow.internal.v0.models.Fee;
21286
21190
  }
21287
21191
 
21288
- interface FinalEstimate {
21289
- readonly id: string;
21290
- readonly organization_id: string;
21291
- readonly label_id: string;
21292
- readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
21293
- }
21294
-
21295
- interface FinalEstimateDeleted {
21296
- readonly discriminator: 'final_estimate_deleted';
21297
- readonly event_id: string;
21298
- readonly timestamp: string;
21299
- readonly organization: string;
21300
- readonly id: string;
21301
- }
21302
-
21303
- interface FinalEstimateUpserted {
21304
- readonly discriminator: 'final_estimate_upserted';
21305
- readonly event_id: string;
21306
- readonly timestamp: string;
21307
- readonly organization: string;
21308
- readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
21309
- }
21310
-
21311
21192
  interface FinanceBankAccount {
21312
21193
  readonly id: string;
21313
21194
  readonly accounts: io.flow.internal.v0.models.AccountSummary[];
@@ -21900,11 +21781,6 @@ declare namespace io.flow.internal.v0.models {
21900
21781
  readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
21901
21782
  }
21902
21783
 
21903
- interface FulfillmentInternalExperienceReference {
21904
- readonly id: string;
21905
- readonly key: string;
21906
- }
21907
-
21908
21784
  interface FulfillmentOrigin {
21909
21785
  readonly country: string;
21910
21786
  readonly province_code?: string;
@@ -22191,20 +22067,6 @@ declare namespace io.flow.internal.v0.models {
22191
22067
  readonly hs6_description?: string;
22192
22068
  }
22193
22069
 
22194
- interface HarmonizationItemClassificationDeleted {
22195
- readonly discriminator: 'harmonization_item_classification_deleted';
22196
- readonly event_id: string;
22197
- readonly timestamp: string;
22198
- readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
22199
- }
22200
-
22201
- interface HarmonizationItemClassificationUpserted {
22202
- readonly discriminator: 'harmonization_item_classification_upserted';
22203
- readonly event_id: string;
22204
- readonly timestamp: string;
22205
- readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
22206
- }
22207
-
22208
22070
  interface HarmonizationItemSummary {
22209
22071
  readonly number: string;
22210
22072
  readonly product_id?: string;
@@ -22413,10 +22275,6 @@ declare namespace io.flow.internal.v0.models {
22413
22275
  readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
22414
22276
  }
22415
22277
 
22416
- interface InvalidCheckoutData {
22417
- readonly order: io.flow.experience.v0.models.OrderPutForm;
22418
- }
22419
-
22420
22278
  interface Invariant {
22421
22279
  readonly name: string;
22422
22280
  readonly count: number;
@@ -22519,18 +22377,6 @@ declare namespace io.flow.internal.v0.models {
22519
22377
  readonly model_id: string;
22520
22378
  }
22521
22379
 
22522
- interface ItemClassificationCreated {
22523
- readonly discriminator: 'item_classification_created';
22524
- readonly event_id: string;
22525
- readonly timestamp: string;
22526
- readonly organization: string;
22527
- readonly item_number: string;
22528
- readonly model_id: string;
22529
- readonly labels_prediction: io.flow.internal.v0.models.LabelsPrediction;
22530
- readonly action: io.flow.internal.v0.enums.SuggestionAction;
22531
- readonly prediction_score?: number;
22532
- }
22533
-
22534
22380
  interface ItemClassificationForm {
22535
22381
  readonly organization: string;
22536
22382
  readonly uid: string;
@@ -23257,22 +23103,6 @@ declare namespace io.flow.internal.v0.models {
23257
23103
  readonly source_localization_id: string;
23258
23104
  }
23259
23105
 
23260
- interface LocalizedItemDeleted {
23261
- readonly discriminator: 'localized_item_deleted';
23262
- readonly event_id: string;
23263
- readonly timestamp: string;
23264
- readonly organization: string;
23265
- readonly number: string;
23266
- }
23267
-
23268
- interface LocalizedItemDeletedV2 {
23269
- readonly discriminator: 'localized_item_deleted_v2';
23270
- readonly event_id: string;
23271
- readonly timestamp: string;
23272
- readonly organization: string;
23273
- readonly id: string;
23274
- }
23275
-
23276
23106
  interface LocalizedItemPricesExportRequest {
23277
23107
  readonly discriminator: 'localized_item_prices_export_request';
23278
23108
  readonly event_id: string;
@@ -23282,43 +23112,12 @@ declare namespace io.flow.internal.v0.models {
23282
23112
  readonly since?: string;
23283
23113
  }
23284
23114
 
23285
- interface LocalizedItemSnapshot {
23286
- readonly discriminator: 'localized_item_snapshot';
23287
- readonly event_id: string;
23288
- readonly timestamp: string;
23289
- readonly organization: string;
23290
- readonly subcatalog_id: string;
23291
- readonly url: string;
23292
- }
23293
-
23294
- interface LocalizedItemUpsertedV2 {
23295
- readonly discriminator: 'localized_item_upserted_v2';
23296
- readonly event_id: string;
23297
- readonly timestamp: string;
23298
- readonly organization: string;
23299
- readonly id: string;
23300
- readonly item: io.flow.catalog.v0.models.Item;
23301
- readonly item_schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
23302
- }
23303
-
23304
23115
  interface LocalizedItemsExportSettings {
23305
23116
  readonly content_type: io.flow.internal.v0.enums.ExportContentType;
23306
23117
  readonly full_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
23307
23118
  readonly delta_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
23308
23119
  }
23309
23120
 
23310
- interface LocalizedPriceBookItem {
23311
- readonly id: string;
23312
- readonly item_id: string;
23313
- readonly item_number: string;
23314
- readonly attributes: Record<string, string>;
23315
- readonly local?: io.flow.catalog.v0.models.Local;
23316
- readonly price_book_item_id: string;
23317
- readonly price_book_key: string;
23318
- readonly price_book_item_price: io.flow.common.v0.models.Price;
23319
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
23320
- }
23321
-
23322
23121
  interface LocalizedPriceBookItemData {
23323
23122
  readonly organization: io.flow.common.v0.models.OrganizationReference;
23324
23123
  readonly experience: io.flow.common.v0.models.ExperienceSummary;
@@ -23331,22 +23130,6 @@ declare namespace io.flow.internal.v0.models {
23331
23130
  readonly price_end_date?: string;
23332
23131
  }
23333
23132
 
23334
- interface LocalizedPriceBookItemDeleted {
23335
- readonly discriminator: 'localized_price_book_item_deleted';
23336
- readonly event_id: string;
23337
- readonly timestamp: string;
23338
- readonly organization: string;
23339
- readonly id: string;
23340
- }
23341
-
23342
- interface LocalizedPriceBookItemUpserted {
23343
- readonly discriminator: 'localized_price_book_item_upserted';
23344
- readonly event_id: string;
23345
- readonly timestamp: string;
23346
- readonly organization: string;
23347
- readonly item: io.flow.internal.v0.models.LocalizedPriceBookItem;
23348
- }
23349
-
23350
23133
  interface Location {
23351
23134
  readonly type: io.flow.internal.v0.enums.ContentType;
23352
23135
  readonly url: string;
@@ -23539,261 +23322,6 @@ declare namespace io.flow.internal.v0.models {
23539
23322
  readonly shipping: boolean;
23540
23323
  }
23541
23324
 
23542
- interface MarketingGatewayChannel {
23543
- readonly id: string;
23544
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23545
- readonly integration_type: io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
23546
- readonly status: io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
23547
- readonly details?: io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
23548
- readonly error?: io.flow.internal.v0.models.MarketingGatewayError;
23549
- }
23550
-
23551
- interface MarketingGatewayChannelConnectionForm {
23552
- readonly default_feed_source?: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23553
- }
23554
-
23555
- interface MarketingGatewayChannelForm {
23556
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23557
- readonly account_id: number;
23558
- }
23559
-
23560
- interface MarketingGatewayChannelSourceSummary {
23561
- readonly channel: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23562
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23563
- readonly source: io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
23564
- }
23565
-
23566
- interface MarketingGatewayDistributionChannelFacebook {
23567
- readonly discriminator: 'marketing_gateway_distribution_channel_facebook';
23568
- readonly catalog_id: number;
23569
- }
23570
-
23571
- interface MarketingGatewayDistributionChannelGoogle {
23572
- readonly discriminator: 'marketing_gateway_distribution_channel_google';
23573
- readonly account_id: number;
23574
- }
23575
-
23576
- interface MarketingGatewayError {
23577
- readonly code: io.flow.internal.v0.enums.MarketingGatewayErrorCode;
23578
- readonly messages: string[];
23579
- }
23580
-
23581
- interface MarketingGatewayFacebookBusiness {
23582
- readonly business_id: number;
23583
- readonly name: string;
23584
- }
23585
-
23586
- interface MarketingGatewayFacebookBusinessSummary {
23587
- readonly business_id: number;
23588
- readonly name: string;
23589
- }
23590
-
23591
- interface MarketingGatewayFacebookCatalogForm {
23592
- readonly catalog_id: number;
23593
- }
23594
-
23595
- interface MarketingGatewayFacebookCatalogSummary {
23596
- readonly catalog_id: number;
23597
- readonly name: string;
23598
- readonly item_count: number;
23599
- }
23600
-
23601
- interface MarketingGatewayFacebookChannelDetails {
23602
- readonly discriminator: 'marketing_gateway_facebook_channel_details';
23603
- readonly catalog_id: number;
23604
- readonly catalog_name?: string;
23605
- readonly business_name?: string;
23606
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23607
- readonly localized_feed_count?: number;
23608
- readonly connected_at?: string;
23609
- readonly token_summary?: io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
23610
- }
23611
-
23612
- interface MarketingGatewayFacebookConnection {
23613
- readonly organization_id: string;
23614
- readonly businesses: io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary[];
23615
- }
23616
-
23617
- interface MarketingGatewayFacebookConnectionAccessTokenSummary {
23618
- readonly catalog_id?: number;
23619
- readonly created_at?: number;
23620
- readonly expires_at?: number;
23621
- readonly user_id: string;
23622
- readonly user_email?: string;
23623
- readonly token_status: io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
23624
- }
23625
-
23626
- interface MarketingGatewayFacebookConnectionDeauth {
23627
- readonly user_id: number;
23628
- }
23629
-
23630
- interface MarketingGatewayFacebookConnectionForm {
23631
- readonly access_token: string;
23632
- }
23633
-
23634
- interface MarketingGatewayFacebookSourceSummary {
23635
- readonly discriminator: 'marketing_gateway_facebook_source_summary';
23636
- readonly catalog_id: number;
23637
- readonly catalog_name: string;
23638
- readonly business_name: string;
23639
- readonly country: string;
23640
- readonly product_count: number;
23641
- }
23642
-
23643
- interface MarketingGatewayFeed {
23644
- readonly id: string;
23645
- readonly organization: io.flow.common.v0.models.OrganizationSummary;
23646
- readonly experience?: io.flow.common.v0.models.ExperienceSummary;
23647
- readonly schema: io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
23648
- readonly filter: io.flow.internal.v0.models.MarketingGatewayFilterSummary;
23649
- readonly country: string;
23650
- readonly currency: string;
23651
- readonly language: string;
23652
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23653
- readonly feed_state: io.flow.internal.v0.enums.MarketingGatewayFeedState;
23654
- readonly tsv_download_url: string;
23655
- readonly tsv_channel_download_url?: string;
23656
- readonly created_at: string;
23657
- readonly updated_at?: string;
23658
- readonly item_count?: number;
23659
- readonly platform_feed_id?: string;
23660
- }
23661
-
23662
- interface MarketingGatewayFeedExportForm {
23663
- readonly feed_ids: string[];
23664
- readonly emails: string[];
23665
- }
23666
-
23667
- interface MarketingGatewayFeedForm {
23668
- readonly schema_id: string;
23669
- readonly filter_id: string;
23670
- readonly country: string;
23671
- readonly currency: string;
23672
- readonly language: string;
23673
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23674
- readonly distribution_channel?: io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
23675
- }
23676
-
23677
- interface MarketingGatewayFeedFormRequest {
23678
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23679
- readonly channel_id?: string;
23680
- readonly schema_compatibility?: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
23681
- }
23682
-
23683
- interface MarketingGatewayFeedSourceFacebook {
23684
- readonly discriminator: 'marketing_gateway_feed_source_facebook';
23685
- readonly catalog_id: number;
23686
- readonly feed_id: number;
23687
- readonly name: string;
23688
- readonly country: string;
23689
- readonly currency: string;
23690
- readonly language: string;
23691
- readonly item_count?: number;
23692
- readonly last_uploaded_at?: string;
23693
- readonly feed_status?: io.flow.internal.v0.enums.MarketingGatewayFeedState;
23694
- }
23695
-
23696
- interface MarketingGatewayFeedSourceGoogle {
23697
- readonly discriminator: 'marketing_gateway_feed_source_google';
23698
- readonly account_id: number;
23699
- readonly name: string;
23700
- readonly country: string;
23701
- readonly currency: string;
23702
- readonly language: string;
23703
- readonly item_count?: number;
23704
- readonly last_uploaded_at?: string;
23705
- }
23706
-
23707
- interface MarketingGatewayFilterSummary {
23708
- readonly id: string;
23709
- readonly name: string;
23710
- }
23711
-
23712
- interface MarketingGatewayFlowSourceSummary {
23713
- readonly discriminator: 'marketing_gateway_flow_source_summary';
23714
- readonly item_count: number;
23715
- }
23716
-
23717
- interface MarketingGatewayGoogleAccountForm {
23718
- readonly account_id: number;
23719
- }
23720
-
23721
- interface MarketingGatewayGoogleAccountSummary {
23722
- readonly account_id: number;
23723
- readonly id?: string;
23724
- readonly name: string;
23725
- readonly website_url: string;
23726
- readonly domestic_feeds_count: number;
23727
- }
23728
-
23729
- interface MarketingGatewayGoogleChannelDetails {
23730
- readonly discriminator: 'marketing_gateway_google_channel_details';
23731
- readonly account_id: number;
23732
- readonly account_name?: string;
23733
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23734
- readonly localized_feed_count?: number;
23735
- readonly connected_at?: string;
23736
- }
23737
-
23738
- interface MarketingGatewayGoogleConnection {
23739
- readonly status: io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
23740
- readonly accounts?: io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary[];
23741
- }
23742
-
23743
- interface MarketingGatewayGoogleConnectionForm {
23744
- readonly access_token: string;
23745
- readonly refresh_token: string;
23746
- }
23747
-
23748
- interface MarketingGatewayGoogleItem {
23749
- readonly discriminator: 'marketing_gateway_google_item';
23750
- readonly id: string;
23751
- readonly title?: string;
23752
- readonly image_link?: string;
23753
- readonly brand?: string;
23754
- readonly google_product_category?: string;
23755
- readonly link?: string;
23756
- readonly price?: string;
23757
- readonly sale_price?: string;
23758
- readonly shipping_price?: string;
23759
- }
23760
-
23761
- interface MarketingGatewayGoogleSourceSummary {
23762
- readonly discriminator: 'marketing_gateway_google_source_summary';
23763
- readonly account_id: number;
23764
- readonly countries: string[];
23765
- readonly product_count: number;
23766
- }
23767
-
23768
- interface MarketingGatewayLocalizedItem {
23769
- readonly source: io.flow.internal.v0.unions.MarketingGatewayItem;
23770
- readonly localized: io.flow.internal.v0.unions.MarketingGatewayItem;
23771
- }
23772
-
23773
- interface MarketingGatewayNewChannelRequestForm {
23774
- readonly requested_by_user_id: string;
23775
- readonly channel_name: string;
23776
- }
23777
-
23778
- interface MarketingGatewayProductDatasourceSummary {
23779
- readonly name: string;
23780
- readonly country?: string;
23781
- readonly product_count?: number;
23782
- }
23783
-
23784
- interface MarketingGatewaySchemaSummary {
23785
- readonly id: string;
23786
- readonly name: string;
23787
- readonly schema_compatibility: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
23788
- }
23789
-
23790
- interface MarketingGatewaySupportedChannelDetails {
23791
- readonly discriminator: 'marketing_gateway_supported_channel_details';
23792
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23793
- readonly localized_feed_count?: number;
23794
- readonly connected_at?: string;
23795
- }
23796
-
23797
23325
  interface MarketsOrder {
23798
23326
  readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
23799
23327
  readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
@@ -23986,6 +23514,20 @@ declare namespace io.flow.internal.v0.models {
23986
23514
  readonly account: io.flow.internal.v0.models.ReportAccount;
23987
23515
  }
23988
23516
 
23517
+ interface NonL4LTaxDutyFxTransaction {
23518
+ readonly discriminator: 'non_l4l_tax_duty_fx_transaction';
23519
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
23520
+ readonly fx: io.flow.internal.v0.models.Fee;
23521
+ readonly id: string;
23522
+ readonly type: io.flow.internal.v0.enums.BillingTransactionType;
23523
+ readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
23524
+ readonly posted_at?: string;
23525
+ readonly value: io.flow.common.v0.models.Price;
23526
+ readonly description: string;
23527
+ readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
23528
+ readonly created_at: string;
23529
+ }
23530
+
23989
23531
  interface Notification {
23990
23532
  readonly order: io.flow.internal.v0.models.Decision;
23991
23533
  }
@@ -24102,14 +23644,6 @@ declare namespace io.flow.internal.v0.models {
24102
23644
  readonly to: string;
24103
23645
  }
24104
23646
 
24105
- interface OptinPromptDeleted {
24106
- readonly discriminator: 'optin_prompt_deleted';
24107
- readonly event_id: string;
24108
- readonly timestamp: string;
24109
- readonly id: string;
24110
- readonly organization: string;
24111
- }
24112
-
24113
23647
  interface OptinPromptForm {
24114
23648
  readonly optin_attribute_key: string;
24115
23649
  readonly region: string;
@@ -24120,15 +23654,6 @@ declare namespace io.flow.internal.v0.models {
24120
23654
  readonly display?: io.flow.internal.v0.unions.OptinPromptDisplay;
24121
23655
  }
24122
23656
 
24123
- interface OptinPromptUpserted {
24124
- readonly discriminator: 'optin_prompt_upserted';
24125
- readonly event_id: string;
24126
- readonly timestamp: string;
24127
- readonly id: string;
24128
- readonly organization: string;
24129
- readonly optin_prompt: io.flow.internal.v0.models.OptinPrompt;
24130
- }
24131
-
24132
23657
  interface OrderActionability {
24133
23658
  readonly action: io.flow.internal.v0.enums.OrderAction[];
24134
23659
  readonly lines: io.flow.internal.v0.models.LineActionQuantities[];
@@ -24266,20 +23791,6 @@ declare namespace io.flow.internal.v0.models {
24266
23791
  readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
24267
23792
  }
24268
23793
 
24269
- interface OrderFxTransaction {
24270
- readonly discriminator: 'order_fx_transaction';
24271
- readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
24272
- readonly fx: io.flow.internal.v0.models.Fee;
24273
- readonly id: string;
24274
- readonly type: io.flow.internal.v0.enums.BillingTransactionType;
24275
- readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
24276
- readonly posted_at?: string;
24277
- readonly value: io.flow.common.v0.models.Price;
24278
- readonly description: string;
24279
- readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
24280
- readonly created_at: string;
24281
- }
24282
-
24283
23794
  interface OrderNote {
24284
23795
  readonly id: string;
24285
23796
  readonly note: string;
@@ -24292,14 +23803,6 @@ declare namespace io.flow.internal.v0.models {
24292
23803
  readonly note: string;
24293
23804
  }
24294
23805
 
24295
- interface OrderParameters {
24296
- readonly experience?: string;
24297
- readonly country?: string;
24298
- readonly ip?: string;
24299
- readonly currency?: string;
24300
- readonly language?: string;
24301
- }
24302
-
24303
23806
  interface OrderPaymentAuthorization {
24304
23807
  readonly placeholder: string;
24305
23808
  }
@@ -25230,6 +24733,17 @@ declare namespace io.flow.internal.v0.models {
25230
24733
  readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
25231
24734
  }
25232
24735
 
24736
+ interface PaymentShortUrl {
24737
+ readonly id: string;
24738
+ readonly key: string;
24739
+ readonly original_url: string;
24740
+ readonly organization_id: string;
24741
+ readonly discriminator: io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
24742
+ readonly created_at: string;
24743
+ readonly updated_at: string;
24744
+ readonly expires_at: string;
24745
+ }
24746
+
25233
24747
  interface PaymentSummary {
25234
24748
  readonly psp: number;
25235
24749
  readonly credit: number;
@@ -25591,23 +25105,6 @@ declare namespace io.flow.internal.v0.models {
25591
25105
  readonly item: string;
25592
25106
  }
25593
25107
 
25594
- interface PregeneratedQuote {
25595
- readonly id: string;
25596
- readonly experience: io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
25597
- readonly destination_country: string;
25598
- readonly item: io.flow.common.v0.models.ItemReference;
25599
- readonly quote?: io.flow.fulfillment.v0.models.Quote;
25600
- readonly errors?: string[];
25601
- }
25602
-
25603
- interface PregeneratedRequestEvent {
25604
- readonly discriminator: 'pregenerated_request_event';
25605
- readonly event_id: string;
25606
- readonly timestamp: string;
25607
- readonly organization: string;
25608
- readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
25609
- }
25610
-
25611
25108
  interface PrioritizedCenterReference {
25612
25109
  readonly center_key: string;
25613
25110
  readonly position: number;
@@ -25912,16 +25409,6 @@ declare namespace io.flow.internal.v0.models {
25912
25409
  readonly id: string;
25913
25410
  }
25914
25411
 
25915
- interface QuoteRequest {
25916
- readonly id: string;
25917
- readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
25918
- readonly experience_keys?: string[];
25919
- readonly item_numbers?: string[];
25920
- readonly rates?: io.flow.internal.v0.models.CurrencyInternalRate[];
25921
- readonly countries?: io.flow.reference.v0.models.Country[];
25922
- readonly reason?: string;
25923
- }
25924
-
25925
25412
  interface QuoteUpserted {
25926
25413
  readonly discriminator: 'quote_upserted';
25927
25414
  readonly event_id: string;
@@ -26156,40 +25643,6 @@ declare namespace io.flow.internal.v0.models {
26156
25643
  readonly number: string;
26157
25644
  }
26158
25645
 
26159
- interface RatecardLaneAggregate {
26160
- readonly id: string;
26161
- readonly organization_id: string;
26162
- readonly origin: io.flow.common.v0.models.Zone;
26163
- readonly destination: io.flow.common.v0.models.Zone;
26164
- readonly currency: string;
26165
- readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
26166
- readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
26167
- readonly dim_factor: number;
26168
- readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
26169
- readonly rounding: io.flow.common.v0.models.Rounding;
26170
- readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
26171
- readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
26172
- readonly rates_with_fees: io.flow.internal.v0.models.RateWithFees[];
26173
- readonly ratecard: io.flow.ratecard.v0.models.RatecardReference;
26174
- readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
26175
- }
26176
-
26177
- interface RatecardLaneAggregateDeleted {
26178
- readonly discriminator: 'ratecard_lane_aggregate_deleted';
26179
- readonly event_id: string;
26180
- readonly timestamp: string;
26181
- readonly organization: string;
26182
- readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
26183
- }
26184
-
26185
- interface RatecardLaneAggregateUpserted {
26186
- readonly discriminator: 'ratecard_lane_aggregate_upserted';
26187
- readonly event_id: string;
26188
- readonly timestamp: string;
26189
- readonly organization: string;
26190
- readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
26191
- }
26192
-
26193
25646
  interface RatecardLanesImportRequest {
26194
25647
  readonly discriminator: 'ratecard_lanes_import_request';
26195
25648
  readonly event_id: string;
@@ -26877,7 +26330,6 @@ declare namespace io.flow.internal.v0.models {
26877
26330
  readonly negative_keywords: string[];
26878
26331
  readonly value_threshold_usd?: number;
26879
26332
  readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
26880
- readonly effects?: string[];
26881
26333
  }
26882
26334
 
26883
26335
  interface RestrictionRuleDecisionForm {
@@ -26895,6 +26347,7 @@ declare namespace io.flow.internal.v0.models {
26895
26347
 
26896
26348
  interface RestrictionRuleEffect {
26897
26349
  readonly id: string;
26350
+ readonly rule_id: string;
26898
26351
  readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
26899
26352
  readonly regions: string[];
26900
26353
  readonly description?: string;
@@ -26908,6 +26361,7 @@ declare namespace io.flow.internal.v0.models {
26908
26361
  }
26909
26362
 
26910
26363
  interface RestrictionRuleEffectForm {
26364
+ readonly rule_id: string;
26911
26365
  readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
26912
26366
  readonly regions: string[];
26913
26367
  readonly description?: string;
@@ -26929,7 +26383,6 @@ declare namespace io.flow.internal.v0.models {
26929
26383
  readonly negative_keywords: string[];
26930
26384
  readonly value_threshold_usd?: number;
26931
26385
  readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
26932
- readonly effects?: string[];
26933
26386
  }
26934
26387
 
26935
26388
  interface RestrictionRuleMetadata {
@@ -27287,13 +26740,6 @@ declare namespace io.flow.internal.v0.models {
27287
26740
  readonly customer_id: string;
27288
26741
  }
27289
26742
 
27290
- interface ShawnRoundtableWorkshopRate {
27291
- readonly origin_country: string;
27292
- readonly destination_country: string;
27293
- readonly weight: number;
27294
- readonly amount: number;
27295
- }
27296
-
27297
26743
  interface ShippedItemValue {
27298
26744
  readonly item: io.flow.common.v0.models.CatalogItemReference;
27299
26745
  readonly taxes: io.flow.common.v0.models.PriceWithBase;
@@ -27301,6 +26747,22 @@ declare namespace io.flow.internal.v0.models {
27301
26747
  readonly total: io.flow.common.v0.models.PriceWithBase;
27302
26748
  }
27303
26749
 
26750
+ interface ShippingEstimateDeleted {
26751
+ readonly discriminator: 'shipping_estimate_deleted';
26752
+ readonly event_id: string;
26753
+ readonly timestamp: string;
26754
+ readonly organization: string;
26755
+ readonly id: string;
26756
+ }
26757
+
26758
+ interface ShippingEstimateUpserted {
26759
+ readonly discriminator: 'shipping_estimate_upserted';
26760
+ readonly event_id: string;
26761
+ readonly timestamp: string;
26762
+ readonly organization: string;
26763
+ readonly estimate: io.flow.label.v0.models.Estimate;
26764
+ }
26765
+
27304
26766
  interface ShippingLane {
27305
26767
  readonly origin: string;
27306
26768
  readonly destination: string;
@@ -27706,6 +27168,12 @@ declare namespace io.flow.internal.v0.models {
27706
27168
  readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
27707
27169
  }
27708
27170
 
27171
+ interface ShopifyMerchantPlan {
27172
+ readonly id: string;
27173
+ readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
27174
+ readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
27175
+ }
27176
+
27709
27177
  interface ShopifyMetadata {
27710
27178
  readonly domain: string;
27711
27179
  readonly myshopify_domain: string;
@@ -27969,6 +27437,8 @@ declare namespace io.flow.internal.v0.models {
27969
27437
  interface ShopifyProductUpdateWebhookEvent {
27970
27438
  readonly id: string;
27971
27439
  readonly product: io.flow.shopify.external.v0.models.Product;
27440
+ readonly domain: string;
27441
+ readonly api_version: string;
27972
27442
  }
27973
27443
 
27974
27444
  interface ShopifyProductWrapper {
@@ -28746,6 +28216,27 @@ declare namespace io.flow.internal.v0.models {
28746
28216
  readonly category_code?: string;
28747
28217
  }
28748
28218
 
28219
+ interface TaxDutyDeltaMetadataActual {
28220
+ readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
28221
+ }
28222
+
28223
+ interface TaxDutyDeltaMetadataActualProcessing {
28224
+ readonly capture: io.flow.common.v0.models.Money;
28225
+ readonly fees: io.flow.common.v0.models.Money;
28226
+ readonly transfer: io.flow.common.v0.models.Money;
28227
+ readonly total: io.flow.common.v0.models.Money;
28228
+ }
28229
+
28230
+ interface TaxDutyDeltaMetadataExpected {
28231
+ readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
28232
+ }
28233
+
28234
+ interface TaxDutyDeltaMetadataExpectedProcessing {
28235
+ readonly tax: io.flow.common.v0.models.Money;
28236
+ readonly duty: io.flow.common.v0.models.Money;
28237
+ readonly total: io.flow.common.v0.models.Money;
28238
+ }
28239
+
28749
28240
  interface TaxDutyDeltaTransaction {
28750
28241
  readonly discriminator: 'tax_duty_delta_transaction';
28751
28242
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -29505,13 +28996,6 @@ declare namespace io.flow.internal.v0.unions {
29505
28996
  type ChannelRateMetadata =
29506
28997
  | io.flow.internal.v0.models.ChannelRateMetadataIdentity
29507
28998
  | io.flow.internal.v0.models.ChannelRateMetadataRate;
29508
- type CheckoutForm =
29509
- | io.flow.internal.v0.models.CheckoutOrderForm
29510
- | io.flow.internal.v0.models.CheckoutOrderNumberForm;
29511
- type CheckoutSubmitOrderBundles =
29512
- io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
29513
- type CheckoutSubmitOrderForms =
29514
- io.flow.internal.v0.models.CheckoutSubmitOrderForm;
29515
28999
  type ClassificationAction =
29516
29000
  | io.flow.internal.v0.models.SingleClassificationAction
29517
29001
  | io.flow.internal.v0.models.BulkClassificationAction;
@@ -29564,8 +29048,8 @@ declare namespace io.flow.internal.v0.unions {
29564
29048
  type Event =
29565
29049
  | io.flow.internal.v0.models.AdjustedEstimatesUpserted
29566
29050
  | io.flow.internal.v0.models.AdjustedEstimatesDeleted
29567
- | io.flow.internal.v0.models.FinalEstimateUpserted
29568
- | io.flow.internal.v0.models.FinalEstimateDeleted
29051
+ | io.flow.internal.v0.models.ShippingEstimateUpserted
29052
+ | io.flow.internal.v0.models.ShippingEstimateDeleted
29569
29053
  | io.flow.internal.v0.models.AdyenAuthorizationDeleted
29570
29054
  | io.flow.internal.v0.models.AdyenAuthorizationUpserted
29571
29055
  | io.flow.internal.v0.models.AdyenCancelDeleted
@@ -29733,7 +29217,6 @@ declare namespace io.flow.internal.v0.unions {
29733
29217
  | io.flow.internal.v0.models.CenterDefaultsDeleted
29734
29218
  | io.flow.internal.v0.models.FulfillmentFallbacksUpserted
29735
29219
  | io.flow.internal.v0.models.FulfillmentFallbacksDeleted
29736
- | io.flow.internal.v0.models.PregeneratedRequestEvent
29737
29220
  | io.flow.internal.v0.models.QuoteUpserted
29738
29221
  | io.flow.internal.v0.models.QuoteDeleted
29739
29222
  | io.flow.internal.v0.models.AllItemsExport
@@ -29742,7 +29225,6 @@ declare namespace io.flow.internal.v0.unions {
29742
29225
  | io.flow.internal.v0.models.DutiedItemsExport
29743
29226
  | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport
29744
29227
  | io.flow.internal.v0.models.HarmonizationCodesImport
29745
- | io.flow.internal.v0.models.ItemClassificationCreated
29746
29228
  | io.flow.internal.v0.models.HarmonizeFullyRequestV2
29747
29229
  | io.flow.internal.v0.models.ImportCompleted
29748
29230
  | io.flow.internal.v0.models.ImportFailed
@@ -29756,8 +29238,6 @@ declare namespace io.flow.internal.v0.unions {
29756
29238
  | io.flow.internal.v0.models.RateFreshnessSummaryDeleted
29757
29239
  | io.flow.internal.v0.models.ItemHarmonizationUpserted
29758
29240
  | io.flow.internal.v0.models.ItemHarmonizationDeleted
29759
- | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted
29760
- | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted
29761
29241
  | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
29762
29242
  | io.flow.internal.v0.models.IssuerUpserted
29763
29243
  | io.flow.internal.v0.models.IssuerDeleted
@@ -29770,20 +29250,9 @@ declare namespace io.flow.internal.v0.unions {
29770
29250
  | io.flow.internal.v0.models.OrderValidationDeleted
29771
29251
  | io.flow.internal.v0.models.LabelTrackingSummaryUpserted
29772
29252
  | io.flow.internal.v0.models.LabelTrackingSummaryDeleted
29773
- | io.flow.internal.v0.models.LocalizedItemUpsertedV2
29774
- | io.flow.internal.v0.models.LocalizedItemDeleted
29775
- | io.flow.internal.v0.models.LocalizedItemDeletedV2
29776
- | io.flow.internal.v0.models.LocalizedItemSnapshot
29777
- | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted
29778
- | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted
29779
29253
  | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
29780
29254
  | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted
29781
- | io.flow.internal.v0.models.FeedUpserted
29782
- | io.flow.internal.v0.models.FeedDeleted
29783
- | io.flow.internal.v0.models.FeedsExport
29784
29255
  | io.flow.internal.v0.models.LocalizedItemPricesExportRequest
29785
- | io.flow.internal.v0.models.OptinPromptUpserted
29786
- | io.flow.internal.v0.models.OptinPromptDeleted
29787
29256
  | io.flow.internal.v0.models.OrderCombinedShipmentUpserted
29788
29257
  | io.flow.internal.v0.models.OrderCombinedShipmentDeleted
29789
29258
  | io.flow.internal.v0.models.OrderFulfillmentDeleted
@@ -29849,8 +29318,6 @@ declare namespace io.flow.internal.v0.unions {
29849
29318
  | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted
29850
29319
  | io.flow.internal.v0.models.RatecardServiceFeeUpserted
29851
29320
  | io.flow.internal.v0.models.RatecardServiceFeeDeleted
29852
- | io.flow.internal.v0.models.RatecardLaneAggregateUpserted
29853
- | io.flow.internal.v0.models.RatecardLaneAggregateDeleted
29854
29321
  | io.flow.internal.v0.models.RatecardRateLevelUpserted
29855
29322
  | io.flow.internal.v0.models.RatecardRateLevelDeleted
29856
29323
  | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted
@@ -30011,22 +29478,6 @@ declare namespace io.flow.internal.v0.unions {
30011
29478
  type LocalizableContent =
30012
29479
  | io.flow.internal.v0.models.LocalizableContentReference
30013
29480
  | io.flow.internal.v0.models.Localization;
30014
- type MarketingGatewayChannelDetails =
30015
- | io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails
30016
- | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails
30017
- | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
30018
- type MarketingGatewayDistributionChannel =
30019
- | io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle
30020
- | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
30021
- type MarketingGatewayFeedSource =
30022
- | io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle
30023
- | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
30024
- type MarketingGatewayItem =
30025
- io.flow.internal.v0.models.MarketingGatewayGoogleItem;
30026
- type MarketingGatewaySourceSummary =
30027
- | io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
30028
- | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
30029
- | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
30030
29481
  type OptinPromptDisplay =
30031
29482
  io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
30032
29483
  type OrderActionForm =
@@ -30157,7 +29608,7 @@ declare namespace io.flow.internal.v0.unions {
30157
29608
  | io.flow.internal.v0.models.DutyTransaction
30158
29609
  | io.flow.internal.v0.models.TrueupTransaction
30159
29610
  | io.flow.internal.v0.models.CarrierChargeTransaction
30160
- | io.flow.internal.v0.models.OrderFxTransaction
29611
+ | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
30161
29612
  | io.flow.internal.v0.models.GeRevenueShareTransaction
30162
29613
  | io.flow.internal.v0.models.TaxDutyDeltaTransaction;
30163
29614
  type TransactionSummary =
@@ -30497,23 +29948,6 @@ export type BooleanFeatureValue =
30497
29948
  export type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookEvent;
30498
29949
  export type BrickWebhookEventResponse =
30499
29950
  io.flow.internal.v0.models.BrickWebhookEventResponse;
30500
- export type BrowserBundle = io.flow.internal.v0.models.BrowserBundle;
30501
- export type BrowserBundleCountryPickerForm =
30502
- io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
30503
- export type BrowserBundleError = io.flow.internal.v0.models.BrowserBundleError;
30504
- export type BrowserBundleErrorCode =
30505
- io.flow.internal.v0.enums.BrowserBundleErrorCode;
30506
- export type BrowserBundleFeatureForm =
30507
- io.flow.internal.v0.models.BrowserBundleFeatureForm;
30508
- export type BrowserBundleForm = io.flow.internal.v0.models.BrowserBundleForm;
30509
- export type BrowserBundleOptinForm =
30510
- io.flow.internal.v0.models.BrowserBundleOptinForm;
30511
- export type BrowserBundlePaymentMethod =
30512
- io.flow.internal.v0.models.BrowserBundlePaymentMethod;
30513
- export type BrowserBundlePaymentMethodForm =
30514
- io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
30515
- export type BrowserBundlePaymentMethods =
30516
- io.flow.internal.v0.models.BrowserBundlePaymentMethods;
30517
29951
  export type BulkClassificationAction =
30518
29952
  io.flow.internal.v0.models.BulkClassificationAction;
30519
29953
  export type BulkDutyUpdateValidationError =
@@ -30743,9 +30177,6 @@ export type CheckoutBehaviorShippingAddress =
30743
30177
  io.flow.internal.v0.models.CheckoutBehaviorShippingAddress;
30744
30178
  export type CheckoutBehaviorShippingMethod =
30745
30179
  io.flow.internal.v0.models.CheckoutBehaviorShippingMethod;
30746
- export type CheckoutBundle = io.flow.internal.v0.models.CheckoutBundle;
30747
- export type CheckoutBundleMetadata =
30748
- io.flow.internal.v0.models.CheckoutBundleMetadata;
30749
30180
  export type CheckoutConfiguration =
30750
30181
  io.flow.internal.v0.models.CheckoutConfiguration;
30751
30182
  export type CheckoutConfigurationDeleted =
@@ -30763,14 +30194,8 @@ export type CheckoutContentSummary =
30763
30194
  io.flow.internal.v0.models.CheckoutContentSummary;
30764
30195
  export type CheckoutError = io.flow.internal.v0.models.CheckoutError;
30765
30196
  export type CheckoutErrorCode = io.flow.internal.v0.enums.CheckoutErrorCode;
30766
- export type CheckoutFinalizeOrderForm =
30767
- io.flow.internal.v0.models.CheckoutFinalizeOrderForm;
30768
- export type CheckoutForm = io.flow.internal.v0.unions.CheckoutForm;
30769
30197
  export type CheckoutMarketingContent =
30770
30198
  io.flow.internal.v0.models.CheckoutMarketingContent;
30771
- export type CheckoutOrderForm = io.flow.internal.v0.models.CheckoutOrderForm;
30772
- export type CheckoutOrderNumberForm =
30773
- io.flow.internal.v0.models.CheckoutOrderNumberForm;
30774
30199
  export type CheckoutPayment = io.flow.internal.v0.models.CheckoutPayment;
30775
30200
  export type CheckoutPaymentContent =
30776
30201
  io.flow.internal.v0.models.CheckoutPaymentContent;
@@ -30781,24 +30206,9 @@ export type CheckoutPromptBehavior =
30781
30206
  export type CheckoutRedirect = io.flow.internal.v0.models.CheckoutRedirect;
30782
30207
  export type CheckoutRedirectMethod =
30783
30208
  io.flow.internal.v0.enums.CheckoutRedirectMethod;
30784
- export type CheckoutReferenceForm =
30785
- io.flow.internal.v0.models.CheckoutReferenceForm;
30786
30209
  export type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettings;
30787
30210
  export type CheckoutShippingMethodPromptBehavior =
30788
30211
  io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
30789
- export type CheckoutSourceOrderForm =
30790
- io.flow.internal.v0.models.CheckoutSourceOrderForm;
30791
- export type CheckoutSubmission = io.flow.internal.v0.models.CheckoutSubmission;
30792
- export type CheckoutSubmissionForm =
30793
- io.flow.internal.v0.models.CheckoutSubmissionForm;
30794
- export type CheckoutSubmitOrderBundle =
30795
- io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
30796
- export type CheckoutSubmitOrderBundles =
30797
- io.flow.internal.v0.unions.CheckoutSubmitOrderBundles;
30798
- export type CheckoutSubmitOrderForm =
30799
- io.flow.internal.v0.models.CheckoutSubmitOrderForm;
30800
- export type CheckoutSubmitOrderForms =
30801
- io.flow.internal.v0.unions.CheckoutSubmitOrderForms;
30802
30212
  export type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
30803
30213
  export type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
30804
30214
  export type Cipher = io.flow.internal.v0.models.Cipher;
@@ -31152,8 +30562,6 @@ export type ExclusionRuleExportRequest =
31152
30562
  io.flow.internal.v0.models.ExclusionRuleExportRequest;
31153
30563
  export type ExclusionRuleUpserted =
31154
30564
  io.flow.internal.v0.models.ExclusionRuleUpserted;
31155
- export type ExpectedOrderSummary =
31156
- io.flow.internal.v0.models.ExpectedOrderSummary;
31157
30565
  export type ExperienceExportRequest =
31158
30566
  io.flow.internal.v0.models.ExperienceExportRequest;
31159
30567
  export type ExperienceImportRequest =
@@ -31226,16 +30634,8 @@ export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
31226
30634
  export type Fedex = io.flow.internal.v0.models.Fedex;
31227
30635
  export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
31228
30636
  export type Fee = io.flow.internal.v0.models.Fee;
31229
- export type FeedDeleted = io.flow.internal.v0.models.FeedDeleted;
31230
- export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
31231
- export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
31232
30637
  export type Fees = io.flow.internal.v0.models.Fees;
31233
30638
  export type FeesSource = io.flow.internal.v0.enums.FeesSource;
31234
- export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
31235
- export type FinalEstimateDeleted =
31236
- io.flow.internal.v0.models.FinalEstimateDeleted;
31237
- export type FinalEstimateUpserted =
31238
- io.flow.internal.v0.models.FinalEstimateUpserted;
31239
30639
  export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
31240
30640
  export type FinanceBankAccountOwner =
31241
30641
  io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -31369,8 +30769,6 @@ export type FulfillmentFallbacksDeleted =
31369
30769
  io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
31370
30770
  export type FulfillmentFallbacksUpserted =
31371
30771
  io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
31372
- export type FulfillmentInternalExperienceReference =
31373
- io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
31374
30772
  export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
31375
30773
  export type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
31376
30774
  export type FulfillmentProofExternalFulfillmentProofReference =
@@ -31452,10 +30850,6 @@ export type HarmonizationDecisionSource =
31452
30850
  io.flow.internal.v0.enums.HarmonizationDecisionSource;
31453
30851
  export type HarmonizationItemClassification =
31454
30852
  io.flow.internal.v0.models.HarmonizationItemClassification;
31455
- export type HarmonizationItemClassificationDeleted =
31456
- io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
31457
- export type HarmonizationItemClassificationUpserted =
31458
- io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
31459
30853
  export type HarmonizationItemSummary =
31460
30854
  io.flow.internal.v0.models.HarmonizationItemSummary;
31461
30855
  export type HarmonizationMlModelSummary =
@@ -31525,8 +30919,6 @@ export type InternalTransactionDetails =
31525
30919
  io.flow.internal.v0.unions.InternalTransactionDetails;
31526
30920
  export type InternalTransactionDetailsCard =
31527
30921
  io.flow.internal.v0.models.InternalTransactionDetailsCard;
31528
- export type InvalidCheckoutData =
31529
- io.flow.internal.v0.models.InvalidCheckoutData;
31530
30922
  export type Invariant = io.flow.internal.v0.models.Invariant;
31531
30923
  export type InventoryItemWrapper =
31532
30924
  io.flow.internal.v0.models.InventoryItemWrapper;
@@ -31541,8 +30933,6 @@ export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
31541
30933
  export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
31542
30934
  export type ItemClassificationAction =
31543
30935
  io.flow.internal.v0.enums.ItemClassificationAction;
31544
- export type ItemClassificationCreated =
31545
- io.flow.internal.v0.models.ItemClassificationCreated;
31546
30936
  export type ItemClassificationForm =
31547
30937
  io.flow.internal.v0.models.ItemClassificationForm;
31548
30938
  export type ItemClassificationStatus =
@@ -31620,6 +31010,7 @@ export type LabelCreationRequestForm =
31620
31010
  io.flow.internal.v0.models.LabelCreationRequestForm;
31621
31011
  export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
31622
31012
  export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
31013
+ export type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
31623
31014
  export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
31624
31015
  export type LabelGenerationSettings =
31625
31016
  io.flow.internal.v0.models.LabelGenerationSettings;
@@ -31703,26 +31094,12 @@ export type LocalizedContentForm =
31703
31094
  io.flow.internal.v0.models.LocalizedContentForm;
31704
31095
  export type LocalizedContentUpserted =
31705
31096
  io.flow.internal.v0.models.LocalizedContentUpserted;
31706
- export type LocalizedItemDeleted =
31707
- io.flow.internal.v0.models.LocalizedItemDeleted;
31708
- export type LocalizedItemDeletedV2 =
31709
- io.flow.internal.v0.models.LocalizedItemDeletedV2;
31710
31097
  export type LocalizedItemPricesExportRequest =
31711
31098
  io.flow.internal.v0.models.LocalizedItemPricesExportRequest;
31712
- export type LocalizedItemSnapshot =
31713
- io.flow.internal.v0.models.LocalizedItemSnapshot;
31714
- export type LocalizedItemUpsertedV2 =
31715
- io.flow.internal.v0.models.LocalizedItemUpsertedV2;
31716
31099
  export type LocalizedItemsExportSettings =
31717
31100
  io.flow.internal.v0.models.LocalizedItemsExportSettings;
31718
- export type LocalizedPriceBookItem =
31719
- io.flow.internal.v0.models.LocalizedPriceBookItem;
31720
31101
  export type LocalizedPriceBookItemData =
31721
31102
  io.flow.internal.v0.models.LocalizedPriceBookItemData;
31722
- export type LocalizedPriceBookItemDeleted =
31723
- io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
31724
- export type LocalizedPriceBookItemUpserted =
31725
- io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
31726
31103
  export type Location = io.flow.internal.v0.models.Location;
31727
31104
  export type LogisticsCapabilities =
31728
31105
  io.flow.internal.v0.models.LogisticsCapabilities;
@@ -31775,110 +31152,6 @@ export type ManualTransactionForm =
31775
31152
  export type ManualTransactionFormOrder =
31776
31153
  io.flow.internal.v0.models.ManualTransactionFormOrder;
31777
31154
  export type MarkedAsFinal = io.flow.internal.v0.models.MarkedAsFinal;
31778
- export type MarketingGatewayAccountConnectionStatus =
31779
- io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
31780
- export type MarketingGatewayChannel =
31781
- io.flow.internal.v0.models.MarketingGatewayChannel;
31782
- export type MarketingGatewayChannelConnectionForm =
31783
- io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm;
31784
- export type MarketingGatewayChannelDetails =
31785
- io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
31786
- export type MarketingGatewayChannelForm =
31787
- io.flow.internal.v0.models.MarketingGatewayChannelForm;
31788
- export type MarketingGatewayChannelIntegrationType =
31789
- io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
31790
- export type MarketingGatewayChannelSourceSummary =
31791
- io.flow.internal.v0.models.MarketingGatewayChannelSourceSummary;
31792
- export type MarketingGatewayChannelStatus =
31793
- io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
31794
- export type MarketingGatewayDistributionChannel =
31795
- io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
31796
- export type MarketingGatewayDistributionChannelFacebook =
31797
- io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
31798
- export type MarketingGatewayDistributionChannelGoogle =
31799
- io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle;
31800
- export type MarketingGatewayError =
31801
- io.flow.internal.v0.models.MarketingGatewayError;
31802
- export type MarketingGatewayErrorCode =
31803
- io.flow.internal.v0.enums.MarketingGatewayErrorCode;
31804
- export type MarketingGatewayFacebookBusiness =
31805
- io.flow.internal.v0.models.MarketingGatewayFacebookBusiness;
31806
- export type MarketingGatewayFacebookBusinessSummary =
31807
- io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary;
31808
- export type MarketingGatewayFacebookCatalogForm =
31809
- io.flow.internal.v0.models.MarketingGatewayFacebookCatalogForm;
31810
- export type MarketingGatewayFacebookCatalogSummary =
31811
- io.flow.internal.v0.models.MarketingGatewayFacebookCatalogSummary;
31812
- export type MarketingGatewayFacebookChannelDetails =
31813
- io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails;
31814
- export type MarketingGatewayFacebookConnection =
31815
- io.flow.internal.v0.models.MarketingGatewayFacebookConnection;
31816
- export type MarketingGatewayFacebookConnectionAccessTokenSummary =
31817
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
31818
- export type MarketingGatewayFacebookConnectionDeauth =
31819
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionDeauth;
31820
- export type MarketingGatewayFacebookConnectionForm =
31821
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionForm;
31822
- export type MarketingGatewayFacebookSourceSummary =
31823
- io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary;
31824
- export type MarketingGatewayFacebookTokenStatus =
31825
- io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
31826
- export type MarketingGatewayFeed =
31827
- io.flow.internal.v0.models.MarketingGatewayFeed;
31828
- export type MarketingGatewayFeedDownloadFormat =
31829
- io.flow.internal.v0.enums.MarketingGatewayFeedDownloadFormat;
31830
- export type MarketingGatewayFeedExportForm =
31831
- io.flow.internal.v0.models.MarketingGatewayFeedExportForm;
31832
- export type MarketingGatewayFeedForm =
31833
- io.flow.internal.v0.models.MarketingGatewayFeedForm;
31834
- export type MarketingGatewayFeedFormRequest =
31835
- io.flow.internal.v0.models.MarketingGatewayFeedFormRequest;
31836
- export type MarketingGatewayFeedSource =
31837
- io.flow.internal.v0.unions.MarketingGatewayFeedSource;
31838
- export type MarketingGatewayFeedSourceFacebook =
31839
- io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
31840
- export type MarketingGatewayFeedSourceGoogle =
31841
- io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle;
31842
- export type MarketingGatewayFeedState =
31843
- io.flow.internal.v0.enums.MarketingGatewayFeedState;
31844
- export type MarketingGatewayFilterSummary =
31845
- io.flow.internal.v0.models.MarketingGatewayFilterSummary;
31846
- export type MarketingGatewayFlowSourceSummary =
31847
- io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
31848
- export type MarketingGatewayGoogleAccountForm =
31849
- io.flow.internal.v0.models.MarketingGatewayGoogleAccountForm;
31850
- export type MarketingGatewayGoogleAccountSummary =
31851
- io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary;
31852
- export type MarketingGatewayGoogleChannelDetails =
31853
- io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails;
31854
- export type MarketingGatewayGoogleConnection =
31855
- io.flow.internal.v0.models.MarketingGatewayGoogleConnection;
31856
- export type MarketingGatewayGoogleConnectionForm =
31857
- io.flow.internal.v0.models.MarketingGatewayGoogleConnectionForm;
31858
- export type MarketingGatewayGoogleItem =
31859
- io.flow.internal.v0.models.MarketingGatewayGoogleItem;
31860
- export type MarketingGatewayGoogleSourceSummary =
31861
- io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary;
31862
- export type MarketingGatewayItem =
31863
- io.flow.internal.v0.unions.MarketingGatewayItem;
31864
- export type MarketingGatewayLocalizedItem =
31865
- io.flow.internal.v0.models.MarketingGatewayLocalizedItem;
31866
- export type MarketingGatewayNewChannelRequestForm =
31867
- io.flow.internal.v0.models.MarketingGatewayNewChannelRequestForm;
31868
- export type MarketingGatewayPlatform =
31869
- io.flow.internal.v0.enums.MarketingGatewayPlatform;
31870
- export type MarketingGatewayProductDatasourceSummary =
31871
- io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary;
31872
- export type MarketingGatewayProductStatus =
31873
- io.flow.internal.v0.enums.MarketingGatewayProductStatus;
31874
- export type MarketingGatewaySchemaCompatibility =
31875
- io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
31876
- export type MarketingGatewaySchemaSummary =
31877
- io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
31878
- export type MarketingGatewaySourceSummary =
31879
- io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
31880
- export type MarketingGatewaySupportedChannelDetails =
31881
- io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
31882
31155
  export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
31883
31156
  export type MarketsOrderSummary =
31884
31157
  io.flow.internal.v0.models.MarketsOrderSummary;
@@ -31929,6 +31202,8 @@ export type NoLiabilityReasonCode =
31929
31202
  io.flow.internal.v0.enums.NoLiabilityReasonCode;
31930
31203
  export type NonChannelPaymentBankAccount =
31931
31204
  io.flow.internal.v0.models.NonChannelPaymentBankAccount;
31205
+ export type NonL4LTaxDutyFxTransaction =
31206
+ io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
31932
31207
  export type Notification = io.flow.internal.v0.models.Notification;
31933
31208
  export type OnboardingAuditMessage =
31934
31209
  io.flow.internal.v0.models.OnboardingAuditMessage;
@@ -31968,11 +31243,8 @@ export type OptinPromptCheckoutDisplay =
31968
31243
  export type OptinPromptCopy = io.flow.internal.v0.models.OptinPromptCopy;
31969
31244
  export type OptinPromptCopyForm =
31970
31245
  io.flow.internal.v0.models.OptinPromptCopyForm;
31971
- export type OptinPromptDeleted = io.flow.internal.v0.models.OptinPromptDeleted;
31972
31246
  export type OptinPromptDisplay = io.flow.internal.v0.unions.OptinPromptDisplay;
31973
31247
  export type OptinPromptForm = io.flow.internal.v0.models.OptinPromptForm;
31974
- export type OptinPromptUpserted =
31975
- io.flow.internal.v0.models.OptinPromptUpserted;
31976
31248
  export type OrderAction = io.flow.internal.v0.enums.OrderAction;
31977
31249
  export type OrderActionForm = io.flow.internal.v0.unions.OrderActionForm;
31978
31250
  export type OrderActionability = io.flow.internal.v0.models.OrderActionability;
@@ -32015,11 +31287,9 @@ export type OrderFulfillmentDeleted =
32015
31287
  io.flow.internal.v0.models.OrderFulfillmentDeleted;
32016
31288
  export type OrderFulfillmentUpserted =
32017
31289
  io.flow.internal.v0.models.OrderFulfillmentUpserted;
32018
- export type OrderFxTransaction = io.flow.internal.v0.models.OrderFxTransaction;
32019
31290
  export type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
32020
31291
  export type OrderNote = io.flow.internal.v0.models.OrderNote;
32021
31292
  export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
32022
- export type OrderParameters = io.flow.internal.v0.models.OrderParameters;
32023
31293
  export type OrderPaymentAuthorization =
32024
31294
  io.flow.internal.v0.models.OrderPaymentAuthorization;
32025
31295
  export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
@@ -32272,6 +31542,9 @@ export type PaymentProcessorMerchantDeleted =
32272
31542
  export type PaymentProcessorMerchantUpserted =
32273
31543
  io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
32274
31544
  export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
31545
+ export type PaymentShortUrl = io.flow.internal.v0.models.PaymentShortUrl;
31546
+ export type PaymentShortUrlDiscriminator =
31547
+ io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
32275
31548
  export type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
32276
31549
  export type PaymentSummaryDetails =
32277
31550
  io.flow.internal.v0.unions.PaymentSummaryDetails;
@@ -32348,9 +31621,6 @@ export type PlatformFeePercentageTier =
32348
31621
  export type Prediction = io.flow.internal.v0.models.Prediction;
32349
31622
  export type PreferredBillingSchedule =
32350
31623
  io.flow.internal.v0.enums.PreferredBillingSchedule;
32351
- export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
32352
- export type PregeneratedRequestEvent =
32353
- io.flow.internal.v0.models.PregeneratedRequestEvent;
32354
31624
  export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
32355
31625
  export type PrioritizedCenterReference =
32356
31626
  io.flow.internal.v0.models.PrioritizedCenterReference;
@@ -32445,8 +31715,6 @@ export type PublicHub = io.flow.internal.v0.models.PublicHub;
32445
31715
  export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
32446
31716
  export type Quote = io.flow.internal.v0.models.Quote;
32447
31717
  export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
32448
- export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
32449
- export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
32450
31718
  export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
32451
31719
  export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
32452
31720
  export type RateAndRuleItemForm =
@@ -32498,12 +31766,6 @@ export type RatecardInternalServiceFee =
32498
31766
  io.flow.internal.v0.models.RatecardInternalServiceFee;
32499
31767
  export type RatecardInternalSummary =
32500
31768
  io.flow.internal.v0.models.RatecardInternalSummary;
32501
- export type RatecardLaneAggregate =
32502
- io.flow.internal.v0.models.RatecardLaneAggregate;
32503
- export type RatecardLaneAggregateDeleted =
32504
- io.flow.internal.v0.models.RatecardLaneAggregateDeleted;
32505
- export type RatecardLaneAggregateUpserted =
32506
- io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
32507
31769
  export type RatecardLanesImportRequest =
32508
31770
  io.flow.internal.v0.models.RatecardLanesImportRequest;
32509
31771
  export type RatecardRateLevelDeleted =
@@ -32771,9 +32033,11 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
32771
32033
  export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
32772
32034
  export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
32773
32035
  export type SfExpress = io.flow.internal.v0.models.SfExpress;
32774
- export type ShawnRoundtableWorkshopRate =
32775
- io.flow.internal.v0.models.ShawnRoundtableWorkshopRate;
32776
32036
  export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
32037
+ export type ShippingEstimateDeleted =
32038
+ io.flow.internal.v0.models.ShippingEstimateDeleted;
32039
+ export type ShippingEstimateUpserted =
32040
+ io.flow.internal.v0.models.ShippingEstimateUpserted;
32777
32041
  export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
32778
32042
  export type ShippingMethodReference =
32779
32043
  io.flow.internal.v0.models.ShippingMethodReference;
@@ -32899,6 +32163,8 @@ export type ShopifyMarketsWebhookRegistrationDeleted =
32899
32163
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
32900
32164
  export type ShopifyMarketsWebhookRegistrationUpserted =
32901
32165
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
32166
+ export type ShopifyMerchantPlan =
32167
+ io.flow.internal.v0.models.ShopifyMerchantPlan;
32902
32168
  export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
32903
32169
  export type ShopifyMonitoringCarrierService =
32904
32170
  io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
@@ -32959,6 +32225,7 @@ export type ShopifyPartnerWebhookRaw =
32959
32225
  io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
32960
32226
  export type ShopifyPaymentSummary =
32961
32227
  io.flow.internal.v0.models.ShopifyPaymentSummary;
32228
+ export type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
32962
32229
  export type ShopifyProductBundle =
32963
32230
  io.flow.internal.v0.models.ShopifyProductBundle;
32964
32231
  export type ShopifyProductBundleDeleted =
@@ -33196,6 +32463,14 @@ export type TaxCalculationLineItem =
33196
32463
  io.flow.internal.v0.models.TaxCalculationLineItem;
33197
32464
  export type TaxCalculationLineItemForm =
33198
32465
  io.flow.internal.v0.models.TaxCalculationLineItemForm;
32466
+ export type TaxDutyDeltaMetadataActual =
32467
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
32468
+ export type TaxDutyDeltaMetadataActualProcessing =
32469
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
32470
+ export type TaxDutyDeltaMetadataExpected =
32471
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
32472
+ export type TaxDutyDeltaMetadataExpectedProcessing =
32473
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
33199
32474
  export type TaxDutyDeltaTransaction =
33200
32475
  io.flow.internal.v0.models.TaxDutyDeltaTransaction;
33201
32476
  export type TaxParty = io.flow.internal.v0.enums.TaxParty;