@flowio/types 11.24.32 → 11.24.33
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 +285 -84
- package/dist/api.d.ts +36 -23
- package/package.json +2 -2
- package/src/api-internal.ts +387 -89
- package/src/api.ts +41 -26
package/dist/api-internal.d.ts
CHANGED
|
@@ -412,6 +412,21 @@ declare namespace io.flow.common.v0.models {
|
|
|
412
412
|
interface LineItemQuantityForm {
|
|
413
413
|
readonly quantity: number;
|
|
414
414
|
}
|
|
415
|
+
interface LogoImageSetStatic {
|
|
416
|
+
readonly discriminator: 'static';
|
|
417
|
+
readonly small?: io.flow.common.v0.models.LogoImageStatic;
|
|
418
|
+
readonly medium: io.flow.common.v0.models.LogoImageStatic;
|
|
419
|
+
readonly large?: io.flow.common.v0.models.LogoImageStatic;
|
|
420
|
+
}
|
|
421
|
+
interface LogoImageStatic {
|
|
422
|
+
readonly url: string;
|
|
423
|
+
readonly width: number;
|
|
424
|
+
readonly height: number;
|
|
425
|
+
}
|
|
426
|
+
interface LogoImageSvg {
|
|
427
|
+
readonly discriminator: 'svg';
|
|
428
|
+
readonly url: string;
|
|
429
|
+
}
|
|
415
430
|
interface Margin {
|
|
416
431
|
readonly type: io.flow.common.v0.enums.MarginType;
|
|
417
432
|
readonly value: number;
|
|
@@ -589,6 +604,7 @@ declare namespace io.flow.common.v0.unions {
|
|
|
589
604
|
type ExpandableOrganization = io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference;
|
|
590
605
|
type ExpandableUser = io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference;
|
|
591
606
|
type InputSpecificationLimitation = io.flow.common.v0.models.InputSpecificationLimitationMax;
|
|
607
|
+
type LogoImage = io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic;
|
|
592
608
|
type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
|
|
593
609
|
type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
|
|
594
610
|
}
|
|
@@ -2524,7 +2540,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2524
2540
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2525
2541
|
readonly payment_method_types?: string[];
|
|
2526
2542
|
readonly receipt_email?: string;
|
|
2527
|
-
readonly save_payment_method
|
|
2543
|
+
readonly save_payment_method?: boolean;
|
|
2528
2544
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2529
2545
|
}
|
|
2530
2546
|
interface PaymentIntentForm {
|
|
@@ -2544,7 +2560,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2544
2560
|
readonly payment_method_types?: string[];
|
|
2545
2561
|
readonly receipt_email?: string;
|
|
2546
2562
|
readonly return_url?: string;
|
|
2547
|
-
readonly save_payment_method
|
|
2563
|
+
readonly save_payment_method?: boolean;
|
|
2548
2564
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2549
2565
|
readonly statement_descriptor?: string;
|
|
2550
2566
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -2560,7 +2576,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2560
2576
|
readonly payment_method?: string;
|
|
2561
2577
|
readonly payment_method_types?: string[];
|
|
2562
2578
|
readonly receipt_email?: string;
|
|
2563
|
-
readonly save_payment_method
|
|
2579
|
+
readonly save_payment_method?: boolean;
|
|
2564
2580
|
readonly statement_descriptor?: string;
|
|
2565
2581
|
readonly statement_descriptor_suffix?: string;
|
|
2566
2582
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -3544,14 +3560,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3544
3560
|
readonly currency: string;
|
|
3545
3561
|
readonly posData?: string;
|
|
3546
3562
|
readonly notificationURL?: string;
|
|
3547
|
-
readonly transactionSpeed
|
|
3563
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3548
3564
|
readonly fullNotifications?: boolean;
|
|
3549
3565
|
readonly notificationEmail?: string;
|
|
3550
3566
|
readonly redirectURL?: string;
|
|
3551
3567
|
readonly orderId?: string;
|
|
3552
3568
|
readonly itemDesc?: string;
|
|
3553
3569
|
readonly itemCode?: string;
|
|
3554
|
-
readonly physical
|
|
3570
|
+
readonly physical?: boolean;
|
|
3555
3571
|
readonly buyerName?: string;
|
|
3556
3572
|
readonly buyerAddress1?: string;
|
|
3557
3573
|
readonly buyerAddress2?: string;
|
|
@@ -3602,12 +3618,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3602
3618
|
readonly currency: string;
|
|
3603
3619
|
readonly posData?: string;
|
|
3604
3620
|
readonly notificationURL?: string;
|
|
3605
|
-
readonly transactionSpeed
|
|
3621
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3606
3622
|
readonly fullNotifications?: boolean;
|
|
3607
3623
|
readonly extendedNotifications?: boolean;
|
|
3608
3624
|
readonly redirectURL?: string;
|
|
3609
3625
|
readonly orderId?: string;
|
|
3610
|
-
readonly physical
|
|
3626
|
+
readonly physical?: boolean;
|
|
3611
3627
|
readonly buyerName?: string;
|
|
3612
3628
|
readonly buyerAddress1?: string;
|
|
3613
3629
|
readonly buyerAddress2?: string;
|
|
@@ -3786,9 +3802,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3786
3802
|
type Contract = 'RECURRING';
|
|
3787
3803
|
type DeviceChannel = 'app' | 'browser';
|
|
3788
3804
|
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';
|
|
3789
|
-
type
|
|
3805
|
+
type Method = 'GET' | 'POST';
|
|
3790
3806
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3791
|
-
type PaymentMethod = 'ach' | 'alipay' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | '
|
|
3807
|
+
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';
|
|
3792
3808
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3793
3809
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3794
3810
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3807,10 +3823,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3807
3823
|
readonly value: number;
|
|
3808
3824
|
readonly currency: string;
|
|
3809
3825
|
}
|
|
3810
|
-
interface Applepay {
|
|
3811
|
-
readonly type: 'applepay';
|
|
3812
|
-
readonly applePayToken: string;
|
|
3813
|
-
}
|
|
3814
3826
|
interface Authentication {
|
|
3815
3827
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3816
3828
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3837,8 +3849,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3837
3849
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3838
3850
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3839
3851
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3840
|
-
readonly mcc?: string;
|
|
3841
|
-
readonly metadata?: any;
|
|
3842
3852
|
}
|
|
3843
3853
|
interface AuthorizeRequest3D {
|
|
3844
3854
|
readonly merchantAccount: string;
|
|
@@ -3972,12 +3982,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3972
3982
|
readonly details: any;
|
|
3973
3983
|
readonly paymentData?: string;
|
|
3974
3984
|
}
|
|
3975
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
3976
|
-
readonly 'threeds2.challengeResult': string;
|
|
3977
|
-
}
|
|
3978
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
3979
|
-
readonly 'threeds2.fingerprint': string;
|
|
3980
|
-
}
|
|
3981
3985
|
interface PaymentRequest {
|
|
3982
3986
|
readonly reference: string;
|
|
3983
3987
|
readonly merchantAccount: string;
|
|
@@ -3999,11 +4003,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3999
4003
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4000
4004
|
readonly origin?: string;
|
|
4001
4005
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
4002
|
-
readonly
|
|
4003
|
-
readonly mcc?: string;
|
|
4004
|
-
readonly metadata?: any;
|
|
4005
|
-
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4006
|
-
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4006
|
+
readonly returnURL?: string;
|
|
4007
4007
|
}
|
|
4008
4008
|
interface PaymentResponse {
|
|
4009
4009
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -4018,50 +4018,19 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4018
4018
|
interface PaymentResponseAdditionalData {
|
|
4019
4019
|
readonly authCode?: string;
|
|
4020
4020
|
readonly avsResultRaw?: string;
|
|
4021
|
-
readonly avsResult?: string;
|
|
4022
4021
|
readonly cvcResultRaw?: string;
|
|
4023
|
-
readonly cvcResult?: string;
|
|
4024
|
-
readonly refusalReasonRaw?: string;
|
|
4025
4022
|
readonly liabilityShift?: string;
|
|
4026
4023
|
readonly threeDAuthenticated?: string;
|
|
4027
4024
|
readonly threeDAuthenticatedResponse?: string;
|
|
4028
4025
|
readonly threeDOffered?: string;
|
|
4029
4026
|
readonly threeDOfferedResponse?: string;
|
|
4030
|
-
readonly threeDSVersion?: string;
|
|
4031
|
-
readonly eci?: string;
|
|
4032
|
-
readonly scaExemptionRequested?: string;
|
|
4033
|
-
readonly paymentMethod?: string;
|
|
4034
|
-
readonly paymentMethodVariant?: string;
|
|
4035
|
-
readonly tokenTxVariant?: string;
|
|
4036
|
-
readonly acquirerCode?: string;
|
|
4037
|
-
readonly acquirerAccountCode?: string;
|
|
4038
|
-
readonly cardPaymentMethod?: string;
|
|
4039
|
-
readonly coBrandedWith?: string;
|
|
4040
|
-
readonly cardIssuingCountry?: string;
|
|
4041
|
-
readonly cardIssuingCurrency?: string;
|
|
4042
|
-
readonly cardIssuingBank?: string;
|
|
4043
|
-
readonly cardBin?: string;
|
|
4044
|
-
readonly issuerBin?: string;
|
|
4045
|
-
readonly cardSummary?: string;
|
|
4046
|
-
readonly untokenisedCardSummary?: string;
|
|
4047
|
-
readonly ownerName?: string;
|
|
4048
|
-
readonly bankName?: string;
|
|
4049
|
-
readonly issuerCountry?: string;
|
|
4050
|
-
readonly iban?: string;
|
|
4051
|
-
readonly bic?: string;
|
|
4052
|
-
readonly iDealConsumerAccountNumber?: string;
|
|
4053
|
-
readonly iDealConsumerBIC?: string;
|
|
4054
|
-
readonly iDealConsumerCity?: string;
|
|
4055
|
-
readonly iDealConsumerIBAN?: string;
|
|
4056
|
-
readonly iDealConsumerName?: string;
|
|
4057
|
-
readonly iDealTransactionId?: string;
|
|
4058
4027
|
}
|
|
4059
4028
|
interface Recurring {
|
|
4060
4029
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
4061
4030
|
}
|
|
4062
4031
|
interface Redirect {
|
|
4063
4032
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
4064
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
4033
|
+
readonly method?: io.flow.adyen.v0.enums.Method;
|
|
4065
4034
|
readonly url?: string;
|
|
4066
4035
|
}
|
|
4067
4036
|
interface RedirectData {
|
|
@@ -4082,13 +4051,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4082
4051
|
readonly number: string;
|
|
4083
4052
|
readonly cvc?: string;
|
|
4084
4053
|
}
|
|
4085
|
-
interface SdkV3OnCompleteData {
|
|
4086
|
-
readonly details: any;
|
|
4087
|
-
readonly payment_data?: string;
|
|
4088
|
-
}
|
|
4089
|
-
interface SdkV3OnCompleteResult {
|
|
4090
|
-
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4091
|
-
}
|
|
4092
4054
|
interface ThreeDSecureData {
|
|
4093
4055
|
readonly authenticationResponse?: string;
|
|
4094
4056
|
readonly cavv?: string;
|
|
@@ -4114,7 +4076,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4114
4076
|
}
|
|
4115
4077
|
declare namespace io.flow.adyen.v0.unions {
|
|
4116
4078
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
4117
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme
|
|
4079
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
4118
4080
|
}
|
|
4119
4081
|
declare namespace io.flow.order.management.v0.enums {
|
|
4120
4082
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -4295,7 +4257,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4295
4257
|
interface Product {
|
|
4296
4258
|
readonly id: number;
|
|
4297
4259
|
readonly handle: string;
|
|
4298
|
-
readonly variants
|
|
4260
|
+
readonly variants?: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
4299
4261
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
4300
4262
|
readonly title: string;
|
|
4301
4263
|
readonly vendor?: string;
|
|
@@ -4450,7 +4412,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4450
4412
|
readonly title: string;
|
|
4451
4413
|
}
|
|
4452
4414
|
interface ShopifyClientDetail {
|
|
4453
|
-
readonly accept_language
|
|
4415
|
+
readonly accept_language?: boolean;
|
|
4454
4416
|
readonly browser_height?: number;
|
|
4455
4417
|
readonly browser_ip?: string;
|
|
4456
4418
|
readonly browser_width?: number;
|
|
@@ -4465,7 +4427,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4465
4427
|
readonly tax_exempt: boolean;
|
|
4466
4428
|
readonly verified_email: boolean;
|
|
4467
4429
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
4468
|
-
readonly accepts_marketing
|
|
4430
|
+
readonly accepts_marketing?: boolean;
|
|
4469
4431
|
readonly default_address?: any;
|
|
4470
4432
|
readonly email?: string;
|
|
4471
4433
|
readonly first_name?: string;
|
|
@@ -4537,7 +4499,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4537
4499
|
readonly requires_shipping: boolean;
|
|
4538
4500
|
readonly currency?: string;
|
|
4539
4501
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
4540
|
-
readonly cart_level_discount_applications
|
|
4502
|
+
readonly cart_level_discount_applications?: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
4541
4503
|
}
|
|
4542
4504
|
interface ShopifyExternalCartItem {
|
|
4543
4505
|
readonly id: number;
|
|
@@ -4551,7 +4513,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4551
4513
|
readonly original_line_price: number;
|
|
4552
4514
|
readonly total_discount: number;
|
|
4553
4515
|
readonly discounted_price: number;
|
|
4554
|
-
readonly discounts
|
|
4516
|
+
readonly discounts?: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
4555
4517
|
readonly taxable: boolean;
|
|
4556
4518
|
readonly quantity: number;
|
|
4557
4519
|
readonly sku?: string;
|
|
@@ -4569,8 +4531,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4569
4531
|
readonly product_description?: string;
|
|
4570
4532
|
readonly product_type: string;
|
|
4571
4533
|
readonly variant_title?: string;
|
|
4572
|
-
readonly variant_options
|
|
4573
|
-
readonly line_level_discount_allocations
|
|
4534
|
+
readonly variant_options?: string[];
|
|
4535
|
+
readonly line_level_discount_allocations?: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
4574
4536
|
}
|
|
4575
4537
|
interface ShopifyFulfillment {
|
|
4576
4538
|
readonly location_id: number;
|
|
@@ -4790,11 +4752,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4790
4752
|
readonly updated_at?: string;
|
|
4791
4753
|
readonly user_id?: number;
|
|
4792
4754
|
readonly order_status_url?: string;
|
|
4793
|
-
readonly inventory_behaviour
|
|
4755
|
+
readonly inventory_behaviour?: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
4794
4756
|
readonly gateway?: string;
|
|
4795
4757
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
4796
4758
|
readonly send_receipt?: boolean;
|
|
4797
|
-
readonly metafields
|
|
4759
|
+
readonly metafields?: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
4798
4760
|
}
|
|
4799
4761
|
interface ShopifyOrderCount {
|
|
4800
4762
|
readonly count: number;
|
|
@@ -4915,7 +4877,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4915
4877
|
}
|
|
4916
4878
|
interface ShopifyWebhookOrder {
|
|
4917
4879
|
readonly id?: number;
|
|
4918
|
-
readonly line_items
|
|
4880
|
+
readonly line_items?: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
4919
4881
|
}
|
|
4920
4882
|
interface ShopifyWebhookOrderCancelled {
|
|
4921
4883
|
readonly id: number;
|
|
@@ -5184,7 +5146,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5184
5146
|
readonly updated_at?: string;
|
|
5185
5147
|
readonly user_id?: number;
|
|
5186
5148
|
readonly order_status_url?: string;
|
|
5187
|
-
readonly inventory_behaviour
|
|
5149
|
+
readonly inventory_behaviour?: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
5188
5150
|
readonly gateway?: string;
|
|
5189
5151
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
5190
5152
|
readonly send_receipt?: boolean;
|
|
@@ -5218,7 +5180,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5218
5180
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
5219
5181
|
}
|
|
5220
5182
|
interface ShopifyOrderClientDetail {
|
|
5221
|
-
readonly accept_language
|
|
5183
|
+
readonly accept_language?: string;
|
|
5222
5184
|
readonly browser_height?: number;
|
|
5223
5185
|
readonly browser_ip?: string;
|
|
5224
5186
|
readonly browser_width?: number;
|
|
@@ -5439,7 +5401,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5439
5401
|
readonly kind: io.flow.shopify.markets.v0.enums.ShopifyOrderKindType;
|
|
5440
5402
|
readonly gateway: string;
|
|
5441
5403
|
readonly currency: string;
|
|
5442
|
-
readonly status
|
|
5404
|
+
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
5443
5405
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
5444
5406
|
readonly receipt: any;
|
|
5445
5407
|
readonly authorization?: string;
|
|
@@ -7153,6 +7115,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7153
7115
|
interface PaymentMethodIssuer {
|
|
7154
7116
|
readonly id: string;
|
|
7155
7117
|
readonly name: string;
|
|
7118
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
7156
7119
|
}
|
|
7157
7120
|
interface PaymentMethodRule {
|
|
7158
7121
|
readonly tags: io.flow.experience.v0.unions.PaymentMethodTag[];
|
|
@@ -7952,7 +7915,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7952
7915
|
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
7953
7916
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
7954
7917
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7955
|
-
readonly indirect_tax_number?: string;
|
|
7956
7918
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7957
7919
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7958
7920
|
readonly beneficiary?: string;
|
|
@@ -7981,7 +7943,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7981
7943
|
interface ShopifyMerchantApplicationForm {
|
|
7982
7944
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
7983
7945
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7984
|
-
readonly indirect_tax_number?: string;
|
|
7985
7946
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7986
7947
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7987
7948
|
readonly beneficiary?: string;
|
|
@@ -8561,6 +8522,103 @@ declare namespace io.flow.item.v0.models {
|
|
|
8561
8522
|
readonly price_attributes?: Record<string, io.flow.item.v0.models.LocalItemAttributePricing>;
|
|
8562
8523
|
}
|
|
8563
8524
|
}
|
|
8525
|
+
declare namespace io.flow.billing.v0.enums {
|
|
8526
|
+
type AttachmentType = 'csv';
|
|
8527
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8528
|
+
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
8529
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8530
|
+
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8531
|
+
}
|
|
8532
|
+
declare namespace io.flow.billing.v0.models {
|
|
8533
|
+
interface AccountReference {
|
|
8534
|
+
readonly id: string;
|
|
8535
|
+
readonly currency: string;
|
|
8536
|
+
}
|
|
8537
|
+
interface Attachment {
|
|
8538
|
+
readonly type: io.flow.billing.v0.enums.AttachmentType;
|
|
8539
|
+
readonly url: string;
|
|
8540
|
+
}
|
|
8541
|
+
interface BillingChannelOrderSummary {
|
|
8542
|
+
readonly number: string;
|
|
8543
|
+
readonly identifiers?: Record<string, string>;
|
|
8544
|
+
}
|
|
8545
|
+
interface BillingChannelPaymentRequestReference {
|
|
8546
|
+
readonly id: string;
|
|
8547
|
+
readonly reference?: string;
|
|
8548
|
+
}
|
|
8549
|
+
interface BillingChannelStatementReference {
|
|
8550
|
+
readonly id: string;
|
|
8551
|
+
}
|
|
8552
|
+
interface ChannelStatement {
|
|
8553
|
+
readonly id: string;
|
|
8554
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8555
|
+
readonly ending_balance: number;
|
|
8556
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
8557
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
8558
|
+
readonly created_at: string;
|
|
8559
|
+
}
|
|
8560
|
+
interface ChannelTransaction {
|
|
8561
|
+
readonly id: string;
|
|
8562
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8563
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8564
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8565
|
+
readonly currency: string;
|
|
8566
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8567
|
+
readonly gross: number;
|
|
8568
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8569
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8570
|
+
readonly net: number;
|
|
8571
|
+
readonly created_at: string;
|
|
8572
|
+
}
|
|
8573
|
+
interface FeeDeduction {
|
|
8574
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
8575
|
+
readonly amount: number;
|
|
8576
|
+
readonly description?: string;
|
|
8577
|
+
}
|
|
8578
|
+
interface NoPayout {
|
|
8579
|
+
readonly discriminator: 'no_payout';
|
|
8580
|
+
readonly placeholder?: string;
|
|
8581
|
+
}
|
|
8582
|
+
interface Payout {
|
|
8583
|
+
readonly discriminator: 'payout';
|
|
8584
|
+
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
8585
|
+
readonly amount: number;
|
|
8586
|
+
readonly sent_on?: string;
|
|
8587
|
+
}
|
|
8588
|
+
interface PayoutStatus {
|
|
8589
|
+
readonly code: io.flow.billing.v0.enums.PayoutStatusCode;
|
|
8590
|
+
readonly reason?: string;
|
|
8591
|
+
}
|
|
8592
|
+
interface Statement {
|
|
8593
|
+
readonly id: string;
|
|
8594
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8595
|
+
readonly ending_balance: number;
|
|
8596
|
+
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
8597
|
+
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
8598
|
+
readonly created_at: string;
|
|
8599
|
+
}
|
|
8600
|
+
interface Transaction {
|
|
8601
|
+
readonly id: string;
|
|
8602
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8603
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8604
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8605
|
+
readonly currency: string;
|
|
8606
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8607
|
+
readonly gross: number;
|
|
8608
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8609
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8610
|
+
readonly net: number;
|
|
8611
|
+
readonly created_at: string;
|
|
8612
|
+
}
|
|
8613
|
+
interface WithholdingDeduction {
|
|
8614
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
8615
|
+
readonly amount: number;
|
|
8616
|
+
readonly description?: string;
|
|
8617
|
+
}
|
|
8618
|
+
}
|
|
8619
|
+
declare namespace io.flow.billing.v0.unions {
|
|
8620
|
+
type Settlement = io.flow.billing.v0.models.NoPayout | io.flow.billing.v0.models.Payout;
|
|
8621
|
+
}
|
|
8564
8622
|
declare namespace io.flow.harmonization.v0.enums {
|
|
8565
8623
|
type TaxApplicability = 'none' | 'all';
|
|
8566
8624
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -9867,6 +9925,7 @@ declare namespace io.flow.session.v0.unions {
|
|
|
9867
9925
|
declare namespace io.flow.internal.v0.enums {
|
|
9868
9926
|
type AccountType = 'channel' | 'organization';
|
|
9869
9927
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
9928
|
+
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
9870
9929
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
9871
9930
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
9872
9931
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
@@ -9883,6 +9942,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9883
9942
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
9884
9943
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
9885
9944
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
9945
|
+
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
9886
9946
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
9887
9947
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
9888
9948
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -9984,7 +10044,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9984
10044
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
9985
10045
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
9986
10046
|
type EmptyAttribute = 'irrelevant';
|
|
9987
|
-
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' | 'billable_label_upserted' | 'billable_label_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted' | 'channel_account_deleted' | 'organization_account_upserted' | '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' | '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' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fx_revenue_recognition_upserted' | 'fx_revenue_recognition_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_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' | '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' | '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' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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';
|
|
10047
|
+
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' | 'billable_label_upserted' | 'billable_label_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted' | 'channel_account_deleted' | 'organization_account_upserted' | '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' | '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' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fx_revenue_recognition_upserted' | 'fx_revenue_recognition_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_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' | '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_snapshot_upserted' | 'organization_restriction_snapshot_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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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';
|
|
9988
10048
|
type ExperienceImportType = 'experience_with_settings';
|
|
9989
10049
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
9990
10050
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10096,7 +10156,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10096
10156
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10097
10157
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10098
10158
|
type TariffEligibilityType = 'rex';
|
|
10099
|
-
type TaskProcessorKey = 'billing_account' | 'carrier_account';
|
|
10159
|
+
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'carrier_account' | 'label_generation_settings';
|
|
10100
10160
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10101
10161
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10102
10162
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -10371,6 +10431,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10371
10431
|
readonly account_id: string;
|
|
10372
10432
|
readonly merchant_account: string;
|
|
10373
10433
|
readonly origin_key?: string;
|
|
10434
|
+
readonly integration_type?: io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
10374
10435
|
}
|
|
10375
10436
|
interface AdyenAuthenticationForm {
|
|
10376
10437
|
readonly username: string;
|
|
@@ -11424,6 +11485,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11424
11485
|
readonly payment_request_id?: string;
|
|
11425
11486
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11426
11487
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
11488
|
+
readonly order_created_at?: string;
|
|
11427
11489
|
}
|
|
11428
11490
|
interface ChannelOrderAcceptanceDeleted {
|
|
11429
11491
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -12667,6 +12729,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12667
12729
|
interface CheckoutPaymentMethodIssuer {
|
|
12668
12730
|
readonly id: string;
|
|
12669
12731
|
readonly name: string;
|
|
12732
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
12670
12733
|
}
|
|
12671
12734
|
interface CheckoutPaymentSourceOption {
|
|
12672
12735
|
readonly id: string;
|
|
@@ -13637,6 +13700,77 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13637
13700
|
readonly organization_id: string;
|
|
13638
13701
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
13639
13702
|
}
|
|
13703
|
+
interface DebugDetails {
|
|
13704
|
+
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
13705
|
+
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
13706
|
+
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
13707
|
+
}
|
|
13708
|
+
interface DebugLabel {
|
|
13709
|
+
readonly carrier_id: string;
|
|
13710
|
+
readonly carrier_tracking_number: string;
|
|
13711
|
+
readonly billable_label_id?: string;
|
|
13712
|
+
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
13713
|
+
}
|
|
13714
|
+
interface DebugLabelTransactionSummary {
|
|
13715
|
+
readonly id: string;
|
|
13716
|
+
readonly type: string;
|
|
13717
|
+
}
|
|
13718
|
+
interface DebugOrder {
|
|
13719
|
+
readonly organization_id: string;
|
|
13720
|
+
readonly number: string;
|
|
13721
|
+
readonly identifiers?: Record<string, string>;
|
|
13722
|
+
readonly submitted_at?: string;
|
|
13723
|
+
}
|
|
13724
|
+
interface DebugOrderTransaction {
|
|
13725
|
+
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
13726
|
+
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
13727
|
+
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
13728
|
+
}
|
|
13729
|
+
interface DebugOrderTransactionForm {
|
|
13730
|
+
readonly order_id?: string;
|
|
13731
|
+
readonly organization_id?: string;
|
|
13732
|
+
readonly order_number?: string;
|
|
13733
|
+
readonly transaction_id?: string;
|
|
13734
|
+
readonly capture_id?: string;
|
|
13735
|
+
readonly refund_id?: string;
|
|
13736
|
+
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
13737
|
+
}
|
|
13738
|
+
interface DebugOrderTransactionFormOrderIdentifier {
|
|
13739
|
+
readonly key?: string;
|
|
13740
|
+
readonly value?: string;
|
|
13741
|
+
}
|
|
13742
|
+
interface DebugPaymentTransactionSummary {
|
|
13743
|
+
readonly id: string;
|
|
13744
|
+
readonly type: string;
|
|
13745
|
+
readonly processing_transaction_id?: string;
|
|
13746
|
+
readonly queue_errors?: string[];
|
|
13747
|
+
readonly processing_transaction_ignore_reason?: string;
|
|
13748
|
+
readonly channel_transaction_ignore_reason?: string;
|
|
13749
|
+
}
|
|
13750
|
+
interface DebugTransactionDetails {
|
|
13751
|
+
readonly id: string;
|
|
13752
|
+
readonly status: io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
13753
|
+
readonly fx?: io.flow.internal.v0.models.DebugTransactionFx;
|
|
13754
|
+
readonly queue?: io.flow.internal.v0.models.DebugTransactionQueued;
|
|
13755
|
+
}
|
|
13756
|
+
interface DebugTransactionDetailsStatus {
|
|
13757
|
+
readonly status: io.flow.internal.v0.enums.MainTransactionStatus;
|
|
13758
|
+
readonly description: string;
|
|
13759
|
+
}
|
|
13760
|
+
interface DebugTransactionFx {
|
|
13761
|
+
readonly timestamp?: string;
|
|
13762
|
+
readonly market: io.flow.internal.v0.models.DebugTransactionFxRate[];
|
|
13763
|
+
readonly order_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
13764
|
+
readonly transaction_effective_rate?: io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
13765
|
+
}
|
|
13766
|
+
interface DebugTransactionFxRate {
|
|
13767
|
+
readonly base: string;
|
|
13768
|
+
readonly target: string;
|
|
13769
|
+
readonly value: number;
|
|
13770
|
+
}
|
|
13771
|
+
interface DebugTransactionQueued {
|
|
13772
|
+
readonly reasons: string[];
|
|
13773
|
+
}
|
|
13640
13774
|
interface Decision {
|
|
13641
13775
|
readonly id: string;
|
|
13642
13776
|
readonly status: string;
|
|
@@ -15610,6 +15744,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15610
15744
|
readonly timestamp: string;
|
|
15611
15745
|
readonly rate: io.flow.internal.v0.models.InternalChannelRate;
|
|
15612
15746
|
}
|
|
15747
|
+
interface InternalDebugTransaction {
|
|
15748
|
+
readonly debug: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
15749
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
15750
|
+
}
|
|
15613
15751
|
interface InternalExclusionRuleForm {
|
|
15614
15752
|
readonly id: string;
|
|
15615
15753
|
readonly export_id: string;
|
|
@@ -16971,6 +17109,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16971
17109
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16972
17110
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
16973
17111
|
}
|
|
17112
|
+
interface OrganizationDebugTransaction {
|
|
17113
|
+
readonly debug: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
17114
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
17115
|
+
}
|
|
16974
17116
|
interface OrganizationInvitationAcceptForm {
|
|
16975
17117
|
readonly email: string;
|
|
16976
17118
|
}
|
|
@@ -16994,6 +17136,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16994
17136
|
readonly created_at: string;
|
|
16995
17137
|
readonly updated_at: string;
|
|
16996
17138
|
}
|
|
17139
|
+
interface OrganizationPaymentSettingDeleted {
|
|
17140
|
+
readonly discriminator: 'organization_payment_setting_deleted';
|
|
17141
|
+
readonly event_id: string;
|
|
17142
|
+
readonly timestamp: string;
|
|
17143
|
+
readonly organization: string;
|
|
17144
|
+
readonly id: string;
|
|
17145
|
+
}
|
|
16997
17146
|
interface OrganizationPaymentSettingForm {
|
|
16998
17147
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
16999
17148
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -17001,6 +17150,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17001
17150
|
readonly merchant_category_code?: string;
|
|
17002
17151
|
readonly payment_statement_suffix?: string;
|
|
17003
17152
|
}
|
|
17153
|
+
interface OrganizationPaymentSettingUpserted {
|
|
17154
|
+
readonly discriminator: 'organization_payment_setting_upserted';
|
|
17155
|
+
readonly event_id: string;
|
|
17156
|
+
readonly timestamp: string;
|
|
17157
|
+
readonly organization: string;
|
|
17158
|
+
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
17159
|
+
}
|
|
17004
17160
|
interface OrganizationPaymentSettingVersion {
|
|
17005
17161
|
readonly id: string;
|
|
17006
17162
|
readonly timestamp: string;
|
|
@@ -17008,6 +17164,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17008
17164
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
17009
17165
|
}
|
|
17010
17166
|
interface OrganizationRestrictionSnapshot {
|
|
17167
|
+
readonly id: string;
|
|
17011
17168
|
readonly organization_id: string;
|
|
17012
17169
|
readonly organization_channel_id: string;
|
|
17013
17170
|
readonly organization_status: string;
|
|
@@ -17019,6 +17176,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17019
17176
|
readonly earliest_product_receipt_date: string;
|
|
17020
17177
|
readonly date: string;
|
|
17021
17178
|
}
|
|
17179
|
+
interface OrganizationRestrictionSnapshotDeleted {
|
|
17180
|
+
readonly discriminator: 'organization_restriction_snapshot_deleted';
|
|
17181
|
+
readonly event_id: string;
|
|
17182
|
+
readonly timestamp: string;
|
|
17183
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
17184
|
+
}
|
|
17185
|
+
interface OrganizationRestrictionSnapshotUpserted {
|
|
17186
|
+
readonly discriminator: 'organization_restriction_snapshot_upserted';
|
|
17187
|
+
readonly event_id: string;
|
|
17188
|
+
readonly timestamp: string;
|
|
17189
|
+
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
17190
|
+
}
|
|
17022
17191
|
interface OrganizationRestrictionSummary {
|
|
17023
17192
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
17024
17193
|
readonly earliest_date: string;
|
|
@@ -17111,6 +17280,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17111
17280
|
readonly id: string;
|
|
17112
17281
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
17113
17282
|
}
|
|
17283
|
+
interface PaymentMethodDetail {
|
|
17284
|
+
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
17285
|
+
readonly method_options?: io.flow.internal.v0.models.PaymentMethodOption[];
|
|
17286
|
+
}
|
|
17287
|
+
interface PaymentMethodOption {
|
|
17288
|
+
readonly id: string;
|
|
17289
|
+
readonly name: string;
|
|
17290
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
17291
|
+
}
|
|
17114
17292
|
interface PaymentOrganizationSettings {
|
|
17115
17293
|
readonly id: string;
|
|
17116
17294
|
readonly enable_auto_capture: boolean;
|
|
@@ -19467,7 +19645,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19467
19645
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19468
19646
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19469
19647
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
19470
|
-
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.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | 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.ChannelAccountUpserted | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpserted | 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.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.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FxRevenueRecognitionUpserted | io.flow.internal.v0.models.FxRevenueRecognitionDeleted | 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.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.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.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.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.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;
|
|
19648
|
+
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.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | 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.ChannelAccountUpserted | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpserted | 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.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.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FxRevenueRecognitionUpserted | io.flow.internal.v0.models.FxRevenueRecognitionDeleted | 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.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.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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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;
|
|
19471
19649
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19472
19650
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19473
19651
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -19568,6 +19746,7 @@ export declare type AdyenCancelDeleted = io.flow.internal.v0.models.AdyenCancelD
|
|
|
19568
19746
|
export declare type AdyenCancelUpserted = io.flow.internal.v0.models.AdyenCancelUpserted;
|
|
19569
19747
|
export declare type AdyenCaptureDeleted = io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
19570
19748
|
export declare type AdyenCaptureUpserted = io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
19749
|
+
export declare type AdyenIntegrationType = io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
19571
19750
|
export declare type AdyenInternalAuthorization = io.flow.internal.v0.models.AdyenInternalAuthorization;
|
|
19572
19751
|
export declare type AdyenInternalCancel = io.flow.internal.v0.models.AdyenInternalCancel;
|
|
19573
19752
|
export declare type AdyenInternalCapture = io.flow.internal.v0.models.AdyenInternalCapture;
|
|
@@ -19770,6 +19949,7 @@ export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.Cha
|
|
|
19770
19949
|
export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
19771
19950
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
19772
19951
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
19952
|
+
export declare type ChannelTransactionType = io.flow.internal.v0.enums.ChannelTransactionType;
|
|
19773
19953
|
export declare type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
19774
19954
|
export declare type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
19775
19955
|
export declare type ChargebackPaymentStatus = io.flow.internal.v0.enums.ChargebackPaymentStatus;
|
|
@@ -20377,6 +20557,19 @@ export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.Da
|
|
|
20377
20557
|
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
20378
20558
|
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
20379
20559
|
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
20560
|
+
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
20561
|
+
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
20562
|
+
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
20563
|
+
export declare type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
20564
|
+
export declare type DebugOrderTransaction = io.flow.internal.v0.models.DebugOrderTransaction;
|
|
20565
|
+
export declare type DebugOrderTransactionForm = io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
20566
|
+
export declare type DebugOrderTransactionFormOrderIdentifier = io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
20567
|
+
export declare type DebugPaymentTransactionSummary = io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
20568
|
+
export declare type DebugTransactionDetails = io.flow.internal.v0.models.DebugTransactionDetails;
|
|
20569
|
+
export declare type DebugTransactionDetailsStatus = io.flow.internal.v0.models.DebugTransactionDetailsStatus;
|
|
20570
|
+
export declare type DebugTransactionFx = io.flow.internal.v0.models.DebugTransactionFx;
|
|
20571
|
+
export declare type DebugTransactionFxRate = io.flow.internal.v0.models.DebugTransactionFxRate;
|
|
20572
|
+
export declare type DebugTransactionQueued = io.flow.internal.v0.models.DebugTransactionQueued;
|
|
20380
20573
|
export declare type Decision = io.flow.internal.v0.models.Decision;
|
|
20381
20574
|
export declare type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
20382
20575
|
export declare type DeclineReasonChannelOrderAcceptance = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
@@ -20704,6 +20897,7 @@ export declare type InternalCardAuthorizationDetails = io.flow.internal.v0.model
|
|
|
20704
20897
|
export declare type InternalChannelRate = io.flow.internal.v0.models.InternalChannelRate;
|
|
20705
20898
|
export declare type InternalChannelRateDeleted = io.flow.internal.v0.models.InternalChannelRateDeleted;
|
|
20706
20899
|
export declare type InternalChannelRateUpserted = io.flow.internal.v0.models.InternalChannelRateUpserted;
|
|
20900
|
+
export declare type InternalDebugTransaction = io.flow.internal.v0.models.InternalDebugTransaction;
|
|
20707
20901
|
export declare type InternalExclusionRuleForm = io.flow.internal.v0.models.InternalExclusionRuleForm;
|
|
20708
20902
|
export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
20709
20903
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
@@ -20965,14 +21159,19 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
20965
21159
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
20966
21160
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
20967
21161
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
21162
|
+
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
20968
21163
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
20969
21164
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
20970
21165
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
20971
21166
|
export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21167
|
+
export declare type OrganizationPaymentSettingDeleted = io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
20972
21168
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
21169
|
+
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
20973
21170
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
20974
21171
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
20975
21172
|
export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
21173
|
+
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
21174
|
+
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
20976
21175
|
export declare type OrganizationRestrictionSummary = io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
20977
21176
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
20978
21177
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
@@ -20992,6 +21191,8 @@ export declare type PartnerOrganizationAuthorizationForm = io.flow.internal.v0.m
|
|
|
20992
21191
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
20993
21192
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
20994
21193
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
21194
|
+
export declare type PaymentMethodDetail = io.flow.internal.v0.models.PaymentMethodDetail;
|
|
21195
|
+
export declare type PaymentMethodOption = io.flow.internal.v0.models.PaymentMethodOption;
|
|
20995
21196
|
export declare type PaymentOrganizationSettings = io.flow.internal.v0.models.PaymentOrganizationSettings;
|
|
20996
21197
|
export declare type PaymentOrganizationSettingsPutForm = io.flow.internal.v0.models.PaymentOrganizationSettingsPutForm;
|
|
20997
21198
|
export declare type PaymentProcessorAccountDeleted = io.flow.internal.v0.models.PaymentProcessorAccountDeleted;
|