@flowio/types 11.24.56 → 11.24.57
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 +112 -12
- package/dist/api.d.ts +3 -3
- package/package.json +2 -2
- package/src/api-internal.ts +139 -10
- package/src/api.ts +4 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -3465,9 +3465,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3465
3465
|
type Contract = 'RECURRING';
|
|
3466
3466
|
type DeviceChannel = 'app' | 'browser';
|
|
3467
3467
|
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';
|
|
3468
|
-
type
|
|
3468
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
3469
3469
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3470
|
-
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';
|
|
3470
|
+
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
3471
3471
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3472
3472
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3473
3473
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3486,6 +3486,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3486
3486
|
readonly value: number;
|
|
3487
3487
|
readonly currency: string;
|
|
3488
3488
|
}
|
|
3489
|
+
interface Applepay {
|
|
3490
|
+
readonly type: 'applepay';
|
|
3491
|
+
readonly applePayToken: string;
|
|
3492
|
+
}
|
|
3489
3493
|
interface Authentication {
|
|
3490
3494
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3491
3495
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3512,6 +3516,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3512
3516
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3513
3517
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3514
3518
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3519
|
+
readonly mcc?: string;
|
|
3520
|
+
readonly metadata?: any;
|
|
3515
3521
|
}
|
|
3516
3522
|
interface AuthorizeRequest3D {
|
|
3517
3523
|
readonly merchantAccount: string;
|
|
@@ -3645,6 +3651,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3645
3651
|
readonly details: any;
|
|
3646
3652
|
readonly paymentData?: string;
|
|
3647
3653
|
}
|
|
3654
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
3655
|
+
readonly 'threeds2.challengeResult': string;
|
|
3656
|
+
}
|
|
3657
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
3658
|
+
readonly 'threeds2.fingerprint': string;
|
|
3659
|
+
}
|
|
3648
3660
|
interface PaymentRequest {
|
|
3649
3661
|
readonly reference: string;
|
|
3650
3662
|
readonly merchantAccount: string;
|
|
@@ -3666,7 +3678,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3666
3678
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3667
3679
|
readonly origin?: string;
|
|
3668
3680
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
3669
|
-
readonly
|
|
3681
|
+
readonly returnUrl?: string;
|
|
3682
|
+
readonly mcc?: string;
|
|
3683
|
+
readonly metadata?: any;
|
|
3684
|
+
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3685
|
+
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3686
|
+
readonly storePaymentMethod?: boolean;
|
|
3670
3687
|
}
|
|
3671
3688
|
interface PaymentResponse {
|
|
3672
3689
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3681,19 +3698,57 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3681
3698
|
interface PaymentResponseAdditionalData {
|
|
3682
3699
|
readonly authCode?: string;
|
|
3683
3700
|
readonly avsResultRaw?: string;
|
|
3701
|
+
readonly avsResult?: string;
|
|
3684
3702
|
readonly cvcResultRaw?: string;
|
|
3703
|
+
readonly cvcResult?: string;
|
|
3704
|
+
readonly refusalReasonRaw?: string;
|
|
3685
3705
|
readonly liabilityShift?: string;
|
|
3686
3706
|
readonly threeDAuthenticated?: string;
|
|
3687
3707
|
readonly threeDAuthenticatedResponse?: string;
|
|
3688
3708
|
readonly threeDOffered?: string;
|
|
3689
3709
|
readonly threeDOfferedResponse?: string;
|
|
3710
|
+
readonly threeDSVersion?: string;
|
|
3711
|
+
readonly eci?: string;
|
|
3712
|
+
readonly scaExemptionRequested?: string;
|
|
3713
|
+
readonly paymentMethod?: string;
|
|
3714
|
+
readonly paymentMethodVariant?: string;
|
|
3715
|
+
readonly tokenTxVariant?: string;
|
|
3716
|
+
readonly acquirerCode?: string;
|
|
3717
|
+
readonly acquirerAccountCode?: string;
|
|
3718
|
+
readonly cardPaymentMethod?: string;
|
|
3719
|
+
readonly coBrandedWith?: string;
|
|
3720
|
+
readonly cardIssuingCountry?: string;
|
|
3721
|
+
readonly cardIssuingCurrency?: string;
|
|
3722
|
+
readonly cardIssuingBank?: string;
|
|
3723
|
+
readonly cardBin?: string;
|
|
3724
|
+
readonly issuerBin?: string;
|
|
3725
|
+
readonly cardSummary?: string;
|
|
3726
|
+
readonly untokenisedCardSummary?: string;
|
|
3727
|
+
readonly ownerName?: string;
|
|
3728
|
+
readonly bankName?: string;
|
|
3729
|
+
readonly issuerCountry?: string;
|
|
3730
|
+
readonly iban?: string;
|
|
3731
|
+
readonly bic?: string;
|
|
3732
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
3733
|
+
readonly iDealConsumerBIC?: string;
|
|
3734
|
+
readonly iDealConsumerCity?: string;
|
|
3735
|
+
readonly iDealConsumerIBAN?: string;
|
|
3736
|
+
readonly iDealConsumerName?: string;
|
|
3737
|
+
readonly iDealTransactionId?: string;
|
|
3738
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
3739
|
+
readonly 'recurring.shopperReference'?: string;
|
|
3740
|
+
readonly networkTxReference?: string;
|
|
3741
|
+
readonly PaymentAccountReference?: string;
|
|
3742
|
+
readonly 'networkToken.available'?: string;
|
|
3743
|
+
readonly 'networkToken.bin'?: string;
|
|
3744
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
3690
3745
|
}
|
|
3691
3746
|
interface Recurring {
|
|
3692
3747
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
3693
3748
|
}
|
|
3694
3749
|
interface Redirect {
|
|
3695
3750
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
3696
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
3751
|
+
readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3697
3752
|
readonly url?: string;
|
|
3698
3753
|
}
|
|
3699
3754
|
interface RedirectData {
|
|
@@ -3713,6 +3768,15 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3713
3768
|
readonly holderName: string;
|
|
3714
3769
|
readonly number: string;
|
|
3715
3770
|
readonly cvc?: string;
|
|
3771
|
+
readonly storedPaymentMethodId?: string;
|
|
3772
|
+
readonly networkPaymentReference?: string;
|
|
3773
|
+
}
|
|
3774
|
+
interface SdkV3OnCompleteData {
|
|
3775
|
+
readonly details: any;
|
|
3776
|
+
readonly payment_data?: string;
|
|
3777
|
+
}
|
|
3778
|
+
interface SdkV3OnCompleteResult {
|
|
3779
|
+
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
3716
3780
|
}
|
|
3717
3781
|
interface ThreeDSecureData {
|
|
3718
3782
|
readonly authenticationResponse?: string;
|
|
@@ -3739,7 +3803,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3739
3803
|
}
|
|
3740
3804
|
declare namespace io.flow.adyen.v0.unions {
|
|
3741
3805
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
3742
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
3806
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme | io.flow.adyen.v0.models.Applepay;
|
|
3743
3807
|
}
|
|
3744
3808
|
declare namespace io.flow.order.management.v0.enums {
|
|
3745
3809
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -5941,6 +6005,22 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
5941
6005
|
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
5942
6006
|
}
|
|
5943
6007
|
declare namespace io.flow.partner.v0.models {
|
|
6008
|
+
interface BridgeHub {
|
|
6009
|
+
readonly hub_code: string;
|
|
6010
|
+
readonly address?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6011
|
+
}
|
|
6012
|
+
interface BridgeLabelForm {
|
|
6013
|
+
readonly discriminator: 'bridge_label_form';
|
|
6014
|
+
readonly organization: string;
|
|
6015
|
+
readonly order_number: string;
|
|
6016
|
+
readonly package: io.flow.partner.v0.models.BridgeLabelPackage;
|
|
6017
|
+
readonly hub?: io.flow.partner.v0.models.BridgeHub;
|
|
6018
|
+
}
|
|
6019
|
+
interface BridgeLabelPackage {
|
|
6020
|
+
readonly dimensions?: io.flow.common.v0.models.Dimension;
|
|
6021
|
+
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
6022
|
+
readonly reference_number: string;
|
|
6023
|
+
}
|
|
5944
6024
|
interface DetailedLabelForm {
|
|
5945
6025
|
readonly discriminator: 'detailed_label_form';
|
|
5946
6026
|
readonly organization: string;
|
|
@@ -6042,7 +6122,7 @@ declare namespace io.flow.partner.v0.models {
|
|
|
6042
6122
|
}
|
|
6043
6123
|
}
|
|
6044
6124
|
declare namespace io.flow.partner.v0.unions {
|
|
6045
|
-
type LabelForm = io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm;
|
|
6125
|
+
type LabelForm = io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm | io.flow.partner.v0.models.BridgeLabelForm;
|
|
6046
6126
|
}
|
|
6047
6127
|
declare namespace io.flow.common.v0.enums {
|
|
6048
6128
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
@@ -9951,7 +10031,7 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
9951
10031
|
}
|
|
9952
10032
|
}
|
|
9953
10033
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
9954
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
10034
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
9955
10035
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
9956
10036
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
9957
10037
|
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
@@ -9961,7 +10041,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
9961
10041
|
interface ApplePayLineItem {
|
|
9962
10042
|
readonly label: string;
|
|
9963
10043
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
9964
|
-
readonly amount:
|
|
10044
|
+
readonly amount: string;
|
|
9965
10045
|
}
|
|
9966
10046
|
interface ApplePayPaymentContact {
|
|
9967
10047
|
readonly email_address?: string;
|
|
@@ -10008,7 +10088,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
10008
10088
|
interface ApplePayShippingMethod {
|
|
10009
10089
|
readonly label: string;
|
|
10010
10090
|
readonly detail: string;
|
|
10011
|
-
readonly amount:
|
|
10091
|
+
readonly amount: string;
|
|
10012
10092
|
readonly identifier: string;
|
|
10013
10093
|
}
|
|
10014
10094
|
}
|
|
@@ -10509,7 +10589,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10509
10589
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10510
10590
|
type EmptyAttribute = 'irrelevant';
|
|
10511
10591
|
type ErpFileType = 'vendor';
|
|
10512
|
-
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' | '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' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | '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' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_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' | '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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_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';
|
|
10592
|
+
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' | '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' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | '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' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_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' | '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_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';
|
|
10513
10593
|
type ExperienceImportType = 'experience_with_settings';
|
|
10514
10594
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10515
10595
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10631,7 +10711,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10631
10711
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10632
10712
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10633
10713
|
type TariffEligibilityType = 'rex';
|
|
10634
|
-
type TaskProcessorKey = '
|
|
10714
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard' | 'logistics_center' | 'center_defaults';
|
|
10635
10715
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10636
10716
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10637
10717
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
@@ -18840,6 +18920,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18840
18920
|
interface RateLevelRatecardForm {
|
|
18841
18921
|
readonly ratecard_id: string;
|
|
18842
18922
|
}
|
|
18923
|
+
interface RateLevelWithEffective {
|
|
18924
|
+
readonly id: string;
|
|
18925
|
+
readonly name: string;
|
|
18926
|
+
readonly effective_at: string;
|
|
18927
|
+
}
|
|
18843
18928
|
interface RateNameSummary {
|
|
18844
18929
|
readonly name: string;
|
|
18845
18930
|
readonly long_name?: string;
|
|
@@ -19698,6 +19783,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19698
19783
|
readonly should_be_fulfilled: boolean;
|
|
19699
19784
|
readonly fulfillment_snapshots: io.flow.internal.v0.models.FulfillmentSnapshot[];
|
|
19700
19785
|
}
|
|
19786
|
+
interface ShopifyOrderFulfillmentsSnapshotDeleted {
|
|
19787
|
+
readonly discriminator: 'shopify_order_fulfillments_snapshot_deleted';
|
|
19788
|
+
readonly event_id: string;
|
|
19789
|
+
readonly timestamp: string;
|
|
19790
|
+
readonly id: string;
|
|
19791
|
+
}
|
|
19792
|
+
interface ShopifyOrderFulfillmentsSnapshotUpserted {
|
|
19793
|
+
readonly discriminator: 'shopify_order_fulfillments_snapshot_upserted';
|
|
19794
|
+
readonly event_id: string;
|
|
19795
|
+
readonly timestamp: string;
|
|
19796
|
+
readonly shopify_order_fulfillments_snapshot: io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot;
|
|
19797
|
+
}
|
|
19701
19798
|
interface ShopifyOrderInventoryCheck {
|
|
19702
19799
|
readonly item_number: string;
|
|
19703
19800
|
readonly quantity: number;
|
|
@@ -20872,7 +20969,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20872
20969
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20873
20970
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20874
20971
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20875
|
-
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.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.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | 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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | 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;
|
|
20972
|
+
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.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.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | 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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.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.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;
|
|
20876
20973
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20877
20974
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20878
20975
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22631,6 +22728,7 @@ export declare type RateLevelOrganization = io.flow.internal.v0.models.RateLevel
|
|
|
22631
22728
|
export declare type RateLevelOrganizationForm = io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
22632
22729
|
export declare type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
22633
22730
|
export declare type RateLevelRatecardForm = io.flow.internal.v0.models.RateLevelRatecardForm;
|
|
22731
|
+
export declare type RateLevelWithEffective = io.flow.internal.v0.models.RateLevelWithEffective;
|
|
22634
22732
|
export declare type RateNameSummary = io.flow.internal.v0.models.RateNameSummary;
|
|
22635
22733
|
export declare type RateSource = io.flow.internal.v0.enums.RateSource;
|
|
22636
22734
|
export declare type RateSourceCompositionSummary = io.flow.internal.v0.models.RateSourceCompositionSummary;
|
|
@@ -22799,6 +22897,8 @@ export declare type ShopifyOrderDestinationForm = io.flow.internal.v0.models.Sho
|
|
|
22799
22897
|
export declare type ShopifyOrderDetail = io.flow.internal.v0.models.ShopifyOrderDetail;
|
|
22800
22898
|
export declare type ShopifyOrderDiscountContent = io.flow.internal.v0.models.ShopifyOrderDiscountContent;
|
|
22801
22899
|
export declare type ShopifyOrderFulfillmentsSnapshot = io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot;
|
|
22900
|
+
export declare type ShopifyOrderFulfillmentsSnapshotDeleted = io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted;
|
|
22901
|
+
export declare type ShopifyOrderFulfillmentsSnapshotUpserted = io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted;
|
|
22802
22902
|
export declare type ShopifyOrderInventoryCheck = io.flow.internal.v0.models.ShopifyOrderInventoryCheck;
|
|
22803
22903
|
export declare type ShopifyOrderLineAttribute = io.flow.internal.v0.models.ShopifyOrderLineAttribute;
|
|
22804
22904
|
export declare type ShopifyOrderLineContent = io.flow.internal.v0.models.ShopifyOrderLineContent;
|
package/dist/api.d.ts
CHANGED
|
@@ -1578,7 +1578,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1578
1578
|
}
|
|
1579
1579
|
}
|
|
1580
1580
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1581
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1581
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1582
1582
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1583
1583
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1584
1584
|
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
@@ -1588,7 +1588,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1588
1588
|
interface ApplePayLineItem {
|
|
1589
1589
|
readonly label: string;
|
|
1590
1590
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1591
|
-
readonly amount:
|
|
1591
|
+
readonly amount: string;
|
|
1592
1592
|
}
|
|
1593
1593
|
interface ApplePayPaymentContact {
|
|
1594
1594
|
readonly email_address?: string;
|
|
@@ -1635,7 +1635,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1635
1635
|
interface ApplePayShippingMethod {
|
|
1636
1636
|
readonly label: string;
|
|
1637
1637
|
readonly detail: string;
|
|
1638
|
-
readonly amount:
|
|
1638
|
+
readonly amount: string;
|
|
1639
1639
|
readonly identifier: string;
|
|
1640
1640
|
}
|
|
1641
1641
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.57",
|
|
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": "f832292109d38b700b765626a6687b1dc7c308b3"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -4750,15 +4750,18 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4750
4750
|
| 'SECOND_CHARGEBACK'
|
|
4751
4751
|
| 'PREARBITRATION_WON'
|
|
4752
4752
|
| 'PREARBITRATION_LOST';
|
|
4753
|
-
type
|
|
4753
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
4754
4754
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4755
4755
|
type PaymentMethod =
|
|
4756
4756
|
| 'ach'
|
|
4757
4757
|
| 'alipay'
|
|
4758
|
+
| 'alipay_hk'
|
|
4758
4759
|
| 'alipay_wap'
|
|
4759
4760
|
| 'amex'
|
|
4760
4761
|
| 'bankTransfer_IBAN'
|
|
4761
4762
|
| 'bcmc'
|
|
4763
|
+
| 'bcmc_mobile'
|
|
4764
|
+
| 'blik'
|
|
4762
4765
|
| 'cartebancaire'
|
|
4763
4766
|
| 'cup'
|
|
4764
4767
|
| 'diners'
|
|
@@ -4769,21 +4772,27 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4769
4772
|
| 'dragonpay_gcash'
|
|
4770
4773
|
| 'dragonpay_otc_banking'
|
|
4771
4774
|
| 'ebanking_FI'
|
|
4775
|
+
| 'gcash'
|
|
4772
4776
|
| 'giropay'
|
|
4773
4777
|
| 'ideal'
|
|
4774
4778
|
| 'interac'
|
|
4775
4779
|
| 'jcb'
|
|
4780
|
+
| 'kakaopay'
|
|
4776
4781
|
| 'kcp_banktransfer'
|
|
4777
4782
|
| 'kcp_creditcard'
|
|
4778
4783
|
| 'kcp_payco'
|
|
4779
4784
|
| 'maestro'
|
|
4785
|
+
| 'mbway'
|
|
4780
4786
|
| 'mc'
|
|
4787
|
+
| 'mobilepay'
|
|
4781
4788
|
| 'molpay_points'
|
|
4782
4789
|
| 'multibanco'
|
|
4790
|
+
| 'onlineBanking_PL'
|
|
4783
4791
|
| 'qiwiwallet'
|
|
4784
4792
|
| 'sepadirectdebit'
|
|
4785
4793
|
| 'trustly'
|
|
4786
4794
|
| 'trustpay'
|
|
4795
|
+
| 'twint'
|
|
4787
4796
|
| 'unionpay'
|
|
4788
4797
|
| 'visa'
|
|
4789
4798
|
| 'wechatpay'
|
|
@@ -4821,6 +4830,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4821
4830
|
readonly currency: string;
|
|
4822
4831
|
}
|
|
4823
4832
|
|
|
4833
|
+
interface Applepay {
|
|
4834
|
+
readonly type: 'applepay';
|
|
4835
|
+
readonly applePayToken: string;
|
|
4836
|
+
}
|
|
4837
|
+
|
|
4824
4838
|
interface Authentication {
|
|
4825
4839
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
4826
4840
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4848,6 +4862,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4848
4862
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4849
4863
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4850
4864
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4865
|
+
readonly mcc?: string;
|
|
4866
|
+
readonly metadata?: any /*object*/;
|
|
4851
4867
|
}
|
|
4852
4868
|
|
|
4853
4869
|
interface AuthorizeRequest3D {
|
|
@@ -5004,6 +5020,14 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5004
5020
|
readonly paymentData?: string;
|
|
5005
5021
|
}
|
|
5006
5022
|
|
|
5023
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
5024
|
+
readonly 'threeds2.challengeResult': string;
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
5028
|
+
readonly 'threeds2.fingerprint': string;
|
|
5029
|
+
}
|
|
5030
|
+
|
|
5007
5031
|
interface PaymentRequest {
|
|
5008
5032
|
readonly reference: string;
|
|
5009
5033
|
readonly merchantAccount: string;
|
|
@@ -5025,7 +5049,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5025
5049
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5026
5050
|
readonly origin?: string;
|
|
5027
5051
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
5028
|
-
readonly
|
|
5052
|
+
readonly returnUrl?: string;
|
|
5053
|
+
readonly mcc?: string;
|
|
5054
|
+
readonly metadata?: any /*object*/;
|
|
5055
|
+
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5056
|
+
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5057
|
+
readonly storePaymentMethod?: boolean;
|
|
5029
5058
|
}
|
|
5030
5059
|
|
|
5031
5060
|
interface PaymentResponse {
|
|
@@ -5042,12 +5071,50 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5042
5071
|
interface PaymentResponseAdditionalData {
|
|
5043
5072
|
readonly authCode?: string;
|
|
5044
5073
|
readonly avsResultRaw?: string;
|
|
5074
|
+
readonly avsResult?: string;
|
|
5045
5075
|
readonly cvcResultRaw?: string;
|
|
5076
|
+
readonly cvcResult?: string;
|
|
5077
|
+
readonly refusalReasonRaw?: string;
|
|
5046
5078
|
readonly liabilityShift?: string;
|
|
5047
5079
|
readonly threeDAuthenticated?: string;
|
|
5048
5080
|
readonly threeDAuthenticatedResponse?: string;
|
|
5049
5081
|
readonly threeDOffered?: string;
|
|
5050
5082
|
readonly threeDOfferedResponse?: string;
|
|
5083
|
+
readonly threeDSVersion?: string;
|
|
5084
|
+
readonly eci?: string;
|
|
5085
|
+
readonly scaExemptionRequested?: string;
|
|
5086
|
+
readonly paymentMethod?: string;
|
|
5087
|
+
readonly paymentMethodVariant?: string;
|
|
5088
|
+
readonly tokenTxVariant?: string;
|
|
5089
|
+
readonly acquirerCode?: string;
|
|
5090
|
+
readonly acquirerAccountCode?: string;
|
|
5091
|
+
readonly cardPaymentMethod?: string;
|
|
5092
|
+
readonly coBrandedWith?: string;
|
|
5093
|
+
readonly cardIssuingCountry?: string;
|
|
5094
|
+
readonly cardIssuingCurrency?: string;
|
|
5095
|
+
readonly cardIssuingBank?: string;
|
|
5096
|
+
readonly cardBin?: string;
|
|
5097
|
+
readonly issuerBin?: string;
|
|
5098
|
+
readonly cardSummary?: string;
|
|
5099
|
+
readonly untokenisedCardSummary?: string;
|
|
5100
|
+
readonly ownerName?: string;
|
|
5101
|
+
readonly bankName?: string;
|
|
5102
|
+
readonly issuerCountry?: string;
|
|
5103
|
+
readonly iban?: string;
|
|
5104
|
+
readonly bic?: string;
|
|
5105
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
5106
|
+
readonly iDealConsumerBIC?: string;
|
|
5107
|
+
readonly iDealConsumerCity?: string;
|
|
5108
|
+
readonly iDealConsumerIBAN?: string;
|
|
5109
|
+
readonly iDealConsumerName?: string;
|
|
5110
|
+
readonly iDealTransactionId?: string;
|
|
5111
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
5112
|
+
readonly 'recurring.shopperReference'?: string;
|
|
5113
|
+
readonly networkTxReference?: string;
|
|
5114
|
+
readonly PaymentAccountReference?: string;
|
|
5115
|
+
readonly 'networkToken.available'?: string;
|
|
5116
|
+
readonly 'networkToken.bin'?: string;
|
|
5117
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
5051
5118
|
}
|
|
5052
5119
|
|
|
5053
5120
|
interface Recurring {
|
|
@@ -5056,7 +5123,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5056
5123
|
|
|
5057
5124
|
interface Redirect {
|
|
5058
5125
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
5059
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
5126
|
+
readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5060
5127
|
readonly url?: string;
|
|
5061
5128
|
}
|
|
5062
5129
|
|
|
@@ -5079,6 +5146,17 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5079
5146
|
readonly holderName: string;
|
|
5080
5147
|
readonly number: string;
|
|
5081
5148
|
readonly cvc?: string;
|
|
5149
|
+
readonly storedPaymentMethodId?: string;
|
|
5150
|
+
readonly networkPaymentReference?: string;
|
|
5151
|
+
}
|
|
5152
|
+
|
|
5153
|
+
interface SdkV3OnCompleteData {
|
|
5154
|
+
readonly details: any /*object*/;
|
|
5155
|
+
readonly payment_data?: string;
|
|
5156
|
+
}
|
|
5157
|
+
|
|
5158
|
+
interface SdkV3OnCompleteResult {
|
|
5159
|
+
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
5082
5160
|
}
|
|
5083
5161
|
|
|
5084
5162
|
interface ThreeDSecureData {
|
|
@@ -5112,7 +5190,9 @@ declare namespace io.flow.adyen.v0.unions {
|
|
|
5112
5190
|
type BrowserInfo =
|
|
5113
5191
|
| io.flow.adyen.v0.models.BrowserInfo3Ds1
|
|
5114
5192
|
| io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
5115
|
-
type PaymentMethodData =
|
|
5193
|
+
type PaymentMethodData =
|
|
5194
|
+
| io.flow.adyen.v0.models.Scheme
|
|
5195
|
+
| io.flow.adyen.v0.models.Applepay;
|
|
5116
5196
|
}
|
|
5117
5197
|
|
|
5118
5198
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -7984,6 +8064,25 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
7984
8064
|
}
|
|
7985
8065
|
|
|
7986
8066
|
declare namespace io.flow.partner.v0.models {
|
|
8067
|
+
interface BridgeHub {
|
|
8068
|
+
readonly hub_code: string;
|
|
8069
|
+
readonly address?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8070
|
+
}
|
|
8071
|
+
|
|
8072
|
+
interface BridgeLabelForm {
|
|
8073
|
+
readonly discriminator: 'bridge_label_form';
|
|
8074
|
+
readonly organization: string;
|
|
8075
|
+
readonly order_number: string;
|
|
8076
|
+
readonly package: io.flow.partner.v0.models.BridgeLabelPackage;
|
|
8077
|
+
readonly hub?: io.flow.partner.v0.models.BridgeHub;
|
|
8078
|
+
}
|
|
8079
|
+
|
|
8080
|
+
interface BridgeLabelPackage {
|
|
8081
|
+
readonly dimensions?: io.flow.common.v0.models.Dimension;
|
|
8082
|
+
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
8083
|
+
readonly reference_number: string;
|
|
8084
|
+
}
|
|
8085
|
+
|
|
7987
8086
|
interface DetailedLabelForm {
|
|
7988
8087
|
readonly discriminator: 'detailed_label_form';
|
|
7989
8088
|
readonly organization: string;
|
|
@@ -8102,7 +8201,8 @@ declare namespace io.flow.partner.v0.models {
|
|
|
8102
8201
|
declare namespace io.flow.partner.v0.unions {
|
|
8103
8202
|
type LabelForm =
|
|
8104
8203
|
| io.flow.partner.v0.models.DetailedLabelForm
|
|
8105
|
-
| io.flow.partner.v0.models.SummaryLabelForm
|
|
8204
|
+
| io.flow.partner.v0.models.SummaryLabelForm
|
|
8205
|
+
| io.flow.partner.v0.models.BridgeLabelForm;
|
|
8106
8206
|
}
|
|
8107
8207
|
|
|
8108
8208
|
declare namespace io.flow.common.v0.enums {
|
|
@@ -13029,8 +13129,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
13029
13129
|
| 'email'
|
|
13030
13130
|
| 'name'
|
|
13031
13131
|
| 'phone'
|
|
13032
|
-
| '
|
|
13033
|
-
| '
|
|
13132
|
+
| 'postalAddress'
|
|
13133
|
+
| 'phoneticName';
|
|
13034
13134
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
13035
13135
|
type ApplePayMerchantCapability =
|
|
13036
13136
|
| 'supports3DS'
|
|
@@ -13056,7 +13156,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13056
13156
|
interface ApplePayLineItem {
|
|
13057
13157
|
readonly label: string;
|
|
13058
13158
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
13059
|
-
readonly amount:
|
|
13159
|
+
readonly amount: string;
|
|
13060
13160
|
}
|
|
13061
13161
|
|
|
13062
13162
|
interface ApplePayPaymentContact {
|
|
@@ -13107,7 +13207,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13107
13207
|
interface ApplePayShippingMethod {
|
|
13108
13208
|
readonly label: string;
|
|
13109
13209
|
readonly detail: string;
|
|
13110
|
-
readonly amount:
|
|
13210
|
+
readonly amount: string;
|
|
13111
13211
|
readonly identifier: string;
|
|
13112
13212
|
}
|
|
13113
13213
|
}
|
|
@@ -14297,6 +14397,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14297
14397
|
| 'shopify_markets_shop_deleted'
|
|
14298
14398
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
14299
14399
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
14400
|
+
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
14401
|
+
| 'shopify_order_fulfillments_snapshot_deleted'
|
|
14300
14402
|
| 'stripe_authorization_deleted'
|
|
14301
14403
|
| 'stripe_authorization_upserted'
|
|
14302
14404
|
| 'stripe_reversal_deleted'
|
|
@@ -14687,7 +14789,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14687
14789
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14688
14790
|
type TariffEligibilityType = 'rex';
|
|
14689
14791
|
type TaskProcessorKey =
|
|
14690
|
-
| 'billing_account'
|
|
14691
14792
|
| 'order_messenger'
|
|
14692
14793
|
| 'harmonization'
|
|
14693
14794
|
| 'fraud_review'
|
|
@@ -24289,6 +24390,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24289
24390
|
readonly ratecard_id: string;
|
|
24290
24391
|
}
|
|
24291
24392
|
|
|
24393
|
+
interface RateLevelWithEffective {
|
|
24394
|
+
readonly id: string;
|
|
24395
|
+
readonly name: string;
|
|
24396
|
+
readonly effective_at: string;
|
|
24397
|
+
}
|
|
24398
|
+
|
|
24292
24399
|
interface RateNameSummary {
|
|
24293
24400
|
readonly name: string;
|
|
24294
24401
|
readonly long_name?: string;
|
|
@@ -25290,6 +25397,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25290
25397
|
readonly fulfillment_snapshots: io.flow.internal.v0.models.FulfillmentSnapshot[];
|
|
25291
25398
|
}
|
|
25292
25399
|
|
|
25400
|
+
interface ShopifyOrderFulfillmentsSnapshotDeleted {
|
|
25401
|
+
readonly discriminator: 'shopify_order_fulfillments_snapshot_deleted';
|
|
25402
|
+
readonly event_id: string;
|
|
25403
|
+
readonly timestamp: string;
|
|
25404
|
+
readonly id: string;
|
|
25405
|
+
}
|
|
25406
|
+
|
|
25407
|
+
interface ShopifyOrderFulfillmentsSnapshotUpserted {
|
|
25408
|
+
readonly discriminator: 'shopify_order_fulfillments_snapshot_upserted';
|
|
25409
|
+
readonly event_id: string;
|
|
25410
|
+
readonly timestamp: string;
|
|
25411
|
+
readonly shopify_order_fulfillments_snapshot: io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot;
|
|
25412
|
+
}
|
|
25413
|
+
|
|
25293
25414
|
interface ShopifyOrderInventoryCheck {
|
|
25294
25415
|
readonly item_number: string;
|
|
25295
25416
|
readonly quantity: number;
|
|
@@ -27240,6 +27361,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27240
27361
|
| io.flow.internal.v0.models.ShopifyMarketsShopDeleted
|
|
27241
27362
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
27242
27363
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
27364
|
+
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
27365
|
+
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted
|
|
27243
27366
|
| io.flow.internal.v0.models.StripeAuthorizationDeleted
|
|
27244
27367
|
| io.flow.internal.v0.models.StripeAuthorizationUpserted
|
|
27245
27368
|
| io.flow.internal.v0.models.StripeReversalDeleted
|
|
@@ -30498,6 +30621,8 @@ export type RateLevelOrganizationForm =
|
|
|
30498
30621
|
export type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
30499
30622
|
export type RateLevelRatecardForm =
|
|
30500
30623
|
io.flow.internal.v0.models.RateLevelRatecardForm;
|
|
30624
|
+
export type RateLevelWithEffective =
|
|
30625
|
+
io.flow.internal.v0.models.RateLevelWithEffective;
|
|
30501
30626
|
export type RateNameSummary = io.flow.internal.v0.models.RateNameSummary;
|
|
30502
30627
|
export type RateSource = io.flow.internal.v0.enums.RateSource;
|
|
30503
30628
|
export type RateSourceCompositionSummary =
|
|
@@ -30777,6 +30902,10 @@ export type ShopifyOrderDiscountContent =
|
|
|
30777
30902
|
io.flow.internal.v0.models.ShopifyOrderDiscountContent;
|
|
30778
30903
|
export type ShopifyOrderFulfillmentsSnapshot =
|
|
30779
30904
|
io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot;
|
|
30905
|
+
export type ShopifyOrderFulfillmentsSnapshotDeleted =
|
|
30906
|
+
io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted;
|
|
30907
|
+
export type ShopifyOrderFulfillmentsSnapshotUpserted =
|
|
30908
|
+
io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted;
|
|
30780
30909
|
export type ShopifyOrderInventoryCheck =
|
|
30781
30910
|
io.flow.internal.v0.models.ShopifyOrderInventoryCheck;
|
|
30782
30911
|
export type ShopifyOrderLineAttribute =
|
package/src/api.ts
CHANGED
|
@@ -2003,8 +2003,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
2003
2003
|
| 'email'
|
|
2004
2004
|
| 'name'
|
|
2005
2005
|
| 'phone'
|
|
2006
|
-
| '
|
|
2007
|
-
| '
|
|
2006
|
+
| 'postalAddress'
|
|
2007
|
+
| 'phoneticName';
|
|
2008
2008
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
2009
2009
|
type ApplePayMerchantCapability =
|
|
2010
2010
|
| 'supports3DS'
|
|
@@ -2030,7 +2030,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2030
2030
|
interface ApplePayLineItem {
|
|
2031
2031
|
readonly label: string;
|
|
2032
2032
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
2033
|
-
readonly amount:
|
|
2033
|
+
readonly amount: string;
|
|
2034
2034
|
}
|
|
2035
2035
|
|
|
2036
2036
|
interface ApplePayPaymentContact {
|
|
@@ -2081,7 +2081,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2081
2081
|
interface ApplePayShippingMethod {
|
|
2082
2082
|
readonly label: string;
|
|
2083
2083
|
readonly detail: string;
|
|
2084
|
-
readonly amount:
|
|
2084
|
+
readonly amount: string;
|
|
2085
2085
|
readonly identifier: string;
|
|
2086
2086
|
}
|
|
2087
2087
|
}
|