@flowio/types 11.24.95 → 11.24.97
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 +1143 -1100
- package/dist/api.d.ts +173 -9
- package/package.json +2 -2
- package/src/api-internal.ts +1472 -1267
- package/src/api.ts +280 -8
package/dist/api-internal.d.ts
CHANGED
|
@@ -1,3 +1,131 @@
|
|
|
1
|
+
declare namespace io.flow.google.pay.v0.enums {
|
|
2
|
+
type AuthMethod = 'PAN_ONLY' | 'CRYPTOGRAM_3DS';
|
|
3
|
+
type BillingAddressFormat = 'MIN' | 'FULL';
|
|
4
|
+
type CardGateway = 'adyen' | 'stripe';
|
|
5
|
+
type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
|
|
6
|
+
type PaymentMethodType = 'CARD';
|
|
7
|
+
type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
|
|
8
|
+
type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
|
|
9
|
+
}
|
|
10
|
+
declare namespace io.flow.google.pay.v0.models {
|
|
11
|
+
interface Address {
|
|
12
|
+
readonly name: string;
|
|
13
|
+
readonly postalCode: string;
|
|
14
|
+
readonly countryCode: string;
|
|
15
|
+
readonly phoneNumber: string;
|
|
16
|
+
readonly companyName: string;
|
|
17
|
+
readonly address1: string;
|
|
18
|
+
readonly address2: string;
|
|
19
|
+
readonly address3: string;
|
|
20
|
+
readonly locality: string;
|
|
21
|
+
readonly administrativeArea: string;
|
|
22
|
+
readonly sortingCode: string;
|
|
23
|
+
}
|
|
24
|
+
interface BillingAddressParameters {
|
|
25
|
+
readonly format?: io.flow.google.pay.v0.enums.BillingAddressFormat;
|
|
26
|
+
readonly phoneNumberRequired?: boolean;
|
|
27
|
+
}
|
|
28
|
+
interface CardAdyenTokenizationParameters {
|
|
29
|
+
readonly gateway: string;
|
|
30
|
+
readonly gatewayMerchantId: string;
|
|
31
|
+
}
|
|
32
|
+
interface CardDirectTokenizationParameters {
|
|
33
|
+
readonly protocolVersion: string;
|
|
34
|
+
readonly publicKey: string;
|
|
35
|
+
}
|
|
36
|
+
interface CardPaymentMethodDataInfo {
|
|
37
|
+
readonly cardDetails: string;
|
|
38
|
+
readonly cardNetwork: string;
|
|
39
|
+
readonly billingAddress?: io.flow.google.pay.v0.models.Address;
|
|
40
|
+
}
|
|
41
|
+
interface CardPaymentMethodParameters {
|
|
42
|
+
readonly allowedAuthMethods: io.flow.google.pay.v0.enums.AuthMethod[];
|
|
43
|
+
readonly allowedCardNetworks: io.flow.google.pay.v0.enums.CardNetwork[];
|
|
44
|
+
readonly billingAddressRequired?: boolean;
|
|
45
|
+
readonly billingAddressParameters?: io.flow.google.pay.v0.models.BillingAddressParameters;
|
|
46
|
+
}
|
|
47
|
+
interface DirectPaymentMethodToken {
|
|
48
|
+
readonly discriminator: 'direct_payment_method_token';
|
|
49
|
+
readonly protocolVersion: string;
|
|
50
|
+
readonly signature: string;
|
|
51
|
+
readonly signedMessage: string;
|
|
52
|
+
}
|
|
53
|
+
interface EncryptedMessage {
|
|
54
|
+
readonly messageExpiration: string;
|
|
55
|
+
readonly messageId: string;
|
|
56
|
+
readonly paymentMethod: io.flow.google.pay.v0.models.PaymentMethod;
|
|
57
|
+
readonly paymentMethodDetails: io.flow.google.pay.v0.models.PaymentMethodDetails;
|
|
58
|
+
}
|
|
59
|
+
interface MerchantInfo {
|
|
60
|
+
readonly merchantId: string;
|
|
61
|
+
readonly merchantName?: string;
|
|
62
|
+
readonly authJwt?: string;
|
|
63
|
+
}
|
|
64
|
+
interface PaymentData {
|
|
65
|
+
readonly apiVersion: number;
|
|
66
|
+
readonly apiVersionMinor: number;
|
|
67
|
+
readonly paymentMethodData: io.flow.google.pay.v0.models.PaymentMethodData;
|
|
68
|
+
readonly email?: string;
|
|
69
|
+
readonly shippingAddress?: io.flow.google.pay.v0.models.Address;
|
|
70
|
+
}
|
|
71
|
+
interface PaymentDataRequest {
|
|
72
|
+
readonly apiVersion: number;
|
|
73
|
+
readonly apiVersionMinor: number;
|
|
74
|
+
readonly merchantInfo: io.flow.google.pay.v0.models.MerchantInfo;
|
|
75
|
+
readonly allowedPaymentMethods: io.flow.google.pay.v0.models.PaymentMethod[];
|
|
76
|
+
readonly transactionInfo: io.flow.google.pay.v0.models.TransactionInfo;
|
|
77
|
+
readonly emailRequired?: boolean;
|
|
78
|
+
readonly shippingAddressRequired?: boolean;
|
|
79
|
+
readonly shippingAddressParameters?: io.flow.google.pay.v0.models.ShippingAddressParameters;
|
|
80
|
+
}
|
|
81
|
+
interface PaymentMethod {
|
|
82
|
+
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
83
|
+
readonly parameters: io.flow.google.pay.v0.models.CardPaymentMethodParameters;
|
|
84
|
+
readonly tokenizationSpecification: io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
|
|
85
|
+
}
|
|
86
|
+
interface PaymentMethodData {
|
|
87
|
+
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
88
|
+
readonly description: string;
|
|
89
|
+
readonly info: io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
|
|
90
|
+
readonly tokenizationData: io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
|
|
91
|
+
}
|
|
92
|
+
interface PaymentMethodDetails {
|
|
93
|
+
readonly pan: string;
|
|
94
|
+
readonly expirationMonth: number;
|
|
95
|
+
readonly expirationYear: number;
|
|
96
|
+
readonly authMethod: io.flow.google.pay.v0.enums.AuthMethod;
|
|
97
|
+
readonly cryptogram?: string;
|
|
98
|
+
readonly eciIndicator?: string;
|
|
99
|
+
}
|
|
100
|
+
interface PaymentMethodTokenizationData {
|
|
101
|
+
readonly type: string;
|
|
102
|
+
readonly token?: string;
|
|
103
|
+
}
|
|
104
|
+
interface PaymentMethodTokenizationSpecification {
|
|
105
|
+
readonly type: io.flow.google.pay.v0.enums.TokenizationType;
|
|
106
|
+
readonly parameters: any;
|
|
107
|
+
}
|
|
108
|
+
interface ShippingAddressParameters {
|
|
109
|
+
readonly allowedCountryCodes?: string[];
|
|
110
|
+
}
|
|
111
|
+
interface SignedMessage {
|
|
112
|
+
readonly encryptedMessage: string;
|
|
113
|
+
readonly ephemeralPublicKey: string;
|
|
114
|
+
readonly tag: string;
|
|
115
|
+
}
|
|
116
|
+
interface StripePaymentMethodToken {
|
|
117
|
+
readonly discriminator: 'stripe_payment_method_token';
|
|
118
|
+
readonly token: io.flow.stripe.v0.models.Token;
|
|
119
|
+
}
|
|
120
|
+
interface TransactionInfo {
|
|
121
|
+
readonly totalPriceStatus: io.flow.google.pay.v0.enums.TotalPriceStatus;
|
|
122
|
+
readonly totalPrice?: string;
|
|
123
|
+
readonly currencyCode?: string;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
declare namespace io.flow.google.pay.v0.unions {
|
|
127
|
+
type PaymentMethodToken = io.flow.google.pay.v0.models.DirectPaymentMethodToken | io.flow.google.pay.v0.models.StripePaymentMethodToken;
|
|
128
|
+
}
|
|
1
129
|
declare namespace io.flow.RESERVED_WORD_return.v0.enums {
|
|
2
130
|
type ReturnStatus = 'open' | 'refunded';
|
|
3
131
|
type ReturnTrackingStatus = 'awaiting_customs_clearance' | 'cancel_requested' | 'canceled' | 'collection_attempt_failed' | 'customs_clearance_completed' | 'delivered_to_retailer' | 'in_transit_to_local_hub' | 'in_transit_to_retailer' | 'parcel_added_to_pallet' | 'parcel_delayed' | 'parcel_extracted_from_pallet' | 'parcel_lost' | 'parcel_processed_by_retailer' | 'parcel_under_investigation' | 'processed_by_local_hub' | 'received_at_local_hub' | 'received_by_the_carrier' | 'return_registered_online';
|
|
@@ -78,7 +206,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
78
206
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
79
207
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
80
208
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
81
|
-
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
|
|
209
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies' | 'order_missing';
|
|
82
210
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
83
211
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
84
212
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
@@ -546,6 +674,10 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
546
674
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
547
675
|
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
548
676
|
}
|
|
677
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
678
|
+
readonly type: 'order_missing';
|
|
679
|
+
readonly description?: string;
|
|
680
|
+
}
|
|
549
681
|
interface PaymentRequestForm {
|
|
550
682
|
readonly amount: number;
|
|
551
683
|
readonly currency: string;
|
|
@@ -617,6 +749,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
617
749
|
type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
618
750
|
type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
619
751
|
type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
752
|
+
type PaymentRequestCancellationReason = io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
620
753
|
type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
621
754
|
}
|
|
622
755
|
declare namespace io.flow.error.v0.enums {
|
|
@@ -706,6 +839,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
706
839
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
707
840
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
708
841
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
842
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
709
843
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
710
844
|
readonly sequence_number: number;
|
|
711
845
|
readonly posting_cutoff: string;
|
|
@@ -831,11 +965,20 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
831
965
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
832
966
|
readonly currency: string;
|
|
833
967
|
}
|
|
968
|
+
interface PaymentSummary {
|
|
969
|
+
readonly psp: number;
|
|
970
|
+
readonly credit: number;
|
|
971
|
+
readonly subsidized: number;
|
|
972
|
+
readonly manual: number;
|
|
973
|
+
readonly cod: number;
|
|
974
|
+
readonly total: number;
|
|
975
|
+
}
|
|
834
976
|
interface PendingOrder {
|
|
835
977
|
readonly id: string;
|
|
836
978
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
837
979
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
838
980
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
981
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
839
982
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
840
983
|
readonly sequence_number: number;
|
|
841
984
|
readonly posting_cutoff: string;
|
|
@@ -850,6 +993,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
850
993
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
851
994
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
852
995
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
996
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
853
997
|
readonly sequence_number: number;
|
|
854
998
|
readonly posting_cutoff: string;
|
|
855
999
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -896,6 +1040,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
896
1040
|
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
897
1041
|
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
898
1042
|
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
1043
|
+
readonly tips?: number;
|
|
899
1044
|
readonly order_discount: number;
|
|
900
1045
|
readonly total: number;
|
|
901
1046
|
}
|
|
@@ -1924,6 +2069,14 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1924
2069
|
readonly discriminator: 'payment_processor_reference';
|
|
1925
2070
|
readonly processor: string;
|
|
1926
2071
|
}
|
|
2072
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
2073
|
+
readonly discriminator: 'apm';
|
|
2074
|
+
readonly transaction_identifier?: string;
|
|
2075
|
+
readonly capture_identifier?: string;
|
|
2076
|
+
readonly method_type?: string;
|
|
2077
|
+
readonly result_status?: string;
|
|
2078
|
+
readonly reason_code?: string;
|
|
2079
|
+
}
|
|
1927
2080
|
interface PaymentProcessorTransactionDetailsCard {
|
|
1928
2081
|
readonly discriminator: 'card';
|
|
1929
2082
|
readonly transaction_identifier?: string;
|
|
@@ -1949,6 +2102,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1949
2102
|
interface PaypalAuthorizationDetails {
|
|
1950
2103
|
readonly discriminator: 'paypal_authorization_details';
|
|
1951
2104
|
readonly payment_id: string;
|
|
2105
|
+
readonly internal_payment_id?: string;
|
|
1952
2106
|
readonly payment_method?: string;
|
|
1953
2107
|
readonly payment_state?: string;
|
|
1954
2108
|
readonly payer_id?: string;
|
|
@@ -2223,564 +2377,33 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2223
2377
|
type Payment = io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay;
|
|
2224
2378
|
type PaymentForm = io.flow.payment.v0.models.MerchantOfRecordPaymentForm;
|
|
2225
2379
|
type PaymentOrderReference = io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference;
|
|
2226
|
-
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
2380
|
+
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
2227
2381
|
type PaymentSource = io.flow.payment.v0.models.CardPaymentSource;
|
|
2228
2382
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
2229
2383
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
2230
2384
|
type ThreedsIdentifyAction = io.flow.payment.v0.models.ThreedsTwoMethod;
|
|
2231
2385
|
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2232
2386
|
}
|
|
2233
|
-
declare namespace io.flow.
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
|
|
2238
|
-
type PaymentMethodType = 'CARD';
|
|
2239
|
-
type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
|
|
2240
|
-
type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
|
|
2241
|
-
}
|
|
2242
|
-
declare namespace io.flow.google.pay.v0.models {
|
|
2243
|
-
interface Address {
|
|
2244
|
-
readonly name: string;
|
|
2245
|
-
readonly postalCode: string;
|
|
2246
|
-
readonly countryCode: string;
|
|
2247
|
-
readonly phoneNumber: string;
|
|
2248
|
-
readonly companyName: string;
|
|
2249
|
-
readonly address1: string;
|
|
2250
|
-
readonly address2: string;
|
|
2251
|
-
readonly address3: string;
|
|
2252
|
-
readonly locality: string;
|
|
2253
|
-
readonly administrativeArea: string;
|
|
2254
|
-
readonly sortingCode: string;
|
|
2255
|
-
}
|
|
2256
|
-
interface BillingAddressParameters {
|
|
2257
|
-
readonly format?: io.flow.google.pay.v0.enums.BillingAddressFormat;
|
|
2258
|
-
readonly phoneNumberRequired?: boolean;
|
|
2259
|
-
}
|
|
2260
|
-
interface CardAdyenTokenizationParameters {
|
|
2261
|
-
readonly gateway: string;
|
|
2262
|
-
readonly gatewayMerchantId: string;
|
|
2263
|
-
}
|
|
2264
|
-
interface CardDirectTokenizationParameters {
|
|
2265
|
-
readonly protocolVersion: string;
|
|
2266
|
-
readonly publicKey: string;
|
|
2267
|
-
}
|
|
2268
|
-
interface CardPaymentMethodDataInfo {
|
|
2269
|
-
readonly cardDetails: string;
|
|
2270
|
-
readonly cardNetwork: string;
|
|
2271
|
-
readonly billingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2272
|
-
}
|
|
2273
|
-
interface CardPaymentMethodParameters {
|
|
2274
|
-
readonly allowedAuthMethods: io.flow.google.pay.v0.enums.AuthMethod[];
|
|
2275
|
-
readonly allowedCardNetworks: io.flow.google.pay.v0.enums.CardNetwork[];
|
|
2276
|
-
readonly billingAddressRequired?: boolean;
|
|
2277
|
-
readonly billingAddressParameters?: io.flow.google.pay.v0.models.BillingAddressParameters;
|
|
2278
|
-
}
|
|
2279
|
-
interface DirectPaymentMethodToken {
|
|
2280
|
-
readonly discriminator: 'direct_payment_method_token';
|
|
2281
|
-
readonly protocolVersion: string;
|
|
2282
|
-
readonly signature: string;
|
|
2283
|
-
readonly signedMessage: string;
|
|
2284
|
-
}
|
|
2285
|
-
interface EncryptedMessage {
|
|
2286
|
-
readonly messageExpiration: string;
|
|
2287
|
-
readonly messageId: string;
|
|
2288
|
-
readonly paymentMethod: io.flow.google.pay.v0.models.PaymentMethod;
|
|
2289
|
-
readonly paymentMethodDetails: io.flow.google.pay.v0.models.PaymentMethodDetails;
|
|
2290
|
-
}
|
|
2291
|
-
interface MerchantInfo {
|
|
2292
|
-
readonly merchantId: string;
|
|
2293
|
-
readonly merchantName?: string;
|
|
2294
|
-
readonly authJwt?: string;
|
|
2295
|
-
}
|
|
2296
|
-
interface PaymentData {
|
|
2297
|
-
readonly apiVersion: number;
|
|
2298
|
-
readonly apiVersionMinor: number;
|
|
2299
|
-
readonly paymentMethodData: io.flow.google.pay.v0.models.PaymentMethodData;
|
|
2300
|
-
readonly email?: string;
|
|
2301
|
-
readonly shippingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2302
|
-
}
|
|
2303
|
-
interface PaymentDataRequest {
|
|
2304
|
-
readonly apiVersion: number;
|
|
2305
|
-
readonly apiVersionMinor: number;
|
|
2306
|
-
readonly merchantInfo: io.flow.google.pay.v0.models.MerchantInfo;
|
|
2307
|
-
readonly allowedPaymentMethods: io.flow.google.pay.v0.models.PaymentMethod[];
|
|
2308
|
-
readonly transactionInfo: io.flow.google.pay.v0.models.TransactionInfo;
|
|
2309
|
-
readonly emailRequired?: boolean;
|
|
2310
|
-
readonly shippingAddressRequired?: boolean;
|
|
2311
|
-
readonly shippingAddressParameters?: io.flow.google.pay.v0.models.ShippingAddressParameters;
|
|
2312
|
-
}
|
|
2313
|
-
interface PaymentMethod {
|
|
2314
|
-
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
2315
|
-
readonly parameters: io.flow.google.pay.v0.models.CardPaymentMethodParameters;
|
|
2316
|
-
readonly tokenizationSpecification: io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
|
|
2387
|
+
declare namespace io.flow.field.validation.v0.models {
|
|
2388
|
+
interface FieldValidationMax {
|
|
2389
|
+
readonly discriminator: 'max';
|
|
2390
|
+
readonly length: number;
|
|
2317
2391
|
}
|
|
2318
|
-
interface
|
|
2319
|
-
readonly
|
|
2320
|
-
readonly
|
|
2321
|
-
readonly info: io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
|
|
2322
|
-
readonly tokenizationData: io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
|
|
2392
|
+
interface FieldValidationMin {
|
|
2393
|
+
readonly discriminator: 'min';
|
|
2394
|
+
readonly length: number;
|
|
2323
2395
|
}
|
|
2324
|
-
interface
|
|
2325
|
-
readonly
|
|
2326
|
-
readonly
|
|
2327
|
-
readonly expirationYear: number;
|
|
2328
|
-
readonly authMethod: io.flow.google.pay.v0.enums.AuthMethod;
|
|
2329
|
-
readonly cryptogram?: string;
|
|
2330
|
-
readonly eciIndicator?: string;
|
|
2396
|
+
interface FieldValidationPattern {
|
|
2397
|
+
readonly discriminator: 'pattern';
|
|
2398
|
+
readonly pattern: string;
|
|
2331
2399
|
}
|
|
2332
|
-
interface
|
|
2333
|
-
readonly
|
|
2334
|
-
readonly
|
|
2400
|
+
interface FieldValidationRequired {
|
|
2401
|
+
readonly discriminator: 'required';
|
|
2402
|
+
readonly placeholder?: string;
|
|
2335
2403
|
}
|
|
2336
|
-
interface
|
|
2337
|
-
readonly
|
|
2338
|
-
readonly
|
|
2339
|
-
}
|
|
2340
|
-
interface ShippingAddressParameters {
|
|
2341
|
-
readonly allowedCountryCodes?: string[];
|
|
2342
|
-
}
|
|
2343
|
-
interface SignedMessage {
|
|
2344
|
-
readonly encryptedMessage: string;
|
|
2345
|
-
readonly ephemeralPublicKey: string;
|
|
2346
|
-
readonly tag: string;
|
|
2347
|
-
}
|
|
2348
|
-
interface StripePaymentMethodToken {
|
|
2349
|
-
readonly discriminator: 'stripe_payment_method_token';
|
|
2350
|
-
readonly token: io.flow.stripe.v0.models.Token;
|
|
2351
|
-
}
|
|
2352
|
-
interface TransactionInfo {
|
|
2353
|
-
readonly totalPriceStatus: io.flow.google.pay.v0.enums.TotalPriceStatus;
|
|
2354
|
-
readonly totalPrice?: string;
|
|
2355
|
-
readonly currencyCode?: string;
|
|
2356
|
-
}
|
|
2357
|
-
}
|
|
2358
|
-
declare namespace io.flow.google.pay.v0.unions {
|
|
2359
|
-
type PaymentMethodToken = io.flow.google.pay.v0.models.DirectPaymentMethodToken | io.flow.google.pay.v0.models.StripePaymentMethodToken;
|
|
2360
|
-
}
|
|
2361
|
-
declare namespace io.flow.billing.csv.v0.models {
|
|
2362
|
-
interface AccountSummary {
|
|
2363
|
-
readonly id: string;
|
|
2364
|
-
readonly currency: string;
|
|
2365
|
-
}
|
|
2366
|
-
interface BillingChannelCsvOrder {
|
|
2367
|
-
readonly number: string;
|
|
2368
|
-
readonly submitted_at: string;
|
|
2369
|
-
readonly local: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDetail;
|
|
2370
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDelivery[];
|
|
2371
|
-
}
|
|
2372
|
-
interface BillingChannelCsvOrderDelivery {
|
|
2373
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
2374
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2375
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
2376
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2377
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
2378
|
-
}
|
|
2379
|
-
interface BillingChannelCsvOrderDetail {
|
|
2380
|
-
readonly currency: string;
|
|
2381
|
-
readonly freight: number;
|
|
2382
|
-
readonly total: number;
|
|
2383
|
-
readonly subtotal: number;
|
|
2384
|
-
readonly vat: number;
|
|
2385
|
-
readonly duty: number;
|
|
2386
|
-
readonly discount: number;
|
|
2387
|
-
readonly adjustment: number;
|
|
2388
|
-
readonly insurance: number;
|
|
2389
|
-
readonly shipping: number;
|
|
2390
|
-
}
|
|
2391
|
-
interface BillingCsvCarrier {
|
|
2392
|
-
readonly id: string;
|
|
2393
|
-
}
|
|
2394
|
-
interface BillingCsvCenter {
|
|
2395
|
-
readonly key: string;
|
|
2396
|
-
}
|
|
2397
|
-
interface BillingCsvChannelBilledTransaction {
|
|
2398
|
-
readonly id: string;
|
|
2399
|
-
readonly type: string;
|
|
2400
|
-
readonly net: number;
|
|
2401
|
-
readonly description: string;
|
|
2402
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2403
|
-
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
2404
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderSummary;
|
|
2405
|
-
}
|
|
2406
|
-
interface BillingCsvChannelTransaction {
|
|
2407
|
-
readonly id: string;
|
|
2408
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2409
|
-
readonly type: string;
|
|
2410
|
-
readonly description?: string;
|
|
2411
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2412
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2413
|
-
readonly processing_transaction: io.flow.billing.csv.v0.models.BillingCsvChannelTransactionProcessingTransaction;
|
|
2414
|
-
readonly spot_rate: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
2415
|
-
readonly processing_transaction_base_amount_in_channel_account_currency: number;
|
|
2416
|
-
readonly processing_transaction_total_fees_in_channel_account_currency: number;
|
|
2417
|
-
readonly processing_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2418
|
-
readonly fraud_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2419
|
-
readonly mor_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2420
|
-
readonly fx_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2421
|
-
readonly duty_guarantee_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2422
|
-
readonly rate_lock_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2423
|
-
readonly transfer_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2424
|
-
readonly total_fees: number;
|
|
2425
|
-
readonly amount: number;
|
|
2426
|
-
}
|
|
2427
|
-
interface BillingCsvChannelTransactionProcessingTransaction {
|
|
2428
|
-
readonly id: string;
|
|
2429
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2430
|
-
readonly local_currency: string;
|
|
2431
|
-
readonly base_amount: number;
|
|
2432
|
-
readonly total_fees: number;
|
|
2433
|
-
readonly payment_method: string;
|
|
2434
|
-
}
|
|
2435
|
-
interface BillingCsvConsumerInvoice {
|
|
2436
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
2437
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2438
|
-
readonly lines: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail[];
|
|
2439
|
-
}
|
|
2440
|
-
interface BillingCsvConsumerInvoiceLine {
|
|
2441
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
2442
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2443
|
-
readonly line: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail;
|
|
2444
|
-
}
|
|
2445
|
-
interface BillingCsvConsumerInvoiceLineDetail {
|
|
2446
|
-
readonly discriminator: string;
|
|
2447
|
-
readonly item_number?: string;
|
|
2448
|
-
readonly quantity: number;
|
|
2449
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
2450
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
2451
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
2452
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
2453
|
-
}
|
|
2454
|
-
interface BillingCsvConsumerInvoiceSummary {
|
|
2455
|
-
readonly id: string;
|
|
2456
|
-
readonly number: string;
|
|
2457
|
-
readonly date: string;
|
|
2458
|
-
readonly key: string;
|
|
2459
|
-
}
|
|
2460
|
-
interface BillingCsvDelivery {
|
|
2461
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
2462
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
2463
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
2464
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2465
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
2466
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvDeliveryCostDetail;
|
|
2467
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2468
|
-
}
|
|
2469
|
-
interface BillingCsvDeliveryCostDetail {
|
|
2470
|
-
readonly ratecard_base_cost: number;
|
|
2471
|
-
readonly ratecard_ddp_fee: number;
|
|
2472
|
-
readonly ratecard_emergency_situation_surcharge: number;
|
|
2473
|
-
readonly ratecard_peak_surcharge: number;
|
|
2474
|
-
readonly ratecard_fuel_surcharge: number;
|
|
2475
|
-
readonly ratecard_oversized_shipment_fee: number;
|
|
2476
|
-
readonly ratecard_rural_shipment_fee: number;
|
|
2477
|
-
readonly center_commercial_invoice_fee: number;
|
|
2478
|
-
readonly center_inbound_carton_fee: number;
|
|
2479
|
-
readonly center_outbound_carton_fee: number;
|
|
2480
|
-
}
|
|
2481
|
-
interface BillingCsvExchangeRate {
|
|
2482
|
-
readonly base_currency: string;
|
|
2483
|
-
readonly local_currency: string;
|
|
2484
|
-
readonly rate: number;
|
|
2485
|
-
}
|
|
2486
|
-
interface BillingCsvFee {
|
|
2487
|
-
readonly amount: number;
|
|
2488
|
-
readonly description?: string;
|
|
2489
|
-
}
|
|
2490
|
-
interface BillingCsvGenericTransaction {
|
|
2491
|
-
readonly id: string;
|
|
2492
|
-
readonly posted_at?: string;
|
|
2493
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2494
|
-
readonly amount: number;
|
|
2495
|
-
readonly description: string;
|
|
2496
|
-
}
|
|
2497
|
-
interface BillingCsvLabelTransaction {
|
|
2498
|
-
readonly id: string;
|
|
2499
|
-
readonly type: string;
|
|
2500
|
-
readonly gross: number;
|
|
2501
|
-
readonly net: number;
|
|
2502
|
-
readonly discounts: io.flow.billing.internal.v0.models.Discount[];
|
|
2503
|
-
readonly description?: string;
|
|
2504
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2505
|
-
readonly label: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummary;
|
|
2506
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2507
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2508
|
-
}
|
|
2509
|
-
interface BillingCsvLabelTransactionBillableLabelSummary {
|
|
2510
|
-
readonly id: string;
|
|
2511
|
-
readonly owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
2512
|
-
readonly carrier_id: string;
|
|
2513
|
-
readonly carrier_tracking_number: string;
|
|
2514
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummaryCost;
|
|
2515
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2516
|
-
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
2517
|
-
readonly identifiers?: Record<string, string>;
|
|
2518
|
-
}
|
|
2519
|
-
interface BillingCsvLabelTransactionBillableLabelSummaryCost {
|
|
2520
|
-
readonly amount: number;
|
|
2521
|
-
readonly currency: string;
|
|
2522
|
-
readonly source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2523
|
-
}
|
|
2524
|
-
interface BillingCsvMerchantReference {
|
|
2525
|
-
readonly id: string;
|
|
2526
|
-
}
|
|
2527
|
-
interface BillingCsvOrder {
|
|
2528
|
-
readonly number: string;
|
|
2529
|
-
readonly primary_identifier?: string;
|
|
2530
|
-
readonly submitted_at?: string;
|
|
2531
|
-
readonly timezone: string;
|
|
2532
|
-
readonly local: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
2533
|
-
readonly base: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
2534
|
-
readonly transaction_amount: number;
|
|
2535
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingCsvDelivery[];
|
|
2536
|
-
readonly exchange_rate?: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
2537
|
-
}
|
|
2538
|
-
interface BillingCsvOrderDestination {
|
|
2539
|
-
readonly city?: string;
|
|
2540
|
-
readonly province?: string;
|
|
2541
|
-
readonly postal?: string;
|
|
2542
|
-
readonly country?: string;
|
|
2543
|
-
}
|
|
2544
|
-
interface BillingCsvOrderDetail {
|
|
2545
|
-
readonly currency: string;
|
|
2546
|
-
readonly adjustment: number;
|
|
2547
|
-
readonly subtotal: number;
|
|
2548
|
-
readonly vat: number;
|
|
2549
|
-
readonly duty: number;
|
|
2550
|
-
readonly shipping: number;
|
|
2551
|
-
readonly insurance: number;
|
|
2552
|
-
readonly discount: number;
|
|
2553
|
-
readonly total: number;
|
|
2554
|
-
readonly freight: number;
|
|
2555
|
-
}
|
|
2556
|
-
interface BillingCsvOrderSummary {
|
|
2557
|
-
readonly number: string;
|
|
2558
|
-
readonly identifiers: Record<string, string>;
|
|
2559
|
-
}
|
|
2560
|
-
interface BillingCsvOrderTransaction {
|
|
2561
|
-
readonly id: string;
|
|
2562
|
-
readonly type: string;
|
|
2563
|
-
readonly amount: number;
|
|
2564
|
-
readonly description?: string;
|
|
2565
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2566
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2567
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2568
|
-
}
|
|
2569
|
-
interface BillingCsvOrderWithMorSummary {
|
|
2570
|
-
readonly number: string;
|
|
2571
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
2572
|
-
readonly identifiers: Record<string, string>;
|
|
2573
|
-
}
|
|
2574
|
-
interface BillingCsvProcessingTransaction {
|
|
2575
|
-
readonly id: string;
|
|
2576
|
-
readonly reference: string;
|
|
2577
|
-
readonly primary_identifier?: string;
|
|
2578
|
-
readonly parent_id?: string;
|
|
2579
|
-
readonly created_at?: string;
|
|
2580
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
2581
|
-
readonly posted_at?: string;
|
|
2582
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2583
|
-
readonly timezone: string;
|
|
2584
|
-
readonly order_number?: string;
|
|
2585
|
-
readonly order_primary_identifier?: string;
|
|
2586
|
-
readonly order_identifiers?: Record<string, string>;
|
|
2587
|
-
readonly order_submitted_at?: string;
|
|
2588
|
-
readonly order?: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2589
|
-
readonly payment_method: string;
|
|
2590
|
-
readonly local_amount: number;
|
|
2591
|
-
readonly local_currency: string;
|
|
2592
|
-
readonly base_amount: number;
|
|
2593
|
-
readonly base_currency: string;
|
|
2594
|
-
readonly processing_fee?: number;
|
|
2595
|
-
readonly processing_fee_description?: string;
|
|
2596
|
-
readonly rate_lock_fee: number;
|
|
2597
|
-
readonly rate_lock_fee_description?: string;
|
|
2598
|
-
readonly vat_withholding: number;
|
|
2599
|
-
readonly duty_withholding: number;
|
|
2600
|
-
readonly freight_withholding?: number;
|
|
2601
|
-
readonly insurance_withholding: number;
|
|
2602
|
-
readonly revenue_share?: number;
|
|
2603
|
-
readonly revenue_share_currency?: string;
|
|
2604
|
-
readonly amount: number;
|
|
2605
|
-
readonly order_detail?: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionOrderDetail;
|
|
2606
|
-
readonly mor_fee?: number;
|
|
2607
|
-
readonly mor_fee_description?: string;
|
|
2608
|
-
readonly fx_fee?: number;
|
|
2609
|
-
readonly fx_fee_description?: string;
|
|
2610
|
-
readonly duty_guarantee_fee?: number;
|
|
2611
|
-
readonly duty_guarantee_fee_description?: string;
|
|
2612
|
-
readonly negative_balance_fee?: number;
|
|
2613
|
-
readonly negative_balance_fee_description?: string;
|
|
2614
|
-
}
|
|
2615
|
-
interface BillingCsvProcessingTransactionDelivery {
|
|
2616
|
-
readonly delivery_option_id: string;
|
|
2617
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2618
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2619
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
2620
|
-
readonly ship_from_country: string;
|
|
2621
|
-
readonly delivered_duty: string;
|
|
2622
|
-
}
|
|
2623
|
-
interface BillingCsvProcessingTransactionOrderDetail {
|
|
2624
|
-
readonly total: number;
|
|
2625
|
-
readonly subtotal: number;
|
|
2626
|
-
readonly discount: number;
|
|
2627
|
-
readonly vat: number;
|
|
2628
|
-
readonly duty: number;
|
|
2629
|
-
readonly shipping: number;
|
|
2630
|
-
readonly vat_subsidy?: number;
|
|
2631
|
-
readonly duty_subsidy?: number;
|
|
2632
|
-
readonly estimated_freight: number;
|
|
2633
|
-
readonly selected_deliveries: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery[];
|
|
2634
|
-
}
|
|
2635
|
-
interface BillingCsvService {
|
|
2636
|
-
readonly id: string;
|
|
2637
|
-
}
|
|
2638
|
-
interface BillingCsvTier {
|
|
2639
|
-
readonly name: string;
|
|
2640
|
-
}
|
|
2641
|
-
interface BillingCsvTransaction {
|
|
2642
|
-
readonly id: string;
|
|
2643
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2644
|
-
readonly account: io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
2645
|
-
readonly metadata?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
2646
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
2647
|
-
readonly currency: string;
|
|
2648
|
-
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
2649
|
-
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
2650
|
-
readonly gross: number;
|
|
2651
|
-
readonly fees: io.flow.billing.csv.v0.models.BillingCsvTransactionFees;
|
|
2652
|
-
readonly withholdings: io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
2653
|
-
readonly discount: io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
2654
|
-
readonly net: number;
|
|
2655
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
2656
|
-
readonly created_at: string;
|
|
2657
|
-
readonly updated_at: string;
|
|
2658
|
-
}
|
|
2659
|
-
interface BillingCsvTransactionAccount {
|
|
2660
|
-
readonly id: string;
|
|
2661
|
-
readonly merchant?: io.flow.billing.csv.v0.models.BillingCsvMerchantReference;
|
|
2662
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
2663
|
-
readonly source: io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
|
|
2664
|
-
}
|
|
2665
|
-
interface BillingCsvTransactionAccountSourceSummary {
|
|
2666
|
-
readonly id: string;
|
|
2667
|
-
readonly type: io.flow.billing.internal.v0.enums.AccountType;
|
|
2668
|
-
}
|
|
2669
|
-
interface BillingCsvTransactionDiscount {
|
|
2670
|
-
readonly amount: number;
|
|
2671
|
-
readonly description?: string;
|
|
2672
|
-
}
|
|
2673
|
-
interface BillingCsvTransactionFees {
|
|
2674
|
-
readonly duty_guarantee: number;
|
|
2675
|
-
readonly mor: number;
|
|
2676
|
-
readonly fraud: number;
|
|
2677
|
-
readonly fx: number;
|
|
2678
|
-
readonly processing: number;
|
|
2679
|
-
readonly rate_lock: number;
|
|
2680
|
-
readonly transfer: number;
|
|
2681
|
-
readonly negative_balance: number;
|
|
2682
|
-
}
|
|
2683
|
-
interface BillingCsvTransactionIdentifiers {
|
|
2684
|
-
readonly reference_id?: string;
|
|
2685
|
-
}
|
|
2686
|
-
interface BillingCsvTransactionMetadata {
|
|
2687
|
-
readonly channel?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
2688
|
-
readonly shipping_label?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
2689
|
-
readonly shipping_label_revenue_share?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
2690
|
-
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2691
|
-
readonly carrier_charge?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
2692
|
-
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2693
|
-
readonly failed_payout?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout;
|
|
2694
|
-
}
|
|
2695
|
-
interface BillingCsvTransactionMetadataCarrierCharge {
|
|
2696
|
-
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
2697
|
-
readonly label_created_at: string;
|
|
2698
|
-
readonly carrier_id: string;
|
|
2699
|
-
readonly carrier_tracking_number: string;
|
|
2700
|
-
readonly revenue_share_percentage: number;
|
|
2701
|
-
readonly outbound_transaction_id?: string;
|
|
2702
|
-
}
|
|
2703
|
-
interface BillingCsvTransactionMetadataChannel {
|
|
2704
|
-
readonly method: string;
|
|
2705
|
-
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
2706
|
-
}
|
|
2707
|
-
interface BillingCsvTransactionMetadataFailedPayout {
|
|
2708
|
-
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
2709
|
-
}
|
|
2710
|
-
interface BillingCsvTransactionMetadataManual {
|
|
2711
|
-
readonly description: string;
|
|
2712
|
-
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2713
|
-
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
2714
|
-
readonly url?: string;
|
|
2715
|
-
}
|
|
2716
|
-
interface BillingCsvTransactionMetadataShippingLabel {
|
|
2717
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2718
|
-
}
|
|
2719
|
-
interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
|
|
2720
|
-
readonly label_id: string;
|
|
2721
|
-
readonly base_amount?: number;
|
|
2722
|
-
readonly percentage?: number;
|
|
2723
|
-
}
|
|
2724
|
-
interface BillingCsvTransactionMetadataTrueup {
|
|
2725
|
-
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2726
|
-
readonly label_transaction_id: string;
|
|
2727
|
-
readonly label_invoice_request_id: string;
|
|
2728
|
-
readonly carrier_charge_id: string;
|
|
2729
|
-
}
|
|
2730
|
-
interface BillingCsvTransactionOrderSummary {
|
|
2731
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2732
|
-
readonly number: string;
|
|
2733
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
2734
|
-
}
|
|
2735
|
-
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
2736
|
-
readonly shopify_order_id?: string;
|
|
2737
|
-
}
|
|
2738
|
-
interface BillingCsvTransactionWithholdings {
|
|
2739
|
-
readonly tax: number;
|
|
2740
|
-
readonly duty: number;
|
|
2741
|
-
readonly freight: number;
|
|
2742
|
-
readonly insurance: number;
|
|
2743
|
-
}
|
|
2744
|
-
interface FlowFinancePaymentSummary {
|
|
2745
|
-
readonly id: string;
|
|
2746
|
-
readonly status: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
2747
|
-
readonly amount: number;
|
|
2748
|
-
readonly bank_account_last4?: string;
|
|
2749
|
-
}
|
|
2750
|
-
interface FlowFinanceStatementSummary {
|
|
2751
|
-
readonly account_id: string;
|
|
2752
|
-
readonly payment?: io.flow.billing.csv.v0.models.FlowFinancePaymentSummary;
|
|
2753
|
-
readonly statement_id: string;
|
|
2754
|
-
readonly settlement_currency: string;
|
|
2755
|
-
readonly starting_balance: number;
|
|
2756
|
-
readonly balance_forward: number;
|
|
2757
|
-
readonly transactions_posted: number;
|
|
2758
|
-
readonly platform_fee: number;
|
|
2759
|
-
readonly account_balance: number;
|
|
2760
|
-
readonly dispute_balance: number;
|
|
2761
|
-
readonly one_time_adjustments: Record<string, number>;
|
|
2762
|
-
}
|
|
2763
|
-
}
|
|
2764
|
-
declare namespace io.flow.field.validation.v0.models {
|
|
2765
|
-
interface FieldValidationMax {
|
|
2766
|
-
readonly discriminator: 'max';
|
|
2767
|
-
readonly length: number;
|
|
2768
|
-
}
|
|
2769
|
-
interface FieldValidationMin {
|
|
2770
|
-
readonly discriminator: 'min';
|
|
2771
|
-
readonly length: number;
|
|
2772
|
-
}
|
|
2773
|
-
interface FieldValidationPattern {
|
|
2774
|
-
readonly discriminator: 'pattern';
|
|
2775
|
-
readonly pattern: string;
|
|
2776
|
-
}
|
|
2777
|
-
interface FieldValidationRequired {
|
|
2778
|
-
readonly discriminator: 'required';
|
|
2779
|
-
readonly placeholder?: string;
|
|
2780
|
-
}
|
|
2781
|
-
interface FieldValidationRequiredIfPresent {
|
|
2782
|
-
readonly discriminator: 'required_if_present';
|
|
2783
|
-
readonly placeholder?: string;
|
|
2404
|
+
interface FieldValidationRequiredIfPresent {
|
|
2405
|
+
readonly discriminator: 'required_if_present';
|
|
2406
|
+
readonly placeholder?: string;
|
|
2784
2407
|
}
|
|
2785
2408
|
}
|
|
2786
2409
|
declare namespace io.flow.field.validation.v0.unions {
|
|
@@ -2789,6 +2412,8 @@ declare namespace io.flow.field.validation.v0.unions {
|
|
|
2789
2412
|
declare namespace io.flow.stripe.v0.enums {
|
|
2790
2413
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
2791
2414
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
2415
|
+
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
2416
|
+
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
2792
2417
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
2793
2418
|
type CaptureMethod = 'automatic' | 'manual';
|
|
2794
2419
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
@@ -2798,9 +2423,14 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2798
2423
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2799
2424
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2800
2425
|
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
2426
|
+
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
2427
|
+
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
2428
|
+
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
2429
|
+
type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
|
|
2430
|
+
type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
|
|
2801
2431
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
2802
2432
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2803
|
-
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
2433
|
+
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
2804
2434
|
type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
|
|
2805
2435
|
type FeatureAvailability = 'available' | 'unavailable';
|
|
2806
2436
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
@@ -2810,9 +2440,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2810
2440
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2811
2441
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2812
2442
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2813
|
-
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2443
|
+
type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
|
|
2814
2444
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2815
2445
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2446
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
2816
2447
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
2817
2448
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
2818
2449
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
@@ -3030,6 +2661,48 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3030
2661
|
readonly source: string;
|
|
3031
2662
|
readonly description?: string;
|
|
3032
2663
|
}
|
|
2664
|
+
interface Dispute {
|
|
2665
|
+
readonly id: string;
|
|
2666
|
+
readonly amount: number;
|
|
2667
|
+
readonly charge: string;
|
|
2668
|
+
readonly currency: string;
|
|
2669
|
+
readonly evidence: any;
|
|
2670
|
+
readonly metadata: Record<string, string>;
|
|
2671
|
+
readonly payment_intent?: string;
|
|
2672
|
+
readonly reason: io.flow.stripe.v0.enums.DisputeReason;
|
|
2673
|
+
readonly status: io.flow.stripe.v0.enums.DisputeStatus;
|
|
2674
|
+
readonly object: string;
|
|
2675
|
+
readonly balance_transactions: any[];
|
|
2676
|
+
readonly created: number;
|
|
2677
|
+
readonly evidence_details: io.flow.stripe.v0.models.DisputeEvidenceDetails;
|
|
2678
|
+
readonly is_charge_refundable: boolean;
|
|
2679
|
+
readonly livemode: boolean;
|
|
2680
|
+
readonly payment_method_details?: io.flow.stripe.v0.models.DisputePaymentMethodDetails;
|
|
2681
|
+
}
|
|
2682
|
+
interface DisputeEvidenceDetails {
|
|
2683
|
+
readonly due_by?: number;
|
|
2684
|
+
readonly has_evidence: boolean;
|
|
2685
|
+
readonly past_due: boolean;
|
|
2686
|
+
readonly submission_count: number;
|
|
2687
|
+
}
|
|
2688
|
+
interface DisputePaymentMethodDetails {
|
|
2689
|
+
readonly card?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard;
|
|
2690
|
+
readonly klarna?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna;
|
|
2691
|
+
readonly paypal?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal;
|
|
2692
|
+
readonly type: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType;
|
|
2693
|
+
}
|
|
2694
|
+
interface DisputePaymentMethodDetailsCard {
|
|
2695
|
+
readonly brand: string;
|
|
2696
|
+
readonly case_type?: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType;
|
|
2697
|
+
readonly network_reason_code?: string;
|
|
2698
|
+
}
|
|
2699
|
+
interface DisputePaymentMethodDetailsKlarna {
|
|
2700
|
+
readonly reason_code?: string;
|
|
2701
|
+
}
|
|
2702
|
+
interface DisputePaymentMethodDetailsPaypal {
|
|
2703
|
+
readonly case_id?: string;
|
|
2704
|
+
readonly reason_code?: string;
|
|
2705
|
+
}
|
|
3033
2706
|
interface Error {
|
|
3034
2707
|
readonly error: io.flow.stripe.v0.models.StripeError;
|
|
3035
2708
|
}
|
|
@@ -3256,8 +2929,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3256
2929
|
readonly id: string;
|
|
3257
2930
|
readonly object: string;
|
|
3258
2931
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2932
|
+
readonly bancontact?: any;
|
|
3259
2933
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
3260
2934
|
readonly card_present?: any;
|
|
2935
|
+
readonly ideal?: any;
|
|
3261
2936
|
readonly klarna?: any;
|
|
3262
2937
|
readonly created: number;
|
|
3263
2938
|
readonly customer?: string;
|
|
@@ -3288,18 +2963,43 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3288
2963
|
readonly number: string;
|
|
3289
2964
|
readonly cvc?: string;
|
|
3290
2965
|
}
|
|
2966
|
+
interface PaymentMethodDataBancontact {
|
|
2967
|
+
readonly type: 'bancontact';
|
|
2968
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2969
|
+
readonly metadata?: any;
|
|
2970
|
+
}
|
|
3291
2971
|
interface PaymentMethodDataCard {
|
|
3292
2972
|
readonly type: 'card';
|
|
3293
2973
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3294
2974
|
readonly metadata?: any;
|
|
3295
2975
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3296
2976
|
}
|
|
2977
|
+
interface PaymentMethodDataIdeal {
|
|
2978
|
+
readonly type: 'ideal';
|
|
2979
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2980
|
+
readonly metadata?: any;
|
|
2981
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
2982
|
+
}
|
|
3297
2983
|
interface PaymentMethodDataKlarna {
|
|
3298
2984
|
readonly type: 'klarna';
|
|
3299
2985
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3300
2986
|
readonly metadata?: any;
|
|
3301
2987
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3302
2988
|
}
|
|
2989
|
+
interface PaymentMethodDetailsBancontact {
|
|
2990
|
+
readonly type: 'bancontact';
|
|
2991
|
+
readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
2992
|
+
}
|
|
2993
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
2994
|
+
readonly bank_code?: string;
|
|
2995
|
+
readonly bank_name?: string;
|
|
2996
|
+
readonly bic?: string;
|
|
2997
|
+
readonly generated_sepa_debit?: string;
|
|
2998
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
2999
|
+
readonly iban_last4?: string;
|
|
3000
|
+
readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
3001
|
+
readonly verified_name?: string;
|
|
3002
|
+
}
|
|
3303
3003
|
interface PaymentMethodDetailsCard {
|
|
3304
3004
|
readonly type: 'card';
|
|
3305
3005
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -3329,6 +3029,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3329
3029
|
readonly multicapture?: io.flow.stripe.v0.models.Multicapture;
|
|
3330
3030
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
3331
3031
|
}
|
|
3032
|
+
interface PaymentMethodDetailsIdeal {
|
|
3033
|
+
readonly type: 'ideal';
|
|
3034
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
3035
|
+
}
|
|
3036
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
3037
|
+
readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
|
|
3038
|
+
readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
|
|
3039
|
+
readonly generated_sepa_debit?: string;
|
|
3040
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
3041
|
+
readonly iban_last4?: string;
|
|
3042
|
+
readonly verified_name?: string;
|
|
3043
|
+
}
|
|
3332
3044
|
interface PaymentMethodDetailsKlarna {
|
|
3333
3045
|
readonly type: 'klarna';
|
|
3334
3046
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -3337,24 +3049,47 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3337
3049
|
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
3338
3050
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3339
3051
|
}
|
|
3052
|
+
interface PaymentMethodFormBancontact {
|
|
3053
|
+
readonly type: 'bancontact';
|
|
3054
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3055
|
+
readonly metadata?: any;
|
|
3056
|
+
readonly bancontact: any;
|
|
3057
|
+
}
|
|
3340
3058
|
interface PaymentMethodFormCard {
|
|
3341
3059
|
readonly type: 'card';
|
|
3342
3060
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3343
3061
|
readonly metadata?: any;
|
|
3344
3062
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3345
3063
|
}
|
|
3064
|
+
interface PaymentMethodFormIdeal {
|
|
3065
|
+
readonly type: 'ideal';
|
|
3066
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3067
|
+
readonly metadata?: any;
|
|
3068
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
3069
|
+
}
|
|
3346
3070
|
interface PaymentMethodFormKlarna {
|
|
3347
3071
|
readonly type: 'klarna';
|
|
3348
3072
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3349
3073
|
readonly metadata?: any;
|
|
3350
3074
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3351
3075
|
}
|
|
3076
|
+
interface PaymentMethodIdealForm {
|
|
3077
|
+
readonly bank?: string;
|
|
3078
|
+
}
|
|
3352
3079
|
interface PaymentMethodKlarnaForm {
|
|
3353
3080
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3354
3081
|
}
|
|
3355
3082
|
interface PaymentMethodOptions {
|
|
3356
3083
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3084
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
3357
3085
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
3086
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
3087
|
+
}
|
|
3088
|
+
interface PaymentMethodOptionsBancontact {
|
|
3089
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
3090
|
+
}
|
|
3091
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
3092
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
3358
3093
|
}
|
|
3359
3094
|
interface PaymentMethodOptionsCard {
|
|
3360
3095
|
readonly network?: string;
|
|
@@ -3371,7 +3106,15 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3371
3106
|
}
|
|
3372
3107
|
interface PaymentMethodOptionsForm {
|
|
3373
3108
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3109
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
3374
3110
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
3111
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
3112
|
+
}
|
|
3113
|
+
interface PaymentMethodOptionsIdeal {
|
|
3114
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3115
|
+
}
|
|
3116
|
+
interface PaymentMethodOptionsIdealForm {
|
|
3117
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3375
3118
|
}
|
|
3376
3119
|
interface PaymentMethodOptionsKlarna {
|
|
3377
3120
|
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
@@ -3565,6 +3308,22 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3565
3308
|
readonly three_ds_optimizations?: string;
|
|
3566
3309
|
readonly directory_server_encryption?: any;
|
|
3567
3310
|
}
|
|
3311
|
+
interface StripeDisputeEvent {
|
|
3312
|
+
readonly id: string;
|
|
3313
|
+
readonly api_version?: string;
|
|
3314
|
+
readonly data: io.flow.stripe.v0.models.StripeDisputeEventData;
|
|
3315
|
+
readonly request?: any;
|
|
3316
|
+
readonly type: io.flow.stripe.v0.enums.DisputeEventType;
|
|
3317
|
+
readonly object: string;
|
|
3318
|
+
readonly account?: string;
|
|
3319
|
+
readonly created: number;
|
|
3320
|
+
readonly livemode: boolean;
|
|
3321
|
+
readonly pending_webhooks: number;
|
|
3322
|
+
}
|
|
3323
|
+
interface StripeDisputeEventData {
|
|
3324
|
+
readonly object: io.flow.stripe.v0.models.Dispute;
|
|
3325
|
+
readonly previous_attributes?: any;
|
|
3326
|
+
}
|
|
3568
3327
|
interface StripeError {
|
|
3569
3328
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
3570
3329
|
readonly charge?: string;
|
|
@@ -3649,9 +3408,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3649
3408
|
}
|
|
3650
3409
|
declare namespace io.flow.stripe.v0.unions {
|
|
3651
3410
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
3652
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
3653
|
-
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
3654
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
3411
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
3412
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
3413
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
3655
3414
|
}
|
|
3656
3415
|
declare namespace io.flow.customer.v0.enums {
|
|
3657
3416
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -4702,6 +4461,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4702
4461
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
4703
4462
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
4704
4463
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
4464
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
4705
4465
|
}
|
|
4706
4466
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4707
4467
|
interface CatalogPublicationSyncValidationError {
|
|
@@ -4742,6 +4502,13 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4742
4502
|
interface MarketsOrderSummary {
|
|
4743
4503
|
readonly id: string;
|
|
4744
4504
|
}
|
|
4505
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
4506
|
+
readonly id: string;
|
|
4507
|
+
readonly organization_id: string;
|
|
4508
|
+
readonly shopify_order_id: string;
|
|
4509
|
+
readonly order_number: string;
|
|
4510
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
4511
|
+
}
|
|
4745
4512
|
interface OrderValidationError {
|
|
4746
4513
|
readonly message: string;
|
|
4747
4514
|
readonly reason: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -4851,6 +4618,8 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4851
4618
|
readonly id: string;
|
|
4852
4619
|
readonly initial_catalog_synced_at?: string;
|
|
4853
4620
|
readonly catalog_sync_duration?: number;
|
|
4621
|
+
readonly restrictions_sync_duration?: number;
|
|
4622
|
+
readonly classifications_sync_duration?: number;
|
|
4854
4623
|
readonly catalog_products_count?: number;
|
|
4855
4624
|
readonly initial_product_restrictions_synced_at?: string;
|
|
4856
4625
|
}
|
|
@@ -4866,186 +4635,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4866
4635
|
readonly placeholder?: any;
|
|
4867
4636
|
}
|
|
4868
4637
|
}
|
|
4869
|
-
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
4870
|
-
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
4871
|
-
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4872
|
-
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4873
|
-
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
4874
|
-
}
|
|
4875
|
-
declare namespace io.flow.consumer.invoice.v0.models {
|
|
4876
|
-
interface B2BCreditMemo {
|
|
4877
|
-
readonly id: string;
|
|
4878
|
-
readonly number: string;
|
|
4879
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4880
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4881
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4882
|
-
readonly date: string;
|
|
4883
|
-
readonly key: string;
|
|
4884
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
4885
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4886
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4887
|
-
readonly attributes: Record<string, string>;
|
|
4888
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4889
|
-
}
|
|
4890
|
-
interface B2BInvoice {
|
|
4891
|
-
readonly id: string;
|
|
4892
|
-
readonly number: string;
|
|
4893
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4894
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4895
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4896
|
-
readonly date: string;
|
|
4897
|
-
readonly key: string;
|
|
4898
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4899
|
-
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
4900
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4901
|
-
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
4902
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
4903
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4904
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4905
|
-
readonly attributes: Record<string, string>;
|
|
4906
|
-
readonly estimated_delivery_date?: string;
|
|
4907
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4908
|
-
}
|
|
4909
|
-
interface B2BInvoiceReference {
|
|
4910
|
-
readonly id: string;
|
|
4911
|
-
readonly key: string;
|
|
4912
|
-
readonly number: string;
|
|
4913
|
-
}
|
|
4914
|
-
interface ConsumerInvoice {
|
|
4915
|
-
readonly id: string;
|
|
4916
|
-
readonly number: string;
|
|
4917
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4918
|
-
readonly date: string;
|
|
4919
|
-
readonly key: string;
|
|
4920
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4921
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4922
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
4923
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4924
|
-
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
4925
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
4926
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4927
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4928
|
-
readonly attributes: Record<string, string>;
|
|
4929
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
4930
|
-
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
4931
|
-
readonly estimated_delivery_date?: string;
|
|
4932
|
-
}
|
|
4933
|
-
interface ConsumerInvoiceCenterReference {
|
|
4934
|
-
readonly id: string;
|
|
4935
|
-
readonly key: string;
|
|
4936
|
-
readonly name: string;
|
|
4937
|
-
readonly address: io.flow.common.v0.models.Address;
|
|
4938
|
-
}
|
|
4939
|
-
interface ConsumerInvoiceDocument {
|
|
4940
|
-
readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
4941
|
-
readonly language: string;
|
|
4942
|
-
readonly url: string;
|
|
4943
|
-
}
|
|
4944
|
-
interface ConsumerInvoiceForm {
|
|
4945
|
-
readonly order_number: string;
|
|
4946
|
-
readonly attributes?: Record<string, string>;
|
|
4947
|
-
}
|
|
4948
|
-
interface ConsumerInvoiceFormByOrder {
|
|
4949
|
-
readonly attributes?: Record<string, string>;
|
|
4950
|
-
}
|
|
4951
|
-
interface ConsumerInvoiceLevy {
|
|
4952
|
-
readonly rate: number;
|
|
4953
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
4954
|
-
}
|
|
4955
|
-
interface ConsumerInvoiceLevyForm {
|
|
4956
|
-
readonly rate: number;
|
|
4957
|
-
readonly amount: number;
|
|
4958
|
-
}
|
|
4959
|
-
interface ConsumerInvoiceLineDiscount {
|
|
4960
|
-
readonly discriminator: 'discount';
|
|
4961
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
4962
|
-
}
|
|
4963
|
-
interface ConsumerInvoiceLineDiscountForm {
|
|
4964
|
-
readonly discriminator: 'discount';
|
|
4965
|
-
readonly price: number;
|
|
4966
|
-
}
|
|
4967
|
-
interface ConsumerInvoiceLineItem {
|
|
4968
|
-
readonly discriminator: 'item';
|
|
4969
|
-
readonly item: io.flow.common.v0.models.ItemReference;
|
|
4970
|
-
readonly description: string;
|
|
4971
|
-
readonly quantity: number;
|
|
4972
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
4973
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
4974
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4975
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4976
|
-
}
|
|
4977
|
-
interface ConsumerInvoiceLineItemForm {
|
|
4978
|
-
readonly discriminator: 'item';
|
|
4979
|
-
readonly item_number: string;
|
|
4980
|
-
readonly quantity: number;
|
|
4981
|
-
readonly unit_price: number;
|
|
4982
|
-
readonly unit_discount?: number;
|
|
4983
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4984
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4985
|
-
}
|
|
4986
|
-
interface ConsumerInvoiceLineShipping {
|
|
4987
|
-
readonly discriminator: 'shipping';
|
|
4988
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
4989
|
-
readonly discount?: io.flow.common.v0.models.Price;
|
|
4990
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4991
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4992
|
-
}
|
|
4993
|
-
interface ConsumerInvoiceLineShippingForm {
|
|
4994
|
-
readonly discriminator: 'shipping';
|
|
4995
|
-
readonly price: number;
|
|
4996
|
-
readonly discount?: number;
|
|
4997
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4998
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4999
|
-
}
|
|
5000
|
-
interface ConsumerInvoiceOrderSummary {
|
|
5001
|
-
readonly id: string;
|
|
5002
|
-
readonly number: string;
|
|
5003
|
-
readonly submitted_at: string;
|
|
5004
|
-
}
|
|
5005
|
-
interface ConsumerInvoicePayment {
|
|
5006
|
-
readonly date: string;
|
|
5007
|
-
readonly description: string;
|
|
5008
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
5009
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
5010
|
-
}
|
|
5011
|
-
interface ConsumerInvoiceReference {
|
|
5012
|
-
readonly id: string;
|
|
5013
|
-
readonly key: string;
|
|
5014
|
-
readonly number: string;
|
|
5015
|
-
}
|
|
5016
|
-
interface CreditMemo {
|
|
5017
|
-
readonly id: string;
|
|
5018
|
-
readonly number?: string;
|
|
5019
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5020
|
-
readonly date: string;
|
|
5021
|
-
readonly key: string;
|
|
5022
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
5023
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5024
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5025
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5026
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5027
|
-
readonly attributes: Record<string, string>;
|
|
5028
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5029
|
-
}
|
|
5030
|
-
interface CreditMemoForm {
|
|
5031
|
-
readonly refund_id?: string;
|
|
5032
|
-
readonly refund_key?: string;
|
|
5033
|
-
readonly refund_identifier?: string;
|
|
5034
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
5035
|
-
readonly attributes?: Record<string, string>;
|
|
5036
|
-
}
|
|
5037
|
-
interface InvoiceExport {
|
|
5038
|
-
readonly id: string;
|
|
5039
|
-
}
|
|
5040
|
-
interface InvoiceExportForm {
|
|
5041
|
-
readonly date_from?: string;
|
|
5042
|
-
readonly date_to?: string;
|
|
5043
|
-
}
|
|
5044
|
-
}
|
|
5045
|
-
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
5046
|
-
type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping;
|
|
5047
|
-
type ConsumerInvoiceLineForm = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm;
|
|
5048
|
-
}
|
|
5049
4638
|
declare namespace io.flow.adyen.v0.enums {
|
|
5050
4639
|
type Channel = 'web';
|
|
5051
4640
|
type Contract = 'RECURRING';
|
|
@@ -5595,6 +5184,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5595
5184
|
readonly published_at?: string;
|
|
5596
5185
|
readonly created_at: string;
|
|
5597
5186
|
readonly updated_at: string;
|
|
5187
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
5598
5188
|
}
|
|
5599
5189
|
interface ProductDelete {
|
|
5600
5190
|
readonly id: number;
|
|
@@ -6278,7 +5868,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6278
5868
|
type ShopifyOrderFulfillmentStatusType = 'fulfilled' | 'null' | 'partial';
|
|
6279
5869
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
6280
5870
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
6281
|
-
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash';
|
|
5871
|
+
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash' | 'shopify_store_credit';
|
|
6282
5872
|
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
6283
5873
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
6284
5874
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
@@ -6965,7 +6555,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
6965
6555
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
6966
6556
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6967
6557
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6968
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit';
|
|
6558
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
6969
6559
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6970
6560
|
}
|
|
6971
6561
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -7532,7 +7122,7 @@ declare namespace io.flow.common.v0.unions {
|
|
|
7532
7122
|
declare namespace io.flow.billing.reporting.v0.enums {
|
|
7533
7123
|
type ReportPaymentType = 'credit' | 'debit';
|
|
7534
7124
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
7535
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
|
|
7125
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
7536
7126
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
7537
7127
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
7538
7128
|
}
|
|
@@ -7544,6 +7134,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7544
7134
|
readonly subtotal: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7545
7135
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7546
7136
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7137
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7547
7138
|
readonly discount: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7548
7139
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7549
7140
|
}
|
|
@@ -7651,11 +7242,11 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7651
7242
|
readonly sequence_number: number;
|
|
7652
7243
|
readonly fulfilled_at: string;
|
|
7653
7244
|
readonly completes_order: boolean;
|
|
7654
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
7655
7245
|
readonly refund?: io.flow.billing.reporting.v0.models.ReportingRefundReference;
|
|
7656
7246
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
7657
7247
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
7658
7248
|
readonly destination?: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
7249
|
+
readonly payment?: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
7659
7250
|
readonly shipment?: io.flow.billing.reporting.v0.models.ReportingShipment;
|
|
7660
7251
|
readonly is: io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
|
|
7661
7252
|
readonly has: io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
|
|
@@ -7672,6 +7263,11 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7672
7263
|
readonly wyol: boolean;
|
|
7673
7264
|
readonly b2b: boolean;
|
|
7674
7265
|
readonly domestic: boolean;
|
|
7266
|
+
readonly combined_shipment?: boolean;
|
|
7267
|
+
readonly order_cancelled?: boolean;
|
|
7268
|
+
readonly lvg?: boolean;
|
|
7269
|
+
readonly tax_inclusive?: boolean;
|
|
7270
|
+
readonly duty_inclusive?: boolean;
|
|
7675
7271
|
}
|
|
7676
7272
|
interface ReportingFx {
|
|
7677
7273
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
@@ -7679,6 +7275,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7679
7275
|
readonly product: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7680
7276
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7681
7277
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7278
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7682
7279
|
readonly total: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7683
7280
|
}
|
|
7684
7281
|
interface ReportingMerchantBreakdown {
|
|
@@ -7694,12 +7291,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7694
7291
|
readonly processing: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7695
7292
|
readonly rate_lock: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7696
7293
|
readonly transfer: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7294
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7697
7295
|
}
|
|
7698
7296
|
interface ReportingMerchantSubsidies {
|
|
7699
7297
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7700
7298
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7701
7299
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7702
7300
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7301
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7703
7302
|
}
|
|
7704
7303
|
interface ReportingMerchantTransactions {
|
|
7705
7304
|
readonly adjustment: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
@@ -7707,6 +7306,8 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7707
7306
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7708
7307
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7709
7308
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7309
|
+
readonly discount?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7310
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7710
7311
|
}
|
|
7711
7312
|
interface ReportingMonetaryValue {
|
|
7712
7313
|
readonly transaction: number;
|
|
@@ -7725,22 +7326,13 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7725
7326
|
readonly name: string;
|
|
7726
7327
|
}
|
|
7727
7328
|
interface ReportingPayment {
|
|
7728
|
-
readonly metadata?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
|
|
7729
7329
|
readonly psp: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7730
7330
|
readonly credit: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7331
|
+
readonly subsidized: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7332
|
+
readonly manual: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7333
|
+
readonly cod: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7731
7334
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7732
7335
|
}
|
|
7733
|
-
interface ReportingPaymentMetadata {
|
|
7734
|
-
readonly gateway: io.flow.payment.internal.v0.enums.Processor;
|
|
7735
|
-
readonly method: string;
|
|
7736
|
-
readonly psp_reference?: string;
|
|
7737
|
-
readonly authorization?: io.flow.billing.reporting.v0.models.ReportingAuthorizationReference;
|
|
7738
|
-
readonly settlement_date: string;
|
|
7739
|
-
readonly additional_authorizations?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
7740
|
-
}
|
|
7741
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
7742
|
-
readonly ids: string;
|
|
7743
|
-
}
|
|
7744
7336
|
interface ReportingProvince {
|
|
7745
7337
|
readonly code?: string;
|
|
7746
7338
|
readonly name: string;
|
|
@@ -7765,6 +7357,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7765
7357
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7766
7358
|
readonly emergency: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7767
7359
|
readonly peak: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7360
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7768
7361
|
}
|
|
7769
7362
|
interface ReportingUsd {
|
|
7770
7363
|
readonly usd: number;
|
|
@@ -8606,7 +8199,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8606
8199
|
readonly sequence_number: number;
|
|
8607
8200
|
readonly fulfilled_at: string;
|
|
8608
8201
|
readonly completes_order: boolean;
|
|
8609
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
8610
8202
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
8611
8203
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
8612
8204
|
readonly destination: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
@@ -8715,6 +8307,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8715
8307
|
readonly channel_id: string;
|
|
8716
8308
|
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
8717
8309
|
}
|
|
8310
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
8311
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
8312
|
+
readonly event_id: string;
|
|
8313
|
+
readonly timestamp: string;
|
|
8314
|
+
readonly organization: string;
|
|
8315
|
+
readonly id: string;
|
|
8316
|
+
}
|
|
8317
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
8318
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
8319
|
+
readonly event_id: string;
|
|
8320
|
+
readonly timestamp: string;
|
|
8321
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8322
|
+
}
|
|
8718
8323
|
interface ShopifyMarketsMetricsDeleted {
|
|
8719
8324
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
8720
8325
|
readonly event_id: string;
|
|
@@ -8789,7 +8394,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8789
8394
|
}
|
|
8790
8395
|
}
|
|
8791
8396
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8792
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
8397
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
8793
8398
|
}
|
|
8794
8399
|
declare namespace io.flow.experience.v0.enums {
|
|
8795
8400
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -11518,7 +11123,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
11518
11123
|
}
|
|
11519
11124
|
}
|
|
11520
11125
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11521
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
11126
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
11522
11127
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11523
11128
|
type AccountType = 'channel' | 'organization';
|
|
11524
11129
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -12777,7 +12382,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12777
12382
|
readonly discriminator: 'channel';
|
|
12778
12383
|
readonly method: string;
|
|
12779
12384
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12780
|
-
readonly organization_transaction: io.flow.billing.v0.models.
|
|
12385
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12781
12386
|
}
|
|
12782
12387
|
interface TransactionMetadataChannelCardMetadata {
|
|
12783
12388
|
readonly type: io.flow.payment.v0.enums.CardType;
|
|
@@ -12787,6 +12392,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12787
12392
|
readonly iin: string;
|
|
12788
12393
|
readonly country: string;
|
|
12789
12394
|
}
|
|
12395
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
12396
|
+
readonly id: string;
|
|
12397
|
+
readonly metadata: io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
12398
|
+
}
|
|
12790
12399
|
interface TransactionMetadataFailedPayout {
|
|
12791
12400
|
readonly discriminator: 'failed_payout';
|
|
12792
12401
|
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
@@ -13960,7 +13569,7 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13960
13569
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13961
13570
|
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13962
13571
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
13963
|
-
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
|
|
13572
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing' | 'missing_logistics_contact_info';
|
|
13964
13573
|
}
|
|
13965
13574
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13966
13575
|
interface ActivationPutForm {
|
|
@@ -14010,6 +13619,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
14010
13619
|
readonly completed_at?: string;
|
|
14011
13620
|
readonly onboarding_started_at?: string;
|
|
14012
13621
|
}
|
|
13622
|
+
interface RejectionPutForm {
|
|
13623
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
13624
|
+
readonly description: string;
|
|
13625
|
+
}
|
|
14013
13626
|
interface SetupBlocked {
|
|
14014
13627
|
readonly discriminator: 'setup_blocked';
|
|
14015
13628
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
@@ -14310,22 +13923,190 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14310
13923
|
readonly swift_code: string;
|
|
14311
13924
|
readonly iban: string;
|
|
14312
13925
|
}
|
|
14313
|
-
interface BankAccountInfoIta {
|
|
14314
|
-
readonly discriminator: 'ita';
|
|
14315
|
-
readonly swift_code: string;
|
|
14316
|
-
readonly iban: string;
|
|
13926
|
+
interface BankAccountInfoIta {
|
|
13927
|
+
readonly discriminator: 'ita';
|
|
13928
|
+
readonly swift_code: string;
|
|
13929
|
+
readonly iban: string;
|
|
13930
|
+
}
|
|
13931
|
+
interface BankAccountInfoUsa {
|
|
13932
|
+
readonly discriminator: 'usa';
|
|
13933
|
+
readonly routing_number: string;
|
|
13934
|
+
readonly account_number: string;
|
|
13935
|
+
}
|
|
13936
|
+
}
|
|
13937
|
+
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13938
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
13939
|
+
}
|
|
13940
|
+
declare namespace io.flow.experiment.internal.v0.enums {
|
|
13941
|
+
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
13942
|
+
type Scope = 'organization' | 'global';
|
|
13943
|
+
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
13944
|
+
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
13945
|
+
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
13946
|
+
}
|
|
13947
|
+
declare namespace io.flow.experiment.internal.v0.models {
|
|
13948
|
+
interface DailyExperimentResults {
|
|
13949
|
+
readonly id: string;
|
|
13950
|
+
readonly day: string;
|
|
13951
|
+
readonly experiment_key: string;
|
|
13952
|
+
readonly experiment_variant_key: string;
|
|
13953
|
+
readonly visitor_count: number;
|
|
13954
|
+
readonly visitors_with_transactions_count: number;
|
|
13955
|
+
readonly conversion_rate: number;
|
|
13956
|
+
readonly lower_bound: number;
|
|
13957
|
+
readonly upper_bound: number;
|
|
13958
|
+
readonly probability_of_being_best?: number;
|
|
13959
|
+
readonly currency?: string;
|
|
13960
|
+
readonly average_order_value?: number;
|
|
13961
|
+
readonly revenue_generated?: number;
|
|
13962
|
+
readonly total_order_count?: number;
|
|
13963
|
+
readonly conversion_rate_uplift?: number;
|
|
13964
|
+
readonly average_order_value_uplift?: number;
|
|
13965
|
+
readonly revenue_generated_uplift?: number;
|
|
13966
|
+
}
|
|
13967
|
+
interface ExperienceExperiment {
|
|
13968
|
+
readonly discriminator: 'experience';
|
|
13969
|
+
readonly id: string;
|
|
13970
|
+
readonly key: string;
|
|
13971
|
+
readonly name: string;
|
|
13972
|
+
readonly description?: string;
|
|
13973
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
13974
|
+
readonly emails: string[];
|
|
13975
|
+
readonly started_at?: string;
|
|
13976
|
+
readonly ended_at?: string;
|
|
13977
|
+
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
13978
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
13979
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
13980
|
+
}
|
|
13981
|
+
interface ExperienceVariant {
|
|
13982
|
+
readonly discriminator: 'experience_variant';
|
|
13983
|
+
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
13984
|
+
readonly traffic_percentage: number;
|
|
13985
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
13986
|
+
}
|
|
13987
|
+
interface ExperienceVariantForm {
|
|
13988
|
+
readonly discriminator: 'experience';
|
|
13989
|
+
readonly key: string;
|
|
13990
|
+
readonly traffic_percentage: number;
|
|
13991
|
+
}
|
|
13992
|
+
interface ExperienceVariantSummary {
|
|
13993
|
+
readonly key: string;
|
|
13994
|
+
readonly name?: string;
|
|
13995
|
+
}
|
|
13996
|
+
interface ExperimentForm {
|
|
13997
|
+
readonly name: string;
|
|
13998
|
+
readonly description?: string;
|
|
13999
|
+
readonly emails: string[];
|
|
14000
|
+
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
14001
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
14002
|
+
readonly session_query?: string;
|
|
14003
|
+
}
|
|
14004
|
+
interface ExperimentFormDefault {
|
|
14005
|
+
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
14006
|
+
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
14007
|
+
}
|
|
14008
|
+
interface ExperimentFormDefaultDiscriminator {
|
|
14009
|
+
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
14010
|
+
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
14011
|
+
}
|
|
14012
|
+
interface ExperimentFormDefaultDiscriminatorValue {
|
|
14013
|
+
readonly key: string;
|
|
14014
|
+
readonly name: string;
|
|
14015
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
14016
|
+
}
|
|
14017
|
+
interface ExperimentFormDefaultVariant {
|
|
14018
|
+
readonly key: string;
|
|
14019
|
+
readonly name: string;
|
|
14020
|
+
readonly traffic_percentage?: number;
|
|
14021
|
+
}
|
|
14022
|
+
interface ExperimentMilestone {
|
|
14023
|
+
readonly id: string;
|
|
14024
|
+
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
14025
|
+
readonly timestamp: string;
|
|
14026
|
+
readonly description: string;
|
|
14027
|
+
}
|
|
14028
|
+
interface ExperimentMilestoneForm {
|
|
14029
|
+
readonly timestamp?: string;
|
|
14030
|
+
readonly description: string;
|
|
14031
|
+
}
|
|
14032
|
+
interface ExperimentReference {
|
|
14033
|
+
readonly key: string;
|
|
14034
|
+
}
|
|
14035
|
+
interface ExperimentResults {
|
|
14036
|
+
readonly id: string;
|
|
14037
|
+
readonly experiment_key: string;
|
|
14038
|
+
readonly experiment_variant_key: string;
|
|
14039
|
+
readonly visitor_count: number;
|
|
14040
|
+
readonly visitors_with_transactions_count: number;
|
|
14041
|
+
readonly conversion_rate: number;
|
|
14042
|
+
readonly lower_bound: number;
|
|
14043
|
+
readonly upper_bound: number;
|
|
14044
|
+
readonly probability_of_being_best?: number;
|
|
14045
|
+
readonly currency?: string;
|
|
14046
|
+
readonly average_order_value?: number;
|
|
14047
|
+
readonly revenue_generated?: number;
|
|
14048
|
+
readonly total_order_count?: number;
|
|
14049
|
+
readonly conversion_rate_uplift?: number;
|
|
14050
|
+
readonly average_order_value_uplift?: number;
|
|
14051
|
+
readonly revenue_generated_uplift?: number;
|
|
14052
|
+
}
|
|
14053
|
+
interface ExperimentResultsWithTimestamp {
|
|
14054
|
+
readonly timestamp: string;
|
|
14055
|
+
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
14056
|
+
}
|
|
14057
|
+
interface ExperimentSessionQueryForm {
|
|
14058
|
+
readonly session_query?: string;
|
|
14059
|
+
}
|
|
14060
|
+
interface ExperimentVersion {
|
|
14061
|
+
readonly id: string;
|
|
14062
|
+
readonly timestamp: string;
|
|
14063
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
14064
|
+
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
14065
|
+
}
|
|
14066
|
+
interface FeatureExperiment {
|
|
14067
|
+
readonly discriminator: 'feature';
|
|
14068
|
+
readonly id: string;
|
|
14069
|
+
readonly key: string;
|
|
14070
|
+
readonly name: string;
|
|
14071
|
+
readonly description?: string;
|
|
14072
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
14073
|
+
readonly emails: string[];
|
|
14074
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
14075
|
+
readonly started_at?: string;
|
|
14076
|
+
readonly ended_at?: string;
|
|
14077
|
+
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
14078
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
14079
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
14080
|
+
readonly session_query?: string;
|
|
14081
|
+
}
|
|
14082
|
+
interface FeatureValueReference {
|
|
14083
|
+
readonly feature_key: string;
|
|
14084
|
+
readonly value: string;
|
|
14085
|
+
}
|
|
14086
|
+
interface FeatureVariant {
|
|
14087
|
+
readonly discriminator: 'feature_variant';
|
|
14088
|
+
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
14089
|
+
readonly traffic_percentage: number;
|
|
14090
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
14317
14091
|
}
|
|
14318
|
-
interface
|
|
14319
|
-
readonly discriminator: '
|
|
14320
|
-
readonly
|
|
14321
|
-
readonly
|
|
14092
|
+
interface FeatureVariantForm {
|
|
14093
|
+
readonly discriminator: 'feature';
|
|
14094
|
+
readonly key: string;
|
|
14095
|
+
readonly traffic_percentage: number;
|
|
14096
|
+
}
|
|
14097
|
+
interface FeatureVariantSummary {
|
|
14098
|
+
readonly key: string;
|
|
14099
|
+
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
14100
|
+
readonly name?: string;
|
|
14322
14101
|
}
|
|
14323
14102
|
}
|
|
14324
|
-
declare namespace io.flow.
|
|
14325
|
-
type
|
|
14103
|
+
declare namespace io.flow.experiment.internal.v0.unions {
|
|
14104
|
+
type Experiment = io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
14105
|
+
type Variant = io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
14106
|
+
type VariantForm = io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
14326
14107
|
}
|
|
14327
14108
|
declare namespace io.flow.internal.v0.enums {
|
|
14328
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
14109
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
14329
14110
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14330
14111
|
type AccountType = 'channel' | 'organization';
|
|
14331
14112
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -14337,7 +14118,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14337
14118
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14338
14119
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14339
14120
|
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';
|
|
14340
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
|
|
14121
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
|
|
14341
14122
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
14342
14123
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14343
14124
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
@@ -14352,7 +14133,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14352
14133
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
14353
14134
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
14354
14135
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
14355
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit';
|
|
14136
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
14356
14137
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
14357
14138
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14358
14139
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
@@ -14372,6 +14153,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14372
14153
|
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
14373
14154
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
14374
14155
|
type ColmItemType = 'physical' | 'digital';
|
|
14156
|
+
type Company = 'globale' | 'flow';
|
|
14375
14157
|
type ComplianceType = 'weee';
|
|
14376
14158
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
14377
14159
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -14401,11 +14183,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14401
14183
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14402
14184
|
type EmptyAttribute = 'irrelevant';
|
|
14403
14185
|
type ErpFileType = 'vendor';
|
|
14404
|
-
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' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_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_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | '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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_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';
|
|
14186
|
+
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' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_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_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | '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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | '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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14405
14187
|
type ExperienceImportType = 'experience_with_settings';
|
|
14406
14188
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14407
14189
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
14408
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
14409
14190
|
type ExportContentType = 'item' | 'price_book_item';
|
|
14410
14191
|
type FeatureScope = 'global' | 'organization';
|
|
14411
14192
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
@@ -14420,6 +14201,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14420
14201
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
14421
14202
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
14422
14203
|
type GoogleAnalyticsPlugin = 'ec';
|
|
14204
|
+
type HarinathItemType = 'digital' | 'physical';
|
|
14205
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
14423
14206
|
type HttpMethod = 'get' | 'post';
|
|
14424
14207
|
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
14425
14208
|
type InventoryReservation = 'synchronous-on-submit';
|
|
@@ -14429,6 +14212,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14429
14212
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
14430
14213
|
type ItemType = 'standard' | 'multi_product';
|
|
14431
14214
|
type KeywordType = 'positive' | 'negative';
|
|
14215
|
+
type KonstantinItemType = 'physical' | 'digital';
|
|
14432
14216
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14433
14217
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14434
14218
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -14436,6 +14220,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14436
14220
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14437
14221
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14438
14222
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14223
|
+
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14439
14224
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14440
14225
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
14441
14226
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
@@ -14449,6 +14234,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14449
14234
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14450
14235
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14451
14236
|
type MatiasItemType = 'physical' | 'digital';
|
|
14237
|
+
type MichaelyanItemType = 'physical' | 'digital';
|
|
14238
|
+
type MiljenkoItemType = 'physical' | 'digital';
|
|
14452
14239
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14453
14240
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14454
14241
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -14457,7 +14244,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14457
14244
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
|
|
14458
14245
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
14459
14246
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
14460
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
14247
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
14461
14248
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
14462
14249
|
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
14463
14250
|
type OrderAttributeIntent = 'discount_code';
|
|
@@ -14499,7 +14286,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14499
14286
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14500
14287
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14501
14288
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14502
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
|
|
14289
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
14503
14290
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14504
14291
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14505
14292
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14509,7 +14296,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14509
14296
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14510
14297
|
type RiskCheck = 'three_d_secure';
|
|
14511
14298
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14512
|
-
type Scope = 'organization' | 'global';
|
|
14513
14299
|
type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
|
|
14514
14300
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
14515
14301
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
@@ -14527,24 +14313,23 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14527
14313
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
14528
14314
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
14529
14315
|
type ShrutiDemoType = 'digital' | 'physical';
|
|
14530
|
-
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
14531
14316
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14532
14317
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14533
14318
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
14534
14319
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
14535
14320
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
14536
14321
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
14537
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
14538
14322
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
14539
14323
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14540
14324
|
type SvitlanaType = 'physical' | 'digital';
|
|
14541
14325
|
type TamItemType = 'physical' | 'digital';
|
|
14542
14326
|
type TariffEligibilityType = 'rex';
|
|
14543
14327
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
14328
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
14544
14329
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14545
14330
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14546
14331
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14547
|
-
type
|
|
14332
|
+
type ThiagoItemType = 'digital' | 'physical';
|
|
14548
14333
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14549
14334
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14550
14335
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -15240,15 +15025,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15240
15025
|
readonly keywords?: string[];
|
|
15241
15026
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
15242
15027
|
}
|
|
15243
|
-
interface Backfill {
|
|
15244
|
-
readonly days_to_backfill: string[];
|
|
15245
|
-
}
|
|
15246
|
-
interface BackfillForm {
|
|
15247
|
-
readonly start_date: string;
|
|
15248
|
-
readonly end_date: string;
|
|
15249
|
-
readonly organization_id?: string;
|
|
15250
|
-
readonly experiment_key?: string;
|
|
15251
|
-
}
|
|
15252
15028
|
interface BankAccountReference {
|
|
15253
15029
|
readonly id: string;
|
|
15254
15030
|
}
|
|
@@ -15351,7 +15127,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15351
15127
|
readonly discriminator: 'billing_csv_transaction_upserted';
|
|
15352
15128
|
readonly event_id: string;
|
|
15353
15129
|
readonly timestamp: string;
|
|
15354
|
-
readonly transaction: io.flow.
|
|
15130
|
+
readonly transaction: io.flow.internal.v0.models.CsvTransaction;
|
|
15355
15131
|
}
|
|
15356
15132
|
interface BillingInvoiceSummary {
|
|
15357
15133
|
readonly id: string;
|
|
@@ -16599,27 +16375,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16599
16375
|
readonly product_id: string;
|
|
16600
16376
|
}
|
|
16601
16377
|
interface ClassificationProductRequest {
|
|
16602
|
-
readonly
|
|
16603
|
-
readonly
|
|
16604
|
-
readonly
|
|
16605
|
-
readonly
|
|
16606
|
-
readonly
|
|
16607
|
-
readonly
|
|
16608
|
-
readonly
|
|
16609
|
-
readonly
|
|
16610
|
-
readonly
|
|
16611
|
-
readonly
|
|
16612
|
-
readonly
|
|
16378
|
+
readonly MerchantId: string;
|
|
16379
|
+
readonly ProductName: string;
|
|
16380
|
+
readonly ProductDescription: string;
|
|
16381
|
+
readonly ProductIdInternal: string;
|
|
16382
|
+
readonly ProductIdExternal: string;
|
|
16383
|
+
readonly ProductGroupCode?: string;
|
|
16384
|
+
readonly ProductUrl?: string;
|
|
16385
|
+
readonly ProductImage?: string;
|
|
16386
|
+
readonly ProductAttributes: Record<string, string>;
|
|
16387
|
+
readonly Categories?: string[];
|
|
16388
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16389
|
+
}
|
|
16390
|
+
interface ClassificationProductRequestEnvelope {
|
|
16391
|
+
readonly messageType: string[];
|
|
16392
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductRequest;
|
|
16613
16393
|
}
|
|
16614
16394
|
interface ClassificationProductResult {
|
|
16615
|
-
readonly
|
|
16616
|
-
readonly
|
|
16617
|
-
readonly
|
|
16618
|
-
readonly
|
|
16395
|
+
readonly productId: string;
|
|
16396
|
+
readonly merchantId: string;
|
|
16397
|
+
readonly platformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16398
|
+
readonly hsCode?: string;
|
|
16619
16399
|
readonly probability?: number;
|
|
16620
|
-
readonly
|
|
16621
|
-
readonly
|
|
16622
|
-
readonly
|
|
16400
|
+
readonly classificationDecision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
16401
|
+
readonly classificationType: io.flow.internal.v0.enums.ClassificationType;
|
|
16402
|
+
readonly clothingAgeClassification?: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
16403
|
+
}
|
|
16404
|
+
interface ClassificationProductResultEnvelope {
|
|
16405
|
+
readonly messageType: string[];
|
|
16406
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductResult;
|
|
16623
16407
|
}
|
|
16624
16408
|
interface ClassificationProductSummary {
|
|
16625
16409
|
readonly product_id: string;
|
|
@@ -16903,6 +16687,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16903
16687
|
readonly secret_key: string;
|
|
16904
16688
|
readonly signature_secret: string;
|
|
16905
16689
|
}
|
|
16690
|
+
interface CsvTransaction {
|
|
16691
|
+
readonly id: string;
|
|
16692
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
16693
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
16694
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
16695
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
16696
|
+
readonly currency: string;
|
|
16697
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16698
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
16699
|
+
readonly gross: number;
|
|
16700
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
16701
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
16702
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
16703
|
+
readonly net: number;
|
|
16704
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
16705
|
+
readonly created_at: string;
|
|
16706
|
+
readonly updated_at: string;
|
|
16707
|
+
}
|
|
16906
16708
|
interface CurrencyInternalRate {
|
|
16907
16709
|
readonly id: string;
|
|
16908
16710
|
readonly organization_id: string;
|
|
@@ -16995,49 +16797,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16995
16797
|
readonly material?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16996
16798
|
readonly construction?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16997
16799
|
}
|
|
16998
|
-
interface DailyExperimentEngineResults {
|
|
16999
|
-
readonly day: string;
|
|
17000
|
-
readonly organization_id: string;
|
|
17001
|
-
readonly experiment_key: string;
|
|
17002
|
-
readonly experiment_variant_key: string;
|
|
17003
|
-
readonly distinct_visitors_count: number;
|
|
17004
|
-
readonly visitors_with_transactions_count: number;
|
|
17005
|
-
readonly total_visitors_count: number;
|
|
17006
|
-
readonly total_revenue: number;
|
|
17007
|
-
}
|
|
17008
|
-
interface DailyExperimentResults {
|
|
17009
|
-
readonly id: string;
|
|
17010
|
-
readonly day: string;
|
|
17011
|
-
readonly experiment_key: string;
|
|
17012
|
-
readonly experiment_variant_key: string;
|
|
17013
|
-
readonly visitor_count: number;
|
|
17014
|
-
readonly visitors_with_transactions_count: number;
|
|
17015
|
-
readonly conversion_rate: number;
|
|
17016
|
-
readonly lower_bound: number;
|
|
17017
|
-
readonly upper_bound: number;
|
|
17018
|
-
readonly probability_of_being_best?: number;
|
|
17019
|
-
readonly currency?: string;
|
|
17020
|
-
readonly average_order_value?: number;
|
|
17021
|
-
readonly revenue_generated?: number;
|
|
17022
|
-
readonly total_order_count?: number;
|
|
17023
|
-
readonly conversion_rate_uplift?: number;
|
|
17024
|
-
readonly average_order_value_uplift?: number;
|
|
17025
|
-
readonly revenue_generated_uplift?: number;
|
|
17026
|
-
}
|
|
17027
|
-
interface DailyExperimentResultsDeleted {
|
|
17028
|
-
readonly discriminator: 'daily_experiment_results_deleted';
|
|
17029
|
-
readonly event_id: string;
|
|
17030
|
-
readonly timestamp: string;
|
|
17031
|
-
readonly organization_id: string;
|
|
17032
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
17033
|
-
}
|
|
17034
|
-
interface DailyExperimentResultsUpserted {
|
|
17035
|
-
readonly discriminator: 'daily_experiment_results_upserted';
|
|
17036
|
-
readonly event_id: string;
|
|
17037
|
-
readonly timestamp: string;
|
|
17038
|
-
readonly organization_id: string;
|
|
17039
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
17040
|
-
}
|
|
17041
16800
|
interface DailyValue {
|
|
17042
16801
|
readonly id: string;
|
|
17043
16802
|
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
@@ -17657,6 +17416,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17657
17416
|
readonly branch_des?: string;
|
|
17658
17417
|
}
|
|
17659
17418
|
interface ErpPriorityVendorForm {
|
|
17419
|
+
readonly company?: io.flow.internal.v0.enums.Company;
|
|
17660
17420
|
readonly acc_des?: string;
|
|
17661
17421
|
readonly tax_code?: string;
|
|
17662
17422
|
readonly tax_code_2?: string;
|
|
@@ -17746,20 +17506,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17746
17506
|
interface ExpectedOrderSummary {
|
|
17747
17507
|
readonly total?: io.flow.common.v0.models.Money;
|
|
17748
17508
|
}
|
|
17749
|
-
interface ExperienceExperiment {
|
|
17750
|
-
readonly discriminator: 'experience';
|
|
17751
|
-
readonly id: string;
|
|
17752
|
-
readonly key: string;
|
|
17753
|
-
readonly name: string;
|
|
17754
|
-
readonly description?: string;
|
|
17755
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
17756
|
-
readonly emails: string[];
|
|
17757
|
-
readonly started_at?: string;
|
|
17758
|
-
readonly ended_at?: string;
|
|
17759
|
-
readonly variants: io.flow.internal.v0.models.ExperienceVariant[];
|
|
17760
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
17761
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
17762
|
-
}
|
|
17763
17509
|
interface ExperienceExportRequest {
|
|
17764
17510
|
readonly discriminator: 'experience_export_request';
|
|
17765
17511
|
readonly event_id: string;
|
|
@@ -17786,143 +17532,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17786
17532
|
interface ExperienceSessionReference {
|
|
17787
17533
|
readonly id: string;
|
|
17788
17534
|
}
|
|
17789
|
-
interface ExperienceVariant {
|
|
17790
|
-
readonly discriminator: 'experience_variant';
|
|
17791
|
-
readonly experience: io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
17792
|
-
readonly traffic_percentage: number;
|
|
17793
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
17794
|
-
}
|
|
17795
|
-
interface ExperienceVariantForm {
|
|
17796
|
-
readonly discriminator: 'experience';
|
|
17797
|
-
readonly key: string;
|
|
17798
|
-
readonly traffic_percentage: number;
|
|
17799
|
-
}
|
|
17800
|
-
interface ExperienceVariantSummary {
|
|
17801
|
-
readonly key: string;
|
|
17802
|
-
readonly name?: string;
|
|
17803
|
-
}
|
|
17804
|
-
interface ExperimentDeleted {
|
|
17805
|
-
readonly discriminator: 'experiment_deleted';
|
|
17806
|
-
readonly event_id: string;
|
|
17807
|
-
readonly timestamp: string;
|
|
17808
|
-
readonly organization_id: string;
|
|
17809
|
-
readonly id: string;
|
|
17810
|
-
}
|
|
17811
|
-
interface ExperimentEngineResults {
|
|
17812
|
-
readonly organization_id: string;
|
|
17813
|
-
readonly experiment_key: string;
|
|
17814
|
-
readonly experiment_variant_key: string;
|
|
17815
|
-
readonly distinct_visitors_count: number;
|
|
17816
|
-
readonly visitors_with_transactions_count: number;
|
|
17817
|
-
readonly total_visitors_count: number;
|
|
17818
|
-
readonly total_revenue: number;
|
|
17819
|
-
readonly day?: string;
|
|
17820
|
-
}
|
|
17821
|
-
interface ExperimentForm {
|
|
17822
|
-
readonly name: string;
|
|
17823
|
-
readonly description?: string;
|
|
17824
|
-
readonly emails: string[];
|
|
17825
|
-
readonly variants: io.flow.internal.v0.unions.VariantForm[];
|
|
17826
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
17827
|
-
readonly session_query?: string;
|
|
17828
|
-
}
|
|
17829
|
-
interface ExperimentFormDefault {
|
|
17830
|
-
readonly discriminator: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
17831
|
-
readonly variants?: io.flow.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
17832
|
-
}
|
|
17833
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
17834
|
-
readonly key: io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
17835
|
-
readonly values: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
17836
|
-
}
|
|
17837
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
17838
|
-
readonly key: string;
|
|
17839
|
-
readonly name: string;
|
|
17840
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
17841
|
-
}
|
|
17842
|
-
interface ExperimentFormDefaultVariant {
|
|
17843
|
-
readonly key: string;
|
|
17844
|
-
readonly name: string;
|
|
17845
|
-
readonly traffic_percentage?: number;
|
|
17846
|
-
}
|
|
17847
|
-
interface ExperimentMilestone {
|
|
17848
|
-
readonly id: string;
|
|
17849
|
-
readonly experiment: io.flow.internal.v0.models.ExperimentReference;
|
|
17850
|
-
readonly timestamp: string;
|
|
17851
|
-
readonly description: string;
|
|
17852
|
-
}
|
|
17853
|
-
interface ExperimentMilestoneDeleted {
|
|
17854
|
-
readonly discriminator: 'experiment_milestone_deleted';
|
|
17855
|
-
readonly event_id: string;
|
|
17856
|
-
readonly timestamp: string;
|
|
17857
|
-
readonly organization: string;
|
|
17858
|
-
readonly id: string;
|
|
17859
|
-
}
|
|
17860
|
-
interface ExperimentMilestoneForm {
|
|
17861
|
-
readonly timestamp?: string;
|
|
17862
|
-
readonly description: string;
|
|
17863
|
-
}
|
|
17864
|
-
interface ExperimentMilestoneUpserted {
|
|
17865
|
-
readonly discriminator: 'experiment_milestone_upserted';
|
|
17866
|
-
readonly event_id: string;
|
|
17867
|
-
readonly timestamp: string;
|
|
17868
|
-
readonly organization: string;
|
|
17869
|
-
readonly experiment_milestone: io.flow.internal.v0.models.ExperimentMilestone;
|
|
17870
|
-
}
|
|
17871
|
-
interface ExperimentReference {
|
|
17872
|
-
readonly key: string;
|
|
17873
|
-
}
|
|
17874
|
-
interface ExperimentResults {
|
|
17875
|
-
readonly id: string;
|
|
17876
|
-
readonly experiment_key: string;
|
|
17877
|
-
readonly experiment_variant_key: string;
|
|
17878
|
-
readonly visitor_count: number;
|
|
17879
|
-
readonly visitors_with_transactions_count: number;
|
|
17880
|
-
readonly conversion_rate: number;
|
|
17881
|
-
readonly lower_bound: number;
|
|
17882
|
-
readonly upper_bound: number;
|
|
17883
|
-
readonly probability_of_being_best?: number;
|
|
17884
|
-
readonly currency?: string;
|
|
17885
|
-
readonly average_order_value?: number;
|
|
17886
|
-
readonly revenue_generated?: number;
|
|
17887
|
-
readonly total_order_count?: number;
|
|
17888
|
-
readonly conversion_rate_uplift?: number;
|
|
17889
|
-
readonly average_order_value_uplift?: number;
|
|
17890
|
-
readonly revenue_generated_uplift?: number;
|
|
17891
|
-
}
|
|
17892
|
-
interface ExperimentResultsDeleted {
|
|
17893
|
-
readonly discriminator: 'experiment_results_deleted';
|
|
17894
|
-
readonly event_id: string;
|
|
17895
|
-
readonly timestamp: string;
|
|
17896
|
-
readonly organization_id: string;
|
|
17897
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
17898
|
-
}
|
|
17899
|
-
interface ExperimentResultsUpserted {
|
|
17900
|
-
readonly discriminator: 'experiment_results_upserted';
|
|
17901
|
-
readonly event_id: string;
|
|
17902
|
-
readonly timestamp: string;
|
|
17903
|
-
readonly organization_id: string;
|
|
17904
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
17905
|
-
}
|
|
17906
|
-
interface ExperimentResultsWithTimestamp {
|
|
17907
|
-
readonly timestamp: string;
|
|
17908
|
-
readonly results: io.flow.internal.v0.models.ExperimentResults[];
|
|
17909
|
-
}
|
|
17910
|
-
interface ExperimentSessionQueryForm {
|
|
17911
|
-
readonly session_query?: string;
|
|
17912
|
-
}
|
|
17913
|
-
interface ExperimentUpserted {
|
|
17914
|
-
readonly discriminator: 'experiment_upserted';
|
|
17915
|
-
readonly event_id: string;
|
|
17916
|
-
readonly timestamp: string;
|
|
17917
|
-
readonly organization_id: string;
|
|
17918
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
17919
|
-
}
|
|
17920
|
-
interface ExperimentVersion {
|
|
17921
|
-
readonly id: string;
|
|
17922
|
-
readonly timestamp: string;
|
|
17923
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17924
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
17925
|
-
}
|
|
17926
17535
|
interface ExplicitStatement {
|
|
17927
17536
|
readonly id: string;
|
|
17928
17537
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -17983,6 +17592,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17983
17592
|
readonly delivery_estimate?: string;
|
|
17984
17593
|
readonly description?: string;
|
|
17985
17594
|
readonly order_number?: string;
|
|
17595
|
+
readonly raw_carrier_event_code?: string;
|
|
17986
17596
|
}
|
|
17987
17597
|
interface ExternalFulfillmentProof {
|
|
17988
17598
|
readonly id: string;
|
|
@@ -18046,22 +17656,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18046
17656
|
readonly organization: string;
|
|
18047
17657
|
readonly feature: io.flow.internal.v0.models.Feature;
|
|
18048
17658
|
}
|
|
18049
|
-
interface FeatureExperiment {
|
|
18050
|
-
readonly discriminator: 'feature';
|
|
18051
|
-
readonly id: string;
|
|
18052
|
-
readonly key: string;
|
|
18053
|
-
readonly name: string;
|
|
18054
|
-
readonly description?: string;
|
|
18055
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
18056
|
-
readonly emails: string[];
|
|
18057
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
18058
|
-
readonly started_at?: string;
|
|
18059
|
-
readonly ended_at?: string;
|
|
18060
|
-
readonly variants: io.flow.internal.v0.models.FeatureVariant[];
|
|
18061
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
18062
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
18063
|
-
readonly session_query?: string;
|
|
18064
|
-
}
|
|
18065
17659
|
interface FeatureForm {
|
|
18066
17660
|
readonly name: string;
|
|
18067
17661
|
readonly description?: string;
|
|
@@ -18109,29 +17703,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18109
17703
|
readonly feature_query: string;
|
|
18110
17704
|
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
18111
17705
|
}
|
|
18112
|
-
interface FeatureValueReference {
|
|
18113
|
-
readonly feature_key: string;
|
|
18114
|
-
readonly value: string;
|
|
18115
|
-
}
|
|
18116
17706
|
interface FeatureValueResult {
|
|
18117
17707
|
readonly values: io.flow.internal.v0.unions.FeatureValue[];
|
|
18118
17708
|
}
|
|
18119
|
-
interface FeatureVariant {
|
|
18120
|
-
readonly discriminator: 'feature_variant';
|
|
18121
|
-
readonly value: io.flow.internal.v0.models.FeatureVariantSummary;
|
|
18122
|
-
readonly traffic_percentage: number;
|
|
18123
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
18124
|
-
}
|
|
18125
|
-
interface FeatureVariantForm {
|
|
18126
|
-
readonly discriminator: 'feature';
|
|
18127
|
-
readonly key: string;
|
|
18128
|
-
readonly traffic_percentage: number;
|
|
18129
|
-
}
|
|
18130
|
-
interface FeatureVariantSummary {
|
|
18131
|
-
readonly key: string;
|
|
18132
|
-
readonly feature_value: io.flow.internal.v0.models.FeatureValueReference;
|
|
18133
|
-
readonly name?: string;
|
|
18134
|
-
}
|
|
18135
17709
|
interface Fedex {
|
|
18136
17710
|
readonly discriminator: 'fedex';
|
|
18137
17711
|
readonly key: string;
|
|
@@ -18353,8 +17927,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18353
17927
|
readonly reason: string;
|
|
18354
17928
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18355
17929
|
}
|
|
18356
|
-
interface
|
|
18357
|
-
readonly
|
|
17930
|
+
interface FraudAuthorizationSummary {
|
|
17931
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
17932
|
+
readonly fraud_pending_review_authorization?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
17933
|
+
readonly fraud_review_authorization_decision?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
18358
17934
|
}
|
|
18359
17935
|
interface FraudPendingReview {
|
|
18360
17936
|
readonly id: string;
|
|
@@ -18365,6 +17941,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18365
17941
|
readonly apply_at?: string;
|
|
18366
17942
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18367
17943
|
}
|
|
17944
|
+
interface FraudPendingReviewAuthorization {
|
|
17945
|
+
readonly id: string;
|
|
17946
|
+
readonly fraud_review_authorization_id: string;
|
|
17947
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
17948
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
17949
|
+
readonly recommended_status: io.flow.fraud.v0.enums.FraudStatus;
|
|
17950
|
+
readonly apply_at?: string;
|
|
17951
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
17952
|
+
}
|
|
17953
|
+
interface FraudPendingReviewAuthorizationDeleted {
|
|
17954
|
+
readonly discriminator: 'fraud_pending_review_authorization_deleted';
|
|
17955
|
+
readonly event_id: string;
|
|
17956
|
+
readonly timestamp: string;
|
|
17957
|
+
readonly organization: string;
|
|
17958
|
+
readonly id: string;
|
|
17959
|
+
}
|
|
17960
|
+
interface FraudPendingReviewAuthorizationUpserted {
|
|
17961
|
+
readonly discriminator: 'fraud_pending_review_authorization_upserted';
|
|
17962
|
+
readonly event_id: string;
|
|
17963
|
+
readonly timestamp: string;
|
|
17964
|
+
readonly organization: string;
|
|
17965
|
+
readonly fraud_pending_review_authorization: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
17966
|
+
}
|
|
18368
17967
|
interface FraudPendingReviewDeleted {
|
|
18369
17968
|
readonly discriminator: 'fraud_pending_review_deleted';
|
|
18370
17969
|
readonly event_id: string;
|
|
@@ -18420,7 +18019,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18420
18019
|
readonly organization: string;
|
|
18421
18020
|
readonly configuration: io.flow.internal.v0.unions.FraudProviderConfiguration;
|
|
18422
18021
|
}
|
|
18423
|
-
interface FraudReview {
|
|
18022
|
+
interface FraudReview {
|
|
18023
|
+
readonly id: string;
|
|
18024
|
+
readonly organization_id: string;
|
|
18025
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
18026
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
18027
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
18028
|
+
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
18029
|
+
readonly description?: string;
|
|
18030
|
+
readonly risk_evaluation?: io.flow.internal.v0.enums.RiskEvaluation;
|
|
18031
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18032
|
+
readonly status_updated_at?: string;
|
|
18033
|
+
readonly attributes?: Record<string, string>;
|
|
18034
|
+
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
18035
|
+
readonly payment_authorization_id?: string;
|
|
18036
|
+
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18037
|
+
readonly created_at?: string;
|
|
18038
|
+
}
|
|
18039
|
+
interface FraudReviewAuthorization {
|
|
18424
18040
|
readonly id: string;
|
|
18425
18041
|
readonly organization_id: string;
|
|
18426
18042
|
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
@@ -18437,6 +18053,44 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18437
18053
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18438
18054
|
readonly created_at?: string;
|
|
18439
18055
|
}
|
|
18056
|
+
interface FraudReviewAuthorizationDecision {
|
|
18057
|
+
readonly id: string;
|
|
18058
|
+
readonly fraud_review_authorization_id: string;
|
|
18059
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
18060
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
18061
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
18062
|
+
readonly created_at: string;
|
|
18063
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18064
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
18065
|
+
}
|
|
18066
|
+
interface FraudReviewAuthorizationDecisionDeleted {
|
|
18067
|
+
readonly discriminator: 'fraud_review_authorization_decision_deleted';
|
|
18068
|
+
readonly event_id: string;
|
|
18069
|
+
readonly timestamp: string;
|
|
18070
|
+
readonly organization: string;
|
|
18071
|
+
readonly id: string;
|
|
18072
|
+
}
|
|
18073
|
+
interface FraudReviewAuthorizationDecisionUpserted {
|
|
18074
|
+
readonly discriminator: 'fraud_review_authorization_decision_upserted';
|
|
18075
|
+
readonly event_id: string;
|
|
18076
|
+
readonly timestamp: string;
|
|
18077
|
+
readonly organization: string;
|
|
18078
|
+
readonly fraud_review_authorization_decision: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
18079
|
+
}
|
|
18080
|
+
interface FraudReviewAuthorizationDeleted {
|
|
18081
|
+
readonly discriminator: 'fraud_review_authorization_deleted';
|
|
18082
|
+
readonly event_id: string;
|
|
18083
|
+
readonly timestamp: string;
|
|
18084
|
+
readonly organization: string;
|
|
18085
|
+
readonly id: string;
|
|
18086
|
+
}
|
|
18087
|
+
interface FraudReviewAuthorizationUpserted {
|
|
18088
|
+
readonly discriminator: 'fraud_review_authorization_upserted';
|
|
18089
|
+
readonly event_id: string;
|
|
18090
|
+
readonly timestamp: string;
|
|
18091
|
+
readonly organization: string;
|
|
18092
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
18093
|
+
}
|
|
18440
18094
|
interface FraudReviewDecision {
|
|
18441
18095
|
readonly id: string;
|
|
18442
18096
|
readonly fraud_review_id: string;
|
|
@@ -18488,6 +18142,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18488
18142
|
readonly fraud_review: io.flow.internal.v0.models.FraudReview;
|
|
18489
18143
|
readonly fraud_pending_review?: io.flow.internal.v0.models.FraudPendingReview;
|
|
18490
18144
|
readonly fraud_review_decision?: io.flow.internal.v0.models.FraudReviewDecision;
|
|
18145
|
+
readonly fraud_review_authorizations?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
|
|
18491
18146
|
}
|
|
18492
18147
|
interface FtpFileDeleted {
|
|
18493
18148
|
readonly discriminator: 'ftp_file_deleted';
|
|
@@ -18552,6 +18207,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18552
18207
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
18553
18208
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
18554
18209
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
18210
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
18555
18211
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18556
18212
|
readonly sequence_number: number;
|
|
18557
18213
|
readonly posting_cutoff: string;
|
|
@@ -18656,6 +18312,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18656
18312
|
readonly subtotal: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18657
18313
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18658
18314
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18315
|
+
readonly tips?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18659
18316
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18660
18317
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18661
18318
|
}
|
|
@@ -18793,6 +18450,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18793
18450
|
readonly discriminator: 'google_tag_manager';
|
|
18794
18451
|
readonly tracker_id: string;
|
|
18795
18452
|
}
|
|
18453
|
+
interface HarinathItem {
|
|
18454
|
+
readonly id: string;
|
|
18455
|
+
readonly number: string;
|
|
18456
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18457
|
+
readonly description?: string;
|
|
18458
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
18459
|
+
readonly added_on: string;
|
|
18460
|
+
}
|
|
18461
|
+
interface HarinathItemDeleted {
|
|
18462
|
+
readonly discriminator: 'harinath_item_deleted';
|
|
18463
|
+
readonly event_id: string;
|
|
18464
|
+
readonly timestamp: string;
|
|
18465
|
+
readonly id: string;
|
|
18466
|
+
}
|
|
18467
|
+
interface HarinathItemForm {
|
|
18468
|
+
readonly number: string;
|
|
18469
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18470
|
+
readonly description?: string;
|
|
18471
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
18472
|
+
readonly added_on: string;
|
|
18473
|
+
}
|
|
18474
|
+
interface HarinathItemUpserted {
|
|
18475
|
+
readonly discriminator: 'harinath_item_upserted';
|
|
18476
|
+
readonly event_id: string;
|
|
18477
|
+
readonly timestamp: string;
|
|
18478
|
+
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
18479
|
+
}
|
|
18796
18480
|
interface HarmonizationClassificationStatisticsData {
|
|
18797
18481
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
18798
18482
|
}
|
|
@@ -19252,6 +18936,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19252
18936
|
readonly price_amount?: number;
|
|
19253
18937
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
19254
18938
|
readonly tariffs?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
18939
|
+
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
19255
18940
|
readonly created_at?: string;
|
|
19256
18941
|
readonly updated_at?: string;
|
|
19257
18942
|
readonly updated_by_user_id?: string;
|
|
@@ -19386,6 +19071,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19386
19071
|
readonly standard_asset_urls?: string;
|
|
19387
19072
|
readonly descriptive_asset_urls?: string;
|
|
19388
19073
|
}
|
|
19074
|
+
interface KonstantinItem {
|
|
19075
|
+
readonly id: string;
|
|
19076
|
+
readonly number: string;
|
|
19077
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19078
|
+
readonly description?: string;
|
|
19079
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
19080
|
+
readonly added_on: string;
|
|
19081
|
+
}
|
|
19082
|
+
interface KonstantinItemDeleted {
|
|
19083
|
+
readonly discriminator: 'konstantin_item_deleted';
|
|
19084
|
+
readonly event_id: string;
|
|
19085
|
+
readonly timestamp: string;
|
|
19086
|
+
readonly id: string;
|
|
19087
|
+
}
|
|
19088
|
+
interface KonstantinItemForm {
|
|
19089
|
+
readonly number: string;
|
|
19090
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19091
|
+
readonly description?: string;
|
|
19092
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
19093
|
+
readonly added_on: string;
|
|
19094
|
+
}
|
|
19095
|
+
interface KonstantinItemUpserted {
|
|
19096
|
+
readonly discriminator: 'konstantin_item_upserted';
|
|
19097
|
+
readonly event_id: string;
|
|
19098
|
+
readonly timestamp: string;
|
|
19099
|
+
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
19100
|
+
}
|
|
19389
19101
|
interface LabProjectSettings {
|
|
19390
19102
|
readonly id: string;
|
|
19391
19103
|
readonly flow_lab_project_key: string;
|
|
@@ -19866,6 +19578,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19866
19578
|
interface LogisticsCapabilitiesForm {
|
|
19867
19579
|
readonly capabilities: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
19868
19580
|
}
|
|
19581
|
+
interface LogisticsPayoutRequest {
|
|
19582
|
+
readonly organization_id: string;
|
|
19583
|
+
readonly order_number: string;
|
|
19584
|
+
readonly carrier: string;
|
|
19585
|
+
readonly carrier_tracking_number: string;
|
|
19586
|
+
readonly dry_run: boolean;
|
|
19587
|
+
readonly payout_resolution_method: io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
19588
|
+
readonly label_id?: string;
|
|
19589
|
+
readonly combined_shipment_order_number?: string;
|
|
19590
|
+
}
|
|
19591
|
+
interface LogisticsPayoutRequestForm {
|
|
19592
|
+
readonly organization_id: string;
|
|
19593
|
+
readonly order_identifier: string;
|
|
19594
|
+
readonly carrier_id?: string;
|
|
19595
|
+
readonly carrier_name?: string;
|
|
19596
|
+
readonly carrier_tracking_number?: string;
|
|
19597
|
+
readonly external_reference_number?: string;
|
|
19598
|
+
}
|
|
19869
19599
|
interface Logo {
|
|
19870
19600
|
readonly url: string;
|
|
19871
19601
|
}
|
|
@@ -20355,6 +20085,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20355
20085
|
readonly id: string;
|
|
20356
20086
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
20357
20087
|
}
|
|
20088
|
+
interface MichaelyanItem {
|
|
20089
|
+
readonly id: string;
|
|
20090
|
+
readonly number: string;
|
|
20091
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20092
|
+
readonly description?: string;
|
|
20093
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
20094
|
+
readonly added_on: string;
|
|
20095
|
+
}
|
|
20096
|
+
interface MichaelyanItemDeleted {
|
|
20097
|
+
readonly discriminator: 'michaelyan_item_deleted';
|
|
20098
|
+
readonly event_id: string;
|
|
20099
|
+
readonly timestamp: string;
|
|
20100
|
+
readonly id: string;
|
|
20101
|
+
}
|
|
20102
|
+
interface MichaelyanItemForm {
|
|
20103
|
+
readonly number: string;
|
|
20104
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20105
|
+
readonly description?: string;
|
|
20106
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
20107
|
+
readonly added_on: string;
|
|
20108
|
+
}
|
|
20109
|
+
interface MichaelyanItemUpserted {
|
|
20110
|
+
readonly discriminator: 'michaelyan_item_upserted';
|
|
20111
|
+
readonly event_id: string;
|
|
20112
|
+
readonly timestamp: string;
|
|
20113
|
+
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
20114
|
+
}
|
|
20115
|
+
interface MiljenkoItem {
|
|
20116
|
+
readonly id: string;
|
|
20117
|
+
readonly number: string;
|
|
20118
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20119
|
+
readonly description?: string;
|
|
20120
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
20121
|
+
readonly added_on: string;
|
|
20122
|
+
}
|
|
20123
|
+
interface MiljenkoItemDeleted {
|
|
20124
|
+
readonly discriminator: 'miljenko_item_deleted';
|
|
20125
|
+
readonly event_id: string;
|
|
20126
|
+
readonly timestamp: string;
|
|
20127
|
+
readonly id: string;
|
|
20128
|
+
}
|
|
20129
|
+
interface MiljenkoItemForm {
|
|
20130
|
+
readonly number: string;
|
|
20131
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20132
|
+
readonly description?: string;
|
|
20133
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
20134
|
+
readonly added_on: string;
|
|
20135
|
+
}
|
|
20136
|
+
interface MiljenkoItemUpserted {
|
|
20137
|
+
readonly discriminator: 'miljenko_item_upserted';
|
|
20138
|
+
readonly event_id: string;
|
|
20139
|
+
readonly timestamp: string;
|
|
20140
|
+
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
20141
|
+
}
|
|
20358
20142
|
interface NextBillingStatement {
|
|
20359
20143
|
readonly date: string;
|
|
20360
20144
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20707,6 +20491,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20707
20491
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
20708
20492
|
readonly currency: string;
|
|
20709
20493
|
}
|
|
20494
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
20495
|
+
readonly id: string;
|
|
20496
|
+
readonly organization_id: string;
|
|
20497
|
+
readonly shopify_order_id: string;
|
|
20498
|
+
readonly order_number: string;
|
|
20499
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
20500
|
+
}
|
|
20501
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
20502
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
20503
|
+
readonly event_id: string;
|
|
20504
|
+
readonly timestamp: string;
|
|
20505
|
+
readonly organization: string;
|
|
20506
|
+
readonly id: string;
|
|
20507
|
+
}
|
|
20508
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
20509
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
20510
|
+
readonly event_id: string;
|
|
20511
|
+
readonly timestamp: string;
|
|
20512
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
20513
|
+
}
|
|
20710
20514
|
interface OrderTransaction {
|
|
20711
20515
|
readonly discriminator: 'order_transaction';
|
|
20712
20516
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -20961,6 +20765,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20961
20765
|
readonly from: string;
|
|
20962
20766
|
readonly to: string;
|
|
20963
20767
|
}
|
|
20768
|
+
interface OrganizationMetadata {
|
|
20769
|
+
readonly id: string;
|
|
20770
|
+
readonly organization_id: string;
|
|
20771
|
+
readonly pending_restriction_count: number;
|
|
20772
|
+
readonly pending_verification_count: number;
|
|
20773
|
+
readonly oldest_pending_restriction_date?: string;
|
|
20774
|
+
readonly oldest_pending_verification_date?: string;
|
|
20775
|
+
readonly product_count: number;
|
|
20776
|
+
readonly restricted_product_count: number;
|
|
20777
|
+
readonly last_order_submitted_at?: string;
|
|
20778
|
+
}
|
|
20779
|
+
interface OrganizationMetadataDeleted {
|
|
20780
|
+
readonly discriminator: 'organization_metadata_deleted';
|
|
20781
|
+
readonly event_id: string;
|
|
20782
|
+
readonly timestamp: string;
|
|
20783
|
+
readonly organization: string;
|
|
20784
|
+
readonly id: string;
|
|
20785
|
+
}
|
|
20786
|
+
interface OrganizationMetadataUpserted {
|
|
20787
|
+
readonly discriminator: 'organization_metadata_upserted';
|
|
20788
|
+
readonly event_id: string;
|
|
20789
|
+
readonly timestamp: string;
|
|
20790
|
+
readonly organization: string;
|
|
20791
|
+
readonly organization_metadata: io.flow.internal.v0.models.OrganizationMetadata;
|
|
20792
|
+
}
|
|
20964
20793
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
20965
20794
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
20966
20795
|
}
|
|
@@ -21126,6 +20955,124 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21126
20955
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
21127
20956
|
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
21128
20957
|
}
|
|
20958
|
+
interface OtherRecord {
|
|
20959
|
+
readonly id: string;
|
|
20960
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
20961
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
20962
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
20963
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
20964
|
+
readonly currency: string;
|
|
20965
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
20966
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
20967
|
+
readonly gross: number;
|
|
20968
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
20969
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
20970
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
20971
|
+
readonly net: number;
|
|
20972
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
20973
|
+
readonly created_at: string;
|
|
20974
|
+
readonly updated_at: string;
|
|
20975
|
+
}
|
|
20976
|
+
interface OtherRecordAccount {
|
|
20977
|
+
readonly id: string;
|
|
20978
|
+
readonly merchant?: io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
20979
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
20980
|
+
readonly source: io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
20981
|
+
}
|
|
20982
|
+
interface OtherRecordAccountSourceSummary {
|
|
20983
|
+
readonly id: string;
|
|
20984
|
+
readonly type: io.flow.internal.v0.enums.AccountType;
|
|
20985
|
+
}
|
|
20986
|
+
interface OtherRecordDeleted {
|
|
20987
|
+
readonly discriminator: 'other_record_deleted';
|
|
20988
|
+
readonly event_id: string;
|
|
20989
|
+
readonly timestamp: string;
|
|
20990
|
+
readonly id: string;
|
|
20991
|
+
}
|
|
20992
|
+
interface OtherRecordDiscount {
|
|
20993
|
+
readonly amount: number;
|
|
20994
|
+
readonly description?: string;
|
|
20995
|
+
}
|
|
20996
|
+
interface OtherRecordFees {
|
|
20997
|
+
readonly duty_guarantee: number;
|
|
20998
|
+
readonly mor: number;
|
|
20999
|
+
readonly fraud: number;
|
|
21000
|
+
readonly fx: number;
|
|
21001
|
+
readonly processing: number;
|
|
21002
|
+
readonly rate_lock: number;
|
|
21003
|
+
readonly transfer: number;
|
|
21004
|
+
readonly negative_balance: number;
|
|
21005
|
+
}
|
|
21006
|
+
interface OtherRecordIdentifiers {
|
|
21007
|
+
readonly reference_id?: string;
|
|
21008
|
+
}
|
|
21009
|
+
interface OtherRecordMerchantReference {
|
|
21010
|
+
readonly id: string;
|
|
21011
|
+
}
|
|
21012
|
+
interface OtherRecordMetadata {
|
|
21013
|
+
readonly channel?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
21014
|
+
readonly shipping_label?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
21015
|
+
readonly shipping_label_revenue_share?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
21016
|
+
readonly trueup?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
21017
|
+
readonly carrier_charge?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
21018
|
+
readonly manual?: io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
21019
|
+
readonly failed_payout?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
21020
|
+
}
|
|
21021
|
+
interface OtherRecordMetadataCarrierCharge {
|
|
21022
|
+
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
21023
|
+
readonly label_created_at: string;
|
|
21024
|
+
readonly carrier_id: string;
|
|
21025
|
+
readonly carrier_tracking_number: string;
|
|
21026
|
+
readonly revenue_share_percentage: number;
|
|
21027
|
+
readonly outbound_transaction_id?: string;
|
|
21028
|
+
}
|
|
21029
|
+
interface OtherRecordMetadataChannel {
|
|
21030
|
+
readonly method: string;
|
|
21031
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
21032
|
+
}
|
|
21033
|
+
interface OtherRecordMetadataFailedPayout {
|
|
21034
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
21035
|
+
}
|
|
21036
|
+
interface OtherRecordMetadataManual {
|
|
21037
|
+
readonly description: string;
|
|
21038
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
21039
|
+
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21040
|
+
readonly url?: string;
|
|
21041
|
+
}
|
|
21042
|
+
interface OtherRecordMetadataShippingLabel {
|
|
21043
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
21044
|
+
}
|
|
21045
|
+
interface OtherRecordMetadataShippingLabelRevenueShare {
|
|
21046
|
+
readonly label_id: string;
|
|
21047
|
+
readonly base_amount?: number;
|
|
21048
|
+
readonly percentage?: number;
|
|
21049
|
+
}
|
|
21050
|
+
interface OtherRecordMetadataTrueup {
|
|
21051
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
21052
|
+
readonly label_transaction_id: string;
|
|
21053
|
+
readonly label_invoice_request_id: string;
|
|
21054
|
+
readonly carrier_charge_id: string;
|
|
21055
|
+
}
|
|
21056
|
+
interface OtherRecordOrderSummary {
|
|
21057
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
21058
|
+
readonly number: string;
|
|
21059
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
21060
|
+
}
|
|
21061
|
+
interface OtherRecordOrderSummaryIdentifiers {
|
|
21062
|
+
readonly shopify_order_id?: string;
|
|
21063
|
+
}
|
|
21064
|
+
interface OtherRecordUpserted {
|
|
21065
|
+
readonly discriminator: 'other_record_upserted';
|
|
21066
|
+
readonly event_id: string;
|
|
21067
|
+
readonly timestamp: string;
|
|
21068
|
+
readonly other_record: io.flow.internal.v0.models.OtherRecord;
|
|
21069
|
+
}
|
|
21070
|
+
interface OtherRecordWithholdings {
|
|
21071
|
+
readonly tax: number;
|
|
21072
|
+
readonly duty: number;
|
|
21073
|
+
readonly freight: number;
|
|
21074
|
+
readonly insurance: number;
|
|
21075
|
+
}
|
|
21129
21076
|
interface Partner {
|
|
21130
21077
|
readonly id: string;
|
|
21131
21078
|
readonly name: string;
|
|
@@ -21271,6 +21218,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21271
21218
|
readonly id: string;
|
|
21272
21219
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
21273
21220
|
}
|
|
21221
|
+
interface PaymentSummary {
|
|
21222
|
+
readonly psp: number;
|
|
21223
|
+
readonly credit: number;
|
|
21224
|
+
readonly subsidized: number;
|
|
21225
|
+
readonly manual: number;
|
|
21226
|
+
readonly cod: number;
|
|
21227
|
+
readonly total: number;
|
|
21228
|
+
}
|
|
21274
21229
|
interface PaymentSummaryV2 {
|
|
21275
21230
|
readonly discriminator: 'payment_summary_v2';
|
|
21276
21231
|
readonly id: string;
|
|
@@ -21465,6 +21420,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21465
21420
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
21466
21421
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
21467
21422
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
21423
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
21468
21424
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
21469
21425
|
readonly sequence_number: number;
|
|
21470
21426
|
readonly posting_cutoff: string;
|
|
@@ -22286,11 +22242,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22286
22242
|
readonly sequence_number: number;
|
|
22287
22243
|
readonly fulfilled_at: string;
|
|
22288
22244
|
readonly completes_order: boolean;
|
|
22289
|
-
readonly payment: io.flow.internal.v0.models.ReportingPayment;
|
|
22290
22245
|
readonly refund?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
22291
22246
|
readonly value: io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
22292
22247
|
readonly dispatch_country?: io.flow.internal.v0.models.ReportingCountry;
|
|
22293
22248
|
readonly destination?: io.flow.internal.v0.models.ReportingDestination;
|
|
22249
|
+
readonly payment?: io.flow.internal.v0.models.ReportingPayment;
|
|
22294
22250
|
readonly shipment?: io.flow.internal.v0.models.ReportingShipment;
|
|
22295
22251
|
readonly is: io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
22296
22252
|
readonly has: io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
@@ -22307,6 +22263,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22307
22263
|
readonly wyol: boolean;
|
|
22308
22264
|
readonly b2b: boolean;
|
|
22309
22265
|
readonly domestic: boolean;
|
|
22266
|
+
readonly combined_shipment?: boolean;
|
|
22267
|
+
readonly order_cancelled?: boolean;
|
|
22268
|
+
readonly lvg?: boolean;
|
|
22269
|
+
readonly tax_inclusive?: boolean;
|
|
22270
|
+
readonly duty_inclusive?: boolean;
|
|
22310
22271
|
}
|
|
22311
22272
|
interface ReportingFx {
|
|
22312
22273
|
readonly shipping: io.flow.internal.v0.models.ReportingUsd;
|
|
@@ -22314,6 +22275,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22314
22275
|
readonly product: io.flow.internal.v0.models.ReportingUsd;
|
|
22315
22276
|
readonly tax: io.flow.internal.v0.models.ReportingUsd;
|
|
22316
22277
|
readonly duty: io.flow.internal.v0.models.ReportingUsd;
|
|
22278
|
+
readonly tips?: io.flow.internal.v0.models.ReportingUsd;
|
|
22317
22279
|
readonly total: io.flow.internal.v0.models.ReportingUsd;
|
|
22318
22280
|
}
|
|
22319
22281
|
interface ReportingMerchantBreakdown {
|
|
@@ -22329,12 +22291,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22329
22291
|
readonly processing: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22330
22292
|
readonly rate_lock: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22331
22293
|
readonly transfer: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22294
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22332
22295
|
}
|
|
22333
22296
|
interface ReportingMerchantSubsidies {
|
|
22334
22297
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22335
22298
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22336
22299
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22337
22300
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22301
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22338
22302
|
}
|
|
22339
22303
|
interface ReportingMerchantTransactions {
|
|
22340
22304
|
readonly adjustment: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -22342,6 +22306,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22342
22306
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22343
22307
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22344
22308
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22309
|
+
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22310
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22345
22311
|
}
|
|
22346
22312
|
interface ReportingMonetaryValue {
|
|
22347
22313
|
readonly transaction: number;
|
|
@@ -22360,22 +22326,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22360
22326
|
readonly name: string;
|
|
22361
22327
|
}
|
|
22362
22328
|
interface ReportingPayment {
|
|
22363
|
-
readonly metadata?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
22364
22329
|
readonly psp: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22365
22330
|
readonly credit: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22331
|
+
readonly subsidized: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22332
|
+
readonly manual: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22333
|
+
readonly cod: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22366
22334
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22367
22335
|
}
|
|
22368
|
-
interface ReportingPaymentMetadata {
|
|
22369
|
-
readonly gateway: io.flow.internal.v0.enums.Processor;
|
|
22370
|
-
readonly method: string;
|
|
22371
|
-
readonly psp_reference?: string;
|
|
22372
|
-
readonly authorization?: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
22373
|
-
readonly settlement_date: string;
|
|
22374
|
-
readonly additional_authorizations?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
22375
|
-
}
|
|
22376
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
22377
|
-
readonly ids: string;
|
|
22378
|
-
}
|
|
22379
22336
|
interface ReportingProvince {
|
|
22380
22337
|
readonly code?: string;
|
|
22381
22338
|
readonly name: string;
|
|
@@ -22400,6 +22357,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22400
22357
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22401
22358
|
readonly emergency: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22402
22359
|
readonly peak: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22360
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22403
22361
|
}
|
|
22404
22362
|
interface ReportingUsd {
|
|
22405
22363
|
readonly usd: number;
|
|
@@ -22421,6 +22379,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22421
22379
|
readonly ignore_classification_status: boolean;
|
|
22422
22380
|
readonly select_mismatching_item_types: boolean;
|
|
22423
22381
|
}
|
|
22382
|
+
interface RescreenRestrictionsProducts {
|
|
22383
|
+
readonly placeholder?: boolean;
|
|
22384
|
+
}
|
|
22424
22385
|
interface RestrictionCategory {
|
|
22425
22386
|
readonly category: string;
|
|
22426
22387
|
}
|
|
@@ -22661,6 +22622,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22661
22622
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
22662
22623
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
22663
22624
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
22625
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
22664
22626
|
readonly sequence_number: number;
|
|
22665
22627
|
readonly posting_cutoff: string;
|
|
22666
22628
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -22835,7 +22797,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22835
22797
|
readonly discriminator: 'search_experiment_summary';
|
|
22836
22798
|
readonly key: string;
|
|
22837
22799
|
readonly name: string;
|
|
22838
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
22800
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
22839
22801
|
}
|
|
22840
22802
|
interface SearchItemSummary {
|
|
22841
22803
|
readonly discriminator: 'search_item_summary';
|
|
@@ -23380,6 +23342,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23380
23342
|
readonly id: string;
|
|
23381
23343
|
readonly initial_catalog_synced_at?: string;
|
|
23382
23344
|
readonly catalog_sync_duration?: number;
|
|
23345
|
+
readonly restrictions_sync_duration?: number;
|
|
23346
|
+
readonly classifications_sync_duration?: number;
|
|
23383
23347
|
readonly catalog_products_count?: number;
|
|
23384
23348
|
readonly initial_product_restrictions_synced_at?: string;
|
|
23385
23349
|
}
|
|
@@ -23443,6 +23407,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23443
23407
|
readonly product: io.flow.internal.v0.models.ShopperLines;
|
|
23444
23408
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
23445
23409
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
23410
|
+
readonly tips?: number;
|
|
23446
23411
|
readonly order_discount: number;
|
|
23447
23412
|
readonly total: number;
|
|
23448
23413
|
}
|
|
@@ -24062,6 +24027,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24062
24027
|
interface TestForm {
|
|
24063
24028
|
readonly name: string;
|
|
24064
24029
|
}
|
|
24030
|
+
interface ThiagoItem {
|
|
24031
|
+
readonly id: string;
|
|
24032
|
+
readonly number: string;
|
|
24033
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24034
|
+
readonly description?: string;
|
|
24035
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
24036
|
+
readonly added_on: string;
|
|
24037
|
+
}
|
|
24038
|
+
interface ThiagoItemForm {
|
|
24039
|
+
readonly number: string;
|
|
24040
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24041
|
+
readonly description?: string;
|
|
24042
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
24043
|
+
readonly added_on: string;
|
|
24044
|
+
}
|
|
24065
24045
|
interface ThirdPartyLogisticsPartner {
|
|
24066
24046
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
24067
24047
|
readonly warehouse_url?: string;
|
|
@@ -24129,6 +24109,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24129
24109
|
readonly time: string;
|
|
24130
24110
|
readonly timezone: string;
|
|
24131
24111
|
}
|
|
24112
|
+
interface TrackingAssuranceAnalysis {
|
|
24113
|
+
readonly id: string;
|
|
24114
|
+
readonly job_id: string;
|
|
24115
|
+
readonly label_id: string;
|
|
24116
|
+
readonly order_number: string;
|
|
24117
|
+
readonly carrier_tracking_number: string;
|
|
24118
|
+
readonly flow_tracking_number: string;
|
|
24119
|
+
readonly carrier_status: string;
|
|
24120
|
+
readonly aftership_status: string;
|
|
24121
|
+
readonly flow_status: string;
|
|
24122
|
+
readonly latest_carrier_event_date: string;
|
|
24123
|
+
readonly latest_aftership_event_date: string;
|
|
24124
|
+
readonly latest_flow_event_date: string;
|
|
24125
|
+
readonly label_created_at: string;
|
|
24126
|
+
readonly carrier_id: string;
|
|
24127
|
+
readonly carrier_origin_country?: string;
|
|
24128
|
+
readonly label_origin_country: string;
|
|
24129
|
+
readonly label_destination_country: string;
|
|
24130
|
+
readonly carrier_destination_country?: string;
|
|
24131
|
+
}
|
|
24132
|
+
interface TrackingAssuranceAnalysisDeleted {
|
|
24133
|
+
readonly discriminator: 'tracking_assurance_analysis_deleted';
|
|
24134
|
+
readonly event_id: string;
|
|
24135
|
+
readonly timestamp: string;
|
|
24136
|
+
readonly organization: string;
|
|
24137
|
+
readonly id: string;
|
|
24138
|
+
}
|
|
24139
|
+
interface TrackingAssuranceAnalysisUpserted {
|
|
24140
|
+
readonly discriminator: 'tracking_assurance_analysis_upserted';
|
|
24141
|
+
readonly event_id: string;
|
|
24142
|
+
readonly timestamp: string;
|
|
24143
|
+
readonly organization: string;
|
|
24144
|
+
readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
24145
|
+
}
|
|
24146
|
+
interface TrackingDebugForceTransitForm {
|
|
24147
|
+
readonly description: string;
|
|
24148
|
+
}
|
|
24132
24149
|
interface TrackingDebugLabel {
|
|
24133
24150
|
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
24134
24151
|
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -24526,8 +24543,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24526
24543
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
24527
24544
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
24528
24545
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
24529
|
-
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | 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;
|
|
24530
|
-
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
24546
|
+
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | 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.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | 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.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24531
24547
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
24532
24548
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
24533
24549
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -24586,8 +24602,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24586
24602
|
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
24587
24603
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
24588
24604
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
24589
|
-
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
24590
|
-
type VariantForm = io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm;
|
|
24591
24605
|
}
|
|
24592
24606
|
export declare type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
24593
24607
|
export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
@@ -24709,8 +24723,6 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
24709
24723
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
24710
24724
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
24711
24725
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
24712
|
-
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
24713
|
-
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
24714
24726
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
24715
24727
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
24716
24728
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -24966,7 +24978,9 @@ export declare type ClassificationProduct = io.flow.internal.v0.models.Classific
|
|
|
24966
24978
|
export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
24967
24979
|
export declare type ClassificationProductId = io.flow.internal.v0.models.ClassificationProductId;
|
|
24968
24980
|
export declare type ClassificationProductRequest = io.flow.internal.v0.models.ClassificationProductRequest;
|
|
24981
|
+
export declare type ClassificationProductRequestEnvelope = io.flow.internal.v0.models.ClassificationProductRequestEnvelope;
|
|
24969
24982
|
export declare type ClassificationProductResult = io.flow.internal.v0.models.ClassificationProductResult;
|
|
24983
|
+
export declare type ClassificationProductResultEnvelope = io.flow.internal.v0.models.ClassificationProductResultEnvelope;
|
|
24970
24984
|
export declare type ClassificationProductSummary = io.flow.internal.v0.models.ClassificationProductSummary;
|
|
24971
24985
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
24972
24986
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
@@ -24991,6 +25005,7 @@ export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.Comme
|
|
|
24991
25005
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
24992
25006
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
24993
25007
|
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
25008
|
+
export declare type Company = io.flow.internal.v0.enums.Company;
|
|
24994
25009
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
24995
25010
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
24996
25011
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -25025,6 +25040,7 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
25025
25040
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
25026
25041
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
25027
25042
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
25043
|
+
export declare type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
25028
25044
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
25029
25045
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
25030
25046
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -25038,10 +25054,6 @@ export declare type CustomsDetails = io.flow.internal.v0.models.CustomsDetails;
|
|
|
25038
25054
|
export declare type CustomsDetailsForm = io.flow.internal.v0.models.CustomsDetailsForm;
|
|
25039
25055
|
export declare type CustomsProductAttributeLabel = io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
25040
25056
|
export declare type CustomsProductLabels = io.flow.internal.v0.models.CustomsProductLabels;
|
|
25041
|
-
export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.DailyExperimentEngineResults;
|
|
25042
|
-
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
25043
|
-
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
25044
|
-
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
25045
25057
|
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
25046
25058
|
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
25047
25059
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
@@ -25171,7 +25183,6 @@ export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionR
|
|
|
25171
25183
|
export declare type ExclusionRuleExportRequest = io.flow.internal.v0.models.ExclusionRuleExportRequest;
|
|
25172
25184
|
export declare type ExclusionRuleUpserted = io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
25173
25185
|
export declare type ExpectedOrderSummary = io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
25174
|
-
export declare type ExperienceExperiment = io.flow.internal.v0.models.ExperienceExperiment;
|
|
25175
25186
|
export declare type ExperienceExportRequest = io.flow.internal.v0.models.ExperienceExportRequest;
|
|
25176
25187
|
export declare type ExperienceImportRequest = io.flow.internal.v0.models.ExperienceImportRequest;
|
|
25177
25188
|
export declare type ExperienceImportType = io.flow.internal.v0.enums.ExperienceImportType;
|
|
@@ -25179,30 +25190,6 @@ export declare type ExperienceOrderAction = io.flow.internal.v0.enums.Experience
|
|
|
25179
25190
|
export declare type ExperienceOrderActionRule = io.flow.internal.v0.models.ExperienceOrderActionRule;
|
|
25180
25191
|
export declare type ExperienceOrderActionTrigger = io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
|
|
25181
25192
|
export declare type ExperienceSessionReference = io.flow.internal.v0.models.ExperienceSessionReference;
|
|
25182
|
-
export declare type ExperienceVariant = io.flow.internal.v0.models.ExperienceVariant;
|
|
25183
|
-
export declare type ExperienceVariantForm = io.flow.internal.v0.models.ExperienceVariantForm;
|
|
25184
|
-
export declare type ExperienceVariantSummary = io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
25185
|
-
export declare type Experiment = io.flow.internal.v0.unions.Experiment;
|
|
25186
|
-
export declare type ExperimentDeleted = io.flow.internal.v0.models.ExperimentDeleted;
|
|
25187
|
-
export declare type ExperimentDiscriminatorKey = io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
25188
|
-
export declare type ExperimentEngineResults = io.flow.internal.v0.models.ExperimentEngineResults;
|
|
25189
|
-
export declare type ExperimentForm = io.flow.internal.v0.models.ExperimentForm;
|
|
25190
|
-
export declare type ExperimentFormDefault = io.flow.internal.v0.models.ExperimentFormDefault;
|
|
25191
|
-
export declare type ExperimentFormDefaultDiscriminator = io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
25192
|
-
export declare type ExperimentFormDefaultDiscriminatorValue = io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue;
|
|
25193
|
-
export declare type ExperimentFormDefaultVariant = io.flow.internal.v0.models.ExperimentFormDefaultVariant;
|
|
25194
|
-
export declare type ExperimentMilestone = io.flow.internal.v0.models.ExperimentMilestone;
|
|
25195
|
-
export declare type ExperimentMilestoneDeleted = io.flow.internal.v0.models.ExperimentMilestoneDeleted;
|
|
25196
|
-
export declare type ExperimentMilestoneForm = io.flow.internal.v0.models.ExperimentMilestoneForm;
|
|
25197
|
-
export declare type ExperimentMilestoneUpserted = io.flow.internal.v0.models.ExperimentMilestoneUpserted;
|
|
25198
|
-
export declare type ExperimentReference = io.flow.internal.v0.models.ExperimentReference;
|
|
25199
|
-
export declare type ExperimentResults = io.flow.internal.v0.models.ExperimentResults;
|
|
25200
|
-
export declare type ExperimentResultsDeleted = io.flow.internal.v0.models.ExperimentResultsDeleted;
|
|
25201
|
-
export declare type ExperimentResultsUpserted = io.flow.internal.v0.models.ExperimentResultsUpserted;
|
|
25202
|
-
export declare type ExperimentResultsWithTimestamp = io.flow.internal.v0.models.ExperimentResultsWithTimestamp;
|
|
25203
|
-
export declare type ExperimentSessionQueryForm = io.flow.internal.v0.models.ExperimentSessionQueryForm;
|
|
25204
|
-
export declare type ExperimentUpserted = io.flow.internal.v0.models.ExperimentUpserted;
|
|
25205
|
-
export declare type ExperimentVersion = io.flow.internal.v0.models.ExperimentVersion;
|
|
25206
25193
|
export declare type ExplicitStatement = io.flow.internal.v0.models.ExplicitStatement;
|
|
25207
25194
|
export declare type ExplicitStatementForm = io.flow.internal.v0.unions.ExplicitStatementForm;
|
|
25208
25195
|
export declare type ExplicitStatementFormAllPendingPostedTransactions = io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
@@ -25225,7 +25212,6 @@ export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
|
25225
25212
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
25226
25213
|
export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
25227
25214
|
export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
25228
|
-
export declare type FeatureExperiment = io.flow.internal.v0.models.FeatureExperiment;
|
|
25229
25215
|
export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
25230
25216
|
export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
25231
25217
|
export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
@@ -25243,11 +25229,7 @@ export declare type FeatureType = io.flow.internal.v0.enums.FeatureType;
|
|
|
25243
25229
|
export declare type FeatureUpserted = io.flow.internal.v0.models.FeatureUpserted;
|
|
25244
25230
|
export declare type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
25245
25231
|
export declare type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
25246
|
-
export declare type FeatureValueReference = io.flow.internal.v0.models.FeatureValueReference;
|
|
25247
25232
|
export declare type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
25248
|
-
export declare type FeatureVariant = io.flow.internal.v0.models.FeatureVariant;
|
|
25249
|
-
export declare type FeatureVariantForm = io.flow.internal.v0.models.FeatureVariantForm;
|
|
25250
|
-
export declare type FeatureVariantSummary = io.flow.internal.v0.models.FeatureVariantSummary;
|
|
25251
25233
|
export declare type Fedex = io.flow.internal.v0.models.Fedex;
|
|
25252
25234
|
export declare type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
25253
25235
|
export declare type Fee = io.flow.internal.v0.models.Fee;
|
|
@@ -25282,9 +25264,12 @@ export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabPr
|
|
|
25282
25264
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
25283
25265
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
25284
25266
|
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
25285
|
-
export declare type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
25286
25267
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
25268
|
+
export declare type FraudAuthorizationSummary = io.flow.internal.v0.models.FraudAuthorizationSummary;
|
|
25287
25269
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
25270
|
+
export declare type FraudPendingReviewAuthorization = io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
25271
|
+
export declare type FraudPendingReviewAuthorizationDeleted = io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted;
|
|
25272
|
+
export declare type FraudPendingReviewAuthorizationUpserted = io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted;
|
|
25288
25273
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
25289
25274
|
export declare type FraudPendingReviewDetail = io.flow.internal.v0.models.FraudPendingReviewDetail;
|
|
25290
25275
|
export declare type FraudPendingReviewUpserted = io.flow.internal.v0.models.FraudPendingReviewUpserted;
|
|
@@ -25297,6 +25282,12 @@ export declare type FraudProviderConfigurationRiskified = io.flow.internal.v0.mo
|
|
|
25297
25282
|
export declare type FraudProviderConfigurationUpserted = io.flow.internal.v0.models.FraudProviderConfigurationUpserted;
|
|
25298
25283
|
export declare type FraudProviderStatus = io.flow.internal.v0.enums.FraudProviderStatus;
|
|
25299
25284
|
export declare type FraudReview = io.flow.internal.v0.models.FraudReview;
|
|
25285
|
+
export declare type FraudReviewAuthorization = io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
25286
|
+
export declare type FraudReviewAuthorizationDecision = io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
25287
|
+
export declare type FraudReviewAuthorizationDecisionDeleted = io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted;
|
|
25288
|
+
export declare type FraudReviewAuthorizationDecisionUpserted = io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted;
|
|
25289
|
+
export declare type FraudReviewAuthorizationDeleted = io.flow.internal.v0.models.FraudReviewAuthorizationDeleted;
|
|
25290
|
+
export declare type FraudReviewAuthorizationUpserted = io.flow.internal.v0.models.FraudReviewAuthorizationUpserted;
|
|
25300
25291
|
export declare type FraudReviewDecision = io.flow.internal.v0.models.FraudReviewDecision;
|
|
25301
25292
|
export declare type FraudReviewDecisionDeleted = io.flow.internal.v0.models.FraudReviewDecisionDeleted;
|
|
25302
25293
|
export declare type FraudReviewDecisionForm = io.flow.internal.v0.models.FraudReviewDecisionForm;
|
|
@@ -25364,10 +25355,16 @@ export declare type GoogleLinker = io.flow.internal.v0.models.GoogleLinker;
|
|
|
25364
25355
|
export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models.GoogleShoppingAccountParameters;
|
|
25365
25356
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
25366
25357
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
25358
|
+
export declare type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
25359
|
+
export declare type HarinathItemDeleted = io.flow.internal.v0.models.HarinathItemDeleted;
|
|
25360
|
+
export declare type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
25361
|
+
export declare type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
25362
|
+
export declare type HarinathItemUpserted = io.flow.internal.v0.models.HarinathItemUpserted;
|
|
25367
25363
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
25368
25364
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
25369
25365
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
25370
25366
|
export declare type HarmonizationColumnSetting = io.flow.internal.v0.models.HarmonizationColumnSetting;
|
|
25367
|
+
export declare type HarmonizationDecisionSource = io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
25371
25368
|
export declare type HarmonizationItemClassification = io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
25372
25369
|
export declare type HarmonizationItemClassificationDeleted = io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
|
|
25373
25370
|
export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
|
|
@@ -25471,6 +25468,11 @@ export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
|
25471
25468
|
export declare type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
25472
25469
|
export declare type KlarnaAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
25473
25470
|
export declare type KlarnaPaymentMethodCategory = io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
25471
|
+
export declare type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
25472
|
+
export declare type KonstantinItemDeleted = io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
25473
|
+
export declare type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
25474
|
+
export declare type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
25475
|
+
export declare type KonstantinItemUpserted = io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
25474
25476
|
export declare type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
25475
25477
|
export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
25476
25478
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
@@ -25547,6 +25549,9 @@ export declare type Location = io.flow.internal.v0.models.Location;
|
|
|
25547
25549
|
export declare type LogisticsCapabilities = io.flow.internal.v0.models.LogisticsCapabilities;
|
|
25548
25550
|
export declare type LogisticsCapabilitiesForm = io.flow.internal.v0.models.LogisticsCapabilitiesForm;
|
|
25549
25551
|
export declare type LogisticsCapability = io.flow.internal.v0.enums.LogisticsCapability;
|
|
25552
|
+
export declare type LogisticsPayoutRequest = io.flow.internal.v0.models.LogisticsPayoutRequest;
|
|
25553
|
+
export declare type LogisticsPayoutRequestForm = io.flow.internal.v0.models.LogisticsPayoutRequestForm;
|
|
25554
|
+
export declare type LogisticsPayoutResolutionMethod = io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
25550
25555
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
25551
25556
|
export declare type LostChargeback = io.flow.internal.v0.models.LostChargeback;
|
|
25552
25557
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
@@ -25646,6 +25651,16 @@ export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpsert
|
|
|
25646
25651
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
25647
25652
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
25648
25653
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
25654
|
+
export declare type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
25655
|
+
export declare type MichaelyanItemDeleted = io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
25656
|
+
export declare type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
25657
|
+
export declare type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
25658
|
+
export declare type MichaelyanItemUpserted = io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
25659
|
+
export declare type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
25660
|
+
export declare type MiljenkoItemDeleted = io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
25661
|
+
export declare type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
25662
|
+
export declare type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
25663
|
+
export declare type MiljenkoItemUpserted = io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
25649
25664
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
25650
25665
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
25651
25666
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -25720,6 +25735,9 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
25720
25735
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
25721
25736
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
25722
25737
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
25738
|
+
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
25739
|
+
export declare type OrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
25740
|
+
export declare type OrderTaxAndDutyInclusivitySettingUpserted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted;
|
|
25723
25741
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
25724
25742
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
25725
25743
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
@@ -25759,6 +25777,9 @@ export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.Or
|
|
|
25759
25777
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
25760
25778
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
25761
25779
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
25780
|
+
export declare type OrganizationMetadata = io.flow.internal.v0.models.OrganizationMetadata;
|
|
25781
|
+
export declare type OrganizationMetadataDeleted = io.flow.internal.v0.models.OrganizationMetadataDeleted;
|
|
25782
|
+
export declare type OrganizationMetadataUpserted = io.flow.internal.v0.models.OrganizationMetadataUpserted;
|
|
25762
25783
|
export declare type OrganizationMetricType = io.flow.internal.v0.enums.OrganizationMetricType;
|
|
25763
25784
|
export declare type OrganizationOnboardingStateAdjustmentResult = io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
25764
25785
|
export declare type OrganizationOnboardingStateAuditResult = io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
@@ -25788,6 +25809,26 @@ export declare type OrganizationStatusChange = io.flow.internal.v0.models.Organi
|
|
|
25788
25809
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
25789
25810
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
25790
25811
|
export declare type OrganizationsAuditCheckReport = io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
25812
|
+
export declare type OtherRecord = io.flow.internal.v0.models.OtherRecord;
|
|
25813
|
+
export declare type OtherRecordAccount = io.flow.internal.v0.models.OtherRecordAccount;
|
|
25814
|
+
export declare type OtherRecordAccountSourceSummary = io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
25815
|
+
export declare type OtherRecordDeleted = io.flow.internal.v0.models.OtherRecordDeleted;
|
|
25816
|
+
export declare type OtherRecordDiscount = io.flow.internal.v0.models.OtherRecordDiscount;
|
|
25817
|
+
export declare type OtherRecordFees = io.flow.internal.v0.models.OtherRecordFees;
|
|
25818
|
+
export declare type OtherRecordIdentifiers = io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
25819
|
+
export declare type OtherRecordMerchantReference = io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
25820
|
+
export declare type OtherRecordMetadata = io.flow.internal.v0.models.OtherRecordMetadata;
|
|
25821
|
+
export declare type OtherRecordMetadataCarrierCharge = io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
25822
|
+
export declare type OtherRecordMetadataChannel = io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
25823
|
+
export declare type OtherRecordMetadataFailedPayout = io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
25824
|
+
export declare type OtherRecordMetadataManual = io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
25825
|
+
export declare type OtherRecordMetadataShippingLabel = io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
25826
|
+
export declare type OtherRecordMetadataShippingLabelRevenueShare = io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
25827
|
+
export declare type OtherRecordMetadataTrueup = io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
25828
|
+
export declare type OtherRecordOrderSummary = io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
25829
|
+
export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
25830
|
+
export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
|
|
25831
|
+
export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
25791
25832
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
25792
25833
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
25793
25834
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25817,6 +25858,7 @@ export declare type PaymentProcessorAccountUpserted = io.flow.internal.v0.models
|
|
|
25817
25858
|
export declare type PaymentProcessorMerchantDeleted = io.flow.internal.v0.models.PaymentProcessorMerchantDeleted;
|
|
25818
25859
|
export declare type PaymentProcessorMerchantUpserted = io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
25819
25860
|
export declare type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
25861
|
+
export declare type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
25820
25862
|
export declare type PaymentSummaryDetails = io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
25821
25863
|
export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
25822
25864
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
@@ -26018,8 +26060,6 @@ export declare type ReportingMonetaryValue = io.flow.internal.v0.models.Reportin
|
|
|
26018
26060
|
export declare type ReportingOrderSummary = io.flow.internal.v0.models.ReportingOrderSummary;
|
|
26019
26061
|
export declare type ReportingOrganizationSummary = io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
26020
26062
|
export declare type ReportingPayment = io.flow.internal.v0.models.ReportingPayment;
|
|
26021
|
-
export declare type ReportingPaymentMetadata = io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
26022
|
-
export declare type ReportingPaymentMetadataAdditionalAuthorizations = io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
26023
26063
|
export declare type ReportingProvince = io.flow.internal.v0.models.ReportingProvince;
|
|
26024
26064
|
export declare type ReportingReconciliation = io.flow.internal.v0.models.ReportingReconciliation;
|
|
26025
26065
|
export declare type ReportingRefundReference = io.flow.internal.v0.models.ReportingRefundReference;
|
|
@@ -26031,6 +26071,7 @@ export declare type ReportingVatRemittance = io.flow.internal.v0.models.Reportin
|
|
|
26031
26071
|
export declare type ReportingVatRemittanceRate = io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
26032
26072
|
export declare type ReportingVendor = io.flow.internal.v0.models.ReportingVendor;
|
|
26033
26073
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
26074
|
+
export declare type RescreenRestrictionsProducts = io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
26034
26075
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
26035
26076
|
export declare type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
26036
26077
|
export declare type RestrictionCategory = io.flow.internal.v0.models.RestrictionCategory;
|
|
@@ -26091,7 +26132,6 @@ export declare type SalesRecordUpserted = io.flow.internal.v0.models.SalesRecord
|
|
|
26091
26132
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
26092
26133
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
26093
26134
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
26094
|
-
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
26095
26135
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
26096
26136
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
26097
26137
|
export declare type ScreeningStatusChange = io.flow.internal.v0.models.ScreeningStatusChange;
|
|
@@ -26237,7 +26277,6 @@ export declare type ShrutiDemoItemDeleted = io.flow.internal.v0.models.ShrutiDem
|
|
|
26237
26277
|
export declare type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
26238
26278
|
export declare type ShrutiDemoItemUpserted = io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
26239
26279
|
export declare type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
26240
|
-
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
26241
26280
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
26242
26281
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
26243
26282
|
export declare type SimplifiedClassificationTaxonomy = io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy;
|
|
@@ -26267,7 +26306,6 @@ export declare type StatementCreationMetadata = io.flow.internal.v0.models.State
|
|
|
26267
26306
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
26268
26307
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
26269
26308
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
26270
|
-
export declare type Status = io.flow.internal.v0.enums.Status;
|
|
26271
26309
|
export declare type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
26272
26310
|
export declare type StoreConnectionForm = io.flow.internal.v0.models.StoreConnectionForm;
|
|
26273
26311
|
export declare type StringFeatureDefaultValue = io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26330,6 +26368,7 @@ export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProc
|
|
|
26330
26368
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
26331
26369
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
26332
26370
|
export declare type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
26371
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
26333
26372
|
export declare type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
26334
26373
|
export declare type TaxCalculationError = io.flow.internal.v0.models.TaxCalculationError;
|
|
26335
26374
|
export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalculationErrorCode;
|
|
@@ -26349,6 +26388,9 @@ export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
|
26349
26388
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
26350
26389
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
26351
26390
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
26391
|
+
export declare type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
26392
|
+
export declare type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
26393
|
+
export declare type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
26352
26394
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
26353
26395
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
26354
26396
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|
|
@@ -26360,8 +26402,11 @@ export declare type TimeToClassifyAggregatedUpserted = io.flow.internal.v0.model
|
|
|
26360
26402
|
export declare type TimeToClassifyDeleted = io.flow.internal.v0.models.TimeToClassifyDeleted;
|
|
26361
26403
|
export declare type TimeToClassifyUpserted = io.flow.internal.v0.models.TimeToClassifyUpserted;
|
|
26362
26404
|
export declare type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
26363
|
-
export declare type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
26364
26405
|
export declare type Tracker = io.flow.internal.v0.unions.Tracker;
|
|
26406
|
+
export declare type TrackingAssuranceAnalysis = io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
26407
|
+
export declare type TrackingAssuranceAnalysisDeleted = io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
|
|
26408
|
+
export declare type TrackingAssuranceAnalysisUpserted = io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
|
|
26409
|
+
export declare type TrackingDebugForceTransitForm = io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
26365
26410
|
export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
26366
26411
|
export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
26367
26412
|
export declare type TrackingDebugLabelLocation = io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -26424,8 +26469,6 @@ export declare type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
|
26424
26469
|
export declare type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
26425
26470
|
export declare type ValidationCharacterLength = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
26426
26471
|
export declare type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|
|
26427
|
-
export declare type Variant = io.flow.internal.v0.unions.Variant;
|
|
26428
|
-
export declare type VariantForm = io.flow.internal.v0.unions.VariantForm;
|
|
26429
26472
|
export declare type ViesResult = io.flow.internal.v0.models.ViesResult;
|
|
26430
26473
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
26431
26474
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|