@flowio/types 11.24.48 → 11.24.50
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 +127 -39
- package/dist/api.d.ts +31 -2
- package/package.json +2 -2
- package/src/api-internal.ts +167 -52
- package/src/api.ts +45 -2
package/dist/api-internal.d.ts
CHANGED
|
@@ -2101,6 +2101,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2101
2101
|
readonly method: string;
|
|
2102
2102
|
}
|
|
2103
2103
|
interface TransactionDetailsCard {
|
|
2104
|
+
readonly type: 'card';
|
|
2104
2105
|
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
2105
2106
|
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
2106
2107
|
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
@@ -2188,6 +2189,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2188
2189
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
2189
2190
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
2190
2191
|
type ThreedsIdentifyAction = io.flow.payment.v0.models.ThreedsTwoMethod;
|
|
2192
|
+
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2191
2193
|
}
|
|
2192
2194
|
declare namespace io.flow.field.validation.v0.models {
|
|
2193
2195
|
interface FieldValidationMax {
|
|
@@ -3836,9 +3838,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3836
3838
|
type Contract = 'RECURRING';
|
|
3837
3839
|
type DeviceChannel = 'app' | 'browser';
|
|
3838
3840
|
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';
|
|
3839
|
-
type
|
|
3841
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
3840
3842
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3841
|
-
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';
|
|
3843
|
+
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';
|
|
3842
3844
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3843
3845
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3844
3846
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3857,6 +3859,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3857
3859
|
readonly value: number;
|
|
3858
3860
|
readonly currency: string;
|
|
3859
3861
|
}
|
|
3862
|
+
interface Applepay {
|
|
3863
|
+
readonly type: 'applepay';
|
|
3864
|
+
readonly applePayToken: string;
|
|
3865
|
+
}
|
|
3860
3866
|
interface Authentication {
|
|
3861
3867
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3862
3868
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3883,6 +3889,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3883
3889
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3884
3890
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3885
3891
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3892
|
+
readonly mcc?: string;
|
|
3893
|
+
readonly metadata?: any;
|
|
3886
3894
|
}
|
|
3887
3895
|
interface AuthorizeRequest3D {
|
|
3888
3896
|
readonly merchantAccount: string;
|
|
@@ -4016,6 +4024,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4016
4024
|
readonly details: any;
|
|
4017
4025
|
readonly paymentData?: string;
|
|
4018
4026
|
}
|
|
4027
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
4028
|
+
readonly 'threeds2.challengeResult': string;
|
|
4029
|
+
}
|
|
4030
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4031
|
+
readonly 'threeds2.fingerprint': string;
|
|
4032
|
+
}
|
|
4019
4033
|
interface PaymentRequest {
|
|
4020
4034
|
readonly reference: string;
|
|
4021
4035
|
readonly merchantAccount: string;
|
|
@@ -4037,7 +4051,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4037
4051
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4038
4052
|
readonly origin?: string;
|
|
4039
4053
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
4040
|
-
readonly
|
|
4054
|
+
readonly returnUrl?: string;
|
|
4055
|
+
readonly mcc?: string;
|
|
4056
|
+
readonly metadata?: any;
|
|
4057
|
+
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4058
|
+
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4059
|
+
readonly storePaymentMethod?: boolean;
|
|
4041
4060
|
}
|
|
4042
4061
|
interface PaymentResponse {
|
|
4043
4062
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -4052,19 +4071,57 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4052
4071
|
interface PaymentResponseAdditionalData {
|
|
4053
4072
|
readonly authCode?: string;
|
|
4054
4073
|
readonly avsResultRaw?: string;
|
|
4074
|
+
readonly avsResult?: string;
|
|
4055
4075
|
readonly cvcResultRaw?: string;
|
|
4076
|
+
readonly cvcResult?: string;
|
|
4077
|
+
readonly refusalReasonRaw?: string;
|
|
4056
4078
|
readonly liabilityShift?: string;
|
|
4057
4079
|
readonly threeDAuthenticated?: string;
|
|
4058
4080
|
readonly threeDAuthenticatedResponse?: string;
|
|
4059
4081
|
readonly threeDOffered?: string;
|
|
4060
4082
|
readonly threeDOfferedResponse?: string;
|
|
4083
|
+
readonly threeDSVersion?: string;
|
|
4084
|
+
readonly eci?: string;
|
|
4085
|
+
readonly scaExemptionRequested?: string;
|
|
4086
|
+
readonly paymentMethod?: string;
|
|
4087
|
+
readonly paymentMethodVariant?: string;
|
|
4088
|
+
readonly tokenTxVariant?: string;
|
|
4089
|
+
readonly acquirerCode?: string;
|
|
4090
|
+
readonly acquirerAccountCode?: string;
|
|
4091
|
+
readonly cardPaymentMethod?: string;
|
|
4092
|
+
readonly coBrandedWith?: string;
|
|
4093
|
+
readonly cardIssuingCountry?: string;
|
|
4094
|
+
readonly cardIssuingCurrency?: string;
|
|
4095
|
+
readonly cardIssuingBank?: string;
|
|
4096
|
+
readonly cardBin?: string;
|
|
4097
|
+
readonly issuerBin?: string;
|
|
4098
|
+
readonly cardSummary?: string;
|
|
4099
|
+
readonly untokenisedCardSummary?: string;
|
|
4100
|
+
readonly ownerName?: string;
|
|
4101
|
+
readonly bankName?: string;
|
|
4102
|
+
readonly issuerCountry?: string;
|
|
4103
|
+
readonly iban?: string;
|
|
4104
|
+
readonly bic?: string;
|
|
4105
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
4106
|
+
readonly iDealConsumerBIC?: string;
|
|
4107
|
+
readonly iDealConsumerCity?: string;
|
|
4108
|
+
readonly iDealConsumerIBAN?: string;
|
|
4109
|
+
readonly iDealConsumerName?: string;
|
|
4110
|
+
readonly iDealTransactionId?: string;
|
|
4111
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
4112
|
+
readonly 'recurring.shopperReference'?: string;
|
|
4113
|
+
readonly networkTxReference?: string;
|
|
4114
|
+
readonly PaymentAccountReference?: string;
|
|
4115
|
+
readonly 'networkToken.available'?: string;
|
|
4116
|
+
readonly 'networkToken.bin'?: string;
|
|
4117
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
4061
4118
|
}
|
|
4062
4119
|
interface Recurring {
|
|
4063
4120
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
4064
4121
|
}
|
|
4065
4122
|
interface Redirect {
|
|
4066
4123
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
4067
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
4124
|
+
readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4068
4125
|
readonly url?: string;
|
|
4069
4126
|
}
|
|
4070
4127
|
interface RedirectData {
|
|
@@ -4084,6 +4141,15 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4084
4141
|
readonly holderName: string;
|
|
4085
4142
|
readonly number: string;
|
|
4086
4143
|
readonly cvc?: string;
|
|
4144
|
+
readonly storedPaymentMethodId?: string;
|
|
4145
|
+
readonly networkPaymentReference?: string;
|
|
4146
|
+
}
|
|
4147
|
+
interface SdkV3OnCompleteData {
|
|
4148
|
+
readonly details: any;
|
|
4149
|
+
readonly payment_data?: string;
|
|
4150
|
+
}
|
|
4151
|
+
interface SdkV3OnCompleteResult {
|
|
4152
|
+
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4087
4153
|
}
|
|
4088
4154
|
interface ThreeDSecureData {
|
|
4089
4155
|
readonly authenticationResponse?: string;
|
|
@@ -4110,7 +4176,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4110
4176
|
}
|
|
4111
4177
|
declare namespace io.flow.adyen.v0.unions {
|
|
4112
4178
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
4113
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
4179
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme | io.flow.adyen.v0.models.Applepay;
|
|
4114
4180
|
}
|
|
4115
4181
|
declare namespace io.flow.order.management.v0.enums {
|
|
4116
4182
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -5253,7 +5319,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5253
5319
|
}
|
|
5254
5320
|
interface ShopifyOrderAttribute {
|
|
5255
5321
|
readonly name: string;
|
|
5256
|
-
readonly value:
|
|
5322
|
+
readonly value: string;
|
|
5257
5323
|
}
|
|
5258
5324
|
interface ShopifyOrderCancellationForm {
|
|
5259
5325
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
@@ -5466,7 +5532,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5466
5532
|
interface ShopifyOrderShippingLine {
|
|
5467
5533
|
readonly code?: string;
|
|
5468
5534
|
readonly price: string;
|
|
5469
|
-
readonly source
|
|
5535
|
+
readonly source: string;
|
|
5470
5536
|
readonly title: string;
|
|
5471
5537
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5472
5538
|
readonly carrier_identifier?: string;
|
|
@@ -6038,6 +6104,14 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6038
6104
|
}
|
|
6039
6105
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
6040
6106
|
readonly type: 'authorize_applepay';
|
|
6107
|
+
readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
6108
|
+
}
|
|
6109
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
6110
|
+
readonly type: 'failure';
|
|
6111
|
+
readonly placeholder?: string;
|
|
6112
|
+
}
|
|
6113
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
6114
|
+
readonly type: 'success';
|
|
6041
6115
|
readonly token: string;
|
|
6042
6116
|
}
|
|
6043
6117
|
interface PaymentMethodDataAuthorizeCard {
|
|
@@ -6276,6 +6350,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6276
6350
|
type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
|
|
6277
6351
|
type PaymentMethodCard = io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken;
|
|
6278
6352
|
type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
6353
|
+
type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
6279
6354
|
type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
6280
6355
|
type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
6281
6356
|
type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
@@ -10180,7 +10255,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10180
10255
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10181
10256
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10182
10257
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10183
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
10258
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'invalid_rate' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed';
|
|
10184
10259
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10185
10260
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10186
10261
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10286,7 +10361,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10286
10361
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10287
10362
|
type EmptyAttribute = 'irrelevant';
|
|
10288
10363
|
type ErpFileType = 'vendor';
|
|
10289
|
-
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' | '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' | '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_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | '
|
|
10364
|
+
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' | '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' | '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_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' | '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';
|
|
10290
10365
|
type ExperienceImportType = 'experience_with_settings';
|
|
10291
10366
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10292
10367
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16123,8 +16198,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16123
16198
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
16124
16199
|
readonly url: string;
|
|
16125
16200
|
}
|
|
16126
|
-
interface
|
|
16127
|
-
readonly
|
|
16201
|
+
interface Hs6 {
|
|
16202
|
+
readonly code: string;
|
|
16128
16203
|
readonly description: string;
|
|
16129
16204
|
}
|
|
16130
16205
|
interface Hs6Metadata {
|
|
@@ -16195,10 +16270,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16195
16270
|
readonly discriminator: 'internal_bitpay_authorization_details';
|
|
16196
16271
|
readonly bitpay_authentication_data: io.flow.internal.v0.models.BitpayAuthenticationDataReference;
|
|
16197
16272
|
}
|
|
16198
|
-
interface InternalCardAuthorizationDetails {
|
|
16199
|
-
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
16200
|
-
readonly internal?: io.flow.internal.v0.unions.InternalAuthorizationDetails;
|
|
16201
|
-
}
|
|
16202
16273
|
interface InternalChannelRate {
|
|
16203
16274
|
readonly id: string;
|
|
16204
16275
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
@@ -16256,14 +16327,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16256
16327
|
readonly discriminator: 'internal_paypal_authorization_details';
|
|
16257
16328
|
readonly paypal_authentication_data: io.flow.internal.v0.models.PaypalAccountReference;
|
|
16258
16329
|
}
|
|
16259
|
-
interface InternalRedirectAuthorizationDetails {
|
|
16260
|
-
readonly details: io.flow.payment.v0.models.RedirectAuthorizationDetails;
|
|
16261
|
-
readonly internal?: io.flow.internal.v0.unions.InternalAuthorizationDetails;
|
|
16262
|
-
}
|
|
16263
16330
|
interface InternalStripeAuthorizationDetails {
|
|
16264
16331
|
readonly discriminator: 'internal_stripe_authorization_details';
|
|
16265
16332
|
readonly stripe_authentication_data: io.flow.internal.v0.models.StripeAuthenticationDataReference;
|
|
16266
16333
|
}
|
|
16334
|
+
interface InternalTransactionDetailsCard {
|
|
16335
|
+
readonly type: 'card';
|
|
16336
|
+
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
16337
|
+
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
16338
|
+
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
16339
|
+
}
|
|
16267
16340
|
interface InvalidCheckoutData {
|
|
16268
16341
|
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
16269
16342
|
}
|
|
@@ -16628,6 +16701,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16628
16701
|
readonly commercial_invoice_only_query?: string;
|
|
16629
16702
|
}
|
|
16630
16703
|
interface LabelSummary {
|
|
16704
|
+
readonly id: string;
|
|
16631
16705
|
readonly commercial_invoice?: string;
|
|
16632
16706
|
readonly pdf?: string;
|
|
16633
16707
|
readonly png?: string;
|
|
@@ -17797,12 +17871,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17797
17871
|
readonly full_review_start_date?: string;
|
|
17798
17872
|
readonly full_review_end_date?: string;
|
|
17799
17873
|
}
|
|
17800
|
-
interface OrganizationRestrictionStatusDeleted {
|
|
17801
|
-
readonly discriminator: 'organization_restriction_status_deleted';
|
|
17802
|
-
readonly event_id: string;
|
|
17803
|
-
readonly timestamp: string;
|
|
17804
|
-
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
17805
|
-
}
|
|
17806
17874
|
interface OrganizationRestrictionStatusNote {
|
|
17807
17875
|
readonly id: string;
|
|
17808
17876
|
readonly note: string;
|
|
@@ -17811,12 +17879,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17811
17879
|
readonly updated_by: io.flow.common.v0.models.User;
|
|
17812
17880
|
readonly updated_at: string;
|
|
17813
17881
|
}
|
|
17814
|
-
interface OrganizationRestrictionStatusUpserted {
|
|
17815
|
-
readonly discriminator: 'organization_restriction_status_upserted';
|
|
17816
|
-
readonly event_id: string;
|
|
17817
|
-
readonly timestamp: string;
|
|
17818
|
-
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
17819
|
-
}
|
|
17820
17882
|
interface OrganizationSettings {
|
|
17821
17883
|
readonly default_currency_format_symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
17822
17884
|
readonly default_currency_label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
@@ -18800,6 +18862,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18800
18862
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
18801
18863
|
readonly count: number;
|
|
18802
18864
|
}
|
|
18865
|
+
interface RestrictionOrganizationStatus {
|
|
18866
|
+
readonly id: string;
|
|
18867
|
+
readonly organization_id: string;
|
|
18868
|
+
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
18869
|
+
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
18870
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
18871
|
+
readonly selective_review_start_date?: string;
|
|
18872
|
+
readonly selective_review_end_date?: string;
|
|
18873
|
+
readonly full_review_start_date?: string;
|
|
18874
|
+
readonly full_review_end_date?: string;
|
|
18875
|
+
readonly reason?: string;
|
|
18876
|
+
}
|
|
18877
|
+
interface RestrictionOrganizationStatusDeleted {
|
|
18878
|
+
readonly discriminator: 'restriction_organization_status_deleted';
|
|
18879
|
+
readonly event_id: string;
|
|
18880
|
+
readonly timestamp: string;
|
|
18881
|
+
readonly restriction_organization_status: io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
18882
|
+
}
|
|
18883
|
+
interface RestrictionOrganizationStatusUpserted {
|
|
18884
|
+
readonly discriminator: 'restriction_organization_status_upserted';
|
|
18885
|
+
readonly event_id: string;
|
|
18886
|
+
readonly timestamp: string;
|
|
18887
|
+
readonly restriction_organization_status: io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
18888
|
+
}
|
|
18803
18889
|
interface RestrictionPending {
|
|
18804
18890
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
18805
18891
|
readonly count: number;
|
|
@@ -20083,8 +20169,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20083
20169
|
}
|
|
20084
20170
|
interface TransactionAdjustment {
|
|
20085
20171
|
readonly id: string;
|
|
20086
|
-
readonly original_transaction: io.flow.internal.v0.models.
|
|
20087
|
-
readonly adjustment_transaction
|
|
20172
|
+
readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
20173
|
+
readonly adjustment_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
20088
20174
|
readonly description: string;
|
|
20089
20175
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
20090
20176
|
}
|
|
@@ -20449,7 +20535,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20449
20535
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20450
20536
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20451
20537
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20452
|
-
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.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.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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.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;
|
|
20538
|
+
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.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.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.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.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;
|
|
20453
20539
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20454
20540
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20455
20541
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20467,6 +20553,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20467
20553
|
type InternalAuthorizationDetails = io.flow.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
20468
20554
|
type InternalHarmonizationStatistic = io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary;
|
|
20469
20555
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
20556
|
+
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
20470
20557
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
20471
20558
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
20472
20559
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -21728,7 +21815,7 @@ export declare type HeapWebsocketRequest = io.flow.internal.v0.models.HeapWebsoc
|
|
|
21728
21815
|
export declare type HeapWebsocketResponse = io.flow.internal.v0.models.HeapWebsocketResponse;
|
|
21729
21816
|
export declare type HeapWebsocketRetry = io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
21730
21817
|
export declare type Href = io.flow.internal.v0.models.Href;
|
|
21731
|
-
export declare type
|
|
21818
|
+
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
21732
21819
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
21733
21820
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
21734
21821
|
export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
@@ -21747,7 +21834,6 @@ export declare type InternalAuthorizationDetails = io.flow.internal.v0.unions.In
|
|
|
21747
21834
|
export declare type InternalAuthorizationUpserted = io.flow.internal.v0.models.InternalAuthorizationUpserted;
|
|
21748
21835
|
export declare type InternalAvailableDelivery = io.flow.internal.v0.models.InternalAvailableDelivery;
|
|
21749
21836
|
export declare type InternalBitpayAuthorizationDetails = io.flow.internal.v0.models.InternalBitpayAuthorizationDetails;
|
|
21750
|
-
export declare type InternalCardAuthorizationDetails = io.flow.internal.v0.models.InternalCardAuthorizationDetails;
|
|
21751
21837
|
export declare type InternalChannelRate = io.flow.internal.v0.models.InternalChannelRate;
|
|
21752
21838
|
export declare type InternalChannelRateDeleted = io.flow.internal.v0.models.InternalChannelRateDeleted;
|
|
21753
21839
|
export declare type InternalChannelRateUpserted = io.flow.internal.v0.models.InternalChannelRateUpserted;
|
|
@@ -21759,9 +21845,10 @@ export declare type InternalItemForm = io.flow.internal.v0.models.InternalItemFo
|
|
|
21759
21845
|
export declare type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
21760
21846
|
export declare type InternalPaymentRequest = io.flow.internal.v0.models.InternalPaymentRequest;
|
|
21761
21847
|
export declare type InternalPaypalAuthorizationDetails = io.flow.internal.v0.models.InternalPaypalAuthorizationDetails;
|
|
21762
|
-
export declare type InternalRedirectAuthorizationDetails = io.flow.internal.v0.models.InternalRedirectAuthorizationDetails;
|
|
21763
21848
|
export declare type InternalRefundForm = io.flow.internal.v0.unions.InternalRefundForm;
|
|
21764
21849
|
export declare type InternalStripeAuthorizationDetails = io.flow.internal.v0.models.InternalStripeAuthorizationDetails;
|
|
21850
|
+
export declare type InternalTransactionDetails = io.flow.internal.v0.unions.InternalTransactionDetails;
|
|
21851
|
+
export declare type InternalTransactionDetailsCard = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
21765
21852
|
export declare type InvalidCheckoutData = io.flow.internal.v0.models.InvalidCheckoutData;
|
|
21766
21853
|
export declare type InventoryCheckService = io.flow.internal.v0.enums.InventoryCheckService;
|
|
21767
21854
|
export declare type InventoryOrganizationSettings = io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
@@ -22049,9 +22136,7 @@ export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models
|
|
|
22049
22136
|
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
22050
22137
|
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
22051
22138
|
export declare type OrganizationRestrictionStatus = io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
22052
|
-
export declare type OrganizationRestrictionStatusDeleted = io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
22053
22139
|
export declare type OrganizationRestrictionStatusNote = io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
22054
|
-
export declare type OrganizationRestrictionStatusUpserted = io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
22055
22140
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
22056
22141
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
22057
22142
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
@@ -22233,6 +22318,9 @@ export declare type RestrictionKeywordMetadata = io.flow.internal.v0.models.Rest
|
|
|
22233
22318
|
export declare type RestrictionKeywords = io.flow.internal.v0.models.RestrictionKeywords;
|
|
22234
22319
|
export declare type RestrictionOrganization = io.flow.internal.v0.models.RestrictionOrganization;
|
|
22235
22320
|
export declare type RestrictionOrganizationDecisionSummary = io.flow.internal.v0.models.RestrictionOrganizationDecisionSummary;
|
|
22321
|
+
export declare type RestrictionOrganizationStatus = io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
22322
|
+
export declare type RestrictionOrganizationStatusDeleted = io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted;
|
|
22323
|
+
export declare type RestrictionOrganizationStatusUpserted = io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted;
|
|
22236
22324
|
export declare type RestrictionPending = io.flow.internal.v0.models.RestrictionPending;
|
|
22237
22325
|
export declare type RestrictionProduct = io.flow.internal.v0.models.RestrictionProduct;
|
|
22238
22326
|
export declare type RestrictionProductDecisionForm = io.flow.internal.v0.models.RestrictionProductDecisionForm;
|
package/dist/api.d.ts
CHANGED
|
@@ -6753,12 +6753,14 @@ declare namespace io.flow.v0.models {
|
|
|
6753
6753
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
6754
6754
|
readonly event_id: string;
|
|
6755
6755
|
readonly timestamp: string;
|
|
6756
|
+
readonly organization: string;
|
|
6756
6757
|
readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
|
|
6757
6758
|
}
|
|
6758
6759
|
interface OrganizationOnboardingStateUpserted {
|
|
6759
6760
|
readonly discriminator: 'organization_onboarding_state_upserted';
|
|
6760
6761
|
readonly event_id: string;
|
|
6761
6762
|
readonly timestamp: string;
|
|
6763
|
+
readonly organization: string;
|
|
6762
6764
|
readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
|
|
6763
6765
|
}
|
|
6764
6766
|
interface OrganizationPutForm {
|
|
@@ -7101,6 +7103,14 @@ declare namespace io.flow.v0.models {
|
|
|
7101
7103
|
}
|
|
7102
7104
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
7103
7105
|
readonly type: 'authorize_applepay';
|
|
7106
|
+
readonly result: io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
7107
|
+
}
|
|
7108
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
7109
|
+
readonly type: 'failure';
|
|
7110
|
+
readonly placeholder?: string;
|
|
7111
|
+
}
|
|
7112
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
7113
|
+
readonly type: 'success';
|
|
7104
7114
|
readonly token: string;
|
|
7105
7115
|
}
|
|
7106
7116
|
interface PaymentMethodDataAuthorizeCard {
|
|
@@ -7108,8 +7118,7 @@ declare namespace io.flow.v0.models {
|
|
|
7108
7118
|
readonly card_data: io.flow.v0.unions.PaymentMethodCard;
|
|
7109
7119
|
readonly device_fingerprint_details: io.flow.v0.unions.DeviceFingerprintDetails;
|
|
7110
7120
|
readonly cvv?: string;
|
|
7111
|
-
readonly
|
|
7112
|
-
readonly previous_transaction_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
7121
|
+
readonly stored_details_card?: io.flow.v0.unions.PaymentMethodStoredDetailsCard;
|
|
7113
7122
|
}
|
|
7114
7123
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
7115
7124
|
readonly type: 'authorize_googlepay';
|
|
@@ -7213,6 +7222,15 @@ declare namespace io.flow.v0.models {
|
|
|
7213
7222
|
readonly key: io.flow.v0.enums.PaymentMethodRuleContentKey;
|
|
7214
7223
|
readonly value: string;
|
|
7215
7224
|
}
|
|
7225
|
+
interface PaymentMethodStoredDetailsCardInitial {
|
|
7226
|
+
readonly type: 'initial';
|
|
7227
|
+
readonly reference?: string;
|
|
7228
|
+
}
|
|
7229
|
+
interface PaymentMethodStoredDetailsCardSubsequent {
|
|
7230
|
+
readonly type: 'subsequent';
|
|
7231
|
+
readonly reference?: string;
|
|
7232
|
+
readonly previous_transaction_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
7233
|
+
}
|
|
7216
7234
|
interface PaymentMethodSummaryAfterpay {
|
|
7217
7235
|
readonly type: 'afterpay';
|
|
7218
7236
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
@@ -9860,6 +9878,7 @@ declare namespace io.flow.v0.models {
|
|
|
9860
9878
|
readonly created_at: string;
|
|
9861
9879
|
}
|
|
9862
9880
|
interface TransactionDetailsCard {
|
|
9881
|
+
readonly type: 'card';
|
|
9863
9882
|
readonly address_verification_result?: io.flow.v0.models.AddressVerificationResult;
|
|
9864
9883
|
readonly cvv_result?: io.flow.v0.models.CvvResult;
|
|
9865
9884
|
readonly network_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
@@ -10144,8 +10163,10 @@ declare namespace io.flow.v0.unions {
|
|
|
10144
10163
|
type PaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
10145
10164
|
type PaymentMethodCard = io.flow.v0.models.PaymentMethodCardPciDetails | io.flow.v0.models.PaymentMethodCardToken;
|
|
10146
10165
|
type PaymentMethodData = io.flow.v0.models.PaymentMethodDataInitKlarna | io.flow.v0.models.PaymentMethodDataInitAfterpay | io.flow.v0.models.PaymentMethodDataInitApplepay | io.flow.v0.models.PaymentMethodDataInitGooglepay | io.flow.v0.models.PaymentMethodDataInitPaypal | io.flow.v0.models.PaymentMethodDataInitIdeal | io.flow.v0.models.PaymentMethodDataInitSofort | io.flow.v0.models.PaymentMethodDataInitBancontact | io.flow.v0.models.PaymentMethodDataValidateApplepay | io.flow.v0.models.PaymentMethodDataAuthorizeCard | io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
10166
|
+
type PaymentMethodDataAuthorizeApplepayResult = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
10147
10167
|
type PaymentMethodDataAuthorizeKlarnaResult = io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
10148
10168
|
type PaymentMethodDataOptionLogo = io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
10169
|
+
type PaymentMethodStoredDetailsCard = io.flow.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
10149
10170
|
type PaymentMethodSummary = io.flow.v0.models.PaymentMethodSummaryCard | io.flow.v0.models.PaymentMethodSummaryKlarna | io.flow.v0.models.PaymentMethodSummaryAfterpay | io.flow.v0.models.PaymentMethodSummaryApplepay | io.flow.v0.models.PaymentMethodSummaryGooglepay | io.flow.v0.models.PaymentMethodSummaryPaypal | io.flow.v0.models.PaymentMethodSummaryIdeal | io.flow.v0.models.PaymentMethodSummarySofort | io.flow.v0.models.PaymentMethodSummaryBancontact;
|
|
10150
10171
|
type PaymentMethodTag = {
|
|
10151
10172
|
discriminator: 'organization_payment_method_tag';
|
|
@@ -10185,6 +10206,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10185
10206
|
type TierRuleOutcomeForm = io.flow.v0.models.AmountMarginForm | io.flow.v0.models.FlatRateForm | io.flow.v0.models.AtCost | io.flow.v0.models.PercentMargin;
|
|
10186
10207
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
10187
10208
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
10209
|
+
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
10188
10210
|
}
|
|
10189
10211
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
10190
10212
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -11240,6 +11262,9 @@ export declare type PaymentMethodCardPciDetails = io.flow.v0.models.PaymentMetho
|
|
|
11240
11262
|
export declare type PaymentMethodCardToken = io.flow.v0.models.PaymentMethodCardToken;
|
|
11241
11263
|
export declare type PaymentMethodData = io.flow.v0.unions.PaymentMethodData;
|
|
11242
11264
|
export declare type PaymentMethodDataAuthorizeApplepay = io.flow.v0.models.PaymentMethodDataAuthorizeApplepay;
|
|
11265
|
+
export declare type PaymentMethodDataAuthorizeApplepayResult = io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
11266
|
+
export declare type PaymentMethodDataAuthorizeApplepayResultFailure = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
11267
|
+
export declare type PaymentMethodDataAuthorizeApplepayResultSuccess = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess;
|
|
11243
11268
|
export declare type PaymentMethodDataAuthorizeCard = io.flow.v0.models.PaymentMethodDataAuthorizeCard;
|
|
11244
11269
|
export declare type PaymentMethodDataAuthorizeGooglepay = io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay;
|
|
11245
11270
|
export declare type PaymentMethodDataAuthorizeKlarna = io.flow.v0.models.PaymentMethodDataAuthorizeKlarna;
|
|
@@ -11268,6 +11293,9 @@ export declare type PaymentMethodIssuer = io.flow.v0.models.PaymentMethodIssuer;
|
|
|
11268
11293
|
export declare type PaymentMethodRule = io.flow.v0.models.PaymentMethodRule;
|
|
11269
11294
|
export declare type PaymentMethodRuleContent = io.flow.v0.models.PaymentMethodRuleContent;
|
|
11270
11295
|
export declare type PaymentMethodRuleContentKey = io.flow.v0.enums.PaymentMethodRuleContentKey;
|
|
11296
|
+
export declare type PaymentMethodStoredDetailsCard = io.flow.v0.unions.PaymentMethodStoredDetailsCard;
|
|
11297
|
+
export declare type PaymentMethodStoredDetailsCardInitial = io.flow.v0.models.PaymentMethodStoredDetailsCardInitial;
|
|
11298
|
+
export declare type PaymentMethodStoredDetailsCardSubsequent = io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
11271
11299
|
export declare type PaymentMethodSummary = io.flow.v0.unions.PaymentMethodSummary;
|
|
11272
11300
|
export declare type PaymentMethodSummaryAfterpay = io.flow.v0.models.PaymentMethodSummaryAfterpay;
|
|
11273
11301
|
export declare type PaymentMethodSummaryApplepay = io.flow.v0.models.PaymentMethodSummaryApplepay;
|
|
@@ -11774,6 +11802,7 @@ export declare type TradeAgreementDuty = io.flow.v0.models.TradeAgreementDuty;
|
|
|
11774
11802
|
export declare type TradeAgreementName = io.flow.v0.enums.TradeAgreementName;
|
|
11775
11803
|
export declare type TradeAgreementStatus = io.flow.v0.enums.TradeAgreementStatus;
|
|
11776
11804
|
export declare type Transaction = io.flow.v0.models.Transaction;
|
|
11805
|
+
export declare type TransactionDetails = io.flow.v0.unions.TransactionDetails;
|
|
11777
11806
|
export declare type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
11778
11807
|
export declare type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
11779
11808
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.50",
|
|
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": "67c63b1d0d73f3943c90b2a53df3408e2c92ab71"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -2720,6 +2720,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2720
2720
|
}
|
|
2721
2721
|
|
|
2722
2722
|
interface TransactionDetailsCard {
|
|
2723
|
+
readonly type: 'card';
|
|
2723
2724
|
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
2724
2725
|
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
2725
2726
|
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
@@ -2860,6 +2861,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2860
2861
|
type ThreedsChallengeAction =
|
|
2861
2862
|
io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
2862
2863
|
type ThreedsIdentifyAction = io.flow.payment.v0.models.ThreedsTwoMethod;
|
|
2864
|
+
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2863
2865
|
}
|
|
2864
2866
|
|
|
2865
2867
|
declare namespace io.flow.field.validation.v0.models {
|
|
@@ -5246,15 +5248,18 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5246
5248
|
| 'SECOND_CHARGEBACK'
|
|
5247
5249
|
| 'PREARBITRATION_WON'
|
|
5248
5250
|
| 'PREARBITRATION_LOST';
|
|
5249
|
-
type
|
|
5251
|
+
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5250
5252
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5251
5253
|
type PaymentMethod =
|
|
5252
5254
|
| 'ach'
|
|
5253
5255
|
| 'alipay'
|
|
5256
|
+
| 'alipay_hk'
|
|
5254
5257
|
| 'alipay_wap'
|
|
5255
5258
|
| 'amex'
|
|
5256
5259
|
| 'bankTransfer_IBAN'
|
|
5257
5260
|
| 'bcmc'
|
|
5261
|
+
| 'bcmc_mobile'
|
|
5262
|
+
| 'blik'
|
|
5258
5263
|
| 'cartebancaire'
|
|
5259
5264
|
| 'cup'
|
|
5260
5265
|
| 'diners'
|
|
@@ -5265,21 +5270,27 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5265
5270
|
| 'dragonpay_gcash'
|
|
5266
5271
|
| 'dragonpay_otc_banking'
|
|
5267
5272
|
| 'ebanking_FI'
|
|
5273
|
+
| 'gcash'
|
|
5268
5274
|
| 'giropay'
|
|
5269
5275
|
| 'ideal'
|
|
5270
5276
|
| 'interac'
|
|
5271
5277
|
| 'jcb'
|
|
5278
|
+
| 'kakaopay'
|
|
5272
5279
|
| 'kcp_banktransfer'
|
|
5273
5280
|
| 'kcp_creditcard'
|
|
5274
5281
|
| 'kcp_payco'
|
|
5275
5282
|
| 'maestro'
|
|
5283
|
+
| 'mbway'
|
|
5276
5284
|
| 'mc'
|
|
5285
|
+
| 'mobilepay'
|
|
5277
5286
|
| 'molpay_points'
|
|
5278
5287
|
| 'multibanco'
|
|
5288
|
+
| 'onlineBanking_PL'
|
|
5279
5289
|
| 'qiwiwallet'
|
|
5280
5290
|
| 'sepadirectdebit'
|
|
5281
5291
|
| 'trustly'
|
|
5282
5292
|
| 'trustpay'
|
|
5293
|
+
| 'twint'
|
|
5283
5294
|
| 'unionpay'
|
|
5284
5295
|
| 'visa'
|
|
5285
5296
|
| 'wechatpay'
|
|
@@ -5317,6 +5328,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5317
5328
|
readonly currency: string;
|
|
5318
5329
|
}
|
|
5319
5330
|
|
|
5331
|
+
interface Applepay {
|
|
5332
|
+
readonly type: 'applepay';
|
|
5333
|
+
readonly applePayToken: string;
|
|
5334
|
+
}
|
|
5335
|
+
|
|
5320
5336
|
interface Authentication {
|
|
5321
5337
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
5322
5338
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -5344,6 +5360,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5344
5360
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5345
5361
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
5346
5362
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
5363
|
+
readonly mcc?: string;
|
|
5364
|
+
readonly metadata?: any /*object*/;
|
|
5347
5365
|
}
|
|
5348
5366
|
|
|
5349
5367
|
interface AuthorizeRequest3D {
|
|
@@ -5500,6 +5518,14 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5500
5518
|
readonly paymentData?: string;
|
|
5501
5519
|
}
|
|
5502
5520
|
|
|
5521
|
+
interface PaymentDetailsV663Ds2Challenge {
|
|
5522
|
+
readonly 'threeds2.challengeResult': string;
|
|
5523
|
+
}
|
|
5524
|
+
|
|
5525
|
+
interface PaymentDetailsV663Ds2Fingerprint {
|
|
5526
|
+
readonly 'threeds2.fingerprint': string;
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5503
5529
|
interface PaymentRequest {
|
|
5504
5530
|
readonly reference: string;
|
|
5505
5531
|
readonly merchantAccount: string;
|
|
@@ -5521,7 +5547,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5521
5547
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
5522
5548
|
readonly origin?: string;
|
|
5523
5549
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
5524
|
-
readonly
|
|
5550
|
+
readonly returnUrl?: string;
|
|
5551
|
+
readonly mcc?: string;
|
|
5552
|
+
readonly metadata?: any /*object*/;
|
|
5553
|
+
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5554
|
+
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5555
|
+
readonly storePaymentMethod?: boolean;
|
|
5525
5556
|
}
|
|
5526
5557
|
|
|
5527
5558
|
interface PaymentResponse {
|
|
@@ -5538,12 +5569,50 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5538
5569
|
interface PaymentResponseAdditionalData {
|
|
5539
5570
|
readonly authCode?: string;
|
|
5540
5571
|
readonly avsResultRaw?: string;
|
|
5572
|
+
readonly avsResult?: string;
|
|
5541
5573
|
readonly cvcResultRaw?: string;
|
|
5574
|
+
readonly cvcResult?: string;
|
|
5575
|
+
readonly refusalReasonRaw?: string;
|
|
5542
5576
|
readonly liabilityShift?: string;
|
|
5543
5577
|
readonly threeDAuthenticated?: string;
|
|
5544
5578
|
readonly threeDAuthenticatedResponse?: string;
|
|
5545
5579
|
readonly threeDOffered?: string;
|
|
5546
5580
|
readonly threeDOfferedResponse?: string;
|
|
5581
|
+
readonly threeDSVersion?: string;
|
|
5582
|
+
readonly eci?: string;
|
|
5583
|
+
readonly scaExemptionRequested?: string;
|
|
5584
|
+
readonly paymentMethod?: string;
|
|
5585
|
+
readonly paymentMethodVariant?: string;
|
|
5586
|
+
readonly tokenTxVariant?: string;
|
|
5587
|
+
readonly acquirerCode?: string;
|
|
5588
|
+
readonly acquirerAccountCode?: string;
|
|
5589
|
+
readonly cardPaymentMethod?: string;
|
|
5590
|
+
readonly coBrandedWith?: string;
|
|
5591
|
+
readonly cardIssuingCountry?: string;
|
|
5592
|
+
readonly cardIssuingCurrency?: string;
|
|
5593
|
+
readonly cardIssuingBank?: string;
|
|
5594
|
+
readonly cardBin?: string;
|
|
5595
|
+
readonly issuerBin?: string;
|
|
5596
|
+
readonly cardSummary?: string;
|
|
5597
|
+
readonly untokenisedCardSummary?: string;
|
|
5598
|
+
readonly ownerName?: string;
|
|
5599
|
+
readonly bankName?: string;
|
|
5600
|
+
readonly issuerCountry?: string;
|
|
5601
|
+
readonly iban?: string;
|
|
5602
|
+
readonly bic?: string;
|
|
5603
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
5604
|
+
readonly iDealConsumerBIC?: string;
|
|
5605
|
+
readonly iDealConsumerCity?: string;
|
|
5606
|
+
readonly iDealConsumerIBAN?: string;
|
|
5607
|
+
readonly iDealConsumerName?: string;
|
|
5608
|
+
readonly iDealTransactionId?: string;
|
|
5609
|
+
readonly 'recurring.recurringDetailReference'?: string;
|
|
5610
|
+
readonly 'recurring.shopperReference'?: string;
|
|
5611
|
+
readonly networkTxReference?: string;
|
|
5612
|
+
readonly PaymentAccountReference?: string;
|
|
5613
|
+
readonly 'networkToken.available'?: string;
|
|
5614
|
+
readonly 'networkToken.bin'?: string;
|
|
5615
|
+
readonly 'networkToken.tokenSummary'?: string;
|
|
5547
5616
|
}
|
|
5548
5617
|
|
|
5549
5618
|
interface Recurring {
|
|
@@ -5552,7 +5621,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5552
5621
|
|
|
5553
5622
|
interface Redirect {
|
|
5554
5623
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
5555
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
5624
|
+
readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
5556
5625
|
readonly url?: string;
|
|
5557
5626
|
}
|
|
5558
5627
|
|
|
@@ -5575,6 +5644,17 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5575
5644
|
readonly holderName: string;
|
|
5576
5645
|
readonly number: string;
|
|
5577
5646
|
readonly cvc?: string;
|
|
5647
|
+
readonly storedPaymentMethodId?: string;
|
|
5648
|
+
readonly networkPaymentReference?: string;
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5651
|
+
interface SdkV3OnCompleteData {
|
|
5652
|
+
readonly details: any /*object*/;
|
|
5653
|
+
readonly payment_data?: string;
|
|
5654
|
+
}
|
|
5655
|
+
|
|
5656
|
+
interface SdkV3OnCompleteResult {
|
|
5657
|
+
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
5578
5658
|
}
|
|
5579
5659
|
|
|
5580
5660
|
interface ThreeDSecureData {
|
|
@@ -5608,7 +5688,9 @@ declare namespace io.flow.adyen.v0.unions {
|
|
|
5608
5688
|
type BrowserInfo =
|
|
5609
5689
|
| io.flow.adyen.v0.models.BrowserInfo3Ds1
|
|
5610
5690
|
| io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
5611
|
-
type PaymentMethodData =
|
|
5691
|
+
type PaymentMethodData =
|
|
5692
|
+
| io.flow.adyen.v0.models.Scheme
|
|
5693
|
+
| io.flow.adyen.v0.models.Applepay;
|
|
5612
5694
|
}
|
|
5613
5695
|
|
|
5614
5696
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -7127,7 +7209,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7127
7209
|
|
|
7128
7210
|
interface ShopifyOrderAttribute {
|
|
7129
7211
|
readonly name: string;
|
|
7130
|
-
readonly value:
|
|
7212
|
+
readonly value: string;
|
|
7131
7213
|
}
|
|
7132
7214
|
|
|
7133
7215
|
interface ShopifyOrderCancellationForm {
|
|
@@ -7365,7 +7447,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7365
7447
|
interface ShopifyOrderShippingLine {
|
|
7366
7448
|
readonly code?: string;
|
|
7367
7449
|
readonly price: string;
|
|
7368
|
-
readonly source
|
|
7450
|
+
readonly source: string;
|
|
7369
7451
|
readonly title: string;
|
|
7370
7452
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
7371
7453
|
readonly carrier_identifier?: string;
|
|
@@ -8088,6 +8170,16 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
8088
8170
|
|
|
8089
8171
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
8090
8172
|
readonly type: 'authorize_applepay';
|
|
8173
|
+
readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
8174
|
+
}
|
|
8175
|
+
|
|
8176
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
8177
|
+
readonly type: 'failure';
|
|
8178
|
+
readonly placeholder?: string;
|
|
8179
|
+
}
|
|
8180
|
+
|
|
8181
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
8182
|
+
readonly type: 'success';
|
|
8091
8183
|
readonly token: string;
|
|
8092
8184
|
}
|
|
8093
8185
|
|
|
@@ -8408,6 +8500,9 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
8408
8500
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna
|
|
8409
8501
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption
|
|
8410
8502
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
8503
|
+
type PaymentMethodDataAuthorizeApplepayResult =
|
|
8504
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess
|
|
8505
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
8411
8506
|
type PaymentMethodDataAuthorizeKlarnaResult =
|
|
8412
8507
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess
|
|
8413
8508
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
@@ -13419,7 +13514,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13419
13514
|
| 'order_contains_gift_card'
|
|
13420
13515
|
| 'order_contains_restricted_goods'
|
|
13421
13516
|
| 'missing_order_information'
|
|
13422
|
-
| 'unsupported_payment_information'
|
|
13517
|
+
| 'unsupported_payment_information'
|
|
13518
|
+
| 'unsupported_shop_currency'
|
|
13519
|
+
| 'invalid_rate'
|
|
13520
|
+
| 'extracting_distribution_info_failed'
|
|
13521
|
+
| 'shipping_estimation_failed'
|
|
13522
|
+
| 'payment_authorization_failed';
|
|
13423
13523
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13424
13524
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13425
13525
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -13950,10 +14050,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13950
14050
|
| 'items_shipped'
|
|
13951
14051
|
| 'organization_restriction_approval_upserted'
|
|
13952
14052
|
| 'organization_restriction_approval_deleted'
|
|
13953
|
-
| 'organization_restriction_snapshot_upserted'
|
|
13954
|
-
| 'organization_restriction_snapshot_deleted'
|
|
13955
|
-
| 'organization_restriction_status_upserted'
|
|
13956
|
-
| 'organization_restriction_status_deleted'
|
|
13957
14053
|
| 'internal_authorization_upserted'
|
|
13958
14054
|
| 'internal_authorization_deleted'
|
|
13959
14055
|
| 'afterpay_authorization_upserted'
|
|
@@ -13993,6 +14089,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13993
14089
|
| 'ratecard_service_fee_deleted'
|
|
13994
14090
|
| 'ratecard_lane_aggregate_upserted'
|
|
13995
14091
|
| 'ratecard_lane_aggregate_deleted'
|
|
14092
|
+
| 'organization_restriction_snapshot_upserted'
|
|
14093
|
+
| 'organization_restriction_snapshot_deleted'
|
|
14094
|
+
| 'restriction_organization_status_upserted'
|
|
14095
|
+
| 'restriction_organization_status_deleted'
|
|
13996
14096
|
| 'shopify_shop_upserted'
|
|
13997
14097
|
| 'shopify_shop_deleted'
|
|
13998
14098
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -21099,8 +21199,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21099
21199
|
readonly url: string;
|
|
21100
21200
|
}
|
|
21101
21201
|
|
|
21102
|
-
interface
|
|
21103
|
-
readonly
|
|
21202
|
+
interface Hs6 {
|
|
21203
|
+
readonly code: string;
|
|
21104
21204
|
readonly description: string;
|
|
21105
21205
|
}
|
|
21106
21206
|
|
|
@@ -21185,11 +21285,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21185
21285
|
readonly bitpay_authentication_data: io.flow.internal.v0.models.BitpayAuthenticationDataReference;
|
|
21186
21286
|
}
|
|
21187
21287
|
|
|
21188
|
-
interface InternalCardAuthorizationDetails {
|
|
21189
|
-
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
21190
|
-
readonly internal?: io.flow.internal.v0.unions.InternalAuthorizationDetails;
|
|
21191
|
-
}
|
|
21192
|
-
|
|
21193
21288
|
interface InternalChannelRate {
|
|
21194
21289
|
readonly id: string;
|
|
21195
21290
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
@@ -21257,16 +21352,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21257
21352
|
readonly paypal_authentication_data: io.flow.internal.v0.models.PaypalAccountReference;
|
|
21258
21353
|
}
|
|
21259
21354
|
|
|
21260
|
-
interface InternalRedirectAuthorizationDetails {
|
|
21261
|
-
readonly details: io.flow.payment.v0.models.RedirectAuthorizationDetails;
|
|
21262
|
-
readonly internal?: io.flow.internal.v0.unions.InternalAuthorizationDetails;
|
|
21263
|
-
}
|
|
21264
|
-
|
|
21265
21355
|
interface InternalStripeAuthorizationDetails {
|
|
21266
21356
|
readonly discriminator: 'internal_stripe_authorization_details';
|
|
21267
21357
|
readonly stripe_authentication_data: io.flow.internal.v0.models.StripeAuthenticationDataReference;
|
|
21268
21358
|
}
|
|
21269
21359
|
|
|
21360
|
+
interface InternalTransactionDetailsCard {
|
|
21361
|
+
readonly type: 'card';
|
|
21362
|
+
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
21363
|
+
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
21364
|
+
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
21365
|
+
}
|
|
21366
|
+
|
|
21270
21367
|
interface InvalidCheckoutData {
|
|
21271
21368
|
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
21272
21369
|
}
|
|
@@ -21688,6 +21785,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21688
21785
|
}
|
|
21689
21786
|
|
|
21690
21787
|
interface LabelSummary {
|
|
21788
|
+
readonly id: string;
|
|
21691
21789
|
readonly commercial_invoice?: string;
|
|
21692
21790
|
readonly pdf?: string;
|
|
21693
21791
|
readonly png?: string;
|
|
@@ -23043,13 +23141,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23043
23141
|
readonly full_review_end_date?: string;
|
|
23044
23142
|
}
|
|
23045
23143
|
|
|
23046
|
-
interface OrganizationRestrictionStatusDeleted {
|
|
23047
|
-
readonly discriminator: 'organization_restriction_status_deleted';
|
|
23048
|
-
readonly event_id: string;
|
|
23049
|
-
readonly timestamp: string;
|
|
23050
|
-
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
23051
|
-
}
|
|
23052
|
-
|
|
23053
23144
|
interface OrganizationRestrictionStatusNote {
|
|
23054
23145
|
readonly id: string;
|
|
23055
23146
|
readonly note: string;
|
|
@@ -23059,13 +23150,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23059
23150
|
readonly updated_at: string;
|
|
23060
23151
|
}
|
|
23061
23152
|
|
|
23062
|
-
interface OrganizationRestrictionStatusUpserted {
|
|
23063
|
-
readonly discriminator: 'organization_restriction_status_upserted';
|
|
23064
|
-
readonly event_id: string;
|
|
23065
|
-
readonly timestamp: string;
|
|
23066
|
-
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
23067
|
-
}
|
|
23068
|
-
|
|
23069
23153
|
interface OrganizationSettings {
|
|
23070
23154
|
readonly default_currency_format_symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
23071
23155
|
readonly default_currency_label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
@@ -24194,6 +24278,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24194
24278
|
readonly count: number;
|
|
24195
24279
|
}
|
|
24196
24280
|
|
|
24281
|
+
interface RestrictionOrganizationStatus {
|
|
24282
|
+
readonly id: string;
|
|
24283
|
+
readonly organization_id: string;
|
|
24284
|
+
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24285
|
+
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
24286
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
24287
|
+
readonly selective_review_start_date?: string;
|
|
24288
|
+
readonly selective_review_end_date?: string;
|
|
24289
|
+
readonly full_review_start_date?: string;
|
|
24290
|
+
readonly full_review_end_date?: string;
|
|
24291
|
+
readonly reason?: string;
|
|
24292
|
+
}
|
|
24293
|
+
|
|
24294
|
+
interface RestrictionOrganizationStatusDeleted {
|
|
24295
|
+
readonly discriminator: 'restriction_organization_status_deleted';
|
|
24296
|
+
readonly event_id: string;
|
|
24297
|
+
readonly timestamp: string;
|
|
24298
|
+
readonly restriction_organization_status: io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
24299
|
+
}
|
|
24300
|
+
|
|
24301
|
+
interface RestrictionOrganizationStatusUpserted {
|
|
24302
|
+
readonly discriminator: 'restriction_organization_status_upserted';
|
|
24303
|
+
readonly event_id: string;
|
|
24304
|
+
readonly timestamp: string;
|
|
24305
|
+
readonly restriction_organization_status: io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
24306
|
+
}
|
|
24307
|
+
|
|
24197
24308
|
interface RestrictionPending {
|
|
24198
24309
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24199
24310
|
readonly count: number;
|
|
@@ -25690,8 +25801,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25690
25801
|
|
|
25691
25802
|
interface TransactionAdjustment {
|
|
25692
25803
|
readonly id: string;
|
|
25693
|
-
readonly original_transaction: io.flow.internal.v0.models.
|
|
25694
|
-
readonly adjustment_transaction
|
|
25804
|
+
readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
25805
|
+
readonly adjustment_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
25695
25806
|
readonly description: string;
|
|
25696
25807
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
25697
25808
|
}
|
|
@@ -26640,10 +26751,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26640
26751
|
| io.flow.internal.v0.models.ItemsShipped
|
|
26641
26752
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
26642
26753
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted
|
|
26643
|
-
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
26644
|
-
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
26645
|
-
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
26646
|
-
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
26647
26754
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
26648
26755
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
26649
26756
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -26683,6 +26790,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26683
26790
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
26684
26791
|
| io.flow.internal.v0.models.RatecardLaneAggregateUpserted
|
|
26685
26792
|
| io.flow.internal.v0.models.RatecardLaneAggregateDeleted
|
|
26793
|
+
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
26794
|
+
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
26795
|
+
| io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted
|
|
26796
|
+
| io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted
|
|
26686
26797
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
26687
26798
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
26688
26799
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -26822,6 +26933,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26822
26933
|
| io.flow.internal.v0.models.RateSourceSummary
|
|
26823
26934
|
| io.flow.internal.v0.models.RateFreshnessSummary;
|
|
26824
26935
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
26936
|
+
type InternalTransactionDetails =
|
|
26937
|
+
io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
26825
26938
|
type LocalizableContent =
|
|
26826
26939
|
| io.flow.internal.v0.models.LocalizableContentReference
|
|
26827
26940
|
| io.flow.internal.v0.models.Localization;
|
|
@@ -29129,7 +29242,7 @@ export type HeapWebsocketResponse =
|
|
|
29129
29242
|
io.flow.internal.v0.models.HeapWebsocketResponse;
|
|
29130
29243
|
export type HeapWebsocketRetry = io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
29131
29244
|
export type Href = io.flow.internal.v0.models.Href;
|
|
29132
|
-
export type
|
|
29245
|
+
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
29133
29246
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
29134
29247
|
export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
29135
29248
|
export type HybrisCatalogItemsImportRequest =
|
|
@@ -29160,8 +29273,6 @@ export type InternalAvailableDelivery =
|
|
|
29160
29273
|
io.flow.internal.v0.models.InternalAvailableDelivery;
|
|
29161
29274
|
export type InternalBitpayAuthorizationDetails =
|
|
29162
29275
|
io.flow.internal.v0.models.InternalBitpayAuthorizationDetails;
|
|
29163
|
-
export type InternalCardAuthorizationDetails =
|
|
29164
|
-
io.flow.internal.v0.models.InternalCardAuthorizationDetails;
|
|
29165
29276
|
export type InternalChannelRate =
|
|
29166
29277
|
io.flow.internal.v0.models.InternalChannelRate;
|
|
29167
29278
|
export type InternalChannelRateDeleted =
|
|
@@ -29182,11 +29293,13 @@ export type InternalPaymentRequest =
|
|
|
29182
29293
|
io.flow.internal.v0.models.InternalPaymentRequest;
|
|
29183
29294
|
export type InternalPaypalAuthorizationDetails =
|
|
29184
29295
|
io.flow.internal.v0.models.InternalPaypalAuthorizationDetails;
|
|
29185
|
-
export type InternalRedirectAuthorizationDetails =
|
|
29186
|
-
io.flow.internal.v0.models.InternalRedirectAuthorizationDetails;
|
|
29187
29296
|
export type InternalRefundForm = io.flow.internal.v0.unions.InternalRefundForm;
|
|
29188
29297
|
export type InternalStripeAuthorizationDetails =
|
|
29189
29298
|
io.flow.internal.v0.models.InternalStripeAuthorizationDetails;
|
|
29299
|
+
export type InternalTransactionDetails =
|
|
29300
|
+
io.flow.internal.v0.unions.InternalTransactionDetails;
|
|
29301
|
+
export type InternalTransactionDetailsCard =
|
|
29302
|
+
io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
29190
29303
|
export type InvalidCheckoutData =
|
|
29191
29304
|
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
29192
29305
|
export type InventoryCheckService =
|
|
@@ -29684,12 +29797,8 @@ export type OrganizationRestrictionSnapshotUpserted =
|
|
|
29684
29797
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
29685
29798
|
export type OrganizationRestrictionStatus =
|
|
29686
29799
|
io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
29687
|
-
export type OrganizationRestrictionStatusDeleted =
|
|
29688
|
-
io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
29689
29800
|
export type OrganizationRestrictionStatusNote =
|
|
29690
29801
|
io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
29691
|
-
export type OrganizationRestrictionStatusUpserted =
|
|
29692
|
-
io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
29693
29802
|
export type OrganizationSettings =
|
|
29694
29803
|
io.flow.internal.v0.models.OrganizationSettings;
|
|
29695
29804
|
export type OrganizationSettingsForm =
|
|
@@ -29990,6 +30099,12 @@ export type RestrictionOrganization =
|
|
|
29990
30099
|
io.flow.internal.v0.models.RestrictionOrganization;
|
|
29991
30100
|
export type RestrictionOrganizationDecisionSummary =
|
|
29992
30101
|
io.flow.internal.v0.models.RestrictionOrganizationDecisionSummary;
|
|
30102
|
+
export type RestrictionOrganizationStatus =
|
|
30103
|
+
io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
30104
|
+
export type RestrictionOrganizationStatusDeleted =
|
|
30105
|
+
io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted;
|
|
30106
|
+
export type RestrictionOrganizationStatusUpserted =
|
|
30107
|
+
io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted;
|
|
29993
30108
|
export type RestrictionPending = io.flow.internal.v0.models.RestrictionPending;
|
|
29994
30109
|
export type RestrictionProduct = io.flow.internal.v0.models.RestrictionProduct;
|
|
29995
30110
|
export type RestrictionProductDecisionForm =
|
package/src/api.ts
CHANGED
|
@@ -8783,6 +8783,7 @@ declare namespace io.flow.v0.models {
|
|
|
8783
8783
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
8784
8784
|
readonly event_id: string;
|
|
8785
8785
|
readonly timestamp: string;
|
|
8786
|
+
readonly organization: string;
|
|
8786
8787
|
readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
|
|
8787
8788
|
}
|
|
8788
8789
|
|
|
@@ -8790,6 +8791,7 @@ declare namespace io.flow.v0.models {
|
|
|
8790
8791
|
readonly discriminator: 'organization_onboarding_state_upserted';
|
|
8791
8792
|
readonly event_id: string;
|
|
8792
8793
|
readonly timestamp: string;
|
|
8794
|
+
readonly organization: string;
|
|
8793
8795
|
readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
|
|
8794
8796
|
}
|
|
8795
8797
|
|
|
@@ -9189,6 +9191,16 @@ declare namespace io.flow.v0.models {
|
|
|
9189
9191
|
|
|
9190
9192
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
9191
9193
|
readonly type: 'authorize_applepay';
|
|
9194
|
+
readonly result: io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
9195
|
+
}
|
|
9196
|
+
|
|
9197
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
9198
|
+
readonly type: 'failure';
|
|
9199
|
+
readonly placeholder?: string;
|
|
9200
|
+
}
|
|
9201
|
+
|
|
9202
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
9203
|
+
readonly type: 'success';
|
|
9192
9204
|
readonly token: string;
|
|
9193
9205
|
}
|
|
9194
9206
|
|
|
@@ -9197,8 +9209,7 @@ declare namespace io.flow.v0.models {
|
|
|
9197
9209
|
readonly card_data: io.flow.v0.unions.PaymentMethodCard;
|
|
9198
9210
|
readonly device_fingerprint_details: io.flow.v0.unions.DeviceFingerprintDetails;
|
|
9199
9211
|
readonly cvv?: string;
|
|
9200
|
-
readonly
|
|
9201
|
-
readonly previous_transaction_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
9212
|
+
readonly stored_details_card?: io.flow.v0.unions.PaymentMethodStoredDetailsCard;
|
|
9202
9213
|
}
|
|
9203
9214
|
|
|
9204
9215
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
@@ -9326,6 +9337,17 @@ declare namespace io.flow.v0.models {
|
|
|
9326
9337
|
readonly value: string;
|
|
9327
9338
|
}
|
|
9328
9339
|
|
|
9340
|
+
interface PaymentMethodStoredDetailsCardInitial {
|
|
9341
|
+
readonly type: 'initial';
|
|
9342
|
+
readonly reference?: string;
|
|
9343
|
+
}
|
|
9344
|
+
|
|
9345
|
+
interface PaymentMethodStoredDetailsCardSubsequent {
|
|
9346
|
+
readonly type: 'subsequent';
|
|
9347
|
+
readonly reference?: string;
|
|
9348
|
+
readonly previous_transaction_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
9349
|
+
}
|
|
9350
|
+
|
|
9329
9351
|
interface PaymentMethodSummaryAfterpay {
|
|
9330
9352
|
readonly type: 'afterpay';
|
|
9331
9353
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
@@ -12389,6 +12411,7 @@ declare namespace io.flow.v0.models {
|
|
|
12389
12411
|
}
|
|
12390
12412
|
|
|
12391
12413
|
interface TransactionDetailsCard {
|
|
12414
|
+
readonly type: 'card';
|
|
12392
12415
|
readonly address_verification_result?: io.flow.v0.models.AddressVerificationResult;
|
|
12393
12416
|
readonly cvv_result?: io.flow.v0.models.CvvResult;
|
|
12394
12417
|
readonly network_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
@@ -13072,11 +13095,17 @@ declare namespace io.flow.v0.unions {
|
|
|
13072
13095
|
| io.flow.v0.models.PaymentMethodDataAuthorizeKlarna
|
|
13073
13096
|
| io.flow.v0.models.PaymentMethodDataSelectedPaymentOption
|
|
13074
13097
|
| io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
13098
|
+
type PaymentMethodDataAuthorizeApplepayResult =
|
|
13099
|
+
| io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess
|
|
13100
|
+
| io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
13075
13101
|
type PaymentMethodDataAuthorizeKlarnaResult =
|
|
13076
13102
|
| io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess
|
|
13077
13103
|
| io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
13078
13104
|
type PaymentMethodDataOptionLogo =
|
|
13079
13105
|
io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
13106
|
+
type PaymentMethodStoredDetailsCard =
|
|
13107
|
+
| io.flow.v0.models.PaymentMethodStoredDetailsCardInitial
|
|
13108
|
+
| io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
13080
13109
|
type PaymentMethodSummary =
|
|
13081
13110
|
| io.flow.v0.models.PaymentMethodSummaryCard
|
|
13082
13111
|
| io.flow.v0.models.PaymentMethodSummaryKlarna
|
|
@@ -13199,6 +13228,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13199
13228
|
| io.flow.v0.models.OrganizationTokenReference
|
|
13200
13229
|
| io.flow.v0.models.OrganizationTokenV2Reference
|
|
13201
13230
|
| io.flow.v0.models.PartnerTokenReference;
|
|
13231
|
+
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
13202
13232
|
}
|
|
13203
13233
|
|
|
13204
13234
|
export type AbandonedOrderEmailSettings =
|
|
@@ -14544,6 +14574,12 @@ export type PaymentMethodCardToken = io.flow.v0.models.PaymentMethodCardToken;
|
|
|
14544
14574
|
export type PaymentMethodData = io.flow.v0.unions.PaymentMethodData;
|
|
14545
14575
|
export type PaymentMethodDataAuthorizeApplepay =
|
|
14546
14576
|
io.flow.v0.models.PaymentMethodDataAuthorizeApplepay;
|
|
14577
|
+
export type PaymentMethodDataAuthorizeApplepayResult =
|
|
14578
|
+
io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
14579
|
+
export type PaymentMethodDataAuthorizeApplepayResultFailure =
|
|
14580
|
+
io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
14581
|
+
export type PaymentMethodDataAuthorizeApplepayResultSuccess =
|
|
14582
|
+
io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess;
|
|
14547
14583
|
export type PaymentMethodDataAuthorizeCard =
|
|
14548
14584
|
io.flow.v0.models.PaymentMethodDataAuthorizeCard;
|
|
14549
14585
|
export type PaymentMethodDataAuthorizeGooglepay =
|
|
@@ -14596,6 +14632,12 @@ export type PaymentMethodRuleContent =
|
|
|
14596
14632
|
io.flow.v0.models.PaymentMethodRuleContent;
|
|
14597
14633
|
export type PaymentMethodRuleContentKey =
|
|
14598
14634
|
io.flow.v0.enums.PaymentMethodRuleContentKey;
|
|
14635
|
+
export type PaymentMethodStoredDetailsCard =
|
|
14636
|
+
io.flow.v0.unions.PaymentMethodStoredDetailsCard;
|
|
14637
|
+
export type PaymentMethodStoredDetailsCardInitial =
|
|
14638
|
+
io.flow.v0.models.PaymentMethodStoredDetailsCardInitial;
|
|
14639
|
+
export type PaymentMethodStoredDetailsCardSubsequent =
|
|
14640
|
+
io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
14599
14641
|
export type PaymentMethodSummary = io.flow.v0.unions.PaymentMethodSummary;
|
|
14600
14642
|
export type PaymentMethodSummaryAfterpay =
|
|
14601
14643
|
io.flow.v0.models.PaymentMethodSummaryAfterpay;
|
|
@@ -15220,6 +15262,7 @@ export type TradeAgreementDuty = io.flow.v0.models.TradeAgreementDuty;
|
|
|
15220
15262
|
export type TradeAgreementName = io.flow.v0.enums.TradeAgreementName;
|
|
15221
15263
|
export type TradeAgreementStatus = io.flow.v0.enums.TradeAgreementStatus;
|
|
15222
15264
|
export type Transaction = io.flow.v0.models.Transaction;
|
|
15265
|
+
export type TransactionDetails = io.flow.v0.unions.TransactionDetails;
|
|
15223
15266
|
export type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
15224
15267
|
export type TransactionNetworkDetailsCard =
|
|
15225
15268
|
io.flow.v0.models.TransactionNetworkDetailsCard;
|