@flowio/types 11.24.61 → 11.24.63
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.
- package/dist/api-internal.d.ts +99 -88
- package/dist/api.d.ts +44 -9
- package/package.json +2 -2
- package/src/api-internal.ts +3329 -1699
- package/src/api.ts +999 -479
package/dist/api-internal.d.ts
CHANGED
|
@@ -2091,6 +2091,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2091
2091
|
interface Metadata {
|
|
2092
2092
|
readonly order_number?: string;
|
|
2093
2093
|
readonly authorization_id?: string;
|
|
2094
|
+
readonly organization_id?: string;
|
|
2094
2095
|
}
|
|
2095
2096
|
interface NextAction {
|
|
2096
2097
|
readonly type: io.flow.stripe.v0.enums.NextActionType;
|
|
@@ -2433,6 +2434,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2433
2434
|
readonly token?: string;
|
|
2434
2435
|
readonly usage: io.flow.stripe.v0.enums.SourceUsageType;
|
|
2435
2436
|
readonly source_order?: io.flow.stripe.v0.models.SourceOrderRequest;
|
|
2437
|
+
readonly metadata?: io.flow.stripe.v0.models.Metadata;
|
|
2436
2438
|
}
|
|
2437
2439
|
interface Stripe3Ds2Fingerprint {
|
|
2438
2440
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
@@ -2594,6 +2596,13 @@ declare namespace io.flow.label.v0.models {
|
|
|
2594
2596
|
interface BridgeManifestForm {
|
|
2595
2597
|
readonly order_numbers: string[];
|
|
2596
2598
|
}
|
|
2599
|
+
interface BridgeShippingLabelForm {
|
|
2600
|
+
readonly discriminator: 'bridge_shipping_label_form';
|
|
2601
|
+
readonly order_number: string;
|
|
2602
|
+
readonly items?: io.flow.common.v0.models.LineItemForm[];
|
|
2603
|
+
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
2604
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2605
|
+
}
|
|
2597
2606
|
interface CrossdockShipment {
|
|
2598
2607
|
readonly partner_id: string;
|
|
2599
2608
|
readonly center_id: string;
|
|
@@ -2609,7 +2618,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2609
2618
|
readonly attributes?: Record<string, string>;
|
|
2610
2619
|
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
2611
2620
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
2612
|
-
readonly order_number
|
|
2621
|
+
readonly order_number: string;
|
|
2613
2622
|
readonly service?: string;
|
|
2614
2623
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2615
2624
|
}
|
|
@@ -2756,7 +2765,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2756
2765
|
}
|
|
2757
2766
|
}
|
|
2758
2767
|
declare namespace io.flow.label.v0.unions {
|
|
2759
|
-
type ShippingLabelForm = io.flow.label.v0.models.DetailedShippingLabelForm | io.flow.label.v0.models.SummaryShippingLabelForm;
|
|
2768
|
+
type ShippingLabelForm = io.flow.label.v0.models.DetailedShippingLabelForm | io.flow.label.v0.models.SummaryShippingLabelForm | io.flow.label.v0.models.BridgeShippingLabelForm;
|
|
2760
2769
|
type ShippingNotificationForm = io.flow.label.v0.models.DetailedShippingNotificationForm | io.flow.label.v0.models.SinglePackageShippingNotificationForm | io.flow.label.v0.models.SummaryShippingNotificationForm;
|
|
2761
2770
|
}
|
|
2762
2771
|
declare namespace io.flow.external.paypal.v1.enums {
|
|
@@ -3474,9 +3483,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3474
3483
|
type Contract = 'RECURRING';
|
|
3475
3484
|
type DeviceChannel = 'app' | 'browser';
|
|
3476
3485
|
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';
|
|
3477
|
-
type
|
|
3486
|
+
type Method = 'GET' | 'POST';
|
|
3478
3487
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3479
|
-
type PaymentMethod = 'ach' | 'alipay' | '
|
|
3488
|
+
type PaymentMethod = 'ach' | 'alipay' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mc' | 'molpay_points' | 'multibanco' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
3480
3489
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3481
3490
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3482
3491
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3495,10 +3504,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3495
3504
|
readonly value: number;
|
|
3496
3505
|
readonly currency: string;
|
|
3497
3506
|
}
|
|
3498
|
-
interface Applepay {
|
|
3499
|
-
readonly type: 'applepay';
|
|
3500
|
-
readonly applePayToken: string;
|
|
3501
|
-
}
|
|
3502
3507
|
interface Authentication {
|
|
3503
3508
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3504
3509
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3525,8 +3530,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3525
3530
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3526
3531
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3527
3532
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3528
|
-
readonly mcc?: string;
|
|
3529
|
-
readonly metadata?: any;
|
|
3530
3533
|
}
|
|
3531
3534
|
interface AuthorizeRequest3D {
|
|
3532
3535
|
readonly merchantAccount: string;
|
|
@@ -3660,12 +3663,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3660
3663
|
readonly details: any;
|
|
3661
3664
|
readonly paymentData?: string;
|
|
3662
3665
|
}
|
|
3663
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
3664
|
-
readonly 'threeds2.challengeResult': string;
|
|
3665
|
-
}
|
|
3666
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
3667
|
-
readonly 'threeds2.fingerprint': string;
|
|
3668
|
-
}
|
|
3669
3666
|
interface PaymentRequest {
|
|
3670
3667
|
readonly reference: string;
|
|
3671
3668
|
readonly merchantAccount: string;
|
|
@@ -3687,12 +3684,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3687
3684
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3688
3685
|
readonly origin?: string;
|
|
3689
3686
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
3690
|
-
readonly
|
|
3691
|
-
readonly mcc?: string;
|
|
3692
|
-
readonly metadata?: any;
|
|
3693
|
-
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3694
|
-
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3695
|
-
readonly storePaymentMethod?: boolean;
|
|
3687
|
+
readonly returnURL?: string;
|
|
3696
3688
|
}
|
|
3697
3689
|
interface PaymentResponse {
|
|
3698
3690
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3707,61 +3699,19 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3707
3699
|
interface PaymentResponseAdditionalData {
|
|
3708
3700
|
readonly authCode?: string;
|
|
3709
3701
|
readonly avsResultRaw?: string;
|
|
3710
|
-
readonly avsResult?: string;
|
|
3711
3702
|
readonly cvcResultRaw?: string;
|
|
3712
|
-
readonly cvcResult?: string;
|
|
3713
|
-
readonly refusalReasonRaw?: string;
|
|
3714
3703
|
readonly liabilityShift?: string;
|
|
3715
3704
|
readonly threeDAuthenticated?: string;
|
|
3716
3705
|
readonly threeDAuthenticatedResponse?: string;
|
|
3717
3706
|
readonly threeDOffered?: string;
|
|
3718
3707
|
readonly threeDOfferedResponse?: string;
|
|
3719
|
-
readonly threeDSVersion?: string;
|
|
3720
|
-
readonly eci?: string;
|
|
3721
|
-
readonly cavv?: string;
|
|
3722
|
-
readonly scaExemptionRequested?: string;
|
|
3723
|
-
readonly paymentMethod?: string;
|
|
3724
|
-
readonly paymentMethodVariant?: string;
|
|
3725
|
-
readonly tokenTxVariant?: string;
|
|
3726
|
-
readonly acquirerCode?: string;
|
|
3727
|
-
readonly acquirerAccountCode?: string;
|
|
3728
|
-
readonly cardPaymentMethod?: string;
|
|
3729
|
-
readonly coBrandedWith?: string;
|
|
3730
|
-
readonly cardIssuingCountry?: string;
|
|
3731
|
-
readonly cardIssuingCurrency?: string;
|
|
3732
|
-
readonly cardIssuingBank?: string;
|
|
3733
|
-
readonly cardBin?: string;
|
|
3734
|
-
readonly issuerBin?: string;
|
|
3735
|
-
readonly cardSummary?: string;
|
|
3736
|
-
readonly untokenisedCardSummary?: string;
|
|
3737
|
-
readonly expiryDate?: string;
|
|
3738
|
-
readonly cardHolderName?: string;
|
|
3739
|
-
readonly fundingSource?: string;
|
|
3740
|
-
readonly ownerName?: string;
|
|
3741
|
-
readonly bankName?: string;
|
|
3742
|
-
readonly issuerCountry?: string;
|
|
3743
|
-
readonly iban?: string;
|
|
3744
|
-
readonly bic?: string;
|
|
3745
|
-
readonly iDealConsumerAccountNumber?: string;
|
|
3746
|
-
readonly iDealConsumerBIC?: string;
|
|
3747
|
-
readonly iDealConsumerCity?: string;
|
|
3748
|
-
readonly iDealConsumerIBAN?: string;
|
|
3749
|
-
readonly iDealConsumerName?: string;
|
|
3750
|
-
readonly iDealTransactionId?: string;
|
|
3751
|
-
readonly 'recurring.recurringDetailReference'?: string;
|
|
3752
|
-
readonly 'recurring.shopperReference'?: string;
|
|
3753
|
-
readonly networkTxReference?: string;
|
|
3754
|
-
readonly PaymentAccountReference?: string;
|
|
3755
|
-
readonly 'networkToken.available'?: string;
|
|
3756
|
-
readonly 'networkToken.bin'?: string;
|
|
3757
|
-
readonly 'networkToken.tokenSummary'?: string;
|
|
3758
3708
|
}
|
|
3759
3709
|
interface Recurring {
|
|
3760
3710
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
3761
3711
|
}
|
|
3762
3712
|
interface Redirect {
|
|
3763
3713
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
3764
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
3714
|
+
readonly method?: io.flow.adyen.v0.enums.Method;
|
|
3765
3715
|
readonly url?: string;
|
|
3766
3716
|
}
|
|
3767
3717
|
interface RedirectData {
|
|
@@ -3781,15 +3731,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3781
3731
|
readonly holderName: string;
|
|
3782
3732
|
readonly number: string;
|
|
3783
3733
|
readonly cvc?: string;
|
|
3784
|
-
readonly storedPaymentMethodId?: string;
|
|
3785
|
-
readonly networkPaymentReference?: string;
|
|
3786
|
-
}
|
|
3787
|
-
interface SdkV3OnCompleteData {
|
|
3788
|
-
readonly details: any;
|
|
3789
|
-
readonly payment_data?: string;
|
|
3790
|
-
}
|
|
3791
|
-
interface SdkV3OnCompleteResult {
|
|
3792
|
-
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
3793
3734
|
}
|
|
3794
3735
|
interface ThreeDSecureData {
|
|
3795
3736
|
readonly authenticationResponse?: string;
|
|
@@ -3816,7 +3757,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3816
3757
|
}
|
|
3817
3758
|
declare namespace io.flow.adyen.v0.unions {
|
|
3818
3759
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
3819
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme
|
|
3760
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
3820
3761
|
}
|
|
3821
3762
|
declare namespace io.flow.order.management.v0.enums {
|
|
3822
3763
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -6022,12 +5963,16 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6022
5963
|
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
6023
5964
|
}
|
|
6024
5965
|
declare namespace io.flow.partner.v0.models {
|
|
5966
|
+
interface BridgeHub {
|
|
5967
|
+
readonly hub_code: string;
|
|
5968
|
+
readonly address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
5969
|
+
}
|
|
6025
5970
|
interface BridgeLabelForm {
|
|
6026
5971
|
readonly discriminator: 'bridge_label_form';
|
|
6027
5972
|
readonly organization: string;
|
|
6028
5973
|
readonly order_number: string;
|
|
6029
5974
|
readonly package: io.flow.partner.v0.models.BridgeLabelPackage;
|
|
6030
|
-
readonly
|
|
5975
|
+
readonly hub?: io.flow.partner.v0.models.BridgeHub;
|
|
6031
5976
|
}
|
|
6032
5977
|
interface BridgeLabelPackage {
|
|
6033
5978
|
readonly dimensions?: io.flow.common.v0.models.Dimension;
|
|
@@ -8912,7 +8857,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8912
8857
|
type PayoutAttachmentType = 'transactions';
|
|
8913
8858
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
8914
8859
|
type StatementAttachmentType = 'csv';
|
|
8915
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8860
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8916
8861
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8917
8862
|
}
|
|
8918
8863
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -10045,17 +9990,17 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
10045
9990
|
}
|
|
10046
9991
|
}
|
|
10047
9992
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
10048
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
9993
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
10049
9994
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
10050
9995
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
10051
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
9996
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
10052
9997
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
10053
9998
|
}
|
|
10054
9999
|
declare namespace io.flow.apple.pay.v0.models {
|
|
10055
10000
|
interface ApplePayLineItem {
|
|
10056
10001
|
readonly label: string;
|
|
10057
10002
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
10058
|
-
readonly amount:
|
|
10003
|
+
readonly amount: number;
|
|
10059
10004
|
}
|
|
10060
10005
|
interface ApplePayPaymentContact {
|
|
10061
10006
|
readonly email_address?: string;
|
|
@@ -10102,7 +10047,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
10102
10047
|
interface ApplePayShippingMethod {
|
|
10103
10048
|
readonly label: string;
|
|
10104
10049
|
readonly detail: string;
|
|
10105
|
-
readonly amount:
|
|
10050
|
+
readonly amount: number;
|
|
10106
10051
|
readonly identifier: string;
|
|
10107
10052
|
}
|
|
10108
10053
|
}
|
|
@@ -10604,7 +10549,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10604
10549
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10605
10550
|
type EmptyAttribute = 'irrelevant';
|
|
10606
10551
|
type ErpFileType = 'vendor';
|
|
10607
|
-
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' | '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_deleted' | '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' | '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' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | '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_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' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10552
|
+
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' | '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_deleted' | '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' | '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' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | '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_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' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10608
10553
|
type ExperienceImportType = 'experience_with_settings';
|
|
10609
10554
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10610
10555
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10636,6 +10581,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10636
10581
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
10637
10582
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10638
10583
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10584
|
+
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
10639
10585
|
type LabelInputSource = 'estimate';
|
|
10640
10586
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10641
10587
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -10660,8 +10606,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10660
10606
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
|
|
10661
10607
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10662
10608
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10609
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
10663
10610
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
10664
10611
|
type OrderAttributeIntent = 'discount_code';
|
|
10612
|
+
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
10665
10613
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
10666
10614
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10667
10615
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
@@ -10789,6 +10737,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10789
10737
|
readonly payment_conditions?: string;
|
|
10790
10738
|
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
10791
10739
|
readonly center_key?: string;
|
|
10740
|
+
readonly bank_account_id?: string;
|
|
10792
10741
|
}
|
|
10793
10742
|
interface AccountOrdersExportRequest {
|
|
10794
10743
|
readonly discriminator: 'account_orders_export_request';
|
|
@@ -11399,6 +11348,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11399
11348
|
readonly organization_id?: string;
|
|
11400
11349
|
readonly experiment_key?: string;
|
|
11401
11350
|
}
|
|
11351
|
+
interface BankAccountReference {
|
|
11352
|
+
readonly id: string;
|
|
11353
|
+
}
|
|
11402
11354
|
interface BankPayment {
|
|
11403
11355
|
readonly id: string;
|
|
11404
11356
|
readonly key: string;
|
|
@@ -12038,6 +11990,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12038
11990
|
readonly center_key?: string;
|
|
12039
11991
|
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
12040
11992
|
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
11993
|
+
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
12041
11994
|
readonly created_at: string;
|
|
12042
11995
|
}
|
|
12043
11996
|
interface ChannelAccountDeleted {
|
|
@@ -14323,6 +14276,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14323
14276
|
readonly total: number;
|
|
14324
14277
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14325
14278
|
readonly weight: number;
|
|
14279
|
+
readonly variance: number;
|
|
14326
14280
|
}
|
|
14327
14281
|
interface CsvLabel {
|
|
14328
14282
|
readonly id: string;
|
|
@@ -14357,8 +14311,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14357
14311
|
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
14358
14312
|
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
14359
14313
|
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
14360
|
-
readonly
|
|
14361
|
-
readonly
|
|
14314
|
+
readonly variance?: number;
|
|
14315
|
+
readonly deltas: string[];
|
|
14316
|
+
readonly outliers: string[];
|
|
14362
14317
|
}
|
|
14363
14318
|
interface CsvServiceFee {
|
|
14364
14319
|
readonly amount?: number;
|
|
@@ -14646,6 +14601,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14646
14601
|
readonly default?: io.flow.common.v0.enums.DeliveredDuty;
|
|
14647
14602
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
14648
14603
|
}
|
|
14604
|
+
interface DestinationError {
|
|
14605
|
+
readonly id: string;
|
|
14606
|
+
readonly failed_at: string;
|
|
14607
|
+
readonly error: string;
|
|
14608
|
+
readonly destination: io.flow.common.v0.models.Address;
|
|
14609
|
+
}
|
|
14649
14610
|
interface Details {
|
|
14650
14611
|
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
14651
14612
|
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -15438,7 +15399,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15438
15399
|
}
|
|
15439
15400
|
interface FinanceBankAccount {
|
|
15440
15401
|
readonly id: string;
|
|
15441
|
-
readonly
|
|
15402
|
+
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
15442
15403
|
readonly last4: string;
|
|
15443
15404
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
15444
15405
|
readonly owner?: io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -15567,6 +15528,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15567
15528
|
readonly center_key?: string;
|
|
15568
15529
|
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
15569
15530
|
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
15531
|
+
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
15570
15532
|
readonly created_at: string;
|
|
15571
15533
|
}
|
|
15572
15534
|
interface FlowChannelOrganization {
|
|
@@ -17127,6 +17089,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17127
17089
|
readonly shipment_cost?: io.flow.common.v0.models.Money;
|
|
17128
17090
|
readonly reference_id?: string;
|
|
17129
17091
|
}
|
|
17092
|
+
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
17093
|
+
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
17094
|
+
}
|
|
17095
|
+
interface LabelGenerationAddressFailures {
|
|
17096
|
+
readonly id: string;
|
|
17097
|
+
readonly organization_id: string;
|
|
17098
|
+
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
17099
|
+
readonly order_number: string;
|
|
17100
|
+
readonly order_submitted_at: string;
|
|
17101
|
+
readonly carrier_id: string;
|
|
17102
|
+
readonly destination_errors: io.flow.internal.v0.models.DestinationError[];
|
|
17103
|
+
}
|
|
17130
17104
|
interface LabelGenerationSettings {
|
|
17131
17105
|
readonly id: string;
|
|
17132
17106
|
readonly item_identifier?: string;
|
|
@@ -17893,6 +17867,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17893
17867
|
readonly setup_completed_at?: string;
|
|
17894
17868
|
readonly gmv: number;
|
|
17895
17869
|
readonly health_score: number;
|
|
17870
|
+
readonly blocked_since?: string;
|
|
17896
17871
|
}
|
|
17897
17872
|
interface OnboardingStateForm {
|
|
17898
17873
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -18007,8 +17982,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18007
17982
|
readonly discriminator: 'manual';
|
|
18008
17983
|
readonly description: string;
|
|
18009
17984
|
}
|
|
17985
|
+
interface OrderCancellationEvidenceReturnToSender {
|
|
17986
|
+
readonly discriminator: 'return_to_sender';
|
|
17987
|
+
readonly initiated_by: io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
17988
|
+
}
|
|
18010
17989
|
interface OrderCancellationForm {
|
|
18011
|
-
readonly evidence: io.flow.internal.v0.
|
|
17990
|
+
readonly evidence: io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
18012
17991
|
}
|
|
18013
17992
|
interface OrderDetail {
|
|
18014
17993
|
readonly order: io.flow.experience.v0.models.Order;
|
|
@@ -18156,6 +18135,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18156
18135
|
readonly center_key?: string;
|
|
18157
18136
|
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
18158
18137
|
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
18138
|
+
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
18159
18139
|
readonly created_at: string;
|
|
18160
18140
|
}
|
|
18161
18141
|
interface OrganizationAccountDeleted {
|
|
@@ -18170,6 +18150,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18170
18150
|
readonly timestamp: string;
|
|
18171
18151
|
readonly organization_account: io.flow.internal.v0.models.OrganizationAccount;
|
|
18172
18152
|
}
|
|
18153
|
+
interface OrganizationBankAccountDeleted {
|
|
18154
|
+
readonly discriminator: 'organization_bank_account_deleted';
|
|
18155
|
+
readonly event_id: string;
|
|
18156
|
+
readonly timestamp: string;
|
|
18157
|
+
readonly organization: string;
|
|
18158
|
+
readonly id: string;
|
|
18159
|
+
}
|
|
18160
|
+
interface OrganizationBankAccountUpserted {
|
|
18161
|
+
readonly discriminator: 'organization_bank_account_upserted';
|
|
18162
|
+
readonly event_id: string;
|
|
18163
|
+
readonly timestamp: string;
|
|
18164
|
+
readonly organization: string;
|
|
18165
|
+
readonly organization_bank_account: io.flow.billing.v0.models.OrganizationBankAccount;
|
|
18166
|
+
}
|
|
18173
18167
|
interface OrganizationBillingStatement {
|
|
18174
18168
|
readonly id: string;
|
|
18175
18169
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18321,6 +18315,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18321
18315
|
readonly hs_code?: string;
|
|
18322
18316
|
readonly merchant_category_code?: string;
|
|
18323
18317
|
readonly notes?: io.flow.internal.v0.models.OrganizationRestrictionNoteForm[];
|
|
18318
|
+
readonly screening_first_viewed_at?: string;
|
|
18319
|
+
readonly onboarding_first_viewed_at?: string;
|
|
18324
18320
|
}
|
|
18325
18321
|
interface OrganizationRestrictionSnapshot {
|
|
18326
18322
|
readonly id: string;
|
|
@@ -18359,6 +18355,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18359
18355
|
readonly full_review_end_date?: string;
|
|
18360
18356
|
readonly merchant_category_code?: string;
|
|
18361
18357
|
readonly reason?: string;
|
|
18358
|
+
readonly screening_first_viewed_at?: string;
|
|
18359
|
+
readonly onboarding_first_viewed_at?: string;
|
|
18362
18360
|
readonly updated_at: string;
|
|
18363
18361
|
}
|
|
18364
18362
|
interface OrganizationRestrictionStatusDeleted {
|
|
@@ -19523,10 +19521,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19523
19521
|
readonly regions: string[];
|
|
19524
19522
|
readonly positive_keywords: string[];
|
|
19525
19523
|
readonly negative_keywords: string[];
|
|
19524
|
+
readonly value_threshold_usd?: number;
|
|
19526
19525
|
}
|
|
19527
19526
|
interface RestrictionRuleDecisionForm {
|
|
19528
19527
|
readonly rule_id: string;
|
|
19529
19528
|
readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
|
|
19529
|
+
readonly product_id?: string;
|
|
19530
19530
|
}
|
|
19531
19531
|
interface RestrictionRuleForm {
|
|
19532
19532
|
readonly name: string;
|
|
@@ -19535,6 +19535,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19535
19535
|
readonly regions: string[];
|
|
19536
19536
|
readonly positive_keywords: string[];
|
|
19537
19537
|
readonly negative_keywords: string[];
|
|
19538
|
+
readonly value_threshold_usd?: number;
|
|
19538
19539
|
}
|
|
19539
19540
|
interface RestrictionRuleMetadata {
|
|
19540
19541
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -21188,7 +21189,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21188
21189
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21189
21190
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21190
21191
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
21191
|
-
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.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.BankPaymentDeleted | 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.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.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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.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.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.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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
21192
|
+
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.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.BankPaymentDeleted | 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.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.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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
21192
21193
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21193
21194
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21194
21195
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21216,7 +21217,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21216
21217
|
type MarketingGatewaySourceSummary = io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
21217
21218
|
type OptinPromptDisplay = io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
21218
21219
|
type OrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm;
|
|
21219
|
-
type OrderCancellationEvidence = io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled;
|
|
21220
|
+
type OrderCancellationEvidence = io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
21220
21221
|
type PaymentRedirect = io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted;
|
|
21221
21222
|
type PaymentSummaryDetails = io.flow.internal.v0.models.SearchAuthorization;
|
|
21222
21223
|
type PlatformFee = io.flow.internal.v0.models.PlatformFeePause | io.flow.internal.v0.models.PlatformFeeFlat | io.flow.internal.v0.models.PlatformFeePercentage | io.flow.internal.v0.models.PlatformFeeDisabled;
|
|
@@ -21359,6 +21360,7 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
21359
21360
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21360
21361
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21361
21362
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21363
|
+
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
21362
21364
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
21363
21365
|
export declare type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
21364
21366
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -22179,6 +22181,7 @@ export declare type DeliveredDutyOptionsMessage = io.flow.internal.v0.models.Del
|
|
|
22179
22181
|
export declare type DeliveredDutyPreference = io.flow.internal.v0.models.DeliveredDutyPreference;
|
|
22180
22182
|
export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
22181
22183
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
22184
|
+
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
22182
22185
|
export declare type Details = io.flow.internal.v0.models.Details;
|
|
22183
22186
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
22184
22187
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
@@ -22598,6 +22601,9 @@ export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJ
|
|
|
22598
22601
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
22599
22602
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22600
22603
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
22604
|
+
export declare type LabelGenerationAddressFailureStatus = io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22605
|
+
export declare type LabelGenerationAddressFailureStatusUpdateForm = io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
22606
|
+
export declare type LabelGenerationAddressFailures = io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
22601
22607
|
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
22602
22608
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
22603
22609
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
@@ -22748,6 +22754,7 @@ export declare type OnboardingAutomationProcessState = io.flow.internal.v0.enums
|
|
|
22748
22754
|
export declare type OnboardingAutomationTaskState = io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
22749
22755
|
export declare type OnboardingOrganization = io.flow.internal.v0.models.OnboardingOrganization;
|
|
22750
22756
|
export declare type OnboardingStateForm = io.flow.internal.v0.models.OnboardingStateForm;
|
|
22757
|
+
export declare type OnboardingStateSource = io.flow.internal.v0.enums.OnboardingStateSource;
|
|
22751
22758
|
export declare type OneTimeTokenRedemptionForm = io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
22752
22759
|
export declare type OnlineAuthorizationCompleted = io.flow.internal.v0.models.OnlineAuthorizationCompleted;
|
|
22753
22760
|
export declare type OptinAttribute = io.flow.internal.v0.models.OptinAttribute;
|
|
@@ -22771,7 +22778,9 @@ export declare type OrderCancellation = io.flow.internal.v0.models.OrderCancella
|
|
|
22771
22778
|
export declare type OrderCancellationEvidence = io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
22772
22779
|
export declare type OrderCancellationEvidenceFullyRefundedNotFulfilled = io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled;
|
|
22773
22780
|
export declare type OrderCancellationEvidenceManual = io.flow.internal.v0.models.OrderCancellationEvidenceManual;
|
|
22781
|
+
export declare type OrderCancellationEvidenceReturnToSender = io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
22774
22782
|
export declare type OrderCancellationForm = io.flow.internal.v0.models.OrderCancellationForm;
|
|
22783
|
+
export declare type OrderCancellationInitiatedBy = io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
22775
22784
|
export declare type OrderChargeTrigger = io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
22776
22785
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
22777
22786
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
@@ -22798,6 +22807,8 @@ export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderT
|
|
|
22798
22807
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
22799
22808
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
22800
22809
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
22810
|
+
export declare type OrganizationBankAccountDeleted = io.flow.internal.v0.models.OrganizationBankAccountDeleted;
|
|
22811
|
+
export declare type OrganizationBankAccountUpserted = io.flow.internal.v0.models.OrganizationBankAccountUpserted;
|
|
22801
22812
|
export declare type OrganizationBillingStatement = io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
22802
22813
|
export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
22803
22814
|
export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|