@flowio/types 11.24.101 → 11.24.103

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.
@@ -209,7 +209,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
209
209
  type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies' | 'order_missing';
210
210
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
211
211
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
212
- type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay';
212
+ type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay' | 'grabpay' | 'vipps' | 'kcp_creditcard';
213
213
  }
214
214
  declare namespace io.flow.payment.gateway.v0.models {
215
215
  interface ActionDisplayInlineWindow {
@@ -525,11 +525,19 @@ declare namespace io.flow.payment.gateway.v0.models {
525
525
  readonly type: 'init_googlepay';
526
526
  readonly reference?: string;
527
527
  }
528
+ interface PaymentMethodDataInitGrabpay {
529
+ readonly type: 'init_grabpay';
530
+ readonly reference?: string;
531
+ }
528
532
  interface PaymentMethodDataInitIdeal {
529
533
  readonly type: 'init_ideal';
530
534
  readonly issuer?: string;
531
535
  readonly reference?: string;
532
536
  }
537
+ interface PaymentMethodDataInitKcpCreditcard {
538
+ readonly type: 'init_kcp_creditcard';
539
+ readonly reference?: string;
540
+ }
533
541
  interface PaymentMethodDataInitKlarna {
534
542
  readonly type: 'init_klarna';
535
543
  readonly reference?: string;
@@ -554,6 +562,10 @@ declare namespace io.flow.payment.gateway.v0.models {
554
562
  readonly type: 'init_twint';
555
563
  readonly reference?: string;
556
564
  }
565
+ interface PaymentMethodDataInitVipps {
566
+ readonly type: 'init_vipps';
567
+ readonly reference?: string;
568
+ }
557
569
  interface PaymentMethodDataOptionLogoSvg {
558
570
  readonly type: 'svg';
559
571
  readonly url: string;
@@ -605,11 +617,19 @@ declare namespace io.flow.payment.gateway.v0.models {
605
617
  readonly type: 'googlepay';
606
618
  readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
607
619
  }
620
+ interface PaymentMethodSummaryGrabpay {
621
+ readonly type: 'grabpay';
622
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
623
+ }
608
624
  interface PaymentMethodSummaryIdeal {
609
625
  readonly type: 'ideal';
610
626
  readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
611
627
  readonly issuer?: string;
612
628
  }
629
+ interface PaymentMethodSummaryKcpCreditcard {
630
+ readonly type: 'kcp_creditcard';
631
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
632
+ }
613
633
  interface PaymentMethodSummaryKlarna {
614
634
  readonly type: 'klarna';
615
635
  readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
@@ -634,6 +654,10 @@ declare namespace io.flow.payment.gateway.v0.models {
634
654
  readonly type: 'twint';
635
655
  readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
636
656
  }
657
+ interface PaymentMethodSummaryVipps {
658
+ readonly type: 'vipps';
659
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
660
+ }
637
661
  interface PaymentOrderDetailsLineItem {
638
662
  readonly id?: string;
639
663
  readonly description: string;
@@ -767,12 +791,12 @@ declare namespace io.flow.payment.gateway.v0.unions {
767
791
  type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
768
792
  type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
769
793
  type PaymentMethodCard = io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken;
770
- type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
794
+ type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitKcpCreditcard | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGrabpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitVipps | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
771
795
  type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
772
796
  type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
773
797
  type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
774
798
  type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
775
- type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
799
+ type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint | io.flow.payment.gateway.v0.models.PaymentMethodSummaryVipps | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKcpCreditcard | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGrabpay;
776
800
  type PaymentRequestCancellationReason = io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
777
801
  type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
778
802
  }
@@ -1326,6 +1350,7 @@ declare namespace io.flow.payment.v0.enums {
1326
1350
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
1327
1351
  type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
1328
1352
  type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
1353
+ 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';
1329
1354
  type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
1330
1355
  type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
1331
1356
  type ReversalStatus = 'pending' | 'processed' | 'failed';
@@ -1942,6 +1967,8 @@ declare namespace io.flow.payment.v0.models {
1942
1967
  readonly attributes?: Record<string, string>;
1943
1968
  readonly status?: io.flow.payment.v0.enums.RefundStatus;
1944
1969
  readonly base?: io.flow.common.v0.models.Money;
1970
+ readonly failure_category?: io.flow.payment.v0.enums.RefundFailureCategory;
1971
+ readonly failure_psp_reason?: string;
1945
1972
  }
1946
1973
  interface RefundCapture {
1947
1974
  readonly id: string;
@@ -2234,7 +2261,7 @@ declare namespace io.flow.stripe.v0.enums {
2234
2261
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
2235
2262
  type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
2236
2263
  type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
2237
- type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
2264
+ type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
2238
2265
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
2239
2266
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
2240
2267
  type RequestThreeDSecureType = 'automatic' | 'any';
@@ -3655,7 +3682,7 @@ declare namespace io.flow.external.paypal.v1.models {
3655
3682
  readonly name?: string;
3656
3683
  }
3657
3684
  interface CanceledRecurringBilling {
3658
- readonly expected_refund?: io.flow.external.paypal.v1.models.Money;
3685
+ readonly expected_refund?: io.flow.external.paypal.v1.models.DisputeMoney;
3659
3686
  readonly cancellation_details?: io.flow.external.paypal.v1.models.CancellationDetails;
3660
3687
  }
3661
3688
  interface CancellationDetails {
@@ -3671,7 +3698,7 @@ declare namespace io.flow.external.paypal.v1.models {
3671
3698
  }
3672
3699
  interface CreditNotProcessed {
3673
3700
  readonly issue_type?: io.flow.external.paypal.v1.enums.IssueType;
3674
- readonly expected_refund?: io.flow.external.paypal.v1.models.Money;
3701
+ readonly expected_refund?: io.flow.external.paypal.v1.models.DisputeMoney;
3675
3702
  readonly cancellation_details?: io.flow.external.paypal.v1.models.CancellationDetails;
3676
3703
  readonly product_details?: io.flow.external.paypal.v1.models.ProductDetails;
3677
3704
  readonly service_details?: io.flow.external.paypal.v1.models.ServiceDetails;
@@ -3684,7 +3711,7 @@ declare namespace io.flow.external.paypal.v1.models {
3684
3711
  readonly disputed_transactions: io.flow.external.paypal.v1.models.TransactionInfo[];
3685
3712
  readonly reason: io.flow.external.paypal.v1.enums.DisputeReason;
3686
3713
  readonly status: io.flow.external.paypal.v1.enums.DisputeStatus;
3687
- readonly dispute_amount: io.flow.external.paypal.v1.models.Money;
3714
+ readonly dispute_amount: io.flow.external.paypal.v1.models.DisputeMoney;
3688
3715
  readonly fee_policy?: any;
3689
3716
  readonly external_reason_code?: string;
3690
3717
  readonly dispute_outcome?: io.flow.external.paypal.v1.models.DisputeOutcome;
@@ -3703,6 +3730,7 @@ declare namespace io.flow.external.paypal.v1.models {
3703
3730
  readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
3704
3731
  readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
3705
3732
  readonly links?: io.flow.external.paypal.v1.models.Link[];
3733
+ readonly previous_status?: io.flow.external.paypal.v1.enums.DisputeStatus;
3706
3734
  }
3707
3735
  interface DisputeExtension {
3708
3736
  readonly merchant_contacted?: boolean;
@@ -3718,9 +3746,13 @@ declare namespace io.flow.external.paypal.v1.models {
3718
3746
  readonly items: io.flow.external.paypal.v1.models.DisputeSummary[];
3719
3747
  readonly links: io.flow.external.paypal.v1.models.Link[];
3720
3748
  }
3749
+ interface DisputeMoney {
3750
+ readonly currency_code: string;
3751
+ readonly value: string;
3752
+ }
3721
3753
  interface DisputeOutcome {
3722
3754
  readonly outcome_code?: io.flow.external.paypal.v1.enums.DisputeOutcomeCode;
3723
- readonly amount_refunded?: io.flow.external.paypal.v1.models.Money;
3755
+ readonly amount_refunded?: io.flow.external.paypal.v1.models.DisputeMoney;
3724
3756
  }
3725
3757
  interface DisputeSummary {
3726
3758
  readonly dispute_id: string;
@@ -3728,7 +3760,7 @@ declare namespace io.flow.external.paypal.v1.models {
3728
3760
  readonly update_time: string;
3729
3761
  readonly reason: io.flow.external.paypal.v1.enums.DisputeReason;
3730
3762
  readonly status: io.flow.external.paypal.v1.enums.DisputeStatus;
3731
- readonly dispute_amount: io.flow.external.paypal.v1.models.Money;
3763
+ readonly dispute_amount: io.flow.external.paypal.v1.models.DisputeMoney;
3732
3764
  readonly dispute_life_cycle_stage: io.flow.external.paypal.v1.enums.DisputeLifeCycleStage;
3733
3765
  readonly links: io.flow.external.paypal.v1.models.Link[];
3734
3766
  }
@@ -3766,7 +3798,7 @@ declare namespace io.flow.external.paypal.v1.models {
3766
3798
  readonly transactions?: io.flow.external.paypal.v1.models.Transaction[];
3767
3799
  }
3768
3800
  interface IncorrectTransactionAmount {
3769
- readonly correct_transaction_amount?: io.flow.external.paypal.v1.models.Money;
3801
+ readonly correct_transaction_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3770
3802
  readonly correct_transaction_time?: string;
3771
3803
  }
3772
3804
  interface Item {
@@ -3784,7 +3816,7 @@ declare namespace io.flow.external.paypal.v1.models {
3784
3816
  readonly item_quantity?: string;
3785
3817
  readonly partner_transaction_id?: string;
3786
3818
  readonly reason?: io.flow.external.paypal.v1.enums.DisputeReason;
3787
- readonly dispute_amount?: io.flow.external.paypal.v1.models.Money;
3819
+ readonly dispute_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3788
3820
  readonly notes?: string;
3789
3821
  }
3790
3822
  interface ItemList {
@@ -3811,19 +3843,19 @@ declare namespace io.flow.external.paypal.v1.models {
3811
3843
  readonly content?: string;
3812
3844
  }
3813
3845
  interface Money {
3814
- readonly currency_code: string;
3815
- readonly value: string;
3846
+ readonly currency_code?: string;
3847
+ readonly value?: string;
3816
3848
  }
3817
3849
  interface MoneyMovement {
3818
3850
  readonly affected_party?: io.flow.external.paypal.v1.enums.AffectedParty;
3819
- readonly amount?: io.flow.external.paypal.v1.models.Money;
3851
+ readonly amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3820
3852
  readonly initiated_time?: string;
3821
3853
  readonly type?: io.flow.external.paypal.v1.enums.MoneyMovementType;
3822
3854
  readonly reason?: io.flow.external.paypal.v1.enums.MoneyMovementReason;
3823
3855
  }
3824
3856
  interface Offer {
3825
- readonly buyer_requested_amount?: io.flow.external.paypal.v1.models.Money;
3826
- readonly seller_offered_amount?: io.flow.external.paypal.v1.models.Money;
3857
+ readonly buyer_requested_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3858
+ readonly seller_offered_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3827
3859
  readonly offer_type?: io.flow.external.paypal.v1.enums.OfferType;
3828
3860
  }
3829
3861
  interface Payer {
@@ -3915,7 +3947,7 @@ declare namespace io.flow.external.paypal.v1.models {
3915
3947
  readonly update_time?: string;
3916
3948
  }
3917
3949
  interface RefundDetails {
3918
- readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.Money;
3950
+ readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
3919
3951
  }
3920
3952
  interface RefundId {
3921
3953
  readonly refund_id?: string;
@@ -4033,7 +4065,7 @@ declare namespace io.flow.external.paypal.v1.models {
4033
4065
  readonly reference_id?: string;
4034
4066
  readonly create_time?: string;
4035
4067
  readonly transaction_status?: io.flow.external.paypal.v1.enums.TransactionStatus;
4036
- readonly gross_amount?: io.flow.external.paypal.v1.models.Money;
4068
+ readonly gross_amount?: io.flow.external.paypal.v1.models.DisputeMoney;
4037
4069
  readonly invoice_number: string;
4038
4070
  readonly custom?: string;
4039
4071
  readonly buyer?: io.flow.external.paypal.v1.models.Buyer;
@@ -4320,6 +4352,11 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
4320
4352
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
4321
4353
  }
4322
4354
  declare namespace io.flow.shopify.markets.internal.v0.models {
4355
+ interface BulkDutyUpdateValidationError {
4356
+ readonly message: string;
4357
+ readonly reason: string;
4358
+ readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4359
+ }
4323
4360
  interface CatalogPublicationSyncValidationError {
4324
4361
  readonly message: string;
4325
4362
  readonly reason: string;
@@ -4511,10 +4548,11 @@ declare namespace io.flow.adyen.v0.enums {
4511
4548
  type Channel = 'web';
4512
4549
  type Contract = 'RECURRING';
4513
4550
  type DeviceChannel = 'app' | 'browser';
4551
+ type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
4514
4552
  type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
4515
4553
  type HttpRedirectMethod = 'GET' | 'POST';
4516
4554
  type Operation = 'cancel' | 'capture' | 'refund';
4517
- type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
4555
+ type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
4518
4556
  type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
4519
4557
  type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
4520
4558
  type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
@@ -4651,6 +4689,8 @@ declare namespace io.flow.adyen.v0.models {
4651
4689
  readonly modificationMerchantReferences: string;
4652
4690
  readonly chargebackSchemeCode: string;
4653
4691
  readonly defensePeriodEndsAt?: string;
4692
+ readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
4693
+ readonly defendable?: string;
4654
4694
  }
4655
4695
  interface Error {
4656
4696
  readonly status: number;
@@ -4972,7 +5012,7 @@ declare namespace io.flow.shopify.external.v0.models {
4972
5012
  readonly measurement: io.flow.shopify.external.v0.models.GraphqlMeasurement;
4973
5013
  }
4974
5014
  interface GraphqlMeasurement {
4975
- readonly weight: io.flow.shopify.external.v0.models.GraphqlWeight;
5015
+ readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
4976
5016
  }
4977
5017
  interface GraphqlOption {
4978
5018
  readonly id: string;
@@ -6169,7 +6209,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6169
6209
  readonly created_at: string;
6170
6210
  readonly notify_customer: boolean;
6171
6211
  readonly order_id: number;
6172
- readonly staff_note: string;
6212
+ readonly staff_note?: string;
6173
6213
  readonly user_id?: number;
6174
6214
  readonly line_items: io.flow.shopify.markets.v0.models.ShopifyOrderEditLineItems;
6175
6215
  readonly discounts: any;
@@ -6209,6 +6249,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6209
6249
  readonly id: number;
6210
6250
  }
6211
6251
  interface ShopifyOrderLineItem {
6252
+ readonly current_quantity?: number;
6212
6253
  readonly fulfillable_quantity?: number;
6213
6254
  readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
6214
6255
  readonly grams?: number;
@@ -6303,6 +6344,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6303
6344
  readonly location_id?: number;
6304
6345
  readonly subtotal?: number;
6305
6346
  readonly total_tax?: number;
6347
+ readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6306
6348
  }
6307
6349
  interface ShopifyOrderShippingLine {
6308
6350
  readonly code?: string;
@@ -6365,6 +6407,12 @@ declare namespace io.flow.shopify.markets.v0.models {
6365
6407
  readonly due_in_days?: number;
6366
6408
  readonly payment_schedules?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
6367
6409
  }
6410
+ interface ShopifyProductVariantInventoryItemWrapper {
6411
+ readonly product_id: number;
6412
+ readonly variant_id: number;
6413
+ readonly harmonized_system_code: string;
6414
+ readonly country_harmonized_system_codes: io.flow.shopify.markets.v0.models.ShopifyCountryHarmonizedSystemCode[];
6415
+ }
6368
6416
  interface ShopifyRefund {
6369
6417
  readonly notify_x: boolean;
6370
6418
  readonly note?: string;
@@ -7520,6 +7568,11 @@ declare namespace io.flow.experience.v0.models {
7520
7568
  readonly available: io.flow.common.v0.enums.DeliveredDuty[];
7521
7569
  readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
7522
7570
  }
7571
+ interface DestinationContactDetail {
7572
+ readonly title: string;
7573
+ readonly country: string;
7574
+ readonly import_identifier: string;
7575
+ }
7523
7576
  interface Discount {
7524
7577
  readonly discriminator: 'discount';
7525
7578
  readonly id: string;
@@ -7832,6 +7885,7 @@ declare namespace io.flow.experience.v0.models {
7832
7885
  readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
7833
7886
  readonly geo?: io.flow.experience.v0.models.OrderGeo;
7834
7887
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
7888
+ readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
7835
7889
  }
7836
7890
  interface OrderAddress {
7837
7891
  readonly text?: string;
@@ -9247,6 +9301,7 @@ declare namespace io.flow.tracking.v0.models {
9247
9301
  readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9248
9302
  readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9249
9303
  readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9304
+ readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9250
9305
  }
9251
9306
  interface LabelTrackingSummaryUpdate {
9252
9307
  readonly timestamp: string;
@@ -9581,6 +9636,7 @@ declare namespace io.flow.catalog.v0.models {
9581
9636
  readonly local?: io.flow.catalog.v0.models.Local;
9582
9637
  readonly created_at?: string;
9583
9638
  readonly updated_at?: string;
9639
+ readonly deleted_at?: string;
9584
9640
  }
9585
9641
  interface ItemAttributesPatchForm {
9586
9642
  readonly attributes: Record<string, string>;
@@ -9596,6 +9652,7 @@ declare namespace io.flow.catalog.v0.models {
9596
9652
  readonly attributes?: Record<string, string>;
9597
9653
  readonly dimensions?: io.flow.common.v0.models.Dimensions;
9598
9654
  readonly images?: io.flow.catalog.v0.models.ImageForm[];
9655
+ readonly deleted_at?: string;
9599
9656
  }
9600
9657
  interface ItemFormOverlay {
9601
9658
  readonly id: string;
@@ -9608,6 +9665,7 @@ declare namespace io.flow.catalog.v0.models {
9608
9665
  readonly attributes?: Record<string, string>;
9609
9666
  readonly dimensions?: io.flow.common.v0.models.Dimensions;
9610
9667
  readonly images?: io.flow.catalog.v0.models.ImageForm[];
9668
+ readonly deleted_at?: string;
9611
9669
  }
9612
9670
  interface ItemFormOverlayForm {
9613
9671
  readonly number: string;
@@ -9619,6 +9677,7 @@ declare namespace io.flow.catalog.v0.models {
9619
9677
  readonly attributes?: Record<string, string>;
9620
9678
  readonly dimensions?: io.flow.common.v0.models.Dimensions;
9621
9679
  readonly images?: io.flow.catalog.v0.models.ImageForm[];
9680
+ readonly deleted_at?: string;
9622
9681
  }
9623
9682
  interface ItemPriceUpdateForm {
9624
9683
  readonly number: string;
@@ -10030,9 +10089,9 @@ declare namespace io.flow.billing.v0.enums {
10030
10089
  type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
10031
10090
  type PayoutAttachmentType = 'transactions';
10032
10091
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
10033
- 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';
10092
+ 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';
10034
10093
  type StatementAttachmentType = 'csv';
10035
- 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';
10094
+ 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';
10036
10095
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
10037
10096
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10038
10097
  }
@@ -12025,10 +12084,10 @@ declare namespace io.flow.internal.v0.enums {
12025
12084
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
12026
12085
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12027
12086
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
12028
- 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_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_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' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_total' | 'negative_balance_debited_total' | 'negative_balance_failed_to_be_debited_total' | 'number_of_orgs_eligible_to_negative_balance_debit' | 'number_of_orgs_with_failed_negative_debit' | 'negative_debit_success_rate';
12087
+ 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_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_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' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_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';
12029
12088
  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';
12030
12089
  type BillingTransactionStatus = 'pending_proof' | 'posted';
12031
- 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';
12090
+ 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' | 'tax_refund';
12032
12091
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
12033
12092
  type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
12034
12093
  type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
@@ -12074,11 +12133,12 @@ declare namespace io.flow.internal.v0.enums {
12074
12133
  type DiscountRequestOrderEntitlementKey = 'subtotal';
12075
12134
  type DisputeBillable = 'flow' | 'organization';
12076
12135
  type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
12136
+ type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
12077
12137
  type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
12078
12138
  type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
12079
12139
  type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
12080
12140
  type DisputeLiability = 'flow' | 'organization';
12081
- type DisputeProcessor = 'adyen' | 'paypal';
12141
+ type DisputeProcessor = 'adyen' | 'paypal' | 'stripe';
12082
12142
  type DisputeReportingCategory = 'charge_issues' | 'delivery' | 'fraud' | 'general' | 'product' | 'returns';
12083
12143
  type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
12084
12144
  type DisputeTransactionType = 'adjustment' | 'dispute';
@@ -12090,9 +12150,10 @@ declare namespace io.flow.internal.v0.enums {
12090
12150
  type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
12091
12151
  type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
12092
12152
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
12153
+ type EldarItemType = 'digital' | 'physical';
12093
12154
  type EmptyAttribute = 'irrelevant';
12094
12155
  type ErpFileType = 'vendor';
12095
- 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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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_item_classification_upserted' | 'harmonization_item_classification_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' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | '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' | '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' | 'pricing_indicator' | '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' | '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_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
12156
+ type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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_item_classification_upserted' | 'harmonization_item_classification_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' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | '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' | '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' | 'pricing_indicator' | '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' | '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_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
12096
12157
  type ExperienceImportType = 'experience_with_settings';
12097
12158
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
12098
12159
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -12127,6 +12188,8 @@ declare namespace io.flow.internal.v0.enums {
12127
12188
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
12128
12189
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
12129
12190
  type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
12191
+ type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
12192
+ type LabelRequestResultState = 'success' | 'failure';
12130
12193
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12131
12194
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
12132
12195
  type LogisticsCapability = 'logistics_address_correction';
@@ -12218,7 +12281,7 @@ declare namespace io.flow.internal.v0.enums {
12218
12281
  type ShopifyGrantStatus = 'pass' | 'fail';
12219
12282
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
12220
12283
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
12221
- type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion';
12284
+ type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion' | 'bulk_duty_update';
12222
12285
  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';
12223
12286
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
12224
12287
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
@@ -12243,9 +12306,10 @@ declare namespace io.flow.internal.v0.enums {
12243
12306
  type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
12244
12307
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
12245
12308
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
12246
- type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
12309
+ type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
12247
12310
  type ThiagoItemType = 'digital' | 'physical';
12248
12311
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
12312
+ type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
12249
12313
  type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
12250
12314
  type TransactionPostingMethod = 'time' | 'proof';
12251
12315
  type TransferMethod = 'ach';
@@ -12482,6 +12546,26 @@ declare namespace io.flow.internal.v0.models {
12482
12546
  interface AddressConfigurationSettingForm {
12483
12547
  readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
12484
12548
  }
12549
+ interface AdjustedEstimates {
12550
+ readonly id: string;
12551
+ readonly organization_id: string;
12552
+ readonly label_id: string;
12553
+ readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
12554
+ }
12555
+ interface AdjustedEstimatesDeleted {
12556
+ readonly discriminator: 'adjusted_estimates_deleted';
12557
+ readonly event_id: string;
12558
+ readonly timestamp: string;
12559
+ readonly organization: string;
12560
+ readonly id: string;
12561
+ }
12562
+ interface AdjustedEstimatesUpserted {
12563
+ readonly discriminator: 'adjusted_estimates_upserted';
12564
+ readonly event_id: string;
12565
+ readonly timestamp: string;
12566
+ readonly organization: string;
12567
+ readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
12568
+ }
12485
12569
  interface AdjustmentAmountFixed {
12486
12570
  readonly discriminator: 'fixed';
12487
12571
  readonly amount: io.flow.common.v0.models.Money;
@@ -12874,6 +12958,13 @@ declare namespace io.flow.internal.v0.models {
12874
12958
  interface ApplyAtValueForm {
12875
12959
  readonly value: string;
12876
12960
  }
12961
+ interface AttemptStatistics {
12962
+ readonly merchant_count: number;
12963
+ readonly amount: number;
12964
+ readonly failed_merchant_count: number;
12965
+ readonly failed_amount: number;
12966
+ readonly success_ratio: number;
12967
+ }
12877
12968
  interface AttributeLabel {
12878
12969
  readonly value: string;
12879
12970
  readonly unverified: boolean;
@@ -13177,6 +13268,7 @@ declare namespace io.flow.internal.v0.models {
13177
13268
  readonly trueup: io.flow.common.v0.models.Price;
13178
13269
  readonly carrier_charge: io.flow.common.v0.models.Price;
13179
13270
  readonly ending_balance: io.flow.common.v0.models.Price;
13271
+ readonly tax_refund: io.flow.common.v0.models.Price;
13180
13272
  }
13181
13273
  interface BillingStatementUpserted {
13182
13274
  readonly discriminator: 'billing_statement_upserted';
@@ -13309,6 +13401,11 @@ declare namespace io.flow.internal.v0.models {
13309
13401
  readonly discriminator: 'bulk';
13310
13402
  readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
13311
13403
  }
13404
+ interface BulkDutyUpdateValidationError {
13405
+ readonly message: string;
13406
+ readonly reason: string;
13407
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
13408
+ }
13312
13409
  interface CalculatedTaxAmount {
13313
13410
  readonly discriminator: 'calculated_tax_amount';
13314
13411
  readonly amount: number;
@@ -14264,6 +14361,17 @@ declare namespace io.flow.internal.v0.models {
14264
14361
  readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
14265
14362
  readonly customs_description_suggestions: io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
14266
14363
  }
14364
+ interface ClassificationMerchant {
14365
+ readonly MerchantId: string;
14366
+ readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
14367
+ readonly Name: string;
14368
+ readonly DateLastUpdated?: string;
14369
+ readonly Order: number;
14370
+ }
14371
+ interface ClassificationMerchantEnvelope {
14372
+ readonly messageType: string[];
14373
+ readonly message: io.flow.internal.v0.models.ClassificationMerchant;
14374
+ }
14267
14375
  interface ClassificationProduct {
14268
14376
  readonly organization_id: string;
14269
14377
  readonly product_id?: string;
@@ -14415,11 +14523,13 @@ declare namespace io.flow.internal.v0.models {
14415
14523
  readonly transaction_date: string;
14416
14524
  readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
14417
14525
  readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
14526
+ readonly billing_address?: io.flow.fulfillment.v0.models.ShippingAddress;
14418
14527
  readonly service: string;
14419
14528
  readonly flow_tracking_number: string;
14420
14529
  readonly rex_number?: string;
14421
14530
  readonly wee_number?: string;
14422
14531
  readonly business_gst_numbers: string[];
14532
+ readonly destination_gst_numbers?: string[];
14423
14533
  readonly vat_name: string;
14424
14534
  readonly shipping_price: string;
14425
14535
  readonly shipment_recipient?: string;
@@ -14442,6 +14552,7 @@ declare namespace io.flow.internal.v0.models {
14442
14552
  readonly show_us_outbound_signature: boolean;
14443
14553
  readonly show_us_outbound_stamp: boolean;
14444
14554
  readonly invoice_url?: string;
14555
+ readonly invoice_number?: string;
14445
14556
  }
14446
14557
  interface CommercialInvoiceInternalDeleted {
14447
14558
  readonly discriminator: 'commercial_invoice_internal_deleted';
@@ -14956,7 +15067,7 @@ declare namespace io.flow.internal.v0.models {
14956
15067
  interface Dispute {
14957
15068
  readonly id: string;
14958
15069
  readonly organization_id: string;
14959
- readonly order: io.flow.internal.v0.models.DisputeOrderReference;
15070
+ readonly order?: io.flow.internal.v0.models.DisputeOrderReference;
14960
15071
  readonly authorization: io.flow.internal.v0.models.DisputeAuthorizationReference;
14961
15072
  readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
14962
15073
  readonly key: string;
@@ -14965,9 +15076,11 @@ declare namespace io.flow.internal.v0.models {
14965
15076
  readonly category: io.flow.internal.v0.enums.DisputeCategory;
14966
15077
  readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
14967
15078
  readonly reason: string;
15079
+ readonly code?: string;
14968
15080
  readonly status: io.flow.internal.v0.enums.DisputeStatus;
14969
15081
  readonly liability: io.flow.internal.v0.enums.DisputeLiability;
14970
15082
  readonly billable: io.flow.internal.v0.enums.DisputeBillable;
15083
+ readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
14971
15084
  readonly details: io.flow.internal.v0.unions.DisputeDetails;
14972
15085
  readonly issued_at: string;
14973
15086
  readonly expires_at?: string;
@@ -14984,6 +15097,10 @@ declare namespace io.flow.internal.v0.models {
14984
15097
  readonly organization: string;
14985
15098
  readonly id: string;
14986
15099
  }
15100
+ interface DisputeDetail {
15101
+ readonly authorization: io.flow.internal.v0.models.SearchAuthorization;
15102
+ readonly dispute: io.flow.internal.v0.models.Dispute;
15103
+ }
14987
15104
  interface DisputeDetailsAdyen {
14988
15105
  readonly discriminator: 'adyen';
14989
15106
  readonly psp_reference: string;
@@ -14994,6 +15111,7 @@ declare namespace io.flow.internal.v0.models {
14994
15111
  readonly original_transaction_id: string;
14995
15112
  readonly transaction_invoice_id: string;
14996
15113
  readonly case_id: string;
15114
+ readonly dispute_channel?: string;
14997
15115
  }
14998
15116
  interface DisputeDetailsStripe {
14999
15117
  readonly discriminator: 'stripe';
@@ -15025,6 +15143,12 @@ declare namespace io.flow.internal.v0.models {
15025
15143
  interface DisputeOrganizationReference {
15026
15144
  readonly id: string;
15027
15145
  }
15146
+ interface DisputeOverrideUpdateForm {
15147
+ readonly billable?: io.flow.internal.v0.enums.DisputeBillable;
15148
+ readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
15149
+ readonly category?: io.flow.internal.v0.enums.DisputeCategory;
15150
+ readonly status?: io.flow.internal.v0.enums.DisputeStatus;
15151
+ }
15028
15152
  interface DisputeStatusForm {
15029
15153
  readonly status: io.flow.internal.v0.enums.DisputeStatus;
15030
15154
  }
@@ -15208,6 +15332,33 @@ declare namespace io.flow.internal.v0.models {
15208
15332
  readonly timestamp: string;
15209
15333
  readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
15210
15334
  }
15335
+ interface EldarItem {
15336
+ readonly id: string;
15337
+ readonly number: string;
15338
+ readonly amount: io.flow.common.v0.models.Price;
15339
+ readonly description?: string;
15340
+ readonly type: io.flow.internal.v0.enums.EldarItemType;
15341
+ readonly added_on: string;
15342
+ }
15343
+ interface EldarItemDeleted {
15344
+ readonly discriminator: 'eldar_item_deleted';
15345
+ readonly event_id: string;
15346
+ readonly timestamp: string;
15347
+ readonly id: string;
15348
+ }
15349
+ interface EldarItemForm {
15350
+ readonly number: string;
15351
+ readonly amount: io.flow.common.v0.models.Price;
15352
+ readonly description?: string;
15353
+ readonly type: io.flow.internal.v0.enums.EldarItemType;
15354
+ readonly added_on: string;
15355
+ }
15356
+ interface EldarItemUpserted {
15357
+ readonly discriminator: 'eldar_item_upserted';
15358
+ readonly event_id: string;
15359
+ readonly timestamp: string;
15360
+ readonly item: io.flow.internal.v0.models.EldarItem;
15361
+ }
15211
15362
  interface EmailForm {
15212
15363
  readonly to: string[];
15213
15364
  readonly cc?: string[];
@@ -15520,6 +15671,7 @@ declare namespace io.flow.internal.v0.models {
15520
15671
  readonly description?: string;
15521
15672
  readonly order_number?: string;
15522
15673
  readonly raw_carrier_event_code?: string;
15674
+ readonly aggregator_status_code?: string;
15523
15675
  readonly created_at?: string;
15524
15676
  }
15525
15677
  interface ExternalFulfillmentProof {
@@ -16180,6 +16332,26 @@ declare namespace io.flow.internal.v0.models {
16180
16332
  readonly organization: string;
16181
16333
  readonly id: string;
16182
16334
  }
16335
+ interface FulfillmentFallbacks {
16336
+ readonly id: string;
16337
+ readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
16338
+ readonly contact: io.flow.common.v0.models.Contact;
16339
+ readonly location?: io.flow.common.v0.models.Address;
16340
+ }
16341
+ interface FulfillmentFallbacksDeleted {
16342
+ readonly discriminator: 'fulfillment_fallbacks_deleted';
16343
+ readonly event_id: string;
16344
+ readonly timestamp: string;
16345
+ readonly organization: string;
16346
+ readonly id: string;
16347
+ }
16348
+ interface FulfillmentFallbacksUpserted {
16349
+ readonly discriminator: 'fulfillment_fallbacks_upserted';
16350
+ readonly event_id: string;
16351
+ readonly timestamp: string;
16352
+ readonly organization: string;
16353
+ readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
16354
+ }
16183
16355
  interface FulfillmentInternalExperienceReference {
16184
16356
  readonly id: string;
16185
16357
  readonly key: string;
@@ -17166,6 +17338,21 @@ declare namespace io.flow.internal.v0.models {
17166
17338
  readonly organization: string;
17167
17339
  readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
17168
17340
  }
17341
+ interface LabelRequestResult {
17342
+ readonly id: string;
17343
+ readonly created_at: string;
17344
+ readonly state: io.flow.internal.v0.enums.LabelRequestResultState;
17345
+ readonly organization_id: string;
17346
+ readonly order_number: string;
17347
+ readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
17348
+ readonly carrier_id?: string;
17349
+ readonly carrier_tracking_number?: string;
17350
+ readonly url?: string;
17351
+ readonly error?: string;
17352
+ readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
17353
+ readonly origin_country?: string;
17354
+ readonly destination_country?: string;
17355
+ }
17169
17356
  interface LabelSummary {
17170
17357
  readonly id: string;
17171
17358
  readonly commercial_invoice?: string;
@@ -18023,6 +18210,7 @@ declare namespace io.flow.internal.v0.models {
18023
18210
  readonly duty: number;
18024
18211
  readonly freight: number;
18025
18212
  readonly total: number;
18213
+ readonly tax_refund?: number;
18026
18214
  }
18027
18215
  interface MerchantUpserted {
18028
18216
  readonly discriminator: 'merchant_upserted';
@@ -18100,6 +18288,11 @@ declare namespace io.flow.internal.v0.models {
18100
18288
  readonly discriminator: 'percentage';
18101
18289
  readonly percent: number;
18102
18290
  }
18291
+ interface NegativeDebitMetrics {
18292
+ readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
18293
+ readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
18294
+ readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
18295
+ }
18103
18296
  interface NextBillingStatement {
18104
18297
  readonly date: string;
18105
18298
  readonly amount: io.flow.common.v0.models.Price;
@@ -18339,6 +18532,7 @@ declare namespace io.flow.internal.v0.models {
18339
18532
  readonly created_at: string;
18340
18533
  readonly updated_at: string;
18341
18534
  readonly shopify_order_id?: string;
18535
+ readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
18342
18536
  }
18343
18537
  interface OrderFulfillmentDeleted {
18344
18538
  readonly discriminator: 'order_fulfillment_deleted';
@@ -18507,6 +18701,8 @@ declare namespace io.flow.internal.v0.models {
18507
18701
  readonly resolved_at?: string;
18508
18702
  readonly last_failure?: io.flow.internal.v0.models.LastFailureSummary;
18509
18703
  readonly sla_breach_at?: string;
18704
+ readonly capabilities_at_creation?: io.flow.internal.v0.enums.LogisticsCapability[];
18705
+ readonly first_globale_address_repair_failure_at?: string;
18510
18706
  }
18511
18707
  interface OrderValidationDeleted {
18512
18708
  readonly discriminator: 'order_validation_deleted';
@@ -20261,6 +20457,8 @@ declare namespace io.flow.internal.v0.models {
20261
20457
  readonly tax_inclusive?: boolean;
20262
20458
  readonly duty_inclusive?: boolean;
20263
20459
  readonly manual_payment?: boolean;
20460
+ readonly partial_fulfillment?: boolean;
20461
+ readonly partial_refund?: boolean;
20264
20462
  }
20265
20463
  interface ReportingFx {
20266
20464
  readonly shipping: io.flow.internal.v0.models.ReportingUsd;
@@ -20301,6 +20499,7 @@ declare namespace io.flow.internal.v0.models {
20301
20499
  readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
20302
20500
  readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
20303
20501
  readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
20502
+ readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
20304
20503
  }
20305
20504
  interface ReportingMonetaryValue {
20306
20505
  readonly transaction: number;
@@ -22167,6 +22366,22 @@ declare namespace io.flow.internal.v0.models {
22167
22366
  readonly organization: string;
22168
22367
  readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
22169
22368
  }
22369
+ interface TrackingAssuranceJob {
22370
+ readonly id: string;
22371
+ readonly created_at: string;
22372
+ }
22373
+ interface TrackingAssuranceJobDeleted {
22374
+ readonly discriminator: 'tracking_assurance_job_deleted';
22375
+ readonly event_id: string;
22376
+ readonly timestamp: string;
22377
+ readonly id: string;
22378
+ }
22379
+ interface TrackingAssuranceJobUpserted {
22380
+ readonly discriminator: 'tracking_assurance_job_upserted';
22381
+ readonly event_id: string;
22382
+ readonly timestamp: string;
22383
+ readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
22384
+ }
22170
22385
  interface TrackingDebugForceTransitForm {
22171
22386
  readonly description: string;
22172
22387
  }
@@ -22203,6 +22418,28 @@ declare namespace io.flow.internal.v0.models {
22203
22418
  readonly organization: string;
22204
22419
  readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
22205
22420
  }
22421
+ interface TrackingLabelDimensions {
22422
+ readonly id: string;
22423
+ readonly organization_id: string;
22424
+ readonly tracking_label_id: string;
22425
+ readonly source: io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
22426
+ readonly created_at: string;
22427
+ readonly dimensions: io.flow.common.v0.models.Dimensions;
22428
+ }
22429
+ interface TrackingLabelDimensionsDeleted {
22430
+ readonly discriminator: 'tracking_label_dimensions_deleted';
22431
+ readonly event_id: string;
22432
+ readonly timestamp: string;
22433
+ readonly organization: string;
22434
+ readonly id: string;
22435
+ }
22436
+ interface TrackingLabelDimensionsUpserted {
22437
+ readonly discriminator: 'tracking_label_dimensions_upserted';
22438
+ readonly event_id: string;
22439
+ readonly timestamp: string;
22440
+ readonly organization: string;
22441
+ readonly tracking_label_dimensions: io.flow.internal.v0.models.TrackingLabelDimensions;
22442
+ }
22206
22443
  interface TrackingLabelEventDeletedV2 {
22207
22444
  readonly discriminator: 'tracking_label_event_deleted_v2';
22208
22445
  readonly event_id: string;
@@ -22567,7 +22804,7 @@ declare namespace io.flow.internal.v0.unions {
22567
22804
  type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
22568
22805
  type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
22569
22806
  type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
22570
- 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.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.TariffCodesExport | 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.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | 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.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | 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.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.PricingIndicator | 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.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.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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
22807
+ type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.TariffCodesExport | 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.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | 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.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | 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.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.PricingIndicator | 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.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.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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | 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.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
22571
22808
  type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
22572
22809
  type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
22573
22810
  type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
@@ -22666,6 +22903,9 @@ export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.mo
22666
22903
  export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
22667
22904
  export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
22668
22905
  export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
22906
+ export declare type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
22907
+ export declare type AdjustedEstimatesDeleted = io.flow.internal.v0.models.AdjustedEstimatesDeleted;
22908
+ export declare type AdjustedEstimatesUpserted = io.flow.internal.v0.models.AdjustedEstimatesUpserted;
22669
22909
  export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
22670
22910
  export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
22671
22911
  export declare type AdjustmentAmountPercentage = io.flow.internal.v0.models.AdjustmentAmountPercentage;
@@ -22733,6 +22973,7 @@ export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallRefere
22733
22973
  export declare type ApmContent = io.flow.internal.v0.models.ApmContent;
22734
22974
  export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
22735
22975
  export declare type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
22976
+ export declare type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
22736
22977
  export declare type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
22737
22978
  export declare type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
22738
22979
  export declare type AuthorizationBundle = io.flow.internal.v0.models.AuthorizationBundle;
@@ -22817,6 +23058,7 @@ export declare type BrowserBundlePaymentMethod = io.flow.internal.v0.models.Brow
22817
23058
  export declare type BrowserBundlePaymentMethodForm = io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
22818
23059
  export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.BrowserBundlePaymentMethods;
22819
23060
  export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
23061
+ export declare type BulkDutyUpdateValidationError = io.flow.internal.v0.models.BulkDutyUpdateValidationError;
22820
23062
  export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
22821
23063
  export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
22822
23064
  export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
@@ -22997,6 +23239,8 @@ export declare type ClassificationFormWrapper = io.flow.internal.v0.models.Class
22997
23239
  export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
22998
23240
  export declare type ClassificationJudgementForm = io.flow.internal.v0.unions.ClassificationJudgementForm;
22999
23241
  export declare type ClassificationLabelAttribute = io.flow.internal.v0.unions.ClassificationLabelAttribute;
23242
+ export declare type ClassificationMerchant = io.flow.internal.v0.models.ClassificationMerchant;
23243
+ export declare type ClassificationMerchantEnvelope = io.flow.internal.v0.models.ClassificationMerchantEnvelope;
23000
23244
  export declare type ClassificationPlatform = io.flow.internal.v0.enums.ClassificationPlatform;
23001
23245
  export declare type ClassificationProduct = io.flow.internal.v0.models.ClassificationProduct;
23002
23246
  export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
@@ -23134,7 +23378,9 @@ export declare type Dispute = io.flow.internal.v0.models.Dispute;
23134
23378
  export declare type DisputeAuthorizationReference = io.flow.internal.v0.models.DisputeAuthorizationReference;
23135
23379
  export declare type DisputeBillable = io.flow.internal.v0.enums.DisputeBillable;
23136
23380
  export declare type DisputeCategory = io.flow.internal.v0.enums.DisputeCategory;
23381
+ export declare type DisputeDefenseOutcome = io.flow.internal.v0.enums.DisputeDefenseOutcome;
23137
23382
  export declare type DisputeDeleted = io.flow.internal.v0.models.DisputeDeleted;
23383
+ export declare type DisputeDetail = io.flow.internal.v0.models.DisputeDetail;
23138
23384
  export declare type DisputeDetails = io.flow.internal.v0.unions.DisputeDetails;
23139
23385
  export declare type DisputeDetailsAdyen = io.flow.internal.v0.models.DisputeDetailsAdyen;
23140
23386
  export declare type DisputeDetailsPaypal = io.flow.internal.v0.models.DisputeDetailsPaypal;
@@ -23149,6 +23395,7 @@ export declare type DisputeImportType = io.flow.internal.v0.enums.DisputeImportT
23149
23395
  export declare type DisputeLiability = io.flow.internal.v0.enums.DisputeLiability;
23150
23396
  export declare type DisputeOrderReference = io.flow.internal.v0.models.DisputeOrderReference;
23151
23397
  export declare type DisputeOrganizationReference = io.flow.internal.v0.models.DisputeOrganizationReference;
23398
+ export declare type DisputeOverrideUpdateForm = io.flow.internal.v0.models.DisputeOverrideUpdateForm;
23152
23399
  export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
23153
23400
  export declare type DisputeReportingCategory = io.flow.internal.v0.enums.DisputeReportingCategory;
23154
23401
  export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
@@ -23187,6 +23434,11 @@ export declare type DutyTransaction = io.flow.internal.v0.models.DutyTransaction
23187
23434
  export declare type DutyTransactionDeleted = io.flow.internal.v0.models.DutyTransactionDeleted;
23188
23435
  export declare type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
23189
23436
  export declare type DutyTransactionUpserted = io.flow.internal.v0.models.DutyTransactionUpserted;
23437
+ export declare type EldarItem = io.flow.internal.v0.models.EldarItem;
23438
+ export declare type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
23439
+ export declare type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
23440
+ export declare type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
23441
+ export declare type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
23190
23442
  export declare type EmailForm = io.flow.internal.v0.models.EmailForm;
23191
23443
  export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModificationForm;
23192
23444
  export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
@@ -23344,6 +23596,9 @@ export declare type FulfillmentBusiness = io.flow.internal.v0.models.Fulfillment
23344
23596
  export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
23345
23597
  export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
23346
23598
  export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
23599
+ export declare type FulfillmentFallbacks = io.flow.internal.v0.models.FulfillmentFallbacks;
23600
+ export declare type FulfillmentFallbacksDeleted = io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
23601
+ export declare type FulfillmentFallbacksUpserted = io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
23347
23602
  export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
23348
23603
  export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
23349
23604
  export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
@@ -23529,6 +23784,9 @@ export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestE
23529
23784
  export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelRequestErrorDeleted;
23530
23785
  export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
23531
23786
  export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
23787
+ export declare type LabelRequestResult = io.flow.internal.v0.models.LabelRequestResult;
23788
+ export declare type LabelRequestResultOrganizationType = io.flow.internal.v0.enums.LabelRequestResultOrganizationType;
23789
+ export declare type LabelRequestResultState = io.flow.internal.v0.enums.LabelRequestResultState;
23532
23790
  export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
23533
23791
  export declare type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
23534
23792
  export declare type LabelSurchargeSingleForm = io.flow.internal.v0.models.LabelSurchargeSingleForm;
@@ -23700,6 +23958,7 @@ export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
23700
23958
  export declare type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
23701
23959
  export declare type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
23702
23960
  export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
23961
+ export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
23703
23962
  export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
23704
23963
  export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
23705
23964
  export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
@@ -24460,6 +24719,9 @@ export declare type Tracker = io.flow.internal.v0.unions.Tracker;
24460
24719
  export declare type TrackingAssuranceAnalysis = io.flow.internal.v0.models.TrackingAssuranceAnalysis;
24461
24720
  export declare type TrackingAssuranceAnalysisDeleted = io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
24462
24721
  export declare type TrackingAssuranceAnalysisUpserted = io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
24722
+ export declare type TrackingAssuranceJob = io.flow.internal.v0.models.TrackingAssuranceJob;
24723
+ export declare type TrackingAssuranceJobDeleted = io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
24724
+ export declare type TrackingAssuranceJobUpserted = io.flow.internal.v0.models.TrackingAssuranceJobUpserted;
24463
24725
  export declare type TrackingDebugForceTransitForm = io.flow.internal.v0.models.TrackingDebugForceTransitForm;
24464
24726
  export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
24465
24727
  export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
@@ -24468,6 +24730,10 @@ export declare type TrackingDeleted = io.flow.internal.v0.models.TrackingDeleted
24468
24730
  export declare type TrackingEvent = io.flow.internal.v0.models.TrackingEvent;
24469
24731
  export declare type TrackingIntegrationType = io.flow.internal.v0.enums.TrackingIntegrationType;
24470
24732
  export declare type TrackingLabelDeleted = io.flow.internal.v0.models.TrackingLabelDeleted;
24733
+ export declare type TrackingLabelDimensions = io.flow.internal.v0.models.TrackingLabelDimensions;
24734
+ export declare type TrackingLabelDimensionsDeleted = io.flow.internal.v0.models.TrackingLabelDimensionsDeleted;
24735
+ export declare type TrackingLabelDimensionsSource = io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
24736
+ export declare type TrackingLabelDimensionsUpserted = io.flow.internal.v0.models.TrackingLabelDimensionsUpserted;
24471
24737
  export declare type TrackingLabelEventDeletedV2 = io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
24472
24738
  export declare type TrackingLabelEventUpsertedV2 = io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
24473
24739
  export declare type TrackingLabelUpserted = io.flow.internal.v0.models.TrackingLabelUpserted;