@flowio/types 11.24.111 → 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.
@@ -2729,6 +2729,12 @@ declare namespace io.flow.stripe.v0.enums {
2729
2729
  | 'fraudulent'
2730
2730
  | 'requested_by_customer'
2731
2731
  | 'void_invoice';
2732
+ type CapabilityStatus =
2733
+ | 'active'
2734
+ | 'disabled'
2735
+ | 'inactive'
2736
+ | 'pending'
2737
+ | 'unrequested';
2732
2738
  type CaptureMethod = 'automatic' | 'manual';
2733
2739
  type CardBrand =
2734
2740
  | 'American Express'
@@ -2922,6 +2928,7 @@ declare namespace io.flow.stripe.v0.enums {
2922
2928
  | 'rate_limit_error'
2923
2929
  | 'validation_error';
2924
2930
  type EventType =
2931
+ | 'capability.updated'
2925
2932
  | 'charge.captured'
2926
2933
  | 'charge.failed'
2927
2934
  | 'charge.pending'
@@ -3206,6 +3213,17 @@ declare namespace io.flow.stripe.v0.models {
3206
3213
  readonly type: io.flow.stripe.v0.enums.ApplePayType;
3207
3214
  }
3208
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
+
3209
3227
  interface Card {
3210
3228
  readonly id: string;
3211
3229
  readonly object: string;
@@ -4469,6 +4487,8 @@ declare namespace io.flow.customer.v0.models {
4469
4487
  declare namespace io.flow.label.v0.enums {
4470
4488
  type CostEstimateSource = 'flow' | 'channel';
4471
4489
  type Direction = 'outbound' | 'return';
4490
+ type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
4491
+ type EstimateType = 'Estimated' | 'Final';
4472
4492
  type LabelRequestMethod =
4473
4493
  | 'flow_web_sync'
4474
4494
  | 'channel_web_async'
@@ -4573,6 +4593,15 @@ declare namespace io.flow.label.v0.models {
4573
4593
  readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
4574
4594
  }
4575
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
+
4576
4605
  interface LabelOrderSummary {
4577
4606
  readonly id: string;
4578
4607
  readonly number: string;
@@ -7146,6 +7175,12 @@ declare namespace io.flow.shopify.external.v0.models {
7146
7175
  interface GraphqlMetaobject {
7147
7176
  readonly id: string;
7148
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;
7149
7184
  }
7150
7185
 
7151
7186
  interface GraphqlOption {
@@ -15522,55 +15557,6 @@ declare namespace io.flow.merchant.of.record.v0.enums {
15522
15557
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
15523
15558
  }
15524
15559
 
15525
- declare namespace io.flow.checkout.v0.models {
15526
- interface CheckoutToken {
15527
- readonly id: string;
15528
- readonly organization: io.flow.common.v0.models.OrganizationReference;
15529
- readonly checkout: io.flow.common.v0.models.CheckoutReference;
15530
- readonly order: io.flow.experience.v0.models.OrderNumberReference;
15531
- readonly urls: io.flow.checkout.v0.models.CheckoutUrls;
15532
- readonly expires_at: string;
15533
- readonly session: io.flow.common.v0.models.SessionReference;
15534
- readonly customer?: io.flow.common.v0.models.CustomerReference;
15535
- }
15536
-
15537
- interface CheckoutTokenOrderForm {
15538
- readonly discriminator: 'checkout_token_order_form';
15539
- readonly order_form: io.flow.experience.v0.models.OrderForm;
15540
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
15541
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
15542
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
15543
- readonly session_id: string;
15544
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
15545
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
15546
- }
15547
-
15548
- interface CheckoutTokenReferenceForm {
15549
- readonly discriminator: 'checkout_token_reference_form';
15550
- readonly order_number: string;
15551
- readonly session_id: string;
15552
- readonly urls: io.flow.checkout.v0.models.CheckoutUrlsForm;
15553
- }
15554
-
15555
- interface CheckoutUrls {
15556
- readonly continue_shopping?: string;
15557
- readonly confirmation?: string;
15558
- readonly invalid_checkout?: string;
15559
- }
15560
-
15561
- interface CheckoutUrlsForm {
15562
- readonly continue_shopping?: string;
15563
- readonly confirmation?: string;
15564
- readonly invalid_checkout?: string;
15565
- }
15566
- }
15567
-
15568
- declare namespace io.flow.checkout.v0.unions {
15569
- type CheckoutTokenForm =
15570
- | io.flow.checkout.v0.models.CheckoutTokenOrderForm
15571
- | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
15572
- }
15573
-
15574
15560
  declare namespace io.flow.organization.onboarding.state.v0.enums {
15575
15561
  type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
15576
15562
  type MerchantRejectedReason =
@@ -16321,7 +16307,6 @@ declare namespace io.flow.internal.v0.enums {
16321
16307
  | 'duty_refund'
16322
16308
  | 'ge_revenue_share'
16323
16309
  | 'tax_duty_delta';
16324
- type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
16325
16310
  type CalculatorEngine =
16326
16311
  | 'dtce_with_deminimis'
16327
16312
  | 'dtce_with_inclusive_pricing'
@@ -16497,8 +16482,8 @@ declare namespace io.flow.internal.v0.enums {
16497
16482
  type EventType =
16498
16483
  | 'adjusted_estimates_upserted'
16499
16484
  | 'adjusted_estimates_deleted'
16500
- | 'final_estimate_upserted'
16501
- | 'final_estimate_deleted'
16485
+ | 'shipping_estimate_upserted'
16486
+ | 'shipping_estimate_deleted'
16502
16487
  | 'adyen_authorization_deleted'
16503
16488
  | 'adyen_authorization_upserted'
16504
16489
  | 'adyen_cancel_deleted'
@@ -16666,7 +16651,6 @@ declare namespace io.flow.internal.v0.enums {
16666
16651
  | 'center_defaults_deleted'
16667
16652
  | 'fulfillment_fallbacks_upserted'
16668
16653
  | 'fulfillment_fallbacks_deleted'
16669
- | 'pregenerated_request_event'
16670
16654
  | 'quote_upserted'
16671
16655
  | 'quote_deleted'
16672
16656
  | 'all_items_export'
@@ -16675,7 +16659,6 @@ declare namespace io.flow.internal.v0.enums {
16675
16659
  | 'dutied_items_export'
16676
16660
  | 'harmonization_phrase_suggestion_request_import'
16677
16661
  | 'harmonization_codes_import'
16678
- | 'item_classification_created'
16679
16662
  | 'harmonize_fully_request_v2'
16680
16663
  | 'import_completed'
16681
16664
  | 'import_failed'
@@ -16704,8 +16687,6 @@ declare namespace io.flow.internal.v0.enums {
16704
16687
  | 'logistics_capabilities_upserted'
16705
16688
  | 'logistics_capabilities_deleted'
16706
16689
  | 'localized_item_prices_export_request'
16707
- | 'optin_prompt_upserted'
16708
- | 'optin_prompt_deleted'
16709
16690
  | 'order_combined_shipment_upserted'
16710
16691
  | 'order_combined_shipment_deleted'
16711
16692
  | 'order_fulfillment_deleted'
@@ -16771,8 +16752,6 @@ declare namespace io.flow.internal.v0.enums {
16771
16752
  | 'ratecard_standard_configuration_deleted'
16772
16753
  | 'ratecard_service_fee_upserted'
16773
16754
  | 'ratecard_service_fee_deleted'
16774
- | 'ratecard_lane_aggregate_upserted'
16775
- | 'ratecard_lane_aggregate_deleted'
16776
16755
  | 'ratecard_rate_level_upserted'
16777
16756
  | 'ratecard_rate_level_deleted'
16778
16757
  | 'ratecard_rate_level_ratecard_upserted'
@@ -17122,11 +17101,6 @@ declare namespace io.flow.internal.v0.enums {
17122
17101
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
17123
17102
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
17124
17103
  type PromptTarget = 'browse' | 'checkout';
17125
- type QuoteRequestType =
17126
- | 'generate'
17127
- | 'delete'
17128
- | 'update_currency_rate'
17129
- | 'update_country';
17130
17104
  type RateLevelKey =
17131
17105
  | 'shopify_small_usa'
17132
17106
  | 'shopify_medium_usa'
@@ -17243,6 +17217,7 @@ declare namespace io.flow.internal.v0.enums {
17243
17217
  | 'tracking_number'
17244
17218
  | 'carrier_service'
17245
17219
  | 'tracking_url';
17220
+ type ShopifyPlanType = 'standard' | 'shopify_plus';
17246
17221
  type ShopifyPromotionBehavior = 'disable_discount_codes';
17247
17222
  type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
17248
17223
  type ShopifyPromotionOrderEntitlementComponent =
@@ -18597,52 +18572,6 @@ declare namespace io.flow.internal.v0.models {
18597
18572
  readonly status: string;
18598
18573
  }
18599
18574
 
18600
- interface BrowserBundle {
18601
- readonly country_picker: io.flow.internal.v0.models.CountryPickerData;
18602
- readonly optins: io.flow.internal.v0.models.OptinPrompt[];
18603
- readonly features: io.flow.internal.v0.models.FeatureValueResult;
18604
- readonly payment_methods?: io.flow.internal.v0.models.BrowserBundlePaymentMethods;
18605
- }
18606
-
18607
- interface BrowserBundleCountryPickerForm {
18608
- readonly country?: string;
18609
- readonly ip?: string;
18610
- }
18611
-
18612
- interface BrowserBundleError {
18613
- readonly code: io.flow.internal.v0.enums.BrowserBundleErrorCode;
18614
- readonly messages: string[];
18615
- }
18616
-
18617
- interface BrowserBundleFeatureForm {
18618
- readonly keys: string[];
18619
- readonly context: io.flow.internal.v0.models.FeatureContextForm;
18620
- }
18621
-
18622
- interface BrowserBundleForm {
18623
- readonly optin?: io.flow.internal.v0.models.BrowserBundleOptinForm;
18624
- readonly country_picker?: io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
18625
- readonly feature?: io.flow.internal.v0.models.BrowserBundleFeatureForm;
18626
- readonly payment_method?: io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
18627
- }
18628
-
18629
- interface BrowserBundleOptinForm {
18630
- readonly country: string;
18631
- }
18632
-
18633
- interface BrowserBundlePaymentMethod {
18634
- readonly id: string;
18635
- }
18636
-
18637
- interface BrowserBundlePaymentMethodForm {
18638
- readonly experience_key: string;
18639
- readonly country: string;
18640
- }
18641
-
18642
- interface BrowserBundlePaymentMethods {
18643
- readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
18644
- }
18645
-
18646
18575
  interface BulkClassificationAction {
18647
18576
  readonly discriminator: 'bulk';
18648
18577
  readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
@@ -19506,29 +19435,6 @@ declare namespace io.flow.internal.v0.models {
19506
19435
  readonly prompt: io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
19507
19436
  }
19508
19437
 
19509
- interface CheckoutBundle {
19510
- readonly cart?: io.flow.shopify.v0.models.ShopifyCart;
19511
- readonly order: io.flow.experience.v0.models.Order;
19512
- readonly order_errors?: io.flow.experience.v0.models.OrderError[];
19513
- readonly checkout?: io.flow.internal.v0.models.CheckoutContentSummary;
19514
- readonly optins: io.flow.internal.v0.models.OptinPrompt[];
19515
- readonly destinations: io.flow.reference.v0.models.Country[];
19516
- readonly features: io.flow.internal.v0.models.FeatureValueResult;
19517
- readonly provinces: io.flow.reference.v0.models.Province[];
19518
- readonly checkout_items: io.flow.experience.v0.models.CheckoutItemContent[];
19519
- readonly metadata?: io.flow.internal.v0.models.CheckoutBundleMetadata;
19520
- readonly configuration?: io.flow.internal.v0.models.CheckoutConfiguration;
19521
- readonly address_configurations?: io.flow.experience.v0.models.AddressConfiguration[];
19522
- readonly customer?: io.flow.customer.v0.models.Customer;
19523
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBook;
19524
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSource[];
19525
- readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
19526
- }
19527
-
19528
- interface CheckoutBundleMetadata {
19529
- readonly organization: io.flow.common.v0.models.OrganizationSummary;
19530
- }
19531
-
19532
19438
  interface CheckoutConfiguration {
19533
19439
  readonly id: string;
19534
19440
  readonly behavior: io.flow.internal.v0.models.CheckoutBehavior;
@@ -19592,41 +19498,10 @@ declare namespace io.flow.internal.v0.models {
19592
19498
  readonly redirect?: io.flow.internal.v0.models.CheckoutRedirect;
19593
19499
  }
19594
19500
 
19595
- interface CheckoutFinalizeOrderForm {
19596
- readonly expected_order_summary: io.flow.internal.v0.models.ExpectedOrderSummary;
19597
- readonly order_put_form: io.flow.experience.v0.models.OrderPutForm;
19598
- }
19599
-
19600
19501
  interface CheckoutMarketingContent {
19601
19502
  readonly optins: io.flow.internal.v0.models.Checkbox[];
19602
19503
  }
19603
19504
 
19604
- interface CheckoutOrderForm {
19605
- readonly discriminator: 'order';
19606
- readonly organization: string;
19607
- readonly order: io.flow.experience.v0.models.OrderForm;
19608
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
19609
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
19610
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
19611
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19612
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19613
- readonly feature_keys?: string[];
19614
- readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
19615
- }
19616
-
19617
- interface CheckoutOrderNumberForm {
19618
- readonly discriminator: 'order_number';
19619
- readonly organization: string;
19620
- readonly order_number: string;
19621
- readonly customer?: io.flow.customer.v0.models.CustomerForm;
19622
- readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
19623
- readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
19624
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19625
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19626
- readonly feature_keys?: string[];
19627
- readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
19628
- }
19629
-
19630
19505
  interface CheckoutPayment {
19631
19506
  readonly authorizations: io.flow.payment.v0.unions.Authorization[];
19632
19507
  readonly sources: io.flow.payment.v0.unions.PaymentSource[];
@@ -19651,15 +19526,6 @@ declare namespace io.flow.internal.v0.models {
19651
19526
  readonly body?: string;
19652
19527
  }
19653
19528
 
19654
- interface CheckoutReferenceForm {
19655
- readonly order_number: string;
19656
- readonly order_form: io.flow.experience.v0.models.OrderPutForm;
19657
- readonly order_geo: io.flow.experience.v0.models.OrderGeo;
19658
- readonly session_id: string;
19659
- readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
19660
- readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
19661
- }
19662
-
19663
19529
  interface CheckoutSettings {
19664
19530
  readonly session_persistence_timeout?: io.flow.common.v0.models.Duration;
19665
19531
  readonly session_persistence_attribute_keys?: string[];
@@ -19668,35 +19534,6 @@ declare namespace io.flow.internal.v0.models {
19668
19534
  readonly assets?: io.flow.internal.v0.models.CheckoutAsset[];
19669
19535
  }
19670
19536
 
19671
- interface CheckoutSourceOrderForm {
19672
- readonly source_order_number: string;
19673
- readonly feature_q?: string;
19674
- }
19675
-
19676
- interface CheckoutSubmission {
19677
- readonly builder: io.flow.experience.v0.models.OrderBuilder;
19678
- readonly action?: io.flow.payment.v0.unions.AuthorizationResultAction;
19679
- }
19680
-
19681
- interface CheckoutSubmissionForm {
19682
- readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
19683
- readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
19684
- readonly feature_keys?: string[];
19685
- }
19686
-
19687
- interface CheckoutSubmitOrderBundle {
19688
- readonly discriminator: 'checkout_submit_order_bundle';
19689
- readonly order?: io.flow.experience.v0.models.Order;
19690
- readonly redirect?: io.flow.payment.v0.unions.AuthorizationResultAction;
19691
- readonly errors?: io.flow.experience.v0.models.OrderError[];
19692
- }
19693
-
19694
- interface CheckoutSubmitOrderForm {
19695
- readonly discriminator: 'checkout_submit_order_form';
19696
- readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
19697
- readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
19698
- }
19699
-
19700
19537
  interface CheckoutUrl {
19701
19538
  readonly url: string;
19702
19539
  readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
@@ -21086,10 +20923,6 @@ declare namespace io.flow.internal.v0.models {
21086
20923
  readonly exclusion_rule: io.flow.catalog.exclusion.v0.models.ExclusionRule;
21087
20924
  }
21088
20925
 
21089
- interface ExpectedOrderSummary {
21090
- readonly total?: io.flow.common.v0.models.Money;
21091
- }
21092
-
21093
20926
  interface ExperienceExportRequest {
21094
20927
  readonly discriminator: 'experience_export_request';
21095
20928
  readonly event_id: string;
@@ -21356,29 +21189,6 @@ declare namespace io.flow.internal.v0.models {
21356
21189
  readonly negative_balance?: io.flow.internal.v0.models.Fee;
21357
21190
  }
21358
21191
 
21359
- interface FinalEstimate {
21360
- readonly id: string;
21361
- readonly organization_id: string;
21362
- readonly label_id: string;
21363
- readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
21364
- }
21365
-
21366
- interface FinalEstimateDeleted {
21367
- readonly discriminator: 'final_estimate_deleted';
21368
- readonly event_id: string;
21369
- readonly timestamp: string;
21370
- readonly organization: string;
21371
- readonly id: string;
21372
- }
21373
-
21374
- interface FinalEstimateUpserted {
21375
- readonly discriminator: 'final_estimate_upserted';
21376
- readonly event_id: string;
21377
- readonly timestamp: string;
21378
- readonly organization: string;
21379
- readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
21380
- }
21381
-
21382
21192
  interface FinanceBankAccount {
21383
21193
  readonly id: string;
21384
21194
  readonly accounts: io.flow.internal.v0.models.AccountSummary[];
@@ -21971,11 +21781,6 @@ declare namespace io.flow.internal.v0.models {
21971
21781
  readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
21972
21782
  }
21973
21783
 
21974
- interface FulfillmentInternalExperienceReference {
21975
- readonly id: string;
21976
- readonly key: string;
21977
- }
21978
-
21979
21784
  interface FulfillmentOrigin {
21980
21785
  readonly country: string;
21981
21786
  readonly province_code?: string;
@@ -22470,10 +22275,6 @@ declare namespace io.flow.internal.v0.models {
22470
22275
  readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
22471
22276
  }
22472
22277
 
22473
- interface InvalidCheckoutData {
22474
- readonly order: io.flow.experience.v0.models.OrderPutForm;
22475
- }
22476
-
22477
22278
  interface Invariant {
22478
22279
  readonly name: string;
22479
22280
  readonly count: number;
@@ -22576,18 +22377,6 @@ declare namespace io.flow.internal.v0.models {
22576
22377
  readonly model_id: string;
22577
22378
  }
22578
22379
 
22579
- interface ItemClassificationCreated {
22580
- readonly discriminator: 'item_classification_created';
22581
- readonly event_id: string;
22582
- readonly timestamp: string;
22583
- readonly organization: string;
22584
- readonly item_number: string;
22585
- readonly model_id: string;
22586
- readonly labels_prediction: io.flow.internal.v0.models.LabelsPrediction;
22587
- readonly action: io.flow.internal.v0.enums.SuggestionAction;
22588
- readonly prediction_score?: number;
22589
- }
22590
-
22591
22380
  interface ItemClassificationForm {
22592
22381
  readonly organization: string;
22593
22382
  readonly uid: string;
@@ -23855,14 +23644,6 @@ declare namespace io.flow.internal.v0.models {
23855
23644
  readonly to: string;
23856
23645
  }
23857
23646
 
23858
- interface OptinPromptDeleted {
23859
- readonly discriminator: 'optin_prompt_deleted';
23860
- readonly event_id: string;
23861
- readonly timestamp: string;
23862
- readonly id: string;
23863
- readonly organization: string;
23864
- }
23865
-
23866
23647
  interface OptinPromptForm {
23867
23648
  readonly optin_attribute_key: string;
23868
23649
  readonly region: string;
@@ -23873,15 +23654,6 @@ declare namespace io.flow.internal.v0.models {
23873
23654
  readonly display?: io.flow.internal.v0.unions.OptinPromptDisplay;
23874
23655
  }
23875
23656
 
23876
- interface OptinPromptUpserted {
23877
- readonly discriminator: 'optin_prompt_upserted';
23878
- readonly event_id: string;
23879
- readonly timestamp: string;
23880
- readonly id: string;
23881
- readonly organization: string;
23882
- readonly optin_prompt: io.flow.internal.v0.models.OptinPrompt;
23883
- }
23884
-
23885
23657
  interface OrderActionability {
23886
23658
  readonly action: io.flow.internal.v0.enums.OrderAction[];
23887
23659
  readonly lines: io.flow.internal.v0.models.LineActionQuantities[];
@@ -24031,14 +23803,6 @@ declare namespace io.flow.internal.v0.models {
24031
23803
  readonly note: string;
24032
23804
  }
24033
23805
 
24034
- interface OrderParameters {
24035
- readonly experience?: string;
24036
- readonly country?: string;
24037
- readonly ip?: string;
24038
- readonly currency?: string;
24039
- readonly language?: string;
24040
- }
24041
-
24042
23806
  interface OrderPaymentAuthorization {
24043
23807
  readonly placeholder: string;
24044
23808
  }
@@ -25341,23 +25105,6 @@ declare namespace io.flow.internal.v0.models {
25341
25105
  readonly item: string;
25342
25106
  }
25343
25107
 
25344
- interface PregeneratedQuote {
25345
- readonly id: string;
25346
- readonly experience: io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
25347
- readonly destination_country: string;
25348
- readonly item: io.flow.common.v0.models.ItemReference;
25349
- readonly quote?: io.flow.fulfillment.v0.models.Quote;
25350
- readonly errors?: string[];
25351
- }
25352
-
25353
- interface PregeneratedRequestEvent {
25354
- readonly discriminator: 'pregenerated_request_event';
25355
- readonly event_id: string;
25356
- readonly timestamp: string;
25357
- readonly organization: string;
25358
- readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
25359
- }
25360
-
25361
25108
  interface PrioritizedCenterReference {
25362
25109
  readonly center_key: string;
25363
25110
  readonly position: number;
@@ -25662,16 +25409,6 @@ declare namespace io.flow.internal.v0.models {
25662
25409
  readonly id: string;
25663
25410
  }
25664
25411
 
25665
- interface QuoteRequest {
25666
- readonly id: string;
25667
- readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
25668
- readonly experience_keys?: string[];
25669
- readonly item_numbers?: string[];
25670
- readonly rates?: io.flow.internal.v0.models.CurrencyInternalRate[];
25671
- readonly countries?: io.flow.reference.v0.models.Country[];
25672
- readonly reason?: string;
25673
- }
25674
-
25675
25412
  interface QuoteUpserted {
25676
25413
  readonly discriminator: 'quote_upserted';
25677
25414
  readonly event_id: string;
@@ -25906,40 +25643,6 @@ declare namespace io.flow.internal.v0.models {
25906
25643
  readonly number: string;
25907
25644
  }
25908
25645
 
25909
- interface RatecardLaneAggregate {
25910
- readonly id: string;
25911
- readonly organization_id: string;
25912
- readonly origin: io.flow.common.v0.models.Zone;
25913
- readonly destination: io.flow.common.v0.models.Zone;
25914
- readonly currency: string;
25915
- readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
25916
- readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
25917
- readonly dim_factor: number;
25918
- readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
25919
- readonly rounding: io.flow.common.v0.models.Rounding;
25920
- readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
25921
- readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
25922
- readonly rates_with_fees: io.flow.internal.v0.models.RateWithFees[];
25923
- readonly ratecard: io.flow.ratecard.v0.models.RatecardReference;
25924
- readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
25925
- }
25926
-
25927
- interface RatecardLaneAggregateDeleted {
25928
- readonly discriminator: 'ratecard_lane_aggregate_deleted';
25929
- readonly event_id: string;
25930
- readonly timestamp: string;
25931
- readonly organization: string;
25932
- readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
25933
- }
25934
-
25935
- interface RatecardLaneAggregateUpserted {
25936
- readonly discriminator: 'ratecard_lane_aggregate_upserted';
25937
- readonly event_id: string;
25938
- readonly timestamp: string;
25939
- readonly organization: string;
25940
- readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
25941
- }
25942
-
25943
25646
  interface RatecardLanesImportRequest {
25944
25647
  readonly discriminator: 'ratecard_lanes_import_request';
25945
25648
  readonly event_id: string;
@@ -27044,6 +26747,22 @@ declare namespace io.flow.internal.v0.models {
27044
26747
  readonly total: io.flow.common.v0.models.PriceWithBase;
27045
26748
  }
27046
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
+
27047
26766
  interface ShippingLane {
27048
26767
  readonly origin: string;
27049
26768
  readonly destination: string;
@@ -27449,6 +27168,12 @@ declare namespace io.flow.internal.v0.models {
27449
27168
  readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
27450
27169
  }
27451
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
+
27452
27177
  interface ShopifyMetadata {
27453
27178
  readonly domain: string;
27454
27179
  readonly myshopify_domain: string;
@@ -29271,13 +28996,6 @@ declare namespace io.flow.internal.v0.unions {
29271
28996
  type ChannelRateMetadata =
29272
28997
  | io.flow.internal.v0.models.ChannelRateMetadataIdentity
29273
28998
  | io.flow.internal.v0.models.ChannelRateMetadataRate;
29274
- type CheckoutForm =
29275
- | io.flow.internal.v0.models.CheckoutOrderForm
29276
- | io.flow.internal.v0.models.CheckoutOrderNumberForm;
29277
- type CheckoutSubmitOrderBundles =
29278
- io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
29279
- type CheckoutSubmitOrderForms =
29280
- io.flow.internal.v0.models.CheckoutSubmitOrderForm;
29281
28999
  type ClassificationAction =
29282
29000
  | io.flow.internal.v0.models.SingleClassificationAction
29283
29001
  | io.flow.internal.v0.models.BulkClassificationAction;
@@ -29330,8 +29048,8 @@ declare namespace io.flow.internal.v0.unions {
29330
29048
  type Event =
29331
29049
  | io.flow.internal.v0.models.AdjustedEstimatesUpserted
29332
29050
  | io.flow.internal.v0.models.AdjustedEstimatesDeleted
29333
- | io.flow.internal.v0.models.FinalEstimateUpserted
29334
- | io.flow.internal.v0.models.FinalEstimateDeleted
29051
+ | io.flow.internal.v0.models.ShippingEstimateUpserted
29052
+ | io.flow.internal.v0.models.ShippingEstimateDeleted
29335
29053
  | io.flow.internal.v0.models.AdyenAuthorizationDeleted
29336
29054
  | io.flow.internal.v0.models.AdyenAuthorizationUpserted
29337
29055
  | io.flow.internal.v0.models.AdyenCancelDeleted
@@ -29499,7 +29217,6 @@ declare namespace io.flow.internal.v0.unions {
29499
29217
  | io.flow.internal.v0.models.CenterDefaultsDeleted
29500
29218
  | io.flow.internal.v0.models.FulfillmentFallbacksUpserted
29501
29219
  | io.flow.internal.v0.models.FulfillmentFallbacksDeleted
29502
- | io.flow.internal.v0.models.PregeneratedRequestEvent
29503
29220
  | io.flow.internal.v0.models.QuoteUpserted
29504
29221
  | io.flow.internal.v0.models.QuoteDeleted
29505
29222
  | io.flow.internal.v0.models.AllItemsExport
@@ -29508,7 +29225,6 @@ declare namespace io.flow.internal.v0.unions {
29508
29225
  | io.flow.internal.v0.models.DutiedItemsExport
29509
29226
  | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport
29510
29227
  | io.flow.internal.v0.models.HarmonizationCodesImport
29511
- | io.flow.internal.v0.models.ItemClassificationCreated
29512
29228
  | io.flow.internal.v0.models.HarmonizeFullyRequestV2
29513
29229
  | io.flow.internal.v0.models.ImportCompleted
29514
29230
  | io.flow.internal.v0.models.ImportFailed
@@ -29537,8 +29253,6 @@ declare namespace io.flow.internal.v0.unions {
29537
29253
  | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
29538
29254
  | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted
29539
29255
  | io.flow.internal.v0.models.LocalizedItemPricesExportRequest
29540
- | io.flow.internal.v0.models.OptinPromptUpserted
29541
- | io.flow.internal.v0.models.OptinPromptDeleted
29542
29256
  | io.flow.internal.v0.models.OrderCombinedShipmentUpserted
29543
29257
  | io.flow.internal.v0.models.OrderCombinedShipmentDeleted
29544
29258
  | io.flow.internal.v0.models.OrderFulfillmentDeleted
@@ -29604,8 +29318,6 @@ declare namespace io.flow.internal.v0.unions {
29604
29318
  | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted
29605
29319
  | io.flow.internal.v0.models.RatecardServiceFeeUpserted
29606
29320
  | io.flow.internal.v0.models.RatecardServiceFeeDeleted
29607
- | io.flow.internal.v0.models.RatecardLaneAggregateUpserted
29608
- | io.flow.internal.v0.models.RatecardLaneAggregateDeleted
29609
29321
  | io.flow.internal.v0.models.RatecardRateLevelUpserted
29610
29322
  | io.flow.internal.v0.models.RatecardRateLevelDeleted
29611
29323
  | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted
@@ -30236,23 +29948,6 @@ export type BooleanFeatureValue =
30236
29948
  export type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookEvent;
30237
29949
  export type BrickWebhookEventResponse =
30238
29950
  io.flow.internal.v0.models.BrickWebhookEventResponse;
30239
- export type BrowserBundle = io.flow.internal.v0.models.BrowserBundle;
30240
- export type BrowserBundleCountryPickerForm =
30241
- io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
30242
- export type BrowserBundleError = io.flow.internal.v0.models.BrowserBundleError;
30243
- export type BrowserBundleErrorCode =
30244
- io.flow.internal.v0.enums.BrowserBundleErrorCode;
30245
- export type BrowserBundleFeatureForm =
30246
- io.flow.internal.v0.models.BrowserBundleFeatureForm;
30247
- export type BrowserBundleForm = io.flow.internal.v0.models.BrowserBundleForm;
30248
- export type BrowserBundleOptinForm =
30249
- io.flow.internal.v0.models.BrowserBundleOptinForm;
30250
- export type BrowserBundlePaymentMethod =
30251
- io.flow.internal.v0.models.BrowserBundlePaymentMethod;
30252
- export type BrowserBundlePaymentMethodForm =
30253
- io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
30254
- export type BrowserBundlePaymentMethods =
30255
- io.flow.internal.v0.models.BrowserBundlePaymentMethods;
30256
29951
  export type BulkClassificationAction =
30257
29952
  io.flow.internal.v0.models.BulkClassificationAction;
30258
29953
  export type BulkDutyUpdateValidationError =
@@ -30482,9 +30177,6 @@ export type CheckoutBehaviorShippingAddress =
30482
30177
  io.flow.internal.v0.models.CheckoutBehaviorShippingAddress;
30483
30178
  export type CheckoutBehaviorShippingMethod =
30484
30179
  io.flow.internal.v0.models.CheckoutBehaviorShippingMethod;
30485
- export type CheckoutBundle = io.flow.internal.v0.models.CheckoutBundle;
30486
- export type CheckoutBundleMetadata =
30487
- io.flow.internal.v0.models.CheckoutBundleMetadata;
30488
30180
  export type CheckoutConfiguration =
30489
30181
  io.flow.internal.v0.models.CheckoutConfiguration;
30490
30182
  export type CheckoutConfigurationDeleted =
@@ -30502,14 +30194,8 @@ export type CheckoutContentSummary =
30502
30194
  io.flow.internal.v0.models.CheckoutContentSummary;
30503
30195
  export type CheckoutError = io.flow.internal.v0.models.CheckoutError;
30504
30196
  export type CheckoutErrorCode = io.flow.internal.v0.enums.CheckoutErrorCode;
30505
- export type CheckoutFinalizeOrderForm =
30506
- io.flow.internal.v0.models.CheckoutFinalizeOrderForm;
30507
- export type CheckoutForm = io.flow.internal.v0.unions.CheckoutForm;
30508
30197
  export type CheckoutMarketingContent =
30509
30198
  io.flow.internal.v0.models.CheckoutMarketingContent;
30510
- export type CheckoutOrderForm = io.flow.internal.v0.models.CheckoutOrderForm;
30511
- export type CheckoutOrderNumberForm =
30512
- io.flow.internal.v0.models.CheckoutOrderNumberForm;
30513
30199
  export type CheckoutPayment = io.flow.internal.v0.models.CheckoutPayment;
30514
30200
  export type CheckoutPaymentContent =
30515
30201
  io.flow.internal.v0.models.CheckoutPaymentContent;
@@ -30520,24 +30206,9 @@ export type CheckoutPromptBehavior =
30520
30206
  export type CheckoutRedirect = io.flow.internal.v0.models.CheckoutRedirect;
30521
30207
  export type CheckoutRedirectMethod =
30522
30208
  io.flow.internal.v0.enums.CheckoutRedirectMethod;
30523
- export type CheckoutReferenceForm =
30524
- io.flow.internal.v0.models.CheckoutReferenceForm;
30525
30209
  export type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettings;
30526
30210
  export type CheckoutShippingMethodPromptBehavior =
30527
30211
  io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
30528
- export type CheckoutSourceOrderForm =
30529
- io.flow.internal.v0.models.CheckoutSourceOrderForm;
30530
- export type CheckoutSubmission = io.flow.internal.v0.models.CheckoutSubmission;
30531
- export type CheckoutSubmissionForm =
30532
- io.flow.internal.v0.models.CheckoutSubmissionForm;
30533
- export type CheckoutSubmitOrderBundle =
30534
- io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
30535
- export type CheckoutSubmitOrderBundles =
30536
- io.flow.internal.v0.unions.CheckoutSubmitOrderBundles;
30537
- export type CheckoutSubmitOrderForm =
30538
- io.flow.internal.v0.models.CheckoutSubmitOrderForm;
30539
- export type CheckoutSubmitOrderForms =
30540
- io.flow.internal.v0.unions.CheckoutSubmitOrderForms;
30541
30212
  export type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
30542
30213
  export type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
30543
30214
  export type Cipher = io.flow.internal.v0.models.Cipher;
@@ -30891,8 +30562,6 @@ export type ExclusionRuleExportRequest =
30891
30562
  io.flow.internal.v0.models.ExclusionRuleExportRequest;
30892
30563
  export type ExclusionRuleUpserted =
30893
30564
  io.flow.internal.v0.models.ExclusionRuleUpserted;
30894
- export type ExpectedOrderSummary =
30895
- io.flow.internal.v0.models.ExpectedOrderSummary;
30896
30565
  export type ExperienceExportRequest =
30897
30566
  io.flow.internal.v0.models.ExperienceExportRequest;
30898
30567
  export type ExperienceImportRequest =
@@ -30967,11 +30636,6 @@ export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
30967
30636
  export type Fee = io.flow.internal.v0.models.Fee;
30968
30637
  export type Fees = io.flow.internal.v0.models.Fees;
30969
30638
  export type FeesSource = io.flow.internal.v0.enums.FeesSource;
30970
- export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
30971
- export type FinalEstimateDeleted =
30972
- io.flow.internal.v0.models.FinalEstimateDeleted;
30973
- export type FinalEstimateUpserted =
30974
- io.flow.internal.v0.models.FinalEstimateUpserted;
30975
30639
  export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
30976
30640
  export type FinanceBankAccountOwner =
30977
30641
  io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -31105,8 +30769,6 @@ export type FulfillmentFallbacksDeleted =
31105
30769
  io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
31106
30770
  export type FulfillmentFallbacksUpserted =
31107
30771
  io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
31108
- export type FulfillmentInternalExperienceReference =
31109
- io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
31110
30772
  export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
31111
30773
  export type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
31112
30774
  export type FulfillmentProofExternalFulfillmentProofReference =
@@ -31257,8 +30919,6 @@ export type InternalTransactionDetails =
31257
30919
  io.flow.internal.v0.unions.InternalTransactionDetails;
31258
30920
  export type InternalTransactionDetailsCard =
31259
30921
  io.flow.internal.v0.models.InternalTransactionDetailsCard;
31260
- export type InvalidCheckoutData =
31261
- io.flow.internal.v0.models.InvalidCheckoutData;
31262
30922
  export type Invariant = io.flow.internal.v0.models.Invariant;
31263
30923
  export type InventoryItemWrapper =
31264
30924
  io.flow.internal.v0.models.InventoryItemWrapper;
@@ -31273,8 +30933,6 @@ export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
31273
30933
  export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
31274
30934
  export type ItemClassificationAction =
31275
30935
  io.flow.internal.v0.enums.ItemClassificationAction;
31276
- export type ItemClassificationCreated =
31277
- io.flow.internal.v0.models.ItemClassificationCreated;
31278
30936
  export type ItemClassificationForm =
31279
30937
  io.flow.internal.v0.models.ItemClassificationForm;
31280
30938
  export type ItemClassificationStatus =
@@ -31585,11 +31243,8 @@ export type OptinPromptCheckoutDisplay =
31585
31243
  export type OptinPromptCopy = io.flow.internal.v0.models.OptinPromptCopy;
31586
31244
  export type OptinPromptCopyForm =
31587
31245
  io.flow.internal.v0.models.OptinPromptCopyForm;
31588
- export type OptinPromptDeleted = io.flow.internal.v0.models.OptinPromptDeleted;
31589
31246
  export type OptinPromptDisplay = io.flow.internal.v0.unions.OptinPromptDisplay;
31590
31247
  export type OptinPromptForm = io.flow.internal.v0.models.OptinPromptForm;
31591
- export type OptinPromptUpserted =
31592
- io.flow.internal.v0.models.OptinPromptUpserted;
31593
31248
  export type OrderAction = io.flow.internal.v0.enums.OrderAction;
31594
31249
  export type OrderActionForm = io.flow.internal.v0.unions.OrderActionForm;
31595
31250
  export type OrderActionability = io.flow.internal.v0.models.OrderActionability;
@@ -31635,7 +31290,6 @@ export type OrderFulfillmentUpserted =
31635
31290
  export type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
31636
31291
  export type OrderNote = io.flow.internal.v0.models.OrderNote;
31637
31292
  export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
31638
- export type OrderParameters = io.flow.internal.v0.models.OrderParameters;
31639
31293
  export type OrderPaymentAuthorization =
31640
31294
  io.flow.internal.v0.models.OrderPaymentAuthorization;
31641
31295
  export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
@@ -31967,9 +31621,6 @@ export type PlatformFeePercentageTier =
31967
31621
  export type Prediction = io.flow.internal.v0.models.Prediction;
31968
31622
  export type PreferredBillingSchedule =
31969
31623
  io.flow.internal.v0.enums.PreferredBillingSchedule;
31970
- export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
31971
- export type PregeneratedRequestEvent =
31972
- io.flow.internal.v0.models.PregeneratedRequestEvent;
31973
31624
  export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
31974
31625
  export type PrioritizedCenterReference =
31975
31626
  io.flow.internal.v0.models.PrioritizedCenterReference;
@@ -32064,8 +31715,6 @@ export type PublicHub = io.flow.internal.v0.models.PublicHub;
32064
31715
  export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
32065
31716
  export type Quote = io.flow.internal.v0.models.Quote;
32066
31717
  export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
32067
- export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
32068
- export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
32069
31718
  export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
32070
31719
  export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
32071
31720
  export type RateAndRuleItemForm =
@@ -32117,12 +31766,6 @@ export type RatecardInternalServiceFee =
32117
31766
  io.flow.internal.v0.models.RatecardInternalServiceFee;
32118
31767
  export type RatecardInternalSummary =
32119
31768
  io.flow.internal.v0.models.RatecardInternalSummary;
32120
- export type RatecardLaneAggregate =
32121
- io.flow.internal.v0.models.RatecardLaneAggregate;
32122
- export type RatecardLaneAggregateDeleted =
32123
- io.flow.internal.v0.models.RatecardLaneAggregateDeleted;
32124
- export type RatecardLaneAggregateUpserted =
32125
- io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
32126
31769
  export type RatecardLanesImportRequest =
32127
31770
  io.flow.internal.v0.models.RatecardLanesImportRequest;
32128
31771
  export type RatecardRateLevelDeleted =
@@ -32391,6 +32034,10 @@ export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
32391
32034
  export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
32392
32035
  export type SfExpress = io.flow.internal.v0.models.SfExpress;
32393
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;
32394
32041
  export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
32395
32042
  export type ShippingMethodReference =
32396
32043
  io.flow.internal.v0.models.ShippingMethodReference;
@@ -32516,6 +32163,8 @@ export type ShopifyMarketsWebhookRegistrationDeleted =
32516
32163
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
32517
32164
  export type ShopifyMarketsWebhookRegistrationUpserted =
32518
32165
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
32166
+ export type ShopifyMerchantPlan =
32167
+ io.flow.internal.v0.models.ShopifyMerchantPlan;
32519
32168
  export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
32520
32169
  export type ShopifyMonitoringCarrierService =
32521
32170
  io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
@@ -32576,6 +32225,7 @@ export type ShopifyPartnerWebhookRaw =
32576
32225
  io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
32577
32226
  export type ShopifyPaymentSummary =
32578
32227
  io.flow.internal.v0.models.ShopifyPaymentSummary;
32228
+ export type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
32579
32229
  export type ShopifyProductBundle =
32580
32230
  io.flow.internal.v0.models.ShopifyProductBundle;
32581
32231
  export type ShopifyProductBundleDeleted =