@flowio/types 11.24.31 → 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 +338 -122
- package/dist/api.d.ts +36 -23
- package/package.json +2 -2
- package/src/api-internal.ts +443 -130
- package/src/api.ts +41 -26
package/dist/api-internal.d.ts
CHANGED
|
@@ -214,7 +214,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
214
214
|
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
215
215
|
readonly name?: string;
|
|
216
216
|
readonly rate?: number;
|
|
217
|
-
readonly accuracy
|
|
217
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
218
218
|
readonly rate_label?: string;
|
|
219
219
|
}
|
|
220
220
|
interface OrderPriceDetailComponent {
|
|
@@ -327,7 +327,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
327
327
|
}
|
|
328
328
|
interface DiscountForm {
|
|
329
329
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
330
|
-
readonly target
|
|
330
|
+
readonly target?: io.flow.common.v0.enums.DiscountTarget;
|
|
331
331
|
readonly label?: string;
|
|
332
332
|
}
|
|
333
333
|
interface DiscountOfferFixed {
|
|
@@ -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;
|
|
@@ -479,7 +494,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
479
494
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
480
495
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
481
496
|
readonly created_at?: string;
|
|
482
|
-
readonly status
|
|
497
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
483
498
|
}
|
|
484
499
|
interface OrganizationDefaults {
|
|
485
500
|
readonly country: string;
|
|
@@ -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
|
}
|
|
@@ -651,7 +667,7 @@ declare namespace io.flow.price.v0.models {
|
|
|
651
667
|
readonly currency: string;
|
|
652
668
|
readonly name: string;
|
|
653
669
|
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
654
|
-
readonly status
|
|
670
|
+
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
655
671
|
}
|
|
656
672
|
interface PriceBookItem {
|
|
657
673
|
readonly id: string;
|
|
@@ -1071,7 +1087,7 @@ declare namespace io.flow.RESERVED_WORD_export.v0.models {
|
|
|
1071
1087
|
readonly item_numbers?: string[];
|
|
1072
1088
|
readonly start_date?: string;
|
|
1073
1089
|
readonly end_date?: string;
|
|
1074
|
-
readonly item_identifier
|
|
1090
|
+
readonly item_identifier?: io.flow.RESERVED_WORD_export.v0.enums.ItemIdentifier;
|
|
1075
1091
|
}
|
|
1076
1092
|
interface ScheduledExport {
|
|
1077
1093
|
readonly id: string;
|
|
@@ -1521,7 +1537,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1521
1537
|
readonly requested?: io.flow.common.v0.models.Money;
|
|
1522
1538
|
readonly created_at: string;
|
|
1523
1539
|
readonly attributes?: Record<string, string>;
|
|
1524
|
-
readonly status
|
|
1540
|
+
readonly status?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1525
1541
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1526
1542
|
}
|
|
1527
1543
|
interface CaptureError {
|
|
@@ -1569,7 +1585,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1569
1585
|
readonly discriminator: 'card_authorization';
|
|
1570
1586
|
readonly id: string;
|
|
1571
1587
|
readonly key: string;
|
|
1572
|
-
readonly merchant_of_record
|
|
1588
|
+
readonly merchant_of_record?: io.flow.common.v0.enums.MerchantOfRecord;
|
|
1573
1589
|
readonly method?: io.flow.reference.v0.models.PaymentMethod;
|
|
1574
1590
|
readonly card: io.flow.payment.v0.unions.ExpandableCard;
|
|
1575
1591
|
readonly amount: number;
|
|
@@ -1734,12 +1750,6 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1734
1750
|
readonly ip?: string;
|
|
1735
1751
|
readonly payload?: io.flow.payment.v0.models.AuthorizationPayload;
|
|
1736
1752
|
}
|
|
1737
|
-
interface Installment {
|
|
1738
|
-
readonly discriminator: 'installment';
|
|
1739
|
-
readonly first_name?: string;
|
|
1740
|
-
readonly last_name?: string;
|
|
1741
|
-
readonly response_code?: string;
|
|
1742
|
-
}
|
|
1743
1753
|
interface IssuerReference {
|
|
1744
1754
|
readonly id: string;
|
|
1745
1755
|
}
|
|
@@ -1793,7 +1803,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1793
1803
|
readonly id: string;
|
|
1794
1804
|
readonly key: string;
|
|
1795
1805
|
readonly method?: io.flow.reference.v0.models.PaymentMethod;
|
|
1796
|
-
readonly merchant_of_record
|
|
1806
|
+
readonly merchant_of_record?: io.flow.common.v0.enums.MerchantOfRecord;
|
|
1797
1807
|
readonly details?: io.flow.payment.v0.unions.OnlineAuthorizationDetails;
|
|
1798
1808
|
readonly payment?: any;
|
|
1799
1809
|
readonly amount: number;
|
|
@@ -1933,7 +1943,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1933
1943
|
readonly captures: io.flow.payment.v0.models.RefundCaptureSummary[];
|
|
1934
1944
|
readonly created_at: string;
|
|
1935
1945
|
readonly attributes?: Record<string, string>;
|
|
1936
|
-
readonly status
|
|
1946
|
+
readonly status?: io.flow.payment.v0.enums.RefundStatus;
|
|
1937
1947
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1938
1948
|
}
|
|
1939
1949
|
interface RefundCapture {
|
|
@@ -1943,7 +1953,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1943
1953
|
readonly amount: number;
|
|
1944
1954
|
readonly currency: string;
|
|
1945
1955
|
readonly base: io.flow.common.v0.models.Money;
|
|
1946
|
-
readonly status
|
|
1956
|
+
readonly status?: io.flow.payment.v0.enums.RefundStatus;
|
|
1947
1957
|
}
|
|
1948
1958
|
interface RefundCaptureSummary {
|
|
1949
1959
|
readonly capture: io.flow.payment.v0.models.Capture;
|
|
@@ -2141,7 +2151,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2141
2151
|
type AuthorizationResultAction = io.flow.payment.v0.models.AuthorizationResultActionGet | io.flow.payment.v0.models.AuthorizationResultActionPost | io.flow.payment.v0.models.AuthorizationResultActionWait | io.flow.payment.v0.models.AuthorizationResultActionNative;
|
|
2142
2152
|
type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
2143
2153
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
2144
|
-
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit
|
|
2154
|
+
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit;
|
|
2145
2155
|
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
2146
2156
|
type ExpandablePaymentProcessor = io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference;
|
|
2147
2157
|
type GatewayAuthenticationData = io.flow.payment.v0.models.StripeAuthenticationData;
|
|
@@ -2530,7 +2540,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2530
2540
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2531
2541
|
readonly payment_method_types?: string[];
|
|
2532
2542
|
readonly receipt_email?: string;
|
|
2533
|
-
readonly save_payment_method
|
|
2543
|
+
readonly save_payment_method?: boolean;
|
|
2534
2544
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2535
2545
|
}
|
|
2536
2546
|
interface PaymentIntentForm {
|
|
@@ -2550,7 +2560,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2550
2560
|
readonly payment_method_types?: string[];
|
|
2551
2561
|
readonly receipt_email?: string;
|
|
2552
2562
|
readonly return_url?: string;
|
|
2553
|
-
readonly save_payment_method
|
|
2563
|
+
readonly save_payment_method?: boolean;
|
|
2554
2564
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2555
2565
|
readonly statement_descriptor?: string;
|
|
2556
2566
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -2566,7 +2576,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2566
2576
|
readonly payment_method?: string;
|
|
2567
2577
|
readonly payment_method_types?: string[];
|
|
2568
2578
|
readonly receipt_email?: string;
|
|
2569
|
-
readonly save_payment_method
|
|
2579
|
+
readonly save_payment_method?: boolean;
|
|
2570
2580
|
readonly statement_descriptor?: string;
|
|
2571
2581
|
readonly statement_descriptor_suffix?: string;
|
|
2572
2582
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -3550,14 +3560,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3550
3560
|
readonly currency: string;
|
|
3551
3561
|
readonly posData?: string;
|
|
3552
3562
|
readonly notificationURL?: string;
|
|
3553
|
-
readonly transactionSpeed
|
|
3563
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3554
3564
|
readonly fullNotifications?: boolean;
|
|
3555
3565
|
readonly notificationEmail?: string;
|
|
3556
3566
|
readonly redirectURL?: string;
|
|
3557
3567
|
readonly orderId?: string;
|
|
3558
3568
|
readonly itemDesc?: string;
|
|
3559
3569
|
readonly itemCode?: string;
|
|
3560
|
-
readonly physical
|
|
3570
|
+
readonly physical?: boolean;
|
|
3561
3571
|
readonly buyerName?: string;
|
|
3562
3572
|
readonly buyerAddress1?: string;
|
|
3563
3573
|
readonly buyerAddress2?: string;
|
|
@@ -3608,12 +3618,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3608
3618
|
readonly currency: string;
|
|
3609
3619
|
readonly posData?: string;
|
|
3610
3620
|
readonly notificationURL?: string;
|
|
3611
|
-
readonly transactionSpeed
|
|
3621
|
+
readonly transactionSpeed?: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3612
3622
|
readonly fullNotifications?: boolean;
|
|
3613
3623
|
readonly extendedNotifications?: boolean;
|
|
3614
3624
|
readonly redirectURL?: string;
|
|
3615
3625
|
readonly orderId?: string;
|
|
3616
|
-
readonly physical
|
|
3626
|
+
readonly physical?: boolean;
|
|
3617
3627
|
readonly buyerName?: string;
|
|
3618
3628
|
readonly buyerAddress1?: string;
|
|
3619
3629
|
readonly buyerAddress2?: string;
|
|
@@ -3792,9 +3802,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3792
3802
|
type Contract = 'RECURRING';
|
|
3793
3803
|
type DeviceChannel = 'app' | 'browser';
|
|
3794
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';
|
|
3795
|
-
type
|
|
3805
|
+
type Method = 'GET' | 'POST';
|
|
3796
3806
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3797
|
-
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';
|
|
3798
3808
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3799
3809
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3800
3810
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3813,10 +3823,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3813
3823
|
readonly value: number;
|
|
3814
3824
|
readonly currency: string;
|
|
3815
3825
|
}
|
|
3816
|
-
interface Applepay {
|
|
3817
|
-
readonly type: 'applepay';
|
|
3818
|
-
readonly applePayToken: string;
|
|
3819
|
-
}
|
|
3820
3826
|
interface Authentication {
|
|
3821
3827
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3822
3828
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3843,8 +3849,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3843
3849
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3844
3850
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3845
3851
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3846
|
-
readonly mcc?: string;
|
|
3847
|
-
readonly metadata?: any;
|
|
3848
3852
|
}
|
|
3849
3853
|
interface AuthorizeRequest3D {
|
|
3850
3854
|
readonly merchantAccount: string;
|
|
@@ -3978,12 +3982,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3978
3982
|
readonly details: any;
|
|
3979
3983
|
readonly paymentData?: string;
|
|
3980
3984
|
}
|
|
3981
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
3982
|
-
readonly 'threeds2.challengeResult': string;
|
|
3983
|
-
}
|
|
3984
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
3985
|
-
readonly 'threeds2.fingerprint': string;
|
|
3986
|
-
}
|
|
3987
3985
|
interface PaymentRequest {
|
|
3988
3986
|
readonly reference: string;
|
|
3989
3987
|
readonly merchantAccount: string;
|
|
@@ -4005,11 +4003,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4005
4003
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4006
4004
|
readonly origin?: string;
|
|
4007
4005
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
4008
|
-
readonly
|
|
4009
|
-
readonly mcc?: string;
|
|
4010
|
-
readonly metadata?: any;
|
|
4011
|
-
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4012
|
-
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4006
|
+
readonly returnURL?: string;
|
|
4013
4007
|
}
|
|
4014
4008
|
interface PaymentResponse {
|
|
4015
4009
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -4024,50 +4018,19 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4024
4018
|
interface PaymentResponseAdditionalData {
|
|
4025
4019
|
readonly authCode?: string;
|
|
4026
4020
|
readonly avsResultRaw?: string;
|
|
4027
|
-
readonly avsResult?: string;
|
|
4028
4021
|
readonly cvcResultRaw?: string;
|
|
4029
|
-
readonly cvcResult?: string;
|
|
4030
|
-
readonly refusalReasonRaw?: string;
|
|
4031
4022
|
readonly liabilityShift?: string;
|
|
4032
4023
|
readonly threeDAuthenticated?: string;
|
|
4033
4024
|
readonly threeDAuthenticatedResponse?: string;
|
|
4034
4025
|
readonly threeDOffered?: string;
|
|
4035
4026
|
readonly threeDOfferedResponse?: string;
|
|
4036
|
-
readonly threeDSVersion?: string;
|
|
4037
|
-
readonly eci?: string;
|
|
4038
|
-
readonly scaExemptionRequested?: string;
|
|
4039
|
-
readonly paymentMethod?: string;
|
|
4040
|
-
readonly paymentMethodVariant?: string;
|
|
4041
|
-
readonly tokenTxVariant?: string;
|
|
4042
|
-
readonly acquirerCode?: string;
|
|
4043
|
-
readonly acquirerAccountCode?: string;
|
|
4044
|
-
readonly cardPaymentMethod?: string;
|
|
4045
|
-
readonly coBrandedWith?: string;
|
|
4046
|
-
readonly cardIssuingCountry?: string;
|
|
4047
|
-
readonly cardIssuingCurrency?: string;
|
|
4048
|
-
readonly cardIssuingBank?: string;
|
|
4049
|
-
readonly cardBin?: string;
|
|
4050
|
-
readonly issuerBin?: string;
|
|
4051
|
-
readonly cardSummary?: string;
|
|
4052
|
-
readonly untokenisedCardSummary?: string;
|
|
4053
|
-
readonly ownerName?: string;
|
|
4054
|
-
readonly bankName?: string;
|
|
4055
|
-
readonly issuerCountry?: string;
|
|
4056
|
-
readonly iban?: string;
|
|
4057
|
-
readonly bic?: string;
|
|
4058
|
-
readonly iDealConsumerAccountNumber?: string;
|
|
4059
|
-
readonly iDealConsumerBIC?: string;
|
|
4060
|
-
readonly iDealConsumerCity?: string;
|
|
4061
|
-
readonly iDealConsumerIBAN?: string;
|
|
4062
|
-
readonly iDealConsumerName?: string;
|
|
4063
|
-
readonly iDealTransactionId?: string;
|
|
4064
4027
|
}
|
|
4065
4028
|
interface Recurring {
|
|
4066
4029
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
4067
4030
|
}
|
|
4068
4031
|
interface Redirect {
|
|
4069
4032
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
4070
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
4033
|
+
readonly method?: io.flow.adyen.v0.enums.Method;
|
|
4071
4034
|
readonly url?: string;
|
|
4072
4035
|
}
|
|
4073
4036
|
interface RedirectData {
|
|
@@ -4088,13 +4051,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4088
4051
|
readonly number: string;
|
|
4089
4052
|
readonly cvc?: string;
|
|
4090
4053
|
}
|
|
4091
|
-
interface SdkV3OnCompleteData {
|
|
4092
|
-
readonly details: any;
|
|
4093
|
-
readonly payment_data?: string;
|
|
4094
|
-
}
|
|
4095
|
-
interface SdkV3OnCompleteResult {
|
|
4096
|
-
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4097
|
-
}
|
|
4098
4054
|
interface ThreeDSecureData {
|
|
4099
4055
|
readonly authenticationResponse?: string;
|
|
4100
4056
|
readonly cavv?: string;
|
|
@@ -4120,7 +4076,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4120
4076
|
}
|
|
4121
4077
|
declare namespace io.flow.adyen.v0.unions {
|
|
4122
4078
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
4123
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme
|
|
4079
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
4124
4080
|
}
|
|
4125
4081
|
declare namespace io.flow.order.management.v0.enums {
|
|
4126
4082
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -4301,7 +4257,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4301
4257
|
interface Product {
|
|
4302
4258
|
readonly id: number;
|
|
4303
4259
|
readonly handle: string;
|
|
4304
|
-
readonly variants
|
|
4260
|
+
readonly variants?: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
4305
4261
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
4306
4262
|
readonly title: string;
|
|
4307
4263
|
readonly vendor?: string;
|
|
@@ -4456,7 +4412,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4456
4412
|
readonly title: string;
|
|
4457
4413
|
}
|
|
4458
4414
|
interface ShopifyClientDetail {
|
|
4459
|
-
readonly accept_language
|
|
4415
|
+
readonly accept_language?: boolean;
|
|
4460
4416
|
readonly browser_height?: number;
|
|
4461
4417
|
readonly browser_ip?: string;
|
|
4462
4418
|
readonly browser_width?: number;
|
|
@@ -4471,7 +4427,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4471
4427
|
readonly tax_exempt: boolean;
|
|
4472
4428
|
readonly verified_email: boolean;
|
|
4473
4429
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
4474
|
-
readonly accepts_marketing
|
|
4430
|
+
readonly accepts_marketing?: boolean;
|
|
4475
4431
|
readonly default_address?: any;
|
|
4476
4432
|
readonly email?: string;
|
|
4477
4433
|
readonly first_name?: string;
|
|
@@ -4543,7 +4499,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4543
4499
|
readonly requires_shipping: boolean;
|
|
4544
4500
|
readonly currency?: string;
|
|
4545
4501
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
4546
|
-
readonly cart_level_discount_applications
|
|
4502
|
+
readonly cart_level_discount_applications?: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
4547
4503
|
}
|
|
4548
4504
|
interface ShopifyExternalCartItem {
|
|
4549
4505
|
readonly id: number;
|
|
@@ -4557,7 +4513,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4557
4513
|
readonly original_line_price: number;
|
|
4558
4514
|
readonly total_discount: number;
|
|
4559
4515
|
readonly discounted_price: number;
|
|
4560
|
-
readonly discounts
|
|
4516
|
+
readonly discounts?: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
4561
4517
|
readonly taxable: boolean;
|
|
4562
4518
|
readonly quantity: number;
|
|
4563
4519
|
readonly sku?: string;
|
|
@@ -4575,8 +4531,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4575
4531
|
readonly product_description?: string;
|
|
4576
4532
|
readonly product_type: string;
|
|
4577
4533
|
readonly variant_title?: string;
|
|
4578
|
-
readonly variant_options
|
|
4579
|
-
readonly line_level_discount_allocations
|
|
4534
|
+
readonly variant_options?: string[];
|
|
4535
|
+
readonly line_level_discount_allocations?: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
4580
4536
|
}
|
|
4581
4537
|
interface ShopifyFulfillment {
|
|
4582
4538
|
readonly location_id: number;
|
|
@@ -4796,11 +4752,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4796
4752
|
readonly updated_at?: string;
|
|
4797
4753
|
readonly user_id?: number;
|
|
4798
4754
|
readonly order_status_url?: string;
|
|
4799
|
-
readonly inventory_behaviour
|
|
4755
|
+
readonly inventory_behaviour?: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
4800
4756
|
readonly gateway?: string;
|
|
4801
4757
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
4802
4758
|
readonly send_receipt?: boolean;
|
|
4803
|
-
readonly metafields
|
|
4759
|
+
readonly metafields?: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
4804
4760
|
}
|
|
4805
4761
|
interface ShopifyOrderCount {
|
|
4806
4762
|
readonly count: number;
|
|
@@ -4921,7 +4877,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4921
4877
|
}
|
|
4922
4878
|
interface ShopifyWebhookOrder {
|
|
4923
4879
|
readonly id?: number;
|
|
4924
|
-
readonly line_items
|
|
4880
|
+
readonly line_items?: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
4925
4881
|
}
|
|
4926
4882
|
interface ShopifyWebhookOrderCancelled {
|
|
4927
4883
|
readonly id: number;
|
|
@@ -5190,7 +5146,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5190
5146
|
readonly updated_at?: string;
|
|
5191
5147
|
readonly user_id?: number;
|
|
5192
5148
|
readonly order_status_url?: string;
|
|
5193
|
-
readonly inventory_behaviour
|
|
5149
|
+
readonly inventory_behaviour?: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
5194
5150
|
readonly gateway?: string;
|
|
5195
5151
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
5196
5152
|
readonly send_receipt?: boolean;
|
|
@@ -5224,7 +5180,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5224
5180
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
5225
5181
|
}
|
|
5226
5182
|
interface ShopifyOrderClientDetail {
|
|
5227
|
-
readonly accept_language
|
|
5183
|
+
readonly accept_language?: string;
|
|
5228
5184
|
readonly browser_height?: number;
|
|
5229
5185
|
readonly browser_ip?: string;
|
|
5230
5186
|
readonly browser_width?: number;
|
|
@@ -5445,7 +5401,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5445
5401
|
readonly kind: io.flow.shopify.markets.v0.enums.ShopifyOrderKindType;
|
|
5446
5402
|
readonly gateway: string;
|
|
5447
5403
|
readonly currency: string;
|
|
5448
|
-
readonly status
|
|
5404
|
+
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
5449
5405
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
5450
5406
|
readonly receipt: any;
|
|
5451
5407
|
readonly authorization?: string;
|
|
@@ -5933,12 +5889,12 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5933
5889
|
}
|
|
5934
5890
|
interface PaymentDiscount {
|
|
5935
5891
|
readonly amount: number;
|
|
5936
|
-
readonly name
|
|
5892
|
+
readonly name?: string;
|
|
5937
5893
|
readonly code?: string;
|
|
5938
5894
|
}
|
|
5939
5895
|
interface PaymentDuty {
|
|
5940
5896
|
readonly amount: number;
|
|
5941
|
-
readonly name
|
|
5897
|
+
readonly name?: string;
|
|
5942
5898
|
}
|
|
5943
5899
|
interface PaymentFailure {
|
|
5944
5900
|
readonly authorization_id?: string;
|
|
@@ -6194,7 +6150,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6194
6150
|
}
|
|
6195
6151
|
interface PaymentTax {
|
|
6196
6152
|
readonly amount: number;
|
|
6197
|
-
readonly name
|
|
6153
|
+
readonly name?: string;
|
|
6198
6154
|
}
|
|
6199
6155
|
interface Shipping {
|
|
6200
6156
|
readonly description: string;
|
|
@@ -6346,7 +6302,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
6346
6302
|
readonly country: string;
|
|
6347
6303
|
readonly field_validation: io.flow.experience.v0.models.AddressFieldValidation;
|
|
6348
6304
|
readonly provinces: io.flow.experience.v0.models.AddressConfigurationProvince[];
|
|
6349
|
-
readonly formats
|
|
6305
|
+
readonly formats?: io.flow.experience.v0.models.AddressConfigurationFormat[];
|
|
6350
6306
|
readonly province_type?: io.flow.reference.v0.enums.ProvinceType;
|
|
6351
6307
|
readonly postal_type?: io.flow.reference.v0.enums.PostalType;
|
|
6352
6308
|
}
|
|
@@ -6398,7 +6354,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
6398
6354
|
readonly rate: number;
|
|
6399
6355
|
readonly name: string;
|
|
6400
6356
|
readonly price?: io.flow.common.v0.models.PriceWithBase;
|
|
6401
|
-
readonly accuracy
|
|
6357
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
6402
6358
|
readonly basis?: io.flow.common.v0.models.MoneyWithBase;
|
|
6403
6359
|
}
|
|
6404
6360
|
interface AllocationLineDetail {
|
|
@@ -6827,7 +6783,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
6827
6783
|
readonly discriminator: 'order';
|
|
6828
6784
|
readonly id: string;
|
|
6829
6785
|
readonly number: string;
|
|
6830
|
-
readonly order_type
|
|
6786
|
+
readonly order_type?: io.flow.experience.v0.enums.OrderType;
|
|
6831
6787
|
readonly merchant_of_record?: io.flow.common.v0.enums.OrderMerchantOfRecord;
|
|
6832
6788
|
readonly experience?: io.flow.experience.v0.unions.ExpandableExperience;
|
|
6833
6789
|
readonly customer: io.flow.common.v0.models.OrderCustomer;
|
|
@@ -6981,7 +6937,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
6981
6937
|
}
|
|
6982
6938
|
interface OrderNumberGeneratorUuid {
|
|
6983
6939
|
readonly discriminator: 'uuid';
|
|
6984
|
-
readonly prefix
|
|
6940
|
+
readonly prefix?: string;
|
|
6985
6941
|
}
|
|
6986
6942
|
interface OrderNumberReference {
|
|
6987
6943
|
readonly number: string;
|
|
@@ -6992,13 +6948,13 @@ declare namespace io.flow.experience.v0.models {
|
|
|
6992
6948
|
interface OrderPayment {
|
|
6993
6949
|
readonly id: string;
|
|
6994
6950
|
readonly type: io.flow.experience.v0.enums.OrderPaymentType;
|
|
6995
|
-
readonly merchant_of_record
|
|
6951
|
+
readonly merchant_of_record?: io.flow.common.v0.enums.MerchantOfRecord;
|
|
6996
6952
|
readonly reference: string;
|
|
6997
6953
|
readonly description: string;
|
|
6998
6954
|
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
6999
6955
|
readonly address?: io.flow.common.v0.models.BillingAddress;
|
|
7000
6956
|
readonly date?: string;
|
|
7001
|
-
readonly attributes
|
|
6957
|
+
readonly attributes?: Record<string, string>;
|
|
7002
6958
|
readonly method?: string;
|
|
7003
6959
|
}
|
|
7004
6960
|
interface OrderPromotionTrigger {
|
|
@@ -7006,7 +6962,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7006
6962
|
readonly min?: io.flow.common.v0.models.Price;
|
|
7007
6963
|
}
|
|
7008
6964
|
interface OrderPutForm {
|
|
7009
|
-
readonly order_type
|
|
6965
|
+
readonly order_type?: io.flow.experience.v0.enums.OrderType;
|
|
7010
6966
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
7011
6967
|
readonly customer?: io.flow.common.v0.models.OrderCustomerForm;
|
|
7012
6968
|
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
@@ -7083,7 +7039,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7083
7039
|
readonly filename?: string;
|
|
7084
7040
|
}
|
|
7085
7041
|
interface OrderSubmissionForm {
|
|
7086
|
-
readonly identifiers
|
|
7042
|
+
readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
|
|
7087
7043
|
}
|
|
7088
7044
|
interface OrderSubmissionIdentifierForm {
|
|
7089
7045
|
readonly identifier: string;
|
|
@@ -7159,6 +7115,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7159
7115
|
interface PaymentMethodIssuer {
|
|
7160
7116
|
readonly id: string;
|
|
7161
7117
|
readonly name: string;
|
|
7118
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
7162
7119
|
}
|
|
7163
7120
|
interface PaymentMethodRule {
|
|
7164
7121
|
readonly tags: io.flow.experience.v0.unions.PaymentMethodTag[];
|
|
@@ -7455,7 +7412,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7455
7412
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7456
7413
|
readonly service: string;
|
|
7457
7414
|
readonly number?: string;
|
|
7458
|
-
readonly ratecard_owner
|
|
7415
|
+
readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7459
7416
|
}
|
|
7460
7417
|
interface RatecardLane {
|
|
7461
7418
|
readonly id: string;
|
|
@@ -7958,7 +7915,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7958
7915
|
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
7959
7916
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
7960
7917
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7961
|
-
readonly indirect_tax_number?: string;
|
|
7962
7918
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7963
7919
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7964
7920
|
readonly beneficiary?: string;
|
|
@@ -7987,7 +7943,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7987
7943
|
interface ShopifyMerchantApplicationForm {
|
|
7988
7944
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
7989
7945
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7990
|
-
readonly indirect_tax_number?: string;
|
|
7991
7946
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
7992
7947
|
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
7993
7948
|
readonly beneficiary?: string;
|
|
@@ -8223,7 +8178,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
8223
8178
|
readonly base: io.flow.common.v0.models.Price;
|
|
8224
8179
|
readonly name: string;
|
|
8225
8180
|
readonly adjustment?: io.flow.catalog.v0.models.LocalizedAdjustment;
|
|
8226
|
-
readonly accuracy
|
|
8181
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
8227
8182
|
readonly basis?: io.flow.common.v0.models.MoneyWithBase;
|
|
8228
8183
|
}
|
|
8229
8184
|
interface LocalizedTotal {
|
|
@@ -8368,7 +8323,7 @@ declare namespace io.flow.inventory.v0.models {
|
|
|
8368
8323
|
}
|
|
8369
8324
|
interface InventoryUnlimited {
|
|
8370
8325
|
readonly discriminator: 'inventory_unlimited';
|
|
8371
|
-
readonly placeholder
|
|
8326
|
+
readonly placeholder?: string;
|
|
8372
8327
|
}
|
|
8373
8328
|
interface InventoryUpdate {
|
|
8374
8329
|
readonly id: string;
|
|
@@ -8567,6 +8522,103 @@ declare namespace io.flow.item.v0.models {
|
|
|
8567
8522
|
readonly price_attributes?: Record<string, io.flow.item.v0.models.LocalItemAttributePricing>;
|
|
8568
8523
|
}
|
|
8569
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
|
+
}
|
|
8570
8622
|
declare namespace io.flow.harmonization.v0.enums {
|
|
8571
8623
|
type TaxApplicability = 'none' | 'all';
|
|
8572
8624
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -9692,7 +9744,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
9692
9744
|
readonly organization: string;
|
|
9693
9745
|
readonly email: string;
|
|
9694
9746
|
readonly name?: io.flow.common.v0.models.Name;
|
|
9695
|
-
readonly role
|
|
9747
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
9696
9748
|
readonly roles?: io.flow.permission.v0.enums.FlowRole[];
|
|
9697
9749
|
}
|
|
9698
9750
|
interface InvitationVersion {
|
|
@@ -9711,12 +9763,12 @@ declare namespace io.flow.organization.v0.models {
|
|
|
9711
9763
|
interface MembershipForm {
|
|
9712
9764
|
readonly organization: string;
|
|
9713
9765
|
readonly user: string;
|
|
9714
|
-
readonly role
|
|
9715
|
-
readonly roles
|
|
9766
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
9767
|
+
readonly roles?: io.flow.permission.v0.enums.FlowRole[];
|
|
9716
9768
|
}
|
|
9717
9769
|
interface MembershipPutForm {
|
|
9718
|
-
readonly role
|
|
9719
|
-
readonly roles
|
|
9770
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
9771
|
+
readonly roles?: io.flow.permission.v0.enums.FlowRole[];
|
|
9720
9772
|
}
|
|
9721
9773
|
interface MembershipVersion {
|
|
9722
9774
|
readonly id: string;
|
|
@@ -9748,14 +9800,14 @@ declare namespace io.flow.organization.v0.models {
|
|
|
9748
9800
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
9749
9801
|
readonly parent_id?: string;
|
|
9750
9802
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
9751
|
-
readonly status
|
|
9803
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9752
9804
|
}
|
|
9753
9805
|
interface OrganizationPutForm {
|
|
9754
9806
|
readonly name?: string;
|
|
9755
9807
|
readonly environment?: io.flow.common.v0.enums.Environment;
|
|
9756
9808
|
readonly parent_id?: string;
|
|
9757
9809
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
9758
|
-
readonly status
|
|
9810
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9759
9811
|
}
|
|
9760
9812
|
interface OrganizationVersion {
|
|
9761
9813
|
readonly id: string;
|
|
@@ -9873,6 +9925,7 @@ declare namespace io.flow.session.v0.unions {
|
|
|
9873
9925
|
declare namespace io.flow.internal.v0.enums {
|
|
9874
9926
|
type AccountType = 'channel' | 'organization';
|
|
9875
9927
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
9928
|
+
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
9876
9929
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
9877
9930
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
9878
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';
|
|
@@ -9889,6 +9942,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9889
9942
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
9890
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';
|
|
9891
9944
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
9945
|
+
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
9892
9946
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
9893
9947
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
9894
9948
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -9990,7 +10044,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9990
10044
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
9991
10045
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
9992
10046
|
type EmptyAttribute = 'irrelevant';
|
|
9993
|
-
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';
|
|
9994
10048
|
type ExperienceImportType = 'experience_with_settings';
|
|
9995
10049
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
9996
10050
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10102,7 +10156,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10102
10156
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10103
10157
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10104
10158
|
type TariffEligibilityType = 'rex';
|
|
10105
|
-
type TaskProcessorKey = 'billing_account' | 'carrier_account';
|
|
10159
|
+
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'carrier_account' | 'label_generation_settings';
|
|
10106
10160
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10107
10161
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10108
10162
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -10377,6 +10431,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10377
10431
|
readonly account_id: string;
|
|
10378
10432
|
readonly merchant_account: string;
|
|
10379
10433
|
readonly origin_key?: string;
|
|
10434
|
+
readonly integration_type?: io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
10380
10435
|
}
|
|
10381
10436
|
interface AdyenAuthenticationForm {
|
|
10382
10437
|
readonly username: string;
|
|
@@ -10862,6 +10917,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10862
10917
|
readonly number: string;
|
|
10863
10918
|
readonly submitted_at: string;
|
|
10864
10919
|
readonly primary_identifier?: string;
|
|
10920
|
+
readonly identifiers?: Record<string, string>;
|
|
10865
10921
|
readonly destination?: io.flow.internal.v0.models.BillingOrderDestination;
|
|
10866
10922
|
}
|
|
10867
10923
|
interface BillingOrderTransactionOrderReference {
|
|
@@ -11226,6 +11282,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11226
11282
|
interface BrowserBundlePaymentMethods {
|
|
11227
11283
|
readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
|
|
11228
11284
|
}
|
|
11285
|
+
interface ByRuleSnapshot {
|
|
11286
|
+
readonly id: string;
|
|
11287
|
+
readonly name: string;
|
|
11288
|
+
readonly open_decision_count: number;
|
|
11289
|
+
readonly restricted_product_count: number;
|
|
11290
|
+
}
|
|
11229
11291
|
interface CalculatedTaxAmount {
|
|
11230
11292
|
readonly discriminator: 'calculated_tax_amount';
|
|
11231
11293
|
readonly amount: number;
|
|
@@ -11423,6 +11485,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11423
11485
|
readonly payment_request_id?: string;
|
|
11424
11486
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11425
11487
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
11488
|
+
readonly order_created_at?: string;
|
|
11426
11489
|
}
|
|
11427
11490
|
interface ChannelOrderAcceptanceDeleted {
|
|
11428
11491
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -12666,6 +12729,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12666
12729
|
interface CheckoutPaymentMethodIssuer {
|
|
12667
12730
|
readonly id: string;
|
|
12668
12731
|
readonly name: string;
|
|
12732
|
+
readonly logo?: io.flow.common.v0.unions.LogoImage;
|
|
12669
12733
|
}
|
|
12670
12734
|
interface CheckoutPaymentSourceOption {
|
|
12671
12735
|
readonly id: string;
|
|
@@ -13636,6 +13700,77 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13636
13700
|
readonly organization_id: string;
|
|
13637
13701
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
13638
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
|
+
}
|
|
13639
13774
|
interface Decision {
|
|
13640
13775
|
readonly id: string;
|
|
13641
13776
|
readonly status: string;
|
|
@@ -15609,6 +15744,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15609
15744
|
readonly timestamp: string;
|
|
15610
15745
|
readonly rate: io.flow.internal.v0.models.InternalChannelRate;
|
|
15611
15746
|
}
|
|
15747
|
+
interface InternalDebugTransaction {
|
|
15748
|
+
readonly debug: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
15749
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
15750
|
+
}
|
|
15612
15751
|
interface InternalExclusionRuleForm {
|
|
15613
15752
|
readonly id: string;
|
|
15614
15753
|
readonly export_id: string;
|
|
@@ -16970,6 +17109,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16970
17109
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16971
17110
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
16972
17111
|
}
|
|
17112
|
+
interface OrganizationDebugTransaction {
|
|
17113
|
+
readonly debug: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
17114
|
+
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
17115
|
+
}
|
|
16973
17116
|
interface OrganizationInvitationAcceptForm {
|
|
16974
17117
|
readonly email: string;
|
|
16975
17118
|
}
|
|
@@ -16993,6 +17136,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16993
17136
|
readonly created_at: string;
|
|
16994
17137
|
readonly updated_at: string;
|
|
16995
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
|
+
}
|
|
16996
17146
|
interface OrganizationPaymentSettingForm {
|
|
16997
17147
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
16998
17148
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -17000,12 +17150,44 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17000
17150
|
readonly merchant_category_code?: string;
|
|
17001
17151
|
readonly payment_statement_suffix?: string;
|
|
17002
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
|
+
}
|
|
17003
17160
|
interface OrganizationPaymentSettingVersion {
|
|
17004
17161
|
readonly id: string;
|
|
17005
17162
|
readonly timestamp: string;
|
|
17006
17163
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17007
17164
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
17008
17165
|
}
|
|
17166
|
+
interface OrganizationRestrictionSnapshot {
|
|
17167
|
+
readonly id: string;
|
|
17168
|
+
readonly organization_id: string;
|
|
17169
|
+
readonly organization_channel_id: string;
|
|
17170
|
+
readonly organization_status: string;
|
|
17171
|
+
readonly product_count: number;
|
|
17172
|
+
readonly open_decision_count: number;
|
|
17173
|
+
readonly restricted_product_count: number;
|
|
17174
|
+
readonly count_by_rule: io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
17175
|
+
readonly earliest_pending_decision_date: string;
|
|
17176
|
+
readonly earliest_product_receipt_date: string;
|
|
17177
|
+
readonly date: string;
|
|
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
|
+
}
|
|
17009
17191
|
interface OrganizationRestrictionSummary {
|
|
17010
17192
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
17011
17193
|
readonly earliest_date: string;
|
|
@@ -17098,6 +17280,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17098
17280
|
readonly id: string;
|
|
17099
17281
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
17100
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
|
+
}
|
|
17101
17292
|
interface PaymentOrganizationSettings {
|
|
17102
17293
|
readonly id: string;
|
|
17103
17294
|
readonly enable_auto_capture: boolean;
|
|
@@ -19454,7 +19645,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19454
19645
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19455
19646
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19456
19647
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
19457
|
-
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;
|
|
19458
19649
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19459
19650
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19460
19651
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -19555,6 +19746,7 @@ export declare type AdyenCancelDeleted = io.flow.internal.v0.models.AdyenCancelD
|
|
|
19555
19746
|
export declare type AdyenCancelUpserted = io.flow.internal.v0.models.AdyenCancelUpserted;
|
|
19556
19747
|
export declare type AdyenCaptureDeleted = io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
19557
19748
|
export declare type AdyenCaptureUpserted = io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
19749
|
+
export declare type AdyenIntegrationType = io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
19558
19750
|
export declare type AdyenInternalAuthorization = io.flow.internal.v0.models.AdyenInternalAuthorization;
|
|
19559
19751
|
export declare type AdyenInternalCancel = io.flow.internal.v0.models.AdyenInternalCancel;
|
|
19560
19752
|
export declare type AdyenInternalCapture = io.flow.internal.v0.models.AdyenInternalCapture;
|
|
@@ -19703,6 +19895,7 @@ export declare type BrowserBundleOptinForm = io.flow.internal.v0.models.BrowserB
|
|
|
19703
19895
|
export declare type BrowserBundlePaymentMethod = io.flow.internal.v0.models.BrowserBundlePaymentMethod;
|
|
19704
19896
|
export declare type BrowserBundlePaymentMethodForm = io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
19705
19897
|
export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
19898
|
+
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
19706
19899
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
19707
19900
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
19708
19901
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
@@ -19756,6 +19949,7 @@ export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.Cha
|
|
|
19756
19949
|
export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
19757
19950
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
19758
19951
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
19952
|
+
export declare type ChannelTransactionType = io.flow.internal.v0.enums.ChannelTransactionType;
|
|
19759
19953
|
export declare type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
19760
19954
|
export declare type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
19761
19955
|
export declare type ChargebackPaymentStatus = io.flow.internal.v0.enums.ChargebackPaymentStatus;
|
|
@@ -20363,6 +20557,19 @@ export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.Da
|
|
|
20363
20557
|
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
20364
20558
|
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
20365
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;
|
|
20366
20573
|
export declare type Decision = io.flow.internal.v0.models.Decision;
|
|
20367
20574
|
export declare type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
20368
20575
|
export declare type DeclineReasonChannelOrderAcceptance = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
@@ -20690,6 +20897,7 @@ export declare type InternalCardAuthorizationDetails = io.flow.internal.v0.model
|
|
|
20690
20897
|
export declare type InternalChannelRate = io.flow.internal.v0.models.InternalChannelRate;
|
|
20691
20898
|
export declare type InternalChannelRateDeleted = io.flow.internal.v0.models.InternalChannelRateDeleted;
|
|
20692
20899
|
export declare type InternalChannelRateUpserted = io.flow.internal.v0.models.InternalChannelRateUpserted;
|
|
20900
|
+
export declare type InternalDebugTransaction = io.flow.internal.v0.models.InternalDebugTransaction;
|
|
20693
20901
|
export declare type InternalExclusionRuleForm = io.flow.internal.v0.models.InternalExclusionRuleForm;
|
|
20694
20902
|
export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
20695
20903
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
@@ -20951,13 +21159,19 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
20951
21159
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
20952
21160
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
20953
21161
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
21162
|
+
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
20954
21163
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
20955
21164
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
20956
21165
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
20957
21166
|
export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21167
|
+
export declare type OrganizationPaymentSettingDeleted = io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
20958
21168
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
21169
|
+
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
20959
21170
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
20960
21171
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
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;
|
|
20961
21175
|
export declare type OrganizationRestrictionSummary = io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
20962
21176
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
20963
21177
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
@@ -20977,6 +21191,8 @@ export declare type PartnerOrganizationAuthorizationForm = io.flow.internal.v0.m
|
|
|
20977
21191
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
20978
21192
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
20979
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;
|
|
20980
21196
|
export declare type PaymentOrganizationSettings = io.flow.internal.v0.models.PaymentOrganizationSettings;
|
|
20981
21197
|
export declare type PaymentOrganizationSettingsPutForm = io.flow.internal.v0.models.PaymentOrganizationSettingsPutForm;
|
|
20982
21198
|
export declare type PaymentProcessorAccountDeleted = io.flow.internal.v0.models.PaymentProcessorAccountDeleted;
|