@flowio/api-internal-prop-types 9.24.110 → 9.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.
@@ -1296,6 +1296,7 @@ declare namespace io.flow.payment.v0.enums {
1296
1296
  type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
1297
1297
  type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
1298
1298
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
1299
+ type PaymentFeeType = 'fx' | 'mor';
1299
1300
  type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
1300
1301
  type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
1301
1302
  type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
@@ -1494,6 +1495,7 @@ declare namespace io.flow.payment.v0.models {
1494
1495
  readonly 'attributes'?: Record<string, string>;
1495
1496
  readonly 'status'?: io.flow.payment.v0.enums.CaptureStatus;
1496
1497
  readonly 'base'?: io.flow.common.v0.models.Money;
1498
+ readonly 'fees'?: io.flow.payment.v0.models.PaymentFee[];
1497
1499
  }
1498
1500
 
1499
1501
  interface CaptureError {
@@ -1738,6 +1740,12 @@ declare namespace io.flow.payment.v0.models {
1738
1740
  readonly 'year': number;
1739
1741
  }
1740
1742
 
1743
+ interface ExternalCard {
1744
+ readonly 'discriminator': 'external_card';
1745
+ readonly 'id': string;
1746
+ readonly 'type'?: io.flow.payment.v0.enums.CardType;
1747
+ }
1748
+
1741
1749
  interface GooglePayAuthorizationPayload {
1742
1750
  readonly 'discriminator': 'google_pay_authorization_payload';
1743
1751
  readonly 'payload': any/*object*/;
@@ -1874,6 +1882,12 @@ declare namespace io.flow.payment.v0.models {
1874
1882
  readonly 'codes': io.flow.payment.v0.enums.PaymentErrorCode[];
1875
1883
  }
1876
1884
 
1885
+ interface PaymentFee {
1886
+ readonly 'type': io.flow.payment.v0.enums.PaymentFeeType;
1887
+ readonly 'money': io.flow.common.v0.models.Money;
1888
+ readonly 'base'?: io.flow.common.v0.models.Money;
1889
+ }
1890
+
1877
1891
  interface PaymentPaymentRequestReference {
1878
1892
  readonly 'discriminator': 'payment_request';
1879
1893
  readonly 'payment_request_id': string;
@@ -2269,7 +2283,7 @@ declare namespace io.flow.payment.v0.unions {
2269
2283
  type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
2270
2284
  type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
2271
2285
  type DeviceDetails = (io.flow.payment.v0.models.DeviceDetailsBrowser);
2272
- type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
2286
+ type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary | io.flow.payment.v0.models.ExternalCard);
2273
2287
  type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
2274
2288
  type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
2275
2289
  type GatewayAuthenticationDataForm = (io.flow.payment.v0.models.StripeAuthenticationDataForm);
@@ -2324,6 +2338,7 @@ declare namespace io.flow.stripe.v0.enums {
2324
2338
  type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
2325
2339
  type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
2326
2340
  type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
2341
+ type CapabilityStatus = 'active' | 'disabled' | 'inactive' | 'pending' | 'unrequested';
2327
2342
  type CaptureMethod = 'automatic' | 'manual';
2328
2343
  type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
2329
2344
  type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
@@ -2331,6 +2346,9 @@ declare namespace io.flow.stripe.v0.enums {
2331
2346
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
2332
2347
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
2333
2348
  type ConfirmationMethod = 'automatic' | 'manual';
2349
+ type ConnectReportReportingCategory = 'charge' | 'refund' | 'payout_reversal' | 'transfer' | 'transfer_reversal';
2350
+ type ConnectReportShopPlan = 'shopify_plus' | 'standard';
2351
+ type ConnectReportTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
2334
2352
  type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
2335
2353
  type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
2336
2354
  type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
@@ -2341,7 +2359,7 @@ declare namespace io.flow.stripe.v0.enums {
2341
2359
  type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
2342
2360
  type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
2343
2361
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
2344
- type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
2362
+ type EventType = 'capability.updated' | 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
2345
2363
  type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
2346
2364
  type FeatureAvailability = 'available' | 'unavailable';
2347
2365
  type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
@@ -2433,6 +2451,17 @@ declare namespace io.flow.stripe.v0.models {
2433
2451
  readonly 'type': io.flow.stripe.v0.enums.ApplePayType;
2434
2452
  }
2435
2453
 
2454
+ interface Capability {
2455
+ readonly 'id': string;
2456
+ readonly 'account': string;
2457
+ readonly 'requested': boolean;
2458
+ readonly 'requirements': any/*object*/;
2459
+ readonly 'status': io.flow.stripe.v0.enums.CapabilityStatus;
2460
+ readonly 'object': string;
2461
+ readonly 'future_requirements': any/*object*/;
2462
+ readonly 'requested_at'?: number;
2463
+ }
2464
+
2436
2465
  interface Card {
2437
2466
  readonly 'id': string;
2438
2467
  readonly 'object': string;
@@ -2576,6 +2605,46 @@ declare namespace io.flow.stripe.v0.models {
2576
2605
  readonly 'status': io.flow.stripe.v0.enums.CodeVerificationStatus;
2577
2606
  }
2578
2607
 
2608
+ interface ConnectReportRecord {
2609
+ readonly 'created_utc': string;
2610
+ readonly 'charge_id'?: string;
2611
+ readonly 'payment_intent_id'?: string;
2612
+ readonly 'gross': number;
2613
+ readonly 'fee': number;
2614
+ readonly 'net': number;
2615
+ readonly 'currency': string;
2616
+ readonly 'connected_account': string;
2617
+ readonly 'reporting_category': io.flow.stripe.v0.enums.ConnectReportReportingCategory;
2618
+ readonly 'dispute_reason'?: io.flow.stripe.v0.enums.DisputeReason;
2619
+ readonly 'available_on_utc': string;
2620
+ readonly 'automatic_payout_effective_at_utc'?: string;
2621
+ readonly 'source_id'?: string;
2622
+ readonly 'customer_facing_amount'?: number;
2623
+ readonly 'customer_facing_currency'?: string;
2624
+ readonly 'payment_method_type'?: string;
2625
+ readonly 'card_brand'?: string;
2626
+ readonly 'statement_descriptor'?: string;
2627
+ readonly 'payment_metadata'?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
2628
+ readonly 'transfer_metadata'?: any/*object*/;
2629
+ }
2630
+
2631
+ interface ConnectReportRecordPaymentMetadata {
2632
+ readonly 'shop_id'?: number;
2633
+ readonly 'shop_plan'?: io.flow.stripe.v0.enums.ConnectReportShopPlan;
2634
+ readonly 'checkout_id'?: string;
2635
+ readonly 'order_id'?: number;
2636
+ readonly 'order_transaction_id'?: number;
2637
+ readonly 'transfer_type'?: io.flow.stripe.v0.enums.ConnectReportTransferType;
2638
+ readonly 'transfer_exchange_rate'?: number;
2639
+ readonly 'charge_total'?: number;
2640
+ readonly 'charge_currency'?: string;
2641
+ readonly 'charge_exchange_rate'?: number;
2642
+ readonly 'duties'?: number;
2643
+ readonly 'import_taxes'?: number;
2644
+ readonly 'mor_fee'?: number;
2645
+ readonly 'fx_fee'?: number;
2646
+ }
2647
+
2579
2648
  interface Customer {
2580
2649
  readonly 'id': string;
2581
2650
  readonly 'object': string;
@@ -4826,7 +4895,7 @@ declare namespace io.flow.brickftp.v0.unions {
4826
4895
 
4827
4896
  declare namespace io.flow.units.v0.enums {
4828
4897
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
4829
- type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
4898
+ type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
4830
4899
  type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
4831
4900
  }
4832
4901
 
@@ -5621,6 +5690,12 @@ declare namespace io.flow.shopify.external.v0.models {
5621
5690
  interface GraphqlMetaobject {
5622
5691
  readonly 'id': string;
5623
5692
  readonly 'displayName': string;
5693
+ readonly 'fields': io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
5694
+ }
5695
+
5696
+ interface GraphqlMetaobjectField {
5697
+ readonly 'key': string;
5698
+ readonly 'value'?: string;
5624
5699
  }
5625
5700
 
5626
5701
  interface GraphqlOption {
@@ -7607,7 +7682,7 @@ declare namespace io.flow.common.v0.enums {
7607
7682
  type RoundingType = 'pattern' | 'multiple';
7608
7683
  type ScheduleExceptionStatus = 'Open' | 'Closed';
7609
7684
  type SortDirection = 'ascending' | 'descending';
7610
- type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
7685
+ type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
7611
7686
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
7612
7687
  type UserStatus = 'pending' | 'active' | 'inactive';
7613
7688
  type ValueAddedService = 'Hazardous Material';
@@ -8358,7 +8433,7 @@ declare namespace io.flow.experience.v0.enums {
8358
8433
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
8359
8434
  type OrderStatus = 'open' | 'submitted';
8360
8435
  type OrderStorage = 'do_not_persist' | 'persist';
8361
- type OrderType = 'standard' | 'replacement';
8436
+ type OrderType = 'standard' | 'replacement' | 'edit';
8362
8437
  type OrganizationPaymentMethodTag = 'deny';
8363
8438
  type PaymentMethodRuleContentKey = 'description';
8364
8439
  type PriceFacetBoundary = 'min' | 'max';
@@ -9505,6 +9580,7 @@ declare namespace io.flow.ratecard.v0.models {
9505
9580
  interface DutiesTaxesPaidSurchargeServiceFee {
9506
9581
  readonly 'discriminator': 'duties_taxes_paid_surcharge_service_fee';
9507
9582
  readonly 'amount': io.flow.common.v0.models.Money;
9583
+ readonly 'destination_countries'?: string[];
9508
9584
  readonly 'starts_at'?: string;
9509
9585
  readonly 'ends_at'?: string;
9510
9586
  }
@@ -11553,7 +11629,7 @@ declare namespace io.flow.billing.v0.enums {
11553
11629
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
11554
11630
  type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
11555
11631
  type StatementAttachmentType = 'csv';
11556
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
11632
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
11557
11633
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
11558
11634
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
11559
11635
  }
@@ -13179,53 +13255,6 @@ declare namespace io.flow.merchant.of.record.v0.enums {
13179
13255
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
13180
13256
  }
13181
13257
 
13182
- declare namespace io.flow.checkout.v0.models {
13183
- interface CheckoutToken {
13184
- readonly 'id': string;
13185
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
13186
- readonly 'checkout': io.flow.common.v0.models.CheckoutReference;
13187
- readonly 'order': io.flow.experience.v0.models.OrderNumberReference;
13188
- readonly 'urls': io.flow.checkout.v0.models.CheckoutUrls;
13189
- readonly 'expires_at': string;
13190
- readonly 'session': io.flow.common.v0.models.SessionReference;
13191
- readonly 'customer'?: io.flow.common.v0.models.CustomerReference;
13192
- }
13193
-
13194
- interface CheckoutTokenOrderForm {
13195
- readonly 'discriminator': 'checkout_token_order_form';
13196
- readonly 'order_form': io.flow.experience.v0.models.OrderForm;
13197
- readonly 'customer'?: io.flow.customer.v0.models.CustomerForm;
13198
- readonly 'address_book'?: io.flow.customer.v0.models.CustomerAddressBookForm;
13199
- readonly 'payment_sources'?: io.flow.payment.v0.unions.PaymentSourceForm[];
13200
- readonly 'session_id': string;
13201
- readonly 'urls'?: io.flow.checkout.v0.models.CheckoutUrlsForm;
13202
- readonly 'identifiers'?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
13203
- }
13204
-
13205
- interface CheckoutTokenReferenceForm {
13206
- readonly 'discriminator': 'checkout_token_reference_form';
13207
- readonly 'order_number': string;
13208
- readonly 'session_id': string;
13209
- readonly 'urls': io.flow.checkout.v0.models.CheckoutUrlsForm;
13210
- }
13211
-
13212
- interface CheckoutUrls {
13213
- readonly 'continue_shopping'?: string;
13214
- readonly 'confirmation'?: string;
13215
- readonly 'invalid_checkout'?: string;
13216
- }
13217
-
13218
- interface CheckoutUrlsForm {
13219
- readonly 'continue_shopping'?: string;
13220
- readonly 'confirmation'?: string;
13221
- readonly 'invalid_checkout'?: string;
13222
- }
13223
- }
13224
-
13225
- declare namespace io.flow.checkout.v0.unions {
13226
- type CheckoutTokenForm = (io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm);
13227
- }
13228
-
13229
13258
  declare namespace io.flow.organization.onboarding.state.v0.enums {
13230
13259
  type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
13231
13260
  type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
@@ -13706,8 +13735,7 @@ declare namespace io.flow.internal.v0.enums {
13706
13735
  type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
13707
13736
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
13708
13737
  type BillingTransactionStatus = 'pending_proof' | 'posted';
13709
- type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'tax_duty_delta';
13710
- type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
13738
+ type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share';
13711
13739
  type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
13712
13740
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
13713
13741
  type CarrierChargeType = 'label' | 'tax' | 'other';
@@ -13770,7 +13798,7 @@ declare namespace io.flow.internal.v0.enums {
13770
13798
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
13771
13799
  type EmptyAttribute = 'irrelevant';
13772
13800
  type ErpFileType = 'vendor';
13773
- type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
13801
+ type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
13774
13802
  type ExperienceImportType = 'experience_with_settings';
13775
13803
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
13776
13804
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -13789,8 +13817,9 @@ declare namespace io.flow.internal.v0.enums {
13789
13817
  type FtpProtocol = 'sftp' | 'ftp';
13790
13818
  type GoogleAnalyticsPlugin = 'ec';
13791
13819
  type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
13792
- type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
13820
+ type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
13793
13821
  type HttpMethod = 'get' | 'post';
13822
+ type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
13794
13823
  type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
13795
13824
  type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
13796
13825
  type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
@@ -13811,6 +13840,7 @@ declare namespace io.flow.internal.v0.enums {
13811
13840
  type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
13812
13841
  type ManualReviewRuleStatus = 'active' | 'archived';
13813
13842
  type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
13843
+ type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
13814
13844
  type MixedBagWeight = '0' | '1' | '2';
13815
13845
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
13816
13846
  type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
@@ -13852,12 +13882,13 @@ declare namespace io.flow.internal.v0.enums {
13852
13882
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
13853
13883
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
13854
13884
  type PromptTarget = 'browse' | 'checkout';
13855
- type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
13856
13885
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
13857
13886
  type RateSource = 'calculated' | 'market';
13858
13887
  type ReboundConfigurationStatus = 'active' | 'inactive';
13859
13888
  type RedirectReason = 'three_d_secure';
13860
13889
  type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
13890
+ type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
13891
+ type ReportFileType = 'stripe_connect_report';
13861
13892
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
13862
13893
  type ReportPaymentType = 'credit' | 'debit';
13863
13894
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
@@ -13881,6 +13912,7 @@ declare namespace io.flow.internal.v0.enums {
13881
13912
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
13882
13913
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
13883
13914
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
13915
+ type ShopifyPlanType = 'standard' | 'shopify_plus';
13884
13916
  type ShopifyPromotionBehavior = 'disable_discount_codes';
13885
13917
  type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
13886
13918
  type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
@@ -14177,29 +14209,6 @@ declare namespace io.flow.internal.v0.models {
14177
14209
  readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
14178
14210
  }
14179
14211
 
14180
- interface AdjustedEstimates {
14181
- readonly 'id': string;
14182
- readonly 'organization_id': string;
14183
- readonly 'label_id': string;
14184
- readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
14185
- }
14186
-
14187
- interface AdjustedEstimatesDeleted {
14188
- readonly 'discriminator': 'adjusted_estimates_deleted';
14189
- readonly 'event_id': string;
14190
- readonly 'timestamp': string;
14191
- readonly 'organization': string;
14192
- readonly 'id': string;
14193
- }
14194
-
14195
- interface AdjustedEstimatesUpserted {
14196
- readonly 'discriminator': 'adjusted_estimates_upserted';
14197
- readonly 'event_id': string;
14198
- readonly 'timestamp': string;
14199
- readonly 'organization': string;
14200
- readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
14201
- }
14202
-
14203
14212
  interface AdjustmentAmountFixed {
14204
14213
  readonly 'discriminator': 'fixed';
14205
14214
  readonly 'amount': io.flow.common.v0.models.Money;
@@ -15198,52 +15207,6 @@ declare namespace io.flow.internal.v0.models {
15198
15207
  readonly 'status': string;
15199
15208
  }
15200
15209
 
15201
- interface BrowserBundle {
15202
- readonly 'country_picker': io.flow.internal.v0.models.CountryPickerData;
15203
- readonly 'optins': io.flow.internal.v0.models.OptinPrompt[];
15204
- readonly 'features': io.flow.internal.v0.models.FeatureValueResult;
15205
- readonly 'payment_methods'?: io.flow.internal.v0.models.BrowserBundlePaymentMethods;
15206
- }
15207
-
15208
- interface BrowserBundleCountryPickerForm {
15209
- readonly 'country'?: string;
15210
- readonly 'ip'?: string;
15211
- }
15212
-
15213
- interface BrowserBundleError {
15214
- readonly 'code': io.flow.internal.v0.enums.BrowserBundleErrorCode;
15215
- readonly 'messages': string[];
15216
- }
15217
-
15218
- interface BrowserBundleFeatureForm {
15219
- readonly 'keys': string[];
15220
- readonly 'context': io.flow.internal.v0.models.FeatureContextForm;
15221
- }
15222
-
15223
- interface BrowserBundleForm {
15224
- readonly 'optin'?: io.flow.internal.v0.models.BrowserBundleOptinForm;
15225
- readonly 'country_picker'?: io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
15226
- readonly 'feature'?: io.flow.internal.v0.models.BrowserBundleFeatureForm;
15227
- readonly 'payment_method'?: io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
15228
- }
15229
-
15230
- interface BrowserBundleOptinForm {
15231
- readonly 'country': string;
15232
- }
15233
-
15234
- interface BrowserBundlePaymentMethod {
15235
- readonly 'id': string;
15236
- }
15237
-
15238
- interface BrowserBundlePaymentMethodForm {
15239
- readonly 'experience_key': string;
15240
- readonly 'country': string;
15241
- }
15242
-
15243
- interface BrowserBundlePaymentMethods {
15244
- readonly 'displayed'?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
15245
- }
15246
-
15247
15210
  interface BulkClassificationAction {
15248
15211
  readonly 'discriminator': 'bulk';
15249
15212
  readonly 'actions': io.flow.internal.v0.models.SingleClassificationAction[];
@@ -16107,29 +16070,6 @@ declare namespace io.flow.internal.v0.models {
16107
16070
  readonly 'prompt': io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
16108
16071
  }
16109
16072
 
16110
- interface CheckoutBundle {
16111
- readonly 'cart'?: io.flow.shopify.v0.models.ShopifyCart;
16112
- readonly 'order': io.flow.experience.v0.models.Order;
16113
- readonly 'order_errors'?: io.flow.experience.v0.models.OrderError[];
16114
- readonly 'checkout'?: io.flow.internal.v0.models.CheckoutContentSummary;
16115
- readonly 'optins': io.flow.internal.v0.models.OptinPrompt[];
16116
- readonly 'destinations': io.flow.reference.v0.models.Country[];
16117
- readonly 'features': io.flow.internal.v0.models.FeatureValueResult;
16118
- readonly 'provinces': io.flow.reference.v0.models.Province[];
16119
- readonly 'checkout_items': io.flow.experience.v0.models.CheckoutItemContent[];
16120
- readonly 'metadata'?: io.flow.internal.v0.models.CheckoutBundleMetadata;
16121
- readonly 'configuration'?: io.flow.internal.v0.models.CheckoutConfiguration;
16122
- readonly 'address_configurations'?: io.flow.experience.v0.models.AddressConfiguration[];
16123
- readonly 'customer'?: io.flow.customer.v0.models.Customer;
16124
- readonly 'address_book'?: io.flow.customer.v0.models.CustomerAddressBook;
16125
- readonly 'payment_sources'?: io.flow.payment.v0.unions.PaymentSource[];
16126
- readonly 'customer_bundle'?: io.flow.customer.v0.models.CustomerBundle;
16127
- }
16128
-
16129
- interface CheckoutBundleMetadata {
16130
- readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
16131
- }
16132
-
16133
16073
  interface CheckoutConfiguration {
16134
16074
  readonly 'id': string;
16135
16075
  readonly 'behavior': io.flow.internal.v0.models.CheckoutBehavior;
@@ -16193,41 +16133,10 @@ declare namespace io.flow.internal.v0.models {
16193
16133
  readonly 'redirect'?: io.flow.internal.v0.models.CheckoutRedirect;
16194
16134
  }
16195
16135
 
16196
- interface CheckoutFinalizeOrderForm {
16197
- readonly 'expected_order_summary': io.flow.internal.v0.models.ExpectedOrderSummary;
16198
- readonly 'order_put_form': io.flow.experience.v0.models.OrderPutForm;
16199
- }
16200
-
16201
16136
  interface CheckoutMarketingContent {
16202
16137
  readonly 'optins': io.flow.internal.v0.models.Checkbox[];
16203
16138
  }
16204
16139
 
16205
- interface CheckoutOrderForm {
16206
- readonly 'discriminator': 'order';
16207
- readonly 'organization': string;
16208
- readonly 'order': io.flow.experience.v0.models.OrderForm;
16209
- readonly 'customer'?: io.flow.customer.v0.models.CustomerForm;
16210
- readonly 'address_book'?: io.flow.customer.v0.models.CustomerAddressBookForm;
16211
- readonly 'payment_sources'?: io.flow.payment.v0.unions.PaymentSourceForm[];
16212
- readonly 'urls'?: io.flow.checkout.v0.models.CheckoutUrlsForm;
16213
- readonly 'identifiers'?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
16214
- readonly 'feature_keys'?: string[];
16215
- readonly 'order_parameters'?: io.flow.internal.v0.models.OrderParameters;
16216
- }
16217
-
16218
- interface CheckoutOrderNumberForm {
16219
- readonly 'discriminator': 'order_number';
16220
- readonly 'organization': string;
16221
- readonly 'order_number': string;
16222
- readonly 'customer'?: io.flow.customer.v0.models.CustomerForm;
16223
- readonly 'address_book'?: io.flow.customer.v0.models.CustomerAddressBookForm;
16224
- readonly 'payment_sources'?: io.flow.payment.v0.unions.PaymentSourceForm[];
16225
- readonly 'urls'?: io.flow.checkout.v0.models.CheckoutUrlsForm;
16226
- readonly 'identifiers'?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
16227
- readonly 'feature_keys'?: string[];
16228
- readonly 'order_parameters'?: io.flow.internal.v0.models.OrderParameters;
16229
- }
16230
-
16231
16140
  interface CheckoutPayment {
16232
16141
  readonly 'authorizations': io.flow.payment.v0.unions.Authorization[];
16233
16142
  readonly 'sources': io.flow.payment.v0.unions.PaymentSource[];
@@ -16252,15 +16161,6 @@ declare namespace io.flow.internal.v0.models {
16252
16161
  readonly 'body'?: string;
16253
16162
  }
16254
16163
 
16255
- interface CheckoutReferenceForm {
16256
- readonly 'order_number': string;
16257
- readonly 'order_form': io.flow.experience.v0.models.OrderPutForm;
16258
- readonly 'order_geo': io.flow.experience.v0.models.OrderGeo;
16259
- readonly 'session_id': string;
16260
- readonly 'urls'?: io.flow.checkout.v0.models.CheckoutUrlsForm;
16261
- readonly 'identifiers'?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
16262
- }
16263
-
16264
16164
  interface CheckoutSettings {
16265
16165
  readonly 'session_persistence_timeout'?: io.flow.common.v0.models.Duration;
16266
16166
  readonly 'session_persistence_attribute_keys'?: string[];
@@ -16269,35 +16169,6 @@ declare namespace io.flow.internal.v0.models {
16269
16169
  readonly 'assets'?: io.flow.internal.v0.models.CheckoutAsset[];
16270
16170
  }
16271
16171
 
16272
- interface CheckoutSourceOrderForm {
16273
- readonly 'source_order_number': string;
16274
- readonly 'feature_q'?: string;
16275
- }
16276
-
16277
- interface CheckoutSubmission {
16278
- readonly 'builder': io.flow.experience.v0.models.OrderBuilder;
16279
- readonly 'action'?: io.flow.payment.v0.unions.AuthorizationResultAction;
16280
- }
16281
-
16282
- interface CheckoutSubmissionForm {
16283
- readonly 'authorization_form'?: io.flow.payment.v0.unions.AuthorizationForm;
16284
- readonly 'expected_order_summary'?: io.flow.internal.v0.models.ExpectedOrderSummary;
16285
- readonly 'feature_keys'?: string[];
16286
- }
16287
-
16288
- interface CheckoutSubmitOrderBundle {
16289
- readonly 'discriminator': 'checkout_submit_order_bundle';
16290
- readonly 'order'?: io.flow.experience.v0.models.Order;
16291
- readonly 'redirect'?: io.flow.payment.v0.unions.AuthorizationResultAction;
16292
- readonly 'errors'?: io.flow.experience.v0.models.OrderError[];
16293
- }
16294
-
16295
- interface CheckoutSubmitOrderForm {
16296
- readonly 'discriminator': 'checkout_submit_order_form';
16297
- readonly 'authorization_form'?: io.flow.payment.v0.unions.AuthorizationForm;
16298
- readonly 'expected_order_summary'?: io.flow.internal.v0.models.ExpectedOrderSummary;
16299
- }
16300
-
16301
16172
  interface CheckoutUrl {
16302
16173
  readonly 'url': string;
16303
16174
  readonly 'type': io.flow.internal.v0.enums.CheckoutUrlType;
@@ -17675,10 +17546,6 @@ declare namespace io.flow.internal.v0.models {
17675
17546
  readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
17676
17547
  }
17677
17548
 
17678
- interface ExpectedOrderSummary {
17679
- readonly 'total'?: io.flow.common.v0.models.Money;
17680
- }
17681
-
17682
17549
  interface ExperienceExportRequest {
17683
17550
  readonly 'discriminator': 'experience_export_request';
17684
17551
  readonly 'event_id': string;
@@ -17945,29 +17812,6 @@ declare namespace io.flow.internal.v0.models {
17945
17812
  readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
17946
17813
  }
17947
17814
 
17948
- interface FinalEstimate {
17949
- readonly 'id': string;
17950
- readonly 'organization_id': string;
17951
- readonly 'label_id': string;
17952
- readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
17953
- }
17954
-
17955
- interface FinalEstimateDeleted {
17956
- readonly 'discriminator': 'final_estimate_deleted';
17957
- readonly 'event_id': string;
17958
- readonly 'timestamp': string;
17959
- readonly 'organization': string;
17960
- readonly 'id': string;
17961
- }
17962
-
17963
- interface FinalEstimateUpserted {
17964
- readonly 'discriminator': 'final_estimate_upserted';
17965
- readonly 'event_id': string;
17966
- readonly 'timestamp': string;
17967
- readonly 'organization': string;
17968
- readonly 'final_estimate': io.flow.internal.v0.models.FinalEstimate;
17969
- }
17970
-
17971
17815
  interface FinanceBankAccount {
17972
17816
  readonly 'id': string;
17973
17817
  readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
@@ -18510,19 +18354,6 @@ declare namespace io.flow.internal.v0.models {
18510
18354
  readonly 'vat_registration_number': string;
18511
18355
  }
18512
18356
 
18513
- interface FulfillmentCancel {
18514
- readonly 'discriminator': 'fulfillment_cancel';
18515
- readonly 'event_id': string;
18516
- readonly 'timestamp': string;
18517
- readonly 'organization': string;
18518
- readonly 'order_number': string;
18519
- readonly 'order': io.flow.experience.v0.models.Order;
18520
- readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
18521
- readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
18522
- readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
18523
- readonly 'cancelled_lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
18524
- }
18525
-
18526
18357
  interface FulfillmentCarrier {
18527
18358
  readonly 'id': string;
18528
18359
  readonly 'service_id'?: string;
@@ -18560,11 +18391,6 @@ declare namespace io.flow.internal.v0.models {
18560
18391
  readonly 'fulfillment_fallbacks': io.flow.internal.v0.models.FulfillmentFallbacks;
18561
18392
  }
18562
18393
 
18563
- interface FulfillmentInternalExperienceReference {
18564
- readonly 'id': string;
18565
- readonly 'key': string;
18566
- }
18567
-
18568
18394
  interface FulfillmentOrigin {
18569
18395
  readonly 'country': string;
18570
18396
  readonly 'province_code'?: string;
@@ -18614,14 +18440,6 @@ declare namespace io.flow.internal.v0.models {
18614
18440
  readonly 'id': string;
18615
18441
  }
18616
18442
 
18617
- interface FulfillmentShipmentTracking {
18618
- readonly 'fulfillment_key': string;
18619
- readonly 'flow_tracking_number': string;
18620
- readonly 'carrier_tracking_number'?: string;
18621
- readonly 'carrier_tracking_url'?: string;
18622
- readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
18623
- }
18624
-
18625
18443
  interface FulfillmentShopperBreakdown {
18626
18444
  readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
18627
18445
  readonly 'fees': io.flow.internal.v0.models.ReportingShopperFees;
@@ -19059,10 +18877,6 @@ declare namespace io.flow.internal.v0.models {
19059
18877
  readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
19060
18878
  }
19061
18879
 
19062
- interface InvalidCheckoutData {
19063
- readonly 'order': io.flow.experience.v0.models.OrderPutForm;
19064
- }
19065
-
19066
18880
  interface Invariant {
19067
18881
  readonly 'name': string;
19068
18882
  readonly 'count': number;
@@ -19165,18 +18979,6 @@ declare namespace io.flow.internal.v0.models {
19165
18979
  readonly 'model_id': string;
19166
18980
  }
19167
18981
 
19168
- interface ItemClassificationCreated {
19169
- readonly 'discriminator': 'item_classification_created';
19170
- readonly 'event_id': string;
19171
- readonly 'timestamp': string;
19172
- readonly 'organization': string;
19173
- readonly 'item_number': string;
19174
- readonly 'model_id': string;
19175
- readonly 'labels_prediction': io.flow.internal.v0.models.LabelsPrediction;
19176
- readonly 'action': io.flow.internal.v0.enums.SuggestionAction;
19177
- readonly 'prediction_score'?: number;
19178
- }
19179
-
19180
18982
  interface ItemClassificationForm {
19181
18983
  readonly 'organization': string;
19182
18984
  readonly 'uid': string;
@@ -19384,18 +19186,6 @@ declare namespace io.flow.internal.v0.models {
19384
19186
  readonly 'values': string[];
19385
19187
  }
19386
19188
 
19387
- interface ItemsShipped {
19388
- readonly 'discriminator': 'items_shipped';
19389
- readonly 'event_id': string;
19390
- readonly 'timestamp': string;
19391
- readonly 'organization': string;
19392
- readonly 'order_number': string;
19393
- readonly 'order': io.flow.experience.v0.models.Order;
19394
- readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
19395
- readonly 'flow_tracking_number': string;
19396
- readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
19397
- }
19398
-
19399
19189
  interface JeanDemoItem {
19400
19190
  readonly 'id': string;
19401
19191
  readonly 'name': string;
@@ -19463,14 +19253,31 @@ declare namespace io.flow.internal.v0.models {
19463
19253
  readonly 'service_id'?: string;
19464
19254
  readonly 'carrier_tracking_number'?: string;
19465
19255
  readonly 'flow_tracking_number'?: string;
19256
+ readonly 'label_id'?: string;
19466
19257
  readonly 'errors': string[];
19467
19258
  }
19468
19259
 
19260
+ interface LabelCreationJobDeleted {
19261
+ readonly 'discriminator': 'label_creation_job_deleted';
19262
+ readonly 'event_id': string;
19263
+ readonly 'timestamp': string;
19264
+ readonly 'organization': string;
19265
+ readonly 'id': string;
19266
+ }
19267
+
19469
19268
  interface LabelCreationJobSummary {
19470
19269
  readonly 'reference_id': string;
19471
19270
  readonly 'status': io.flow.internal.v0.enums.LabelCreationStatus;
19472
19271
  }
19473
19272
 
19273
+ interface LabelCreationJobUpserted {
19274
+ readonly 'discriminator': 'label_creation_job_upserted';
19275
+ readonly 'event_id': string;
19276
+ readonly 'timestamp': string;
19277
+ readonly 'organization': string;
19278
+ readonly 'label_creation_job': io.flow.internal.v0.models.LabelCreationJob;
19279
+ }
19280
+
19474
19281
  interface LabelCreationRequestForm {
19475
19282
  readonly 'organization': string;
19476
19283
  readonly 'shipping_label_form': io.flow.label.v0.unions.ShippingLabelForm;
@@ -19593,6 +19400,7 @@ declare namespace io.flow.internal.v0.models {
19593
19400
  readonly 'destination_country'?: string;
19594
19401
  readonly 'reference_id'?: string;
19595
19402
  readonly 'logistics_integration_provider'?: string;
19403
+ readonly 'tax_lrp_liabilities'?: io.flow.internal.v0.models.Liability[];
19596
19404
  }
19597
19405
 
19598
19406
  interface LabelSummary {
@@ -20013,6 +19821,7 @@ declare namespace io.flow.internal.v0.models {
20013
19821
  readonly 'paid_at'?: string;
20014
19822
  readonly 'posted_at'?: string;
20015
19823
  readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
19824
+ readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
20016
19825
  readonly 'created_at': string;
20017
19826
  readonly 'original_at'?: string;
20018
19827
  }
@@ -20220,6 +20029,19 @@ declare namespace io.flow.internal.v0.models {
20220
20029
  readonly 'currency'?: string;
20221
20030
  }
20222
20031
 
20032
+ interface MerchantOverride {
20033
+ readonly 'id': string;
20034
+ readonly 'organization_id': string;
20035
+ readonly 'item_number': string;
20036
+ readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
20037
+ readonly 'hs6_code': string;
20038
+ readonly 'merchant_hs6_code': string;
20039
+ }
20040
+
20041
+ interface MerchantOverrideDecisionForm {
20042
+ readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
20043
+ }
20044
+
20223
20045
  interface MerchantSearchResult {
20224
20046
  readonly 'organization_id': string;
20225
20047
  readonly 'shop_name'?: string;
@@ -20435,14 +20257,6 @@ declare namespace io.flow.internal.v0.models {
20435
20257
  readonly 'to': string;
20436
20258
  }
20437
20259
 
20438
- interface OptinPromptDeleted {
20439
- readonly 'discriminator': 'optin_prompt_deleted';
20440
- readonly 'event_id': string;
20441
- readonly 'timestamp': string;
20442
- readonly 'id': string;
20443
- readonly 'organization': string;
20444
- }
20445
-
20446
20260
  interface OptinPromptForm {
20447
20261
  readonly 'optin_attribute_key': string;
20448
20262
  readonly 'region': string;
@@ -20453,15 +20267,6 @@ declare namespace io.flow.internal.v0.models {
20453
20267
  readonly 'display'?: io.flow.internal.v0.unions.OptinPromptDisplay;
20454
20268
  }
20455
20269
 
20456
- interface OptinPromptUpserted {
20457
- readonly 'discriminator': 'optin_prompt_upserted';
20458
- readonly 'event_id': string;
20459
- readonly 'timestamp': string;
20460
- readonly 'id': string;
20461
- readonly 'organization': string;
20462
- readonly 'optin_prompt': io.flow.internal.v0.models.OptinPrompt;
20463
- }
20464
-
20465
20270
  interface OrderActionability {
20466
20271
  readonly 'action': io.flow.internal.v0.enums.OrderAction[];
20467
20272
  readonly 'lines': io.flow.internal.v0.models.LineActionQuantities[];
@@ -20611,28 +20416,10 @@ declare namespace io.flow.internal.v0.models {
20611
20416
  readonly 'note': string;
20612
20417
  }
20613
20418
 
20614
- interface OrderParameters {
20615
- readonly 'experience'?: string;
20616
- readonly 'country'?: string;
20617
- readonly 'ip'?: string;
20618
- readonly 'currency'?: string;
20619
- readonly 'language'?: string;
20620
- }
20621
-
20622
20419
  interface OrderPaymentAuthorization {
20623
20420
  readonly 'placeholder': string;
20624
20421
  }
20625
20422
 
20626
- interface OrderPlaced {
20627
- readonly 'discriminator': 'order_placed';
20628
- readonly 'event_id': string;
20629
- readonly 'timestamp': string;
20630
- readonly 'organization': string;
20631
- readonly 'order_number': string;
20632
- readonly 'order': io.flow.experience.v0.models.Order;
20633
- readonly 'allocation': io.flow.experience.v0.models.AllocationV2;
20634
- }
20635
-
20636
20423
  interface OrderRatesDataV3 {
20637
20424
  readonly 'organization': string;
20638
20425
  readonly 'order_id': string;
@@ -20685,17 +20472,6 @@ declare namespace io.flow.internal.v0.models {
20685
20472
  readonly 'to_service_id': string;
20686
20473
  }
20687
20474
 
20688
- interface OrderShipped {
20689
- readonly 'discriminator': 'order_shipped';
20690
- readonly 'event_id': string;
20691
- readonly 'timestamp': string;
20692
- readonly 'organization': string;
20693
- readonly 'order_number': string;
20694
- readonly 'order': io.flow.experience.v0.models.Order;
20695
- readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
20696
- readonly 'shipment_trackings': io.flow.internal.v0.models.FulfillmentShipmentTracking[];
20697
- }
20698
-
20699
20475
  interface OrderSubmissionForm {
20700
20476
  readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
20701
20477
  }
@@ -21921,23 +21697,6 @@ declare namespace io.flow.internal.v0.models {
21921
21697
  readonly 'item': string;
21922
21698
  }
21923
21699
 
21924
- interface PregeneratedQuote {
21925
- readonly 'id': string;
21926
- readonly 'experience': io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
21927
- readonly 'destination_country': string;
21928
- readonly 'item': io.flow.common.v0.models.ItemReference;
21929
- readonly 'quote'?: io.flow.fulfillment.v0.models.Quote;
21930
- readonly 'errors'?: string[];
21931
- }
21932
-
21933
- interface PregeneratedRequestEvent {
21934
- readonly 'discriminator': 'pregenerated_request_event';
21935
- readonly 'event_id': string;
21936
- readonly 'timestamp': string;
21937
- readonly 'organization': string;
21938
- readonly 'quote_request': io.flow.internal.v0.models.QuoteRequest;
21939
- }
21940
-
21941
21700
  interface PrioritizedCenterReference {
21942
21701
  readonly 'center_key': string;
21943
21702
  readonly 'position': number;
@@ -22242,16 +22001,6 @@ declare namespace io.flow.internal.v0.models {
22242
22001
  readonly 'id': string;
22243
22002
  }
22244
22003
 
22245
- interface QuoteRequest {
22246
- readonly 'id': string;
22247
- readonly 'request_type': io.flow.internal.v0.enums.QuoteRequestType;
22248
- readonly 'experience_keys'?: string[];
22249
- readonly 'item_numbers'?: string[];
22250
- readonly 'rates'?: io.flow.internal.v0.models.CurrencyInternalRate[];
22251
- readonly 'countries'?: io.flow.reference.v0.models.Country[];
22252
- readonly 'reason'?: string;
22253
- }
22254
-
22255
22004
  interface QuoteUpserted {
22256
22005
  readonly 'discriminator': 'quote_upserted';
22257
22006
  readonly 'event_id': string;
@@ -22486,40 +22235,6 @@ declare namespace io.flow.internal.v0.models {
22486
22235
  readonly 'number': string;
22487
22236
  }
22488
22237
 
22489
- interface RatecardLaneAggregate {
22490
- readonly 'id': string;
22491
- readonly 'organization_id': string;
22492
- readonly 'origin': io.flow.common.v0.models.Zone;
22493
- readonly 'destination': io.flow.common.v0.models.Zone;
22494
- readonly 'currency': string;
22495
- readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
22496
- readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
22497
- readonly 'dim_factor': number;
22498
- readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
22499
- readonly 'rounding': io.flow.common.v0.models.Rounding;
22500
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
22501
- readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
22502
- readonly 'rates_with_fees': io.flow.internal.v0.models.RateWithFees[];
22503
- readonly 'ratecard': io.flow.ratecard.v0.models.RatecardReference;
22504
- readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
22505
- }
22506
-
22507
- interface RatecardLaneAggregateDeleted {
22508
- readonly 'discriminator': 'ratecard_lane_aggregate_deleted';
22509
- readonly 'event_id': string;
22510
- readonly 'timestamp': string;
22511
- readonly 'organization': string;
22512
- readonly 'ratecard_aggregate': io.flow.internal.v0.models.RatecardLaneAggregate;
22513
- }
22514
-
22515
- interface RatecardLaneAggregateUpserted {
22516
- readonly 'discriminator': 'ratecard_lane_aggregate_upserted';
22517
- readonly 'event_id': string;
22518
- readonly 'timestamp': string;
22519
- readonly 'organization': string;
22520
- readonly 'ratecard_aggregate': io.flow.internal.v0.models.RatecardLaneAggregate;
22521
- }
22522
-
22523
22238
  interface RatecardLanesImportRequest {
22524
22239
  readonly 'discriminator': 'ratecard_lanes_import_request';
22525
22240
  readonly 'event_id': string;
@@ -22644,17 +22359,6 @@ declare namespace io.flow.internal.v0.models {
22644
22359
  readonly 'summaries': io.flow.internal.v0.models.RateNameSummary[];
22645
22360
  }
22646
22361
 
22647
- interface ReadyToFulfill {
22648
- readonly 'discriminator': 'ready_to_fulfill';
22649
- readonly 'event_id': string;
22650
- readonly 'timestamp': string;
22651
- readonly 'organization': string;
22652
- readonly 'order_number': string;
22653
- readonly 'order': io.flow.experience.v0.models.Order;
22654
- readonly 'fulfillments'?: io.flow.order.management.v0.models.Fulfillment[];
22655
- readonly 'fulfillment_item_allocation_details'?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
22656
- }
22657
-
22658
22362
  interface ReboundConfiguration {
22659
22363
  readonly 'id': string;
22660
22364
  readonly 'login': string;
@@ -22733,6 +22437,15 @@ declare namespace io.flow.internal.v0.models {
22733
22437
  readonly 'account_number': string;
22734
22438
  }
22735
22439
 
22440
+ interface ReportFile {
22441
+ readonly 'id': string;
22442
+ readonly 'processor': string;
22443
+ readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
22444
+ readonly 'file_name': string;
22445
+ readonly 'status': io.flow.internal.v0.enums.ReportFileStatus;
22446
+ readonly 'failure_reason'?: string;
22447
+ }
22448
+
22736
22449
  interface ReportFilter {
22737
22450
  readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
22738
22451
  }
@@ -22771,6 +22484,21 @@ declare namespace io.flow.internal.v0.models {
22771
22484
  readonly 'created_at': string;
22772
22485
  }
22773
22486
 
22487
+ interface ReportRecordError {
22488
+ readonly 'id': string;
22489
+ readonly 'file_id': string;
22490
+ readonly 'line_number': number;
22491
+ readonly 'failure_reason': string;
22492
+ }
22493
+
22494
+ interface ReportRecordRetryQueue {
22495
+ readonly 'id': string;
22496
+ readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
22497
+ readonly 'type': io.flow.internal.v0.enums.InternalPaymentEntityType;
22498
+ readonly 'report_record_id': string;
22499
+ readonly 'dependent_source_id': string;
22500
+ }
22501
+
22774
22502
  interface ReportRuleDecision {
22775
22503
  readonly 'rule_id': string;
22776
22504
  readonly 'rule_name': string;
@@ -23041,8 +22769,11 @@ declare namespace io.flow.internal.v0.models {
23041
22769
  readonly 'organization_id': string;
23042
22770
  readonly 'restriction_product_id': string;
23043
22771
  readonly 'product_id': string;
22772
+ readonly 'item_numbers': string[];
22773
+ readonly 'primary_item_number'?: string;
23044
22774
  readonly 'name': string;
23045
22775
  readonly 'price': io.flow.common.v0.models.Price;
22776
+ readonly 'hs_code'?: string;
23046
22777
  readonly 'description': string;
23047
22778
  readonly 'categories': string[];
23048
22779
  readonly 'images': io.flow.catalog.v0.models.Image[];
@@ -23060,6 +22791,7 @@ declare namespace io.flow.internal.v0.models {
23060
22791
  readonly 'user_ids'?: string[];
23061
22792
  readonly 'categories'?: string[];
23062
22793
  readonly 'product_name_query'?: string;
22794
+ readonly 'hs6'?: string;
23063
22795
  readonly 'positive_keywords'?: string[];
23064
22796
  readonly 'negative_keywords'?: string[];
23065
22797
  readonly 'product_id'?: string;
@@ -23188,6 +22920,7 @@ declare namespace io.flow.internal.v0.models {
23188
22920
  readonly 'user_ids'?: string[];
23189
22921
  readonly 'categories'?: string[];
23190
22922
  readonly 'product_name_query'?: string;
22923
+ readonly 'hs6'?: string;
23191
22924
  readonly 'product_id'?: string;
23192
22925
  }
23193
22926
 
@@ -23308,7 +23041,7 @@ declare namespace io.flow.internal.v0.models {
23308
23041
  readonly 'num_products_transacting_prs': number;
23309
23042
  readonly 'oldest_pr_product_date_setup_complete': string;
23310
23043
  readonly 'oldest_pr_date_transacting': string;
23311
- readonly 'percent_products_reviewed_transacting': number;
23044
+ readonly 'percent_products_reviewed_transacting'?: number;
23312
23045
  readonly 'num_pv_inflow_net_new': number;
23313
23046
  readonly 'num_pv_outflow_human_decisions': number;
23314
23047
  readonly 'num_pv_outflow_auto_review_decisions': number;
@@ -23318,6 +23051,9 @@ declare namespace io.flow.internal.v0.models {
23318
23051
  readonly 'num_pr_outflow_auto_review_decisions': number;
23319
23052
  readonly 'num_pr_outflow_side_effect_decisions': number;
23320
23053
  readonly 'num_pending_decisions_transacting': number;
23054
+ readonly 'oldest_insufficient_details_pv_onboarding'?: string;
23055
+ readonly 'oldest_insufficient_details_pv_active'?: string;
23056
+ readonly 'oldest_insufficient_details_pv_transacting'?: string;
23321
23057
  }
23322
23058
 
23323
23059
  interface RestrictionsDailyopsDeleted {
@@ -23617,13 +23353,6 @@ declare namespace io.flow.internal.v0.models {
23617
23353
  readonly 'customer_id': string;
23618
23354
  }
23619
23355
 
23620
- interface ShippedItemValue {
23621
- readonly 'item': io.flow.common.v0.models.CatalogItemReference;
23622
- readonly 'taxes': io.flow.common.v0.models.PriceWithBase;
23623
- readonly 'duties': io.flow.common.v0.models.PriceWithBase;
23624
- readonly 'total': io.flow.common.v0.models.PriceWithBase;
23625
- }
23626
-
23627
23356
  interface ShippingLane {
23628
23357
  readonly 'origin': string;
23629
23358
  readonly 'destination': string;
@@ -24029,6 +23758,26 @@ declare namespace io.flow.internal.v0.models {
24029
23758
  readonly 'registration': io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
24030
23759
  }
24031
23760
 
23761
+ interface ShopifyMerchantPlan {
23762
+ readonly 'id': string;
23763
+ readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
23764
+ readonly 'plan': io.flow.internal.v0.enums.ShopifyPlanType;
23765
+ }
23766
+
23767
+ interface ShopifyMerchantPlanDeleted {
23768
+ readonly 'discriminator': 'shopify_merchant_plan_deleted';
23769
+ readonly 'event_id': string;
23770
+ readonly 'timestamp': string;
23771
+ readonly 'id': string;
23772
+ }
23773
+
23774
+ interface ShopifyMerchantPlanUpserted {
23775
+ readonly 'discriminator': 'shopify_merchant_plan_upserted';
23776
+ readonly 'event_id': string;
23777
+ readonly 'timestamp': string;
23778
+ readonly 'shopify_merchant_plan': io.flow.internal.v0.models.ShopifyMerchantPlan;
23779
+ }
23780
+
24032
23781
  interface ShopifyMetadata {
24033
23782
  readonly 'domain': string;
24034
23783
  readonly 'myshopify_domain': string;
@@ -24770,6 +24519,46 @@ declare namespace io.flow.internal.v0.models {
24770
24519
  readonly 'capture': io.flow.internal.v0.models.StripeInternalCapture;
24771
24520
  }
24772
24521
 
24522
+ interface StripeConnectReportRecord {
24523
+ readonly 'id': string;
24524
+ readonly 'file_id': string;
24525
+ readonly 'line_number': number;
24526
+ readonly 'created_utc': string;
24527
+ readonly 'charge_id'?: string;
24528
+ readonly 'payment_intent_id'?: string;
24529
+ readonly 'gross': number;
24530
+ readonly 'fee': number;
24531
+ readonly 'net': number;
24532
+ readonly 'currency': string;
24533
+ readonly 'connected_account': string;
24534
+ readonly 'reporting_category': io.flow.stripe.v0.enums.ConnectReportReportingCategory;
24535
+ readonly 'dispute_reason'?: string;
24536
+ readonly 'available_on_utc': string;
24537
+ readonly 'automatic_payout_effective_at_utc'?: string;
24538
+ readonly 'source_id'?: string;
24539
+ readonly 'customer_facing_amount'?: number;
24540
+ readonly 'customer_facing_currency'?: string;
24541
+ readonly 'payment_method_type'?: string;
24542
+ readonly 'card_brand'?: string;
24543
+ readonly 'statement_descriptor'?: string;
24544
+ readonly 'payment_metadata'?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
24545
+ readonly 'transfer_metadata'?: any/*object*/;
24546
+ }
24547
+
24548
+ interface StripeConnectReportRecordDeleted {
24549
+ readonly 'discriminator': 'stripe_connect_report_record_deleted';
24550
+ readonly 'event_id': string;
24551
+ readonly 'timestamp': string;
24552
+ readonly 'id': string;
24553
+ }
24554
+
24555
+ interface StripeConnectReportRecordUpserted {
24556
+ readonly 'discriminator': 'stripe_connect_report_record_upserted';
24557
+ readonly 'event_id': string;
24558
+ readonly 'timestamp': string;
24559
+ readonly 'record': io.flow.stripe.v0.models.ConnectReportRecord;
24560
+ }
24561
+
24773
24562
  interface StripeDisputeDeleted {
24774
24563
  readonly 'discriminator': 'stripe_dispute_deleted';
24775
24564
  readonly 'event_id': string;
@@ -25071,40 +24860,6 @@ declare namespace io.flow.internal.v0.models {
25071
24860
  readonly 'category_code'?: string;
25072
24861
  }
25073
24862
 
25074
- interface TaxDutyDeltaMetadataActual {
25075
- readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
25076
- }
25077
-
25078
- interface TaxDutyDeltaMetadataActualProcessing {
25079
- readonly 'capture': io.flow.common.v0.models.Money;
25080
- readonly 'fees': io.flow.common.v0.models.Money;
25081
- readonly 'transfer': io.flow.common.v0.models.Money;
25082
- readonly 'total': io.flow.common.v0.models.Money;
25083
- }
25084
-
25085
- interface TaxDutyDeltaMetadataExpected {
25086
- readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
25087
- }
25088
-
25089
- interface TaxDutyDeltaMetadataExpectedProcessing {
25090
- readonly 'tax': io.flow.common.v0.models.Money;
25091
- readonly 'duty': io.flow.common.v0.models.Money;
25092
- readonly 'total': io.flow.common.v0.models.Money;
25093
- }
25094
-
25095
- interface TaxDutyDeltaTransaction {
25096
- readonly 'discriminator': 'tax_duty_delta_transaction';
25097
- readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
25098
- readonly 'id': string;
25099
- readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
25100
- readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
25101
- readonly 'posted_at'?: string;
25102
- readonly 'value': io.flow.common.v0.models.Price;
25103
- readonly 'description': string;
25104
- readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
25105
- readonly 'created_at': string;
25106
- }
25107
-
25108
24863
  interface TaxRemittanceTransaction {
25109
24864
  readonly 'discriminator': 'tax_remittance_transaction';
25110
24865
  readonly 'order': io.flow.internal.v0.models.BillingOrderSummary;
@@ -25830,9 +25585,6 @@ declare namespace io.flow.internal.v0.unions {
25830
25585
  type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
25831
25586
  type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
25832
25587
  type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
25833
- type CheckoutForm = (io.flow.internal.v0.models.CheckoutOrderForm | io.flow.internal.v0.models.CheckoutOrderNumberForm);
25834
- type CheckoutSubmitOrderBundles = (io.flow.internal.v0.models.CheckoutSubmitOrderBundle);
25835
- type CheckoutSubmitOrderForms = (io.flow.internal.v0.models.CheckoutSubmitOrderForm);
25836
25588
  type ClassificationAction = (io.flow.internal.v0.models.SingleClassificationAction | io.flow.internal.v0.models.BulkClassificationAction);
25837
25589
  type ClassificationActionForm = (io.flow.internal.v0.models.ClassificationActionFormUndo);
25838
25590
  type ClassificationForm = (io.flow.internal.v0.models.SingleClassificationForm | io.flow.internal.v0.models.EmptyClassificationForm);
@@ -25853,7 +25605,7 @@ declare namespace io.flow.internal.v0.unions {
25853
25605
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
25854
25606
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
25855
25607
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
25856
- type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
25608
+ type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
25857
25609
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
25858
25610
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
25859
25611
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -25904,7 +25656,7 @@ declare namespace io.flow.internal.v0.unions {
25904
25656
  type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
25905
25657
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
25906
25658
  type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
25907
- type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.TaxDutyDeltaTransaction);
25659
+ type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction);
25908
25660
  type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
25909
25661
  type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
25910
25662
  }
@@ -25928,7 +25680,6 @@ export const billingMetricKey: PropTypes.Requireable<io.flow.internal.v0.enums.B
25928
25680
  export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
25929
25681
  export const billingTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionStatus>;
25930
25682
  export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionType>;
25931
- export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
25932
25683
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
25933
25684
  export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
25934
25685
  export const carrierChargeType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeType>;
@@ -26012,6 +25763,7 @@ export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.en
26012
25763
  export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
26013
25764
  export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
26014
25765
  export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
25766
+ export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
26015
25767
  export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
26016
25768
  export const itemClassificationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationStatus>;
26017
25769
  export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemHarmonizationStatus>;
@@ -26032,6 +25784,7 @@ export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enum
26032
25784
  export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
26033
25785
  export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
26034
25786
  export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
25787
+ export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
26035
25788
  export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
26036
25789
  export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
26037
25790
  export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
@@ -26073,12 +25826,13 @@ export const promptAction: PropTypes.Requireable<io.flow.internal.v0.enums.Promp
26073
25826
  export const promptCheckoutDisplayPosition: PropTypes.Requireable<io.flow.internal.v0.enums.PromptCheckoutDisplayPosition>;
26074
25827
  export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.PromptOptions>;
26075
25828
  export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
26076
- export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
26077
25829
  export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
26078
25830
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
26079
25831
  export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
26080
25832
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
26081
25833
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
25834
+ export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
25835
+ export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
26082
25836
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
26083
25837
  export const reportPaymentType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportPaymentType>;
26084
25838
  export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
@@ -26102,6 +25856,7 @@ export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.inter
26102
25856
  export const shopifyMarketsTradeSector: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsTradeSector>;
26103
25857
  export const shopifyMonitoringMonitorReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus>;
26104
25858
  export const shopifyMonitoringTrackingField: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringTrackingField>;
25859
+ export const shopifyPlanType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPlanType>;
26105
25860
  export const shopifyPromotionBehavior: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionBehavior>;
26106
25861
  export const shopifyPromotionOfferAllocationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionOfferAllocationMethod>;
26107
25862
  export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent>;
@@ -26164,9 +25919,6 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
26164
25919
  export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
26165
25920
  export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
26166
25921
  export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
26167
- export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
26168
- export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
26169
- export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
26170
25922
  export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
26171
25923
  export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
26172
25924
  export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
@@ -26300,15 +26052,6 @@ export const booleanFeatureRuleForm: PropTypes.Requireable<io.flow.internal.v0.m
26300
26052
  export const booleanFeatureValue: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureValue>;
26301
26053
  export const brickWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.BrickWebhookEvent>;
26302
26054
  export const brickWebhookEventResponse: PropTypes.Requireable<io.flow.internal.v0.models.BrickWebhookEventResponse>;
26303
- export const browserBundle: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundle>;
26304
- export const browserBundleCountryPickerForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundleCountryPickerForm>;
26305
- export const browserBundleError: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundleError>;
26306
- export const browserBundleFeatureForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundleFeatureForm>;
26307
- export const browserBundleForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundleForm>;
26308
- export const browserBundleOptinForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundleOptinForm>;
26309
- export const browserBundlePaymentMethod: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethod>;
26310
- export const browserBundlePaymentMethodForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethodForm>;
26311
- export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethods>;
26312
26055
  export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
26313
26056
  export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
26314
26057
  export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
@@ -26420,8 +26163,6 @@ export const checkoutBehaviorCustomerInfo: PropTypes.Requireable<io.flow.interna
26420
26163
  export const checkoutBehaviorCustomerInfoEmail: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutBehaviorCustomerInfoEmail>;
26421
26164
  export const checkoutBehaviorShippingAddress: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutBehaviorShippingAddress>;
26422
26165
  export const checkoutBehaviorShippingMethod: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutBehaviorShippingMethod>;
26423
- export const checkoutBundle: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutBundle>;
26424
- export const checkoutBundleMetadata: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutBundleMetadata>;
26425
26166
  export const checkoutConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutConfiguration>;
26426
26167
  export const checkoutConfigurationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutConfigurationDeleted>;
26427
26168
  export const checkoutConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutConfigurationForm>;
@@ -26431,21 +26172,12 @@ export const checkoutContent: PropTypes.Requireable<io.flow.internal.v0.models.C
26431
26172
  export const checkoutContentDetails: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutContentDetails>;
26432
26173
  export const checkoutContentSummary: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutContentSummary>;
26433
26174
  export const checkoutError: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutError>;
26434
- export const checkoutFinalizeOrderForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutFinalizeOrderForm>;
26435
26175
  export const checkoutMarketingContent: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutMarketingContent>;
26436
- export const checkoutOrderForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutOrderForm>;
26437
- export const checkoutOrderNumberForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutOrderNumberForm>;
26438
26176
  export const checkoutPayment: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutPayment>;
26439
26177
  export const checkoutPaymentContent: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutPaymentContent>;
26440
26178
  export const checkoutPlatformData: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutPlatformData>;
26441
26179
  export const checkoutRedirect: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutRedirect>;
26442
- export const checkoutReferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutReferenceForm>;
26443
26180
  export const checkoutSettings: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSettings>;
26444
- export const checkoutSourceOrderForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSourceOrderForm>;
26445
- export const checkoutSubmission: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSubmission>;
26446
- export const checkoutSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSubmissionForm>;
26447
- export const checkoutSubmitOrderBundle: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSubmitOrderBundle>;
26448
- export const checkoutSubmitOrderForm: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSubmitOrderForm>;
26449
26181
  export const checkoutUrl: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutUrl>;
26450
26182
  export const cipher: PropTypes.Requireable<io.flow.internal.v0.models.Cipher>;
26451
26183
  export const cipherForm: PropTypes.Requireable<io.flow.internal.v0.models.CipherForm>;
@@ -26617,7 +26349,6 @@ export const erpVendorStatusPriorityFile: PropTypes.Requireable<io.flow.internal
26617
26349
  export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
26618
26350
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
26619
26351
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
26620
- export const expectedOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExpectedOrderSummary>;
26621
26352
  export const experienceExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceExportRequest>;
26622
26353
  export const experienceImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceImportRequest>;
26623
26354
  export const experienceOrderActionRule: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceOrderActionRule>;
@@ -26655,9 +26386,6 @@ export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
26655
26386
  export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
26656
26387
  export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
26657
26388
  export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
26658
- export const finalEstimate: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimate>;
26659
- export const finalEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateDeleted>;
26660
- export const finalEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateUpserted>;
26661
26389
  export const financeBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccount>;
26662
26390
  export const financeBankAccountOwner: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccountOwner>;
26663
26391
  export const financeBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankPayment>;
@@ -26722,20 +26450,17 @@ export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flo
26722
26450
  export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
26723
26451
  export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
26724
26452
  export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
26725
- export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
26726
26453
  export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
26727
26454
  export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
26728
26455
  export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
26729
26456
  export const fulfillmentFallbacksDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksDeleted>;
26730
26457
  export const fulfillmentFallbacksUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksUpserted>;
26731
- export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
26732
26458
  export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
26733
26459
  export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
26734
26460
  export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
26735
26461
  export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference>;
26736
26462
  export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
26737
26463
  export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
26738
- export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
26739
26464
  export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
26740
26465
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
26741
26466
  export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
@@ -26802,7 +26527,6 @@ export const internalPaymentRequestVerification: PropTypes.Requireable<io.flow.i
26802
26527
  export const internalPaypalAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaypalAuthorizationDetails>;
26803
26528
  export const internalStripeAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalStripeAuthorizationDetails>;
26804
26529
  export const internalTransactionDetailsCard: PropTypes.Requireable<io.flow.internal.v0.models.InternalTransactionDetailsCard>;
26805
- export const invalidCheckoutData: PropTypes.Requireable<io.flow.internal.v0.models.InvalidCheckoutData>;
26806
26530
  export const invariant: PropTypes.Requireable<io.flow.internal.v0.models.Invariant>;
26807
26531
  export const inventoryItemWrapper: PropTypes.Requireable<io.flow.internal.v0.models.InventoryItemWrapper>;
26808
26532
  export const invoice: PropTypes.Requireable<io.flow.internal.v0.models.Invoice>;
@@ -26814,7 +26538,6 @@ export const issuer: PropTypes.Requireable<io.flow.internal.v0.models.Issuer>;
26814
26538
  export const issuerDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerDeleted>;
26815
26539
  export const issuerUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerUpserted>;
26816
26540
  export const itemClassification: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassification>;
26817
- export const itemClassificationCreated: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationCreated>;
26818
26541
  export const itemClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationForm>;
26819
26542
  export const itemClassificationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationSummary>;
26820
26543
  export const itemClassificationV2: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationV2>;
@@ -26840,7 +26563,6 @@ export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.
26840
26563
  export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
26841
26564
  export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
26842
26565
  export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
26843
- export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
26844
26566
  export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
26845
26567
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
26846
26568
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
@@ -26853,7 +26575,9 @@ export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.Labe
26853
26575
  export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
26854
26576
  export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
26855
26577
  export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
26578
+ export const labelCreationJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobDeleted>;
26856
26579
  export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
26580
+ export const labelCreationJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobUpserted>;
26857
26581
  export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
26858
26582
  export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
26859
26583
  export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
@@ -26948,6 +26672,8 @@ export const merchantHubOverride: PropTypes.Requireable<io.flow.internal.v0.mode
26948
26672
  export const merchantHubOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverrideForm>;
26949
26673
  export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
26950
26674
  export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
26675
+ export const merchantOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverride>;
26676
+ export const merchantOverrideDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDecisionForm>;
26951
26677
  export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
26952
26678
  export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
26953
26679
  export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
@@ -26978,9 +26704,7 @@ export const optinPrompt: PropTypes.Requireable<io.flow.internal.v0.models.Optin
26978
26704
  export const optinPromptCheckoutDisplay: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptCheckoutDisplay>;
26979
26705
  export const optinPromptCopy: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptCopy>;
26980
26706
  export const optinPromptCopyForm: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptCopyForm>;
26981
- export const optinPromptDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptDeleted>;
26982
26707
  export const optinPromptForm: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptForm>;
26983
- export const optinPromptUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OptinPromptUpserted>;
26984
26708
  export const orderActionability: PropTypes.Requireable<io.flow.internal.v0.models.OrderActionability>;
26985
26709
  export const orderAddressValidation: PropTypes.Requireable<io.flow.internal.v0.models.OrderAddressValidation>;
26986
26710
  export const orderAttribute: PropTypes.Requireable<io.flow.internal.v0.models.OrderAttribute>;
@@ -27001,9 +26725,7 @@ export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.
27001
26725
  export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
27002
26726
  export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
27003
26727
  export const orderNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderNoteForm>;
27004
- export const orderParameters: PropTypes.Requireable<io.flow.internal.v0.models.OrderParameters>;
27005
26728
  export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.OrderPaymentAuthorization>;
27006
- export const orderPlaced: PropTypes.Requireable<io.flow.internal.v0.models.OrderPlaced>;
27007
26729
  export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
27008
26730
  export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
27009
26731
  export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
@@ -27012,7 +26734,6 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
27012
26734
  export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
27013
26735
  export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
27014
26736
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
27015
- export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
27016
26737
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
27017
26738
  export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
27018
26739
  export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
@@ -27166,8 +26887,6 @@ export const platformFeePause: PropTypes.Requireable<io.flow.internal.v0.models.
27166
26887
  export const platformFeePercentage: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentage>;
27167
26888
  export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentageTier>;
27168
26889
  export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
27169
- export const pregeneratedQuote: PropTypes.Requireable<io.flow.internal.v0.models.PregeneratedQuote>;
27170
- export const pregeneratedRequestEvent: PropTypes.Requireable<io.flow.internal.v0.models.PregeneratedRequestEvent>;
27171
26890
  export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
27172
26891
  export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
27173
26892
  export const processingTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransactionDeleted>;
@@ -27207,7 +26926,6 @@ export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicH
27207
26926
  export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
27208
26927
  export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
27209
26928
  export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
27210
- export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
27211
26929
  export const quoteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteUpserted>;
27212
26930
  export const rateAndRuleItem: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItem>;
27213
26931
  export const rateAndRuleItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItemForm>;
@@ -27240,9 +26958,6 @@ export const ratecardDimensionEstimateDeleted: PropTypes.Requireable<io.flow.int
27240
26958
  export const ratecardDimensionEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardDimensionEstimateUpserted>;
27241
26959
  export const ratecardInternalServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalServiceFee>;
27242
26960
  export const ratecardInternalSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalSummary>;
27243
- export const ratecardLaneAggregate: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLaneAggregate>;
27244
- export const ratecardLaneAggregateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLaneAggregateDeleted>;
27245
- export const ratecardLaneAggregateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLaneAggregateUpserted>;
27246
26961
  export const ratecardLanesImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLanesImportRequest>;
27247
26962
  export const ratecardRateLevelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelDeleted>;
27248
26963
  export const ratecardRateLevelOrganizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted>;
@@ -27261,7 +26976,6 @@ export const ratecardStandardConfigurationUpserted: PropTypes.Requireable<io.flo
27261
26976
  export const ratecardStandardSettings: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardSettings>;
27262
26977
  export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
27263
26978
  export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
27264
- export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
27265
26979
  export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
27266
26980
  export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
27267
26981
  export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
@@ -27274,6 +26988,7 @@ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
27274
26988
  export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
27275
26989
  export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
27276
26990
  export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
26991
+ export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
27277
26992
  export const reportFilter: PropTypes.Requireable<io.flow.internal.v0.models.ReportFilter>;
27278
26993
  export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
27279
26994
  export const reportMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ReportMerchant>;
@@ -27281,6 +26996,8 @@ export const reportOrderReference: PropTypes.Requireable<io.flow.internal.v0.mod
27281
26996
  export const reportOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrganizationReference>;
27282
26997
  export const reportOwner: PropTypes.Requireable<io.flow.internal.v0.models.ReportOwner>;
27283
26998
  export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
26999
+ export const reportRecordError: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordError>;
27000
+ export const reportRecordRetryQueue: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordRetryQueue>;
27284
27001
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
27285
27002
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
27286
27003
  export const reportingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingAuthorizationReference>;
@@ -27393,7 +27110,6 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
27393
27110
  export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
27394
27111
  export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
27395
27112
  export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
27396
- export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
27397
27113
  export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
27398
27114
  export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
27399
27115
  export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
@@ -27454,6 +27170,9 @@ export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.model
27454
27170
  export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
27455
27171
  export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
27456
27172
  export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
27173
+ export const shopifyMerchantPlan: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlan>;
27174
+ export const shopifyMerchantPlanDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanDeleted>;
27175
+ export const shopifyMerchantPlanUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanUpserted>;
27457
27176
  export const shopifyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMetadata>;
27458
27177
  export const shopifyMonitoringCarrierService: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringCarrierService>;
27459
27178
  export const shopifyMonitoringFulfillmentExternal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal>;
@@ -27563,6 +27282,9 @@ export const stripeAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.
27563
27282
  export const stripeAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeAuthorizationUpserted>;
27564
27283
  export const stripeCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureDeleted>;
27565
27284
  export const stripeCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureUpserted>;
27285
+ export const stripeConnectReportRecord: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecord>;
27286
+ export const stripeConnectReportRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordDeleted>;
27287
+ export const stripeConnectReportRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordUpserted>;
27566
27288
  export const stripeDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeDeleted>;
27567
27289
  export const stripeDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeUpserted>;
27568
27290
  export const stripeInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalAuthorization>;
@@ -27596,11 +27318,6 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
27596
27318
  export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
27597
27319
  export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
27598
27320
  export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
27599
- export const taxDutyDeltaMetadataActual: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActual>;
27600
- export const taxDutyDeltaMetadataActualProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing>;
27601
- export const taxDutyDeltaMetadataExpected: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected>;
27602
- export const taxDutyDeltaMetadataExpectedProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing>;
27603
- export const taxDutyDeltaTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaTransaction>;
27604
27321
  export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
27605
27322
  export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
27606
27323
  export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionUpserted>;
@@ -27706,9 +27423,6 @@ export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.C
27706
27423
  export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
27707
27424
  export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
27708
27425
  export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
27709
- export const checkoutForm: PropTypes.Requireable<io.flow.internal.v0.unions.CheckoutForm>;
27710
- export const checkoutSubmitOrderBundles: PropTypes.Requireable<io.flow.internal.v0.unions.CheckoutSubmitOrderBundles>;
27711
- export const checkoutSubmitOrderForms: PropTypes.Requireable<io.flow.internal.v0.unions.CheckoutSubmitOrderForms>;
27712
27426
  export const classificationAction: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationAction>;
27713
27427
  export const classificationActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationActionForm>;
27714
27428
  export const classificationForm: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationForm>;