@flowio/types 11.24.62 → 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 +71 -83
- package/dist/api.d.ts +26 -8
- package/package.json +2 -2
- package/src/api-internal.ts +89 -98
- package/src/api.ts +31 -8
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';
|
|
@@ -10049,17 +9990,17 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
10049
9990
|
}
|
|
10050
9991
|
}
|
|
10051
9992
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
10052
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
9993
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
10053
9994
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
10054
9995
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
10055
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
9996
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
10056
9997
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
10057
9998
|
}
|
|
10058
9999
|
declare namespace io.flow.apple.pay.v0.models {
|
|
10059
10000
|
interface ApplePayLineItem {
|
|
10060
10001
|
readonly label: string;
|
|
10061
10002
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
10062
|
-
readonly amount:
|
|
10003
|
+
readonly amount: number;
|
|
10063
10004
|
}
|
|
10064
10005
|
interface ApplePayPaymentContact {
|
|
10065
10006
|
readonly email_address?: string;
|
|
@@ -10106,7 +10047,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
10106
10047
|
interface ApplePayShippingMethod {
|
|
10107
10048
|
readonly label: string;
|
|
10108
10049
|
readonly detail: string;
|
|
10109
|
-
readonly amount:
|
|
10050
|
+
readonly amount: number;
|
|
10110
10051
|
readonly identifier: string;
|
|
10111
10052
|
}
|
|
10112
10053
|
}
|
|
@@ -10608,7 +10549,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10608
10549
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10609
10550
|
type EmptyAttribute = 'irrelevant';
|
|
10610
10551
|
type ErpFileType = 'vendor';
|
|
10611
|
-
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';
|
|
10612
10553
|
type ExperienceImportType = 'experience_with_settings';
|
|
10613
10554
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10614
10555
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10640,6 +10581,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10640
10581
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
10641
10582
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10642
10583
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10584
|
+
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
10643
10585
|
type LabelInputSource = 'estimate';
|
|
10644
10586
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10645
10587
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -14334,6 +14276,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14334
14276
|
readonly total: number;
|
|
14335
14277
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14336
14278
|
readonly weight: number;
|
|
14279
|
+
readonly variance: number;
|
|
14337
14280
|
}
|
|
14338
14281
|
interface CsvLabel {
|
|
14339
14282
|
readonly id: string;
|
|
@@ -14368,8 +14311,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14368
14311
|
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
14369
14312
|
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
14370
14313
|
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
14371
|
-
readonly
|
|
14372
|
-
readonly
|
|
14314
|
+
readonly variance?: number;
|
|
14315
|
+
readonly deltas: string[];
|
|
14316
|
+
readonly outliers: string[];
|
|
14373
14317
|
}
|
|
14374
14318
|
interface CsvServiceFee {
|
|
14375
14319
|
readonly amount?: number;
|
|
@@ -14657,6 +14601,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14657
14601
|
readonly default?: io.flow.common.v0.enums.DeliveredDuty;
|
|
14658
14602
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
14659
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
|
+
}
|
|
14660
14610
|
interface Details {
|
|
14661
14611
|
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
14662
14612
|
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -17139,6 +17089,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17139
17089
|
readonly shipment_cost?: io.flow.common.v0.models.Money;
|
|
17140
17090
|
readonly reference_id?: string;
|
|
17141
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
|
+
}
|
|
17142
17104
|
interface LabelGenerationSettings {
|
|
17143
17105
|
readonly id: string;
|
|
17144
17106
|
readonly item_identifier?: string;
|
|
@@ -18188,6 +18150,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18188
18150
|
readonly timestamp: string;
|
|
18189
18151
|
readonly organization_account: io.flow.internal.v0.models.OrganizationAccount;
|
|
18190
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
|
+
}
|
|
18191
18167
|
interface OrganizationBillingStatement {
|
|
18192
18168
|
readonly id: string;
|
|
18193
18169
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18339,6 +18315,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18339
18315
|
readonly hs_code?: string;
|
|
18340
18316
|
readonly merchant_category_code?: string;
|
|
18341
18317
|
readonly notes?: io.flow.internal.v0.models.OrganizationRestrictionNoteForm[];
|
|
18318
|
+
readonly screening_first_viewed_at?: string;
|
|
18319
|
+
readonly onboarding_first_viewed_at?: string;
|
|
18342
18320
|
}
|
|
18343
18321
|
interface OrganizationRestrictionSnapshot {
|
|
18344
18322
|
readonly id: string;
|
|
@@ -18377,6 +18355,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18377
18355
|
readonly full_review_end_date?: string;
|
|
18378
18356
|
readonly merchant_category_code?: string;
|
|
18379
18357
|
readonly reason?: string;
|
|
18358
|
+
readonly screening_first_viewed_at?: string;
|
|
18359
|
+
readonly onboarding_first_viewed_at?: string;
|
|
18380
18360
|
readonly updated_at: string;
|
|
18381
18361
|
}
|
|
18382
18362
|
interface OrganizationRestrictionStatusDeleted {
|
|
@@ -19541,6 +19521,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19541
19521
|
readonly regions: string[];
|
|
19542
19522
|
readonly positive_keywords: string[];
|
|
19543
19523
|
readonly negative_keywords: string[];
|
|
19524
|
+
readonly value_threshold_usd?: number;
|
|
19544
19525
|
}
|
|
19545
19526
|
interface RestrictionRuleDecisionForm {
|
|
19546
19527
|
readonly rule_id: string;
|
|
@@ -19554,6 +19535,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19554
19535
|
readonly regions: string[];
|
|
19555
19536
|
readonly positive_keywords: string[];
|
|
19556
19537
|
readonly negative_keywords: string[];
|
|
19538
|
+
readonly value_threshold_usd?: number;
|
|
19557
19539
|
}
|
|
19558
19540
|
interface RestrictionRuleMetadata {
|
|
19559
19541
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -21207,7 +21189,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21207
21189
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21208
21190
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21209
21191
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
21210
|
-
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;
|
|
21211
21193
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21212
21194
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21213
21195
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22199,6 +22181,7 @@ export declare type DeliveredDutyOptionsMessage = io.flow.internal.v0.models.Del
|
|
|
22199
22181
|
export declare type DeliveredDutyPreference = io.flow.internal.v0.models.DeliveredDutyPreference;
|
|
22200
22182
|
export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
22201
22183
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
22184
|
+
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
22202
22185
|
export declare type Details = io.flow.internal.v0.models.Details;
|
|
22203
22186
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
22204
22187
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
@@ -22618,6 +22601,9 @@ export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJ
|
|
|
22618
22601
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
22619
22602
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22620
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;
|
|
22621
22607
|
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
22622
22608
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
22623
22609
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
@@ -22821,6 +22807,8 @@ export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderT
|
|
|
22821
22807
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
22822
22808
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
22823
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;
|
|
22824
22812
|
export declare type OrganizationBillingStatement = io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
22825
22813
|
export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
22826
22814
|
export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
package/dist/api.d.ts
CHANGED
|
@@ -367,6 +367,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
367
367
|
interface Metadata {
|
|
368
368
|
readonly order_number?: string;
|
|
369
369
|
readonly authorization_id?: string;
|
|
370
|
+
readonly organization_id?: string;
|
|
370
371
|
}
|
|
371
372
|
interface NextAction {
|
|
372
373
|
readonly type: io.flow.stripe.v0.enums.NextActionType;
|
|
@@ -709,6 +710,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
709
710
|
readonly token?: string;
|
|
710
711
|
readonly usage: io.flow.stripe.v0.enums.SourceUsageType;
|
|
711
712
|
readonly source_order?: io.flow.stripe.v0.models.SourceOrderRequest;
|
|
713
|
+
readonly metadata?: io.flow.stripe.v0.models.Metadata;
|
|
712
714
|
}
|
|
713
715
|
interface Stripe3Ds2Fingerprint {
|
|
714
716
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
@@ -1578,17 +1580,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1578
1580
|
}
|
|
1579
1581
|
}
|
|
1580
1582
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1581
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1583
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
1582
1584
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1583
1585
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1584
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1586
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
1585
1587
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1586
1588
|
}
|
|
1587
1589
|
declare namespace io.flow.apple.pay.v0.models {
|
|
1588
1590
|
interface ApplePayLineItem {
|
|
1589
1591
|
readonly label: string;
|
|
1590
1592
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1591
|
-
readonly amount:
|
|
1593
|
+
readonly amount: number;
|
|
1592
1594
|
}
|
|
1593
1595
|
interface ApplePayPaymentContact {
|
|
1594
1596
|
readonly email_address?: string;
|
|
@@ -1635,7 +1637,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1635
1637
|
interface ApplePayShippingMethod {
|
|
1636
1638
|
readonly label: string;
|
|
1637
1639
|
readonly detail: string;
|
|
1638
|
-
readonly amount:
|
|
1640
|
+
readonly amount: number;
|
|
1639
1641
|
readonly identifier: string;
|
|
1640
1642
|
}
|
|
1641
1643
|
}
|
|
@@ -1694,7 +1696,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1694
1696
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1695
1697
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1696
1698
|
type Environment = 'sandbox' | 'production';
|
|
1697
|
-
type EventType = 'test_upserted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1699
|
+
type EventType = 'test_upserted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1698
1700
|
type ExceptionType = 'open' | 'closed';
|
|
1699
1701
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1700
1702
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2574,6 +2576,13 @@ declare namespace io.flow.v0.models {
|
|
|
2574
2576
|
interface BridgeManifestForm {
|
|
2575
2577
|
readonly order_numbers: string[];
|
|
2576
2578
|
}
|
|
2579
|
+
interface BridgeShippingLabelForm {
|
|
2580
|
+
readonly discriminator: 'bridge_shipping_label_form';
|
|
2581
|
+
readonly order_number: string;
|
|
2582
|
+
readonly items?: io.flow.v0.models.LineItemForm[];
|
|
2583
|
+
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
2584
|
+
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
2585
|
+
}
|
|
2577
2586
|
interface BrowseOptinResponses {
|
|
2578
2587
|
readonly id: string;
|
|
2579
2588
|
readonly session_id: string;
|
|
@@ -3917,7 +3926,7 @@ declare namespace io.flow.v0.models {
|
|
|
3917
3926
|
readonly attributes?: Record<string, string>;
|
|
3918
3927
|
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
3919
3928
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
3920
|
-
readonly order_number
|
|
3929
|
+
readonly order_number: string;
|
|
3921
3930
|
readonly service?: string;
|
|
3922
3931
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
3923
3932
|
}
|
|
@@ -7497,6 +7506,13 @@ declare namespace io.flow.v0.models {
|
|
|
7497
7506
|
readonly payment_request: io.flow.v0.models.PaymentRequestForm;
|
|
7498
7507
|
readonly billing: io.flow.v0.models.PaymentRequestBilling;
|
|
7499
7508
|
}
|
|
7509
|
+
interface PaymentRequestDeleted {
|
|
7510
|
+
readonly discriminator: 'payment_request_deleted';
|
|
7511
|
+
readonly event_id: string;
|
|
7512
|
+
readonly timestamp: string;
|
|
7513
|
+
readonly organization: string;
|
|
7514
|
+
readonly id: string;
|
|
7515
|
+
}
|
|
7500
7516
|
interface PaymentRequestForm {
|
|
7501
7517
|
readonly amount: number;
|
|
7502
7518
|
readonly currency: string;
|
|
@@ -10294,7 +10310,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10294
10310
|
type DiscountRuleEntitlement = io.flow.v0.models.DiscountRuleSubsidyEntitlement;
|
|
10295
10311
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10296
10312
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10297
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
10313
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
10298
10314
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10299
10315
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
10300
10316
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -10364,7 +10380,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10364
10380
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
10365
10381
|
type SessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
10366
10382
|
type Settlement = io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout;
|
|
10367
|
-
type ShippingLabelForm = io.flow.v0.models.DetailedShippingLabelForm | io.flow.v0.models.SummaryShippingLabelForm;
|
|
10383
|
+
type ShippingLabelForm = io.flow.v0.models.DetailedShippingLabelForm | io.flow.v0.models.SummaryShippingLabelForm | io.flow.v0.models.BridgeShippingLabelForm;
|
|
10368
10384
|
type ShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm;
|
|
10369
10385
|
type ShopifyCartAddForm = io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm;
|
|
10370
10386
|
type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
|
|
@@ -10523,6 +10539,7 @@ export declare type BillingChannelStatementReference = io.flow.v0.models.Billing
|
|
|
10523
10539
|
export declare type BillingDiscount = io.flow.v0.models.BillingDiscount;
|
|
10524
10540
|
export declare type BridgeManifest = io.flow.v0.models.BridgeManifest;
|
|
10525
10541
|
export declare type BridgeManifestForm = io.flow.v0.models.BridgeManifestForm;
|
|
10542
|
+
export declare type BridgeShippingLabelForm = io.flow.v0.models.BridgeShippingLabelForm;
|
|
10526
10543
|
export declare type BrowseOptinResponses = io.flow.v0.models.BrowseOptinResponses;
|
|
10527
10544
|
export declare type BrowseOptinResponsesDeleted = io.flow.v0.models.BrowseOptinResponsesDeleted;
|
|
10528
10545
|
export declare type BrowseOptinResponsesUpserted = io.flow.v0.models.BrowseOptinResponsesUpserted;
|
|
@@ -11512,6 +11529,7 @@ export declare type PaymentRequestBilling = io.flow.v0.models.PaymentRequestBill
|
|
|
11512
11529
|
export declare type PaymentRequestBillingFees = io.flow.v0.models.PaymentRequestBillingFees;
|
|
11513
11530
|
export declare type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
|
|
11514
11531
|
export declare type PaymentRequestBundleForm = io.flow.v0.models.PaymentRequestBundleForm;
|
|
11532
|
+
export declare type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
|
|
11515
11533
|
export declare type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
11516
11534
|
export declare type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
11517
11535
|
export declare type PaymentRequestReview = io.flow.v0.models.PaymentRequestReview;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.63",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "bc548be3553cff4232e1a8c5d37e7a2baeab2c73"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -2811,6 +2811,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2811
2811
|
interface Metadata {
|
|
2812
2812
|
readonly order_number?: string;
|
|
2813
2813
|
readonly authorization_id?: string;
|
|
2814
|
+
readonly organization_id?: string;
|
|
2814
2815
|
}
|
|
2815
2816
|
|
|
2816
2817
|
interface NextAction {
|
|
@@ -3187,6 +3188,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3187
3188
|
readonly token?: string;
|
|
3188
3189
|
readonly usage: io.flow.stripe.v0.enums.SourceUsageType;
|
|
3189
3190
|
readonly source_order?: io.flow.stripe.v0.models.SourceOrderRequest;
|
|
3191
|
+
readonly metadata?: io.flow.stripe.v0.models.Metadata;
|
|
3190
3192
|
}
|
|
3191
3193
|
|
|
3192
3194
|
interface Stripe3Ds2Fingerprint {
|
|
@@ -3387,6 +3389,14 @@ declare namespace io.flow.label.v0.models {
|
|
|
3387
3389
|
readonly order_numbers: string[];
|
|
3388
3390
|
}
|
|
3389
3391
|
|
|
3392
|
+
interface BridgeShippingLabelForm {
|
|
3393
|
+
readonly discriminator: 'bridge_shipping_label_form';
|
|
3394
|
+
readonly order_number: string;
|
|
3395
|
+
readonly items?: io.flow.common.v0.models.LineItemForm[];
|
|
3396
|
+
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3397
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3390
3400
|
interface CrossdockShipment {
|
|
3391
3401
|
readonly partner_id: string;
|
|
3392
3402
|
readonly center_id: string;
|
|
@@ -3403,7 +3413,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3403
3413
|
readonly attributes?: Record<string, string>;
|
|
3404
3414
|
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
3405
3415
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3406
|
-
readonly order_number
|
|
3416
|
+
readonly order_number: string;
|
|
3407
3417
|
readonly service?: string;
|
|
3408
3418
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3409
3419
|
}
|
|
@@ -3571,7 +3581,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3571
3581
|
declare namespace io.flow.label.v0.unions {
|
|
3572
3582
|
type ShippingLabelForm =
|
|
3573
3583
|
| io.flow.label.v0.models.DetailedShippingLabelForm
|
|
3574
|
-
| io.flow.label.v0.models.SummaryShippingLabelForm
|
|
3584
|
+
| io.flow.label.v0.models.SummaryShippingLabelForm
|
|
3585
|
+
| io.flow.label.v0.models.BridgeShippingLabelForm;
|
|
3575
3586
|
type ShippingNotificationForm =
|
|
3576
3587
|
| io.flow.label.v0.models.DetailedShippingNotificationForm
|
|
3577
3588
|
| io.flow.label.v0.models.SinglePackageShippingNotificationForm
|
|
@@ -4762,18 +4773,15 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4762
4773
|
| 'SECOND_CHARGEBACK'
|
|
4763
4774
|
| 'PREARBITRATION_WON'
|
|
4764
4775
|
| 'PREARBITRATION_LOST';
|
|
4765
|
-
type
|
|
4776
|
+
type Method = 'GET' | 'POST';
|
|
4766
4777
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4767
4778
|
type PaymentMethod =
|
|
4768
4779
|
| 'ach'
|
|
4769
4780
|
| 'alipay'
|
|
4770
|
-
| 'alipay_hk'
|
|
4771
4781
|
| 'alipay_wap'
|
|
4772
4782
|
| 'amex'
|
|
4773
4783
|
| 'bankTransfer_IBAN'
|
|
4774
4784
|
| 'bcmc'
|
|
4775
|
-
| 'bcmc_mobile'
|
|
4776
|
-
| 'blik'
|
|
4777
4785
|
| 'cartebancaire'
|
|
4778
4786
|
| 'cup'
|
|
4779
4787
|
| 'diners'
|
|
@@ -4784,27 +4792,21 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4784
4792
|
| 'dragonpay_gcash'
|
|
4785
4793
|
| 'dragonpay_otc_banking'
|
|
4786
4794
|
| 'ebanking_FI'
|
|
4787
|
-
| 'gcash'
|
|
4788
4795
|
| 'giropay'
|
|
4789
4796
|
| 'ideal'
|
|
4790
4797
|
| 'interac'
|
|
4791
4798
|
| 'jcb'
|
|
4792
|
-
| 'kakaopay'
|
|
4793
4799
|
| 'kcp_banktransfer'
|
|
4794
4800
|
| 'kcp_creditcard'
|
|
4795
4801
|
| 'kcp_payco'
|
|
4796
4802
|
| 'maestro'
|
|
4797
|
-
| 'mbway'
|
|
4798
4803
|
| 'mc'
|
|
4799
|
-
| 'mobilepay'
|
|
4800
4804
|
| 'molpay_points'
|
|
4801
4805
|
| 'multibanco'
|
|
4802
|
-
| 'onlineBanking_PL'
|
|
4803
4806
|
| 'qiwiwallet'
|
|
4804
4807
|
| 'sepadirectdebit'
|
|
4805
4808
|
| 'trustly'
|
|
4806
4809
|
| 'trustpay'
|
|
4807
|
-
| 'twint'
|
|
4808
4810
|
| 'unionpay'
|
|
4809
4811
|
| 'visa'
|
|
4810
4812
|
| 'wechatpay'
|
|
@@ -4842,11 +4844,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4842
4844
|
readonly currency: string;
|
|
4843
4845
|
}
|
|
4844
4846
|
|
|
4845
|
-
interface Applepay {
|
|
4846
|
-
readonly type: 'applepay';
|
|
4847
|
-
readonly applePayToken: string;
|
|
4848
|
-
}
|
|
4849
|
-
|
|
4850
4847
|
interface Authentication {
|
|
4851
4848
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
4852
4849
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4874,8 +4871,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4874
4871
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4875
4872
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4876
4873
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4877
|
-
readonly mcc?: string;
|
|
4878
|
-
readonly metadata?: any /*object*/;
|
|
4879
4874
|
}
|
|
4880
4875
|
|
|
4881
4876
|
interface AuthorizeRequest3D {
|
|
@@ -5032,14 +5027,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5032
5027
|
readonly paymentData?: string;
|
|
5033
5028
|
}
|
|
5034
5029
|
|
|
5035
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
5036
|
-
readonly 'threeds2.challengeResult': string;
|
|
5037
|
-
}
|
|
5038
|
-
|
|
5039
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
5040
|
-
readonly 'threeds2.fingerprint': string;
|
|
5041
|
-
}
|
|
5042
|
-
|
|
5043
5030
|
interface PaymentRequest {
|
|
5044
5031
|
readonly reference: string;
|
|
5045
5032
|
readonly merchantAccount: string;
|
|
@@ -5061,12 +5048,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5061
5048
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5062
5049
|
readonly origin?: string;
|
|
5063
5050
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
5064
|
-
readonly
|
|
5065
|
-
readonly mcc?: string;
|
|
5066
|
-
readonly metadata?: any /*object*/;
|
|
5067
|
-
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5068
|
-
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5069
|
-
readonly storePaymentMethod?: boolean;
|
|
5051
|
+
readonly returnURL?: string;
|
|
5070
5052
|
}
|
|
5071
5053
|
|
|
5072
5054
|
interface PaymentResponse {
|
|
@@ -5083,54 +5065,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5083
5065
|
interface PaymentResponseAdditionalData {
|
|
5084
5066
|
readonly authCode?: string;
|
|
5085
5067
|
readonly avsResultRaw?: string;
|
|
5086
|
-
readonly avsResult?: string;
|
|
5087
5068
|
readonly cvcResultRaw?: string;
|
|
5088
|
-
readonly cvcResult?: string;
|
|
5089
|
-
readonly refusalReasonRaw?: string;
|
|
5090
5069
|
readonly liabilityShift?: string;
|
|
5091
5070
|
readonly threeDAuthenticated?: string;
|
|
5092
5071
|
readonly threeDAuthenticatedResponse?: string;
|
|
5093
5072
|
readonly threeDOffered?: string;
|
|
5094
5073
|
readonly threeDOfferedResponse?: string;
|
|
5095
|
-
readonly threeDSVersion?: string;
|
|
5096
|
-
readonly eci?: string;
|
|
5097
|
-
readonly cavv?: string;
|
|
5098
|
-
readonly scaExemptionRequested?: string;
|
|
5099
|
-
readonly paymentMethod?: string;
|
|
5100
|
-
readonly paymentMethodVariant?: string;
|
|
5101
|
-
readonly tokenTxVariant?: string;
|
|
5102
|
-
readonly acquirerCode?: string;
|
|
5103
|
-
readonly acquirerAccountCode?: string;
|
|
5104
|
-
readonly cardPaymentMethod?: string;
|
|
5105
|
-
readonly coBrandedWith?: string;
|
|
5106
|
-
readonly cardIssuingCountry?: string;
|
|
5107
|
-
readonly cardIssuingCurrency?: string;
|
|
5108
|
-
readonly cardIssuingBank?: string;
|
|
5109
|
-
readonly cardBin?: string;
|
|
5110
|
-
readonly issuerBin?: string;
|
|
5111
|
-
readonly cardSummary?: string;
|
|
5112
|
-
readonly untokenisedCardSummary?: string;
|
|
5113
|
-
readonly expiryDate?: string;
|
|
5114
|
-
readonly cardHolderName?: string;
|
|
5115
|
-
readonly fundingSource?: string;
|
|
5116
|
-
readonly ownerName?: string;
|
|
5117
|
-
readonly bankName?: string;
|
|
5118
|
-
readonly issuerCountry?: string;
|
|
5119
|
-
readonly iban?: string;
|
|
5120
|
-
readonly bic?: string;
|
|
5121
|
-
readonly iDealConsumerAccountNumber?: string;
|
|
5122
|
-
readonly iDealConsumerBIC?: string;
|
|
5123
|
-
readonly iDealConsumerCity?: string;
|
|
5124
|
-
readonly iDealConsumerIBAN?: string;
|
|
5125
|
-
readonly iDealConsumerName?: string;
|
|
5126
|
-
readonly iDealTransactionId?: string;
|
|
5127
|
-
readonly 'recurring.recurringDetailReference'?: string;
|
|
5128
|
-
readonly 'recurring.shopperReference'?: string;
|
|
5129
|
-
readonly networkTxReference?: string;
|
|
5130
|
-
readonly PaymentAccountReference?: string;
|
|
5131
|
-
readonly 'networkToken.available'?: string;
|
|
5132
|
-
readonly 'networkToken.bin'?: string;
|
|
5133
|
-
readonly 'networkToken.tokenSummary'?: string;
|
|
5134
5074
|
}
|
|
5135
5075
|
|
|
5136
5076
|
interface Recurring {
|
|
@@ -5139,7 +5079,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5139
5079
|
|
|
5140
5080
|
interface Redirect {
|
|
5141
5081
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
5142
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
5082
|
+
readonly method?: io.flow.adyen.v0.enums.Method;
|
|
5143
5083
|
readonly url?: string;
|
|
5144
5084
|
}
|
|
5145
5085
|
|
|
@@ -5162,17 +5102,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5162
5102
|
readonly holderName: string;
|
|
5163
5103
|
readonly number: string;
|
|
5164
5104
|
readonly cvc?: string;
|
|
5165
|
-
readonly storedPaymentMethodId?: string;
|
|
5166
|
-
readonly networkPaymentReference?: string;
|
|
5167
|
-
}
|
|
5168
|
-
|
|
5169
|
-
interface SdkV3OnCompleteData {
|
|
5170
|
-
readonly details: any /*object*/;
|
|
5171
|
-
readonly payment_data?: string;
|
|
5172
|
-
}
|
|
5173
|
-
|
|
5174
|
-
interface SdkV3OnCompleteResult {
|
|
5175
|
-
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
5176
5105
|
}
|
|
5177
5106
|
|
|
5178
5107
|
interface ThreeDSecureData {
|
|
@@ -5206,9 +5135,7 @@ declare namespace io.flow.adyen.v0.unions {
|
|
|
5206
5135
|
type BrowserInfo =
|
|
5207
5136
|
| io.flow.adyen.v0.models.BrowserInfo3Ds1
|
|
5208
5137
|
| io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
5209
|
-
type PaymentMethodData =
|
|
5210
|
-
| io.flow.adyen.v0.models.Scheme
|
|
5211
|
-
| io.flow.adyen.v0.models.Applepay;
|
|
5138
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
5212
5139
|
}
|
|
5213
5140
|
|
|
5214
5141
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -13152,8 +13079,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
13152
13079
|
| 'email'
|
|
13153
13080
|
| 'name'
|
|
13154
13081
|
| 'phone'
|
|
13155
|
-
| '
|
|
13156
|
-
| '
|
|
13082
|
+
| 'postal_address'
|
|
13083
|
+
| 'phonetic_name';
|
|
13157
13084
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
13158
13085
|
type ApplePayMerchantCapability =
|
|
13159
13086
|
| 'supports3DS'
|
|
@@ -13163,8 +13090,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
13163
13090
|
type ApplePayShippingType =
|
|
13164
13091
|
| 'shipping'
|
|
13165
13092
|
| 'delivery'
|
|
13166
|
-
| '
|
|
13167
|
-
| '
|
|
13093
|
+
| 'store_pickup'
|
|
13094
|
+
| 'service_pickup';
|
|
13168
13095
|
type ApplePaySupportedNetworks =
|
|
13169
13096
|
| 'amex'
|
|
13170
13097
|
| 'chinaUnionPay'
|
|
@@ -13179,7 +13106,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13179
13106
|
interface ApplePayLineItem {
|
|
13180
13107
|
readonly label: string;
|
|
13181
13108
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
13182
|
-
readonly amount:
|
|
13109
|
+
readonly amount: number;
|
|
13183
13110
|
}
|
|
13184
13111
|
|
|
13185
13112
|
interface ApplePayPaymentContact {
|
|
@@ -13230,7 +13157,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13230
13157
|
interface ApplePayShippingMethod {
|
|
13231
13158
|
readonly label: string;
|
|
13232
13159
|
readonly detail: string;
|
|
13233
|
-
readonly amount:
|
|
13160
|
+
readonly amount: number;
|
|
13234
13161
|
readonly identifier: string;
|
|
13235
13162
|
}
|
|
13236
13163
|
}
|
|
@@ -14297,6 +14224,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14297
14224
|
| 'billing_statement_batch_statement_deleted'
|
|
14298
14225
|
| 'platform_fee_change_upserted'
|
|
14299
14226
|
| 'platform_fee_change_deleted'
|
|
14227
|
+
| 'organization_bank_account_upserted'
|
|
14228
|
+
| 'organization_bank_account_deleted'
|
|
14300
14229
|
| 'fraud_review_upserted'
|
|
14301
14230
|
| 'fraud_review_deleted'
|
|
14302
14231
|
| 'fraud_pending_review_upserted'
|
|
@@ -14511,6 +14440,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14511
14440
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14512
14441
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14513
14442
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
14443
|
+
type LabelGenerationAddressFailureStatus =
|
|
14444
|
+
| 'in_review'
|
|
14445
|
+
| 'resolved'
|
|
14446
|
+
| 'unresolved';
|
|
14514
14447
|
type LabelInputSource = 'estimate';
|
|
14515
14448
|
type LabelTransactionType =
|
|
14516
14449
|
| 'adjustment'
|
|
@@ -19141,6 +19074,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19141
19074
|
readonly total: number;
|
|
19142
19075
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
19143
19076
|
readonly weight: number;
|
|
19077
|
+
readonly variance: number;
|
|
19144
19078
|
}
|
|
19145
19079
|
|
|
19146
19080
|
interface CsvLabel {
|
|
@@ -19179,8 +19113,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19179
19113
|
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
19180
19114
|
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
19181
19115
|
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
19182
|
-
readonly
|
|
19183
|
-
readonly
|
|
19116
|
+
readonly variance?: number;
|
|
19117
|
+
readonly deltas: string[];
|
|
19118
|
+
readonly outliers: string[];
|
|
19184
19119
|
}
|
|
19185
19120
|
|
|
19186
19121
|
interface CsvServiceFee {
|
|
@@ -19521,6 +19456,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19521
19456
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
19522
19457
|
}
|
|
19523
19458
|
|
|
19459
|
+
interface DestinationError {
|
|
19460
|
+
readonly id: string;
|
|
19461
|
+
readonly failed_at: string;
|
|
19462
|
+
readonly error: string;
|
|
19463
|
+
readonly destination: io.flow.common.v0.models.Address;
|
|
19464
|
+
}
|
|
19465
|
+
|
|
19524
19466
|
interface Details {
|
|
19525
19467
|
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
19526
19468
|
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -22351,6 +22293,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22351
22293
|
readonly reference_id?: string;
|
|
22352
22294
|
}
|
|
22353
22295
|
|
|
22296
|
+
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
22297
|
+
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22298
|
+
}
|
|
22299
|
+
|
|
22300
|
+
interface LabelGenerationAddressFailures {
|
|
22301
|
+
readonly id: string;
|
|
22302
|
+
readonly organization_id: string;
|
|
22303
|
+
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22304
|
+
readonly order_number: string;
|
|
22305
|
+
readonly order_submitted_at: string;
|
|
22306
|
+
readonly carrier_id: string;
|
|
22307
|
+
readonly destination_errors: io.flow.internal.v0.models.DestinationError[];
|
|
22308
|
+
}
|
|
22309
|
+
|
|
22354
22310
|
interface LabelGenerationSettings {
|
|
22355
22311
|
readonly id: string;
|
|
22356
22312
|
readonly item_identifier?: string;
|
|
@@ -23569,6 +23525,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23569
23525
|
readonly organization_account: io.flow.internal.v0.models.OrganizationAccount;
|
|
23570
23526
|
}
|
|
23571
23527
|
|
|
23528
|
+
interface OrganizationBankAccountDeleted {
|
|
23529
|
+
readonly discriminator: 'organization_bank_account_deleted';
|
|
23530
|
+
readonly event_id: string;
|
|
23531
|
+
readonly timestamp: string;
|
|
23532
|
+
readonly organization: string;
|
|
23533
|
+
readonly id: string;
|
|
23534
|
+
}
|
|
23535
|
+
|
|
23536
|
+
interface OrganizationBankAccountUpserted {
|
|
23537
|
+
readonly discriminator: 'organization_bank_account_upserted';
|
|
23538
|
+
readonly event_id: string;
|
|
23539
|
+
readonly timestamp: string;
|
|
23540
|
+
readonly organization: string;
|
|
23541
|
+
readonly organization_bank_account: io.flow.billing.v0.models.OrganizationBankAccount;
|
|
23542
|
+
}
|
|
23543
|
+
|
|
23572
23544
|
interface OrganizationBillingStatement {
|
|
23573
23545
|
readonly id: string;
|
|
23574
23546
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -23743,6 +23715,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23743
23715
|
readonly hs_code?: string;
|
|
23744
23716
|
readonly merchant_category_code?: string;
|
|
23745
23717
|
readonly notes?: io.flow.internal.v0.models.OrganizationRestrictionNoteForm[];
|
|
23718
|
+
readonly screening_first_viewed_at?: string;
|
|
23719
|
+
readonly onboarding_first_viewed_at?: string;
|
|
23746
23720
|
}
|
|
23747
23721
|
|
|
23748
23722
|
interface OrganizationRestrictionSnapshot {
|
|
@@ -23785,6 +23759,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23785
23759
|
readonly full_review_end_date?: string;
|
|
23786
23760
|
readonly merchant_category_code?: string;
|
|
23787
23761
|
readonly reason?: string;
|
|
23762
|
+
readonly screening_first_viewed_at?: string;
|
|
23763
|
+
readonly onboarding_first_viewed_at?: string;
|
|
23788
23764
|
readonly updated_at: string;
|
|
23789
23765
|
}
|
|
23790
23766
|
|
|
@@ -25122,6 +25098,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25122
25098
|
readonly regions: string[];
|
|
25123
25099
|
readonly positive_keywords: string[];
|
|
25124
25100
|
readonly negative_keywords: string[];
|
|
25101
|
+
readonly value_threshold_usd?: number;
|
|
25125
25102
|
}
|
|
25126
25103
|
|
|
25127
25104
|
interface RestrictionRuleDecisionForm {
|
|
@@ -25137,6 +25114,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25137
25114
|
readonly regions: string[];
|
|
25138
25115
|
readonly positive_keywords: string[];
|
|
25139
25116
|
readonly negative_keywords: string[];
|
|
25117
|
+
readonly value_threshold_usd?: number;
|
|
25140
25118
|
}
|
|
25141
25119
|
|
|
25142
25120
|
interface RestrictionRuleMetadata {
|
|
@@ -27533,6 +27511,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27533
27511
|
| io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
|
|
27534
27512
|
| io.flow.internal.v0.models.PlatformFeeChangeUpserted
|
|
27535
27513
|
| io.flow.internal.v0.models.PlatformFeeChangeDeleted
|
|
27514
|
+
| io.flow.internal.v0.models.OrganizationBankAccountUpserted
|
|
27515
|
+
| io.flow.internal.v0.models.OrganizationBankAccountDeleted
|
|
27536
27516
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
27537
27517
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
27538
27518
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -29674,6 +29654,7 @@ export type DeliveredDutyPreferenceForm =
|
|
|
29674
29654
|
io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
29675
29655
|
export type DeminimisAdjustmentType =
|
|
29676
29656
|
io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
29657
|
+
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
29677
29658
|
export type Details = io.flow.internal.v0.models.Details;
|
|
29678
29659
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
29679
29660
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
@@ -30318,6 +30299,12 @@ export type LabelCreationJobSummary =
|
|
|
30318
30299
|
export type LabelCreationRequestForm =
|
|
30319
30300
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
30320
30301
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
30302
|
+
export type LabelGenerationAddressFailureStatus =
|
|
30303
|
+
io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
30304
|
+
export type LabelGenerationAddressFailureStatusUpdateForm =
|
|
30305
|
+
io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
30306
|
+
export type LabelGenerationAddressFailures =
|
|
30307
|
+
io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
30321
30308
|
export type LabelGenerationSettings =
|
|
30322
30309
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
30323
30310
|
export type LabelGenerationSettingsDeleted =
|
|
@@ -30670,6 +30657,10 @@ export type OrganizationAccountDeleted =
|
|
|
30670
30657
|
io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
30671
30658
|
export type OrganizationAccountUpsertedV2 =
|
|
30672
30659
|
io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
30660
|
+
export type OrganizationBankAccountDeleted =
|
|
30661
|
+
io.flow.internal.v0.models.OrganizationBankAccountDeleted;
|
|
30662
|
+
export type OrganizationBankAccountUpserted =
|
|
30663
|
+
io.flow.internal.v0.models.OrganizationBankAccountUpserted;
|
|
30673
30664
|
export type OrganizationBillingStatement =
|
|
30674
30665
|
io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
30675
30666
|
export type OrganizationBooleanValue =
|
package/src/api.ts
CHANGED
|
@@ -549,6 +549,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
549
549
|
interface Metadata {
|
|
550
550
|
readonly order_number?: string;
|
|
551
551
|
readonly authorization_id?: string;
|
|
552
|
+
readonly organization_id?: string;
|
|
552
553
|
}
|
|
553
554
|
|
|
554
555
|
interface NextAction {
|
|
@@ -925,6 +926,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
925
926
|
readonly token?: string;
|
|
926
927
|
readonly usage: io.flow.stripe.v0.enums.SourceUsageType;
|
|
927
928
|
readonly source_order?: io.flow.stripe.v0.models.SourceOrderRequest;
|
|
929
|
+
readonly metadata?: io.flow.stripe.v0.models.Metadata;
|
|
928
930
|
}
|
|
929
931
|
|
|
930
932
|
interface Stripe3Ds2Fingerprint {
|
|
@@ -2003,8 +2005,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
2003
2005
|
| 'email'
|
|
2004
2006
|
| 'name'
|
|
2005
2007
|
| 'phone'
|
|
2006
|
-
| '
|
|
2007
|
-
| '
|
|
2008
|
+
| 'postal_address'
|
|
2009
|
+
| 'phonetic_name';
|
|
2008
2010
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
2009
2011
|
type ApplePayMerchantCapability =
|
|
2010
2012
|
| 'supports3DS'
|
|
@@ -2014,8 +2016,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
2014
2016
|
type ApplePayShippingType =
|
|
2015
2017
|
| 'shipping'
|
|
2016
2018
|
| 'delivery'
|
|
2017
|
-
| '
|
|
2018
|
-
| '
|
|
2019
|
+
| 'store_pickup'
|
|
2020
|
+
| 'service_pickup';
|
|
2019
2021
|
type ApplePaySupportedNetworks =
|
|
2020
2022
|
| 'amex'
|
|
2021
2023
|
| 'chinaUnionPay'
|
|
@@ -2030,7 +2032,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2030
2032
|
interface ApplePayLineItem {
|
|
2031
2033
|
readonly label: string;
|
|
2032
2034
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
2033
|
-
readonly amount:
|
|
2035
|
+
readonly amount: number;
|
|
2034
2036
|
}
|
|
2035
2037
|
|
|
2036
2038
|
interface ApplePayPaymentContact {
|
|
@@ -2081,7 +2083,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2081
2083
|
interface ApplePayShippingMethod {
|
|
2082
2084
|
readonly label: string;
|
|
2083
2085
|
readonly detail: string;
|
|
2084
|
-
readonly amount:
|
|
2086
|
+
readonly amount: number;
|
|
2085
2087
|
readonly identifier: string;
|
|
2086
2088
|
}
|
|
2087
2089
|
}
|
|
@@ -2477,6 +2479,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2477
2479
|
| 'virtual_card_refund_upserted'
|
|
2478
2480
|
| 'virtual_card_refund_deleted'
|
|
2479
2481
|
| 'payment_request_upserted'
|
|
2482
|
+
| 'payment_request_deleted'
|
|
2480
2483
|
| 'price_book_upserted'
|
|
2481
2484
|
| 'price_book_deleted'
|
|
2482
2485
|
| 'price_book_item_upserted'
|
|
@@ -3925,6 +3928,14 @@ declare namespace io.flow.v0.models {
|
|
|
3925
3928
|
readonly order_numbers: string[];
|
|
3926
3929
|
}
|
|
3927
3930
|
|
|
3931
|
+
interface BridgeShippingLabelForm {
|
|
3932
|
+
readonly discriminator: 'bridge_shipping_label_form';
|
|
3933
|
+
readonly order_number: string;
|
|
3934
|
+
readonly items?: io.flow.v0.models.LineItemForm[];
|
|
3935
|
+
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
3936
|
+
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3928
3939
|
interface BrowseOptinResponses {
|
|
3929
3940
|
readonly id: string;
|
|
3930
3941
|
readonly session_id: string;
|
|
@@ -5481,7 +5492,7 @@ declare namespace io.flow.v0.models {
|
|
|
5481
5492
|
readonly attributes?: Record<string, string>;
|
|
5482
5493
|
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
5483
5494
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
5484
|
-
readonly order_number
|
|
5495
|
+
readonly order_number: string;
|
|
5485
5496
|
readonly service?: string;
|
|
5486
5497
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
5487
5498
|
}
|
|
@@ -9668,6 +9679,14 @@ declare namespace io.flow.v0.models {
|
|
|
9668
9679
|
readonly billing: io.flow.v0.models.PaymentRequestBilling;
|
|
9669
9680
|
}
|
|
9670
9681
|
|
|
9682
|
+
interface PaymentRequestDeleted {
|
|
9683
|
+
readonly discriminator: 'payment_request_deleted';
|
|
9684
|
+
readonly event_id: string;
|
|
9685
|
+
readonly timestamp: string;
|
|
9686
|
+
readonly organization: string;
|
|
9687
|
+
readonly id: string;
|
|
9688
|
+
}
|
|
9689
|
+
|
|
9671
9690
|
interface PaymentRequestForm {
|
|
9672
9691
|
readonly amount: number;
|
|
9673
9692
|
readonly currency: string;
|
|
@@ -13152,6 +13171,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13152
13171
|
| io.flow.v0.models.VirtualCardRefundUpserted
|
|
13153
13172
|
| io.flow.v0.models.VirtualCardRefundDeleted
|
|
13154
13173
|
| io.flow.v0.models.PaymentRequestUpserted
|
|
13174
|
+
| io.flow.v0.models.PaymentRequestDeleted
|
|
13155
13175
|
| io.flow.v0.models.PriceBookUpserted
|
|
13156
13176
|
| io.flow.v0.models.PriceBookDeleted
|
|
13157
13177
|
| io.flow.v0.models.PriceBookItemUpserted
|
|
@@ -13415,7 +13435,8 @@ declare namespace io.flow.v0.unions {
|
|
|
13415
13435
|
| io.flow.v0.models.SettlementPayout;
|
|
13416
13436
|
type ShippingLabelForm =
|
|
13417
13437
|
| io.flow.v0.models.DetailedShippingLabelForm
|
|
13418
|
-
| io.flow.v0.models.SummaryShippingLabelForm
|
|
13438
|
+
| io.flow.v0.models.SummaryShippingLabelForm
|
|
13439
|
+
| io.flow.v0.models.BridgeShippingLabelForm;
|
|
13419
13440
|
type ShippingNotificationForm =
|
|
13420
13441
|
| io.flow.v0.models.DetailedShippingNotificationForm
|
|
13421
13442
|
| io.flow.v0.models.SinglePackageShippingNotificationForm
|
|
@@ -13649,6 +13670,7 @@ export type BillingChannelStatementReference =
|
|
|
13649
13670
|
export type BillingDiscount = io.flow.v0.models.BillingDiscount;
|
|
13650
13671
|
export type BridgeManifest = io.flow.v0.models.BridgeManifest;
|
|
13651
13672
|
export type BridgeManifestForm = io.flow.v0.models.BridgeManifestForm;
|
|
13673
|
+
export type BridgeShippingLabelForm = io.flow.v0.models.BridgeShippingLabelForm;
|
|
13652
13674
|
export type BrowseOptinResponses = io.flow.v0.models.BrowseOptinResponses;
|
|
13653
13675
|
export type BrowseOptinResponsesDeleted =
|
|
13654
13676
|
io.flow.v0.models.BrowseOptinResponsesDeleted;
|
|
@@ -14931,6 +14953,7 @@ export type PaymentRequestBillingFees =
|
|
|
14931
14953
|
export type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
|
|
14932
14954
|
export type PaymentRequestBundleForm =
|
|
14933
14955
|
io.flow.v0.models.PaymentRequestBundleForm;
|
|
14956
|
+
export type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
|
|
14934
14957
|
export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
14935
14958
|
export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
14936
14959
|
export type PaymentRequestReview = io.flow.v0.models.PaymentRequestReview;
|