@flowio/types 11.24.95 → 11.24.96
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 +1140 -1099
- package/dist/api.d.ts +108 -7
- package/package.json +2 -2
- package/src/api-internal.ts +1468 -1267
- package/src/api.ts +176 -7
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,9 @@ 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;
|
|
7675
7269
|
}
|
|
7676
7270
|
interface ReportingFx {
|
|
7677
7271
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
@@ -7679,6 +7273,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7679
7273
|
readonly product: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7680
7274
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7681
7275
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7276
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7682
7277
|
readonly total: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7683
7278
|
}
|
|
7684
7279
|
interface ReportingMerchantBreakdown {
|
|
@@ -7694,12 +7289,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7694
7289
|
readonly processing: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7695
7290
|
readonly rate_lock: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7696
7291
|
readonly transfer: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7292
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7697
7293
|
}
|
|
7698
7294
|
interface ReportingMerchantSubsidies {
|
|
7699
7295
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7700
7296
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7701
7297
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7702
7298
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7299
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7703
7300
|
}
|
|
7704
7301
|
interface ReportingMerchantTransactions {
|
|
7705
7302
|
readonly adjustment: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
@@ -7707,6 +7304,8 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7707
7304
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7708
7305
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7709
7306
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7307
|
+
readonly discount?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7308
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7710
7309
|
}
|
|
7711
7310
|
interface ReportingMonetaryValue {
|
|
7712
7311
|
readonly transaction: number;
|
|
@@ -7725,22 +7324,13 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7725
7324
|
readonly name: string;
|
|
7726
7325
|
}
|
|
7727
7326
|
interface ReportingPayment {
|
|
7728
|
-
readonly metadata?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
|
|
7729
7327
|
readonly psp: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7730
7328
|
readonly credit: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7329
|
+
readonly subsidized: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7330
|
+
readonly manual: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7331
|
+
readonly cod: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7731
7332
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7732
7333
|
}
|
|
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
7334
|
interface ReportingProvince {
|
|
7745
7335
|
readonly code?: string;
|
|
7746
7336
|
readonly name: string;
|
|
@@ -7765,6 +7355,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7765
7355
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7766
7356
|
readonly emergency: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7767
7357
|
readonly peak: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7358
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7768
7359
|
}
|
|
7769
7360
|
interface ReportingUsd {
|
|
7770
7361
|
readonly usd: number;
|
|
@@ -8606,7 +8197,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8606
8197
|
readonly sequence_number: number;
|
|
8607
8198
|
readonly fulfilled_at: string;
|
|
8608
8199
|
readonly completes_order: boolean;
|
|
8609
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
8610
8200
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
8611
8201
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
8612
8202
|
readonly destination: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
@@ -8715,6 +8305,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8715
8305
|
readonly channel_id: string;
|
|
8716
8306
|
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
8717
8307
|
}
|
|
8308
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
8309
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
8310
|
+
readonly event_id: string;
|
|
8311
|
+
readonly timestamp: string;
|
|
8312
|
+
readonly organization: string;
|
|
8313
|
+
readonly id: string;
|
|
8314
|
+
}
|
|
8315
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
8316
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
8317
|
+
readonly event_id: string;
|
|
8318
|
+
readonly timestamp: string;
|
|
8319
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8320
|
+
}
|
|
8718
8321
|
interface ShopifyMarketsMetricsDeleted {
|
|
8719
8322
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
8720
8323
|
readonly event_id: string;
|
|
@@ -8789,7 +8392,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8789
8392
|
}
|
|
8790
8393
|
}
|
|
8791
8394
|
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;
|
|
8395
|
+
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
8396
|
}
|
|
8794
8397
|
declare namespace io.flow.experience.v0.enums {
|
|
8795
8398
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -11518,7 +11121,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
11518
11121
|
}
|
|
11519
11122
|
}
|
|
11520
11123
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11521
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
11124
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
11522
11125
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11523
11126
|
type AccountType = 'channel' | 'organization';
|
|
11524
11127
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -12777,7 +12380,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12777
12380
|
readonly discriminator: 'channel';
|
|
12778
12381
|
readonly method: string;
|
|
12779
12382
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12780
|
-
readonly organization_transaction: io.flow.billing.v0.models.
|
|
12383
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12781
12384
|
}
|
|
12782
12385
|
interface TransactionMetadataChannelCardMetadata {
|
|
12783
12386
|
readonly type: io.flow.payment.v0.enums.CardType;
|
|
@@ -12787,6 +12390,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12787
12390
|
readonly iin: string;
|
|
12788
12391
|
readonly country: string;
|
|
12789
12392
|
}
|
|
12393
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
12394
|
+
readonly id: string;
|
|
12395
|
+
readonly metadata: io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
12396
|
+
}
|
|
12790
12397
|
interface TransactionMetadataFailedPayout {
|
|
12791
12398
|
readonly discriminator: 'failed_payout';
|
|
12792
12399
|
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
@@ -13960,7 +13567,7 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13960
13567
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13961
13568
|
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13962
13569
|
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';
|
|
13570
|
+
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
13571
|
}
|
|
13965
13572
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13966
13573
|
interface ActivationPutForm {
|
|
@@ -14010,6 +13617,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
14010
13617
|
readonly completed_at?: string;
|
|
14011
13618
|
readonly onboarding_started_at?: string;
|
|
14012
13619
|
}
|
|
13620
|
+
interface RejectionPutForm {
|
|
13621
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
13622
|
+
readonly description: string;
|
|
13623
|
+
}
|
|
14013
13624
|
interface SetupBlocked {
|
|
14014
13625
|
readonly discriminator: 'setup_blocked';
|
|
14015
13626
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
@@ -14310,22 +13921,190 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14310
13921
|
readonly swift_code: string;
|
|
14311
13922
|
readonly iban: string;
|
|
14312
13923
|
}
|
|
14313
|
-
interface BankAccountInfoIta {
|
|
14314
|
-
readonly discriminator: 'ita';
|
|
14315
|
-
readonly swift_code: string;
|
|
14316
|
-
readonly iban: string;
|
|
13924
|
+
interface BankAccountInfoIta {
|
|
13925
|
+
readonly discriminator: 'ita';
|
|
13926
|
+
readonly swift_code: string;
|
|
13927
|
+
readonly iban: string;
|
|
13928
|
+
}
|
|
13929
|
+
interface BankAccountInfoUsa {
|
|
13930
|
+
readonly discriminator: 'usa';
|
|
13931
|
+
readonly routing_number: string;
|
|
13932
|
+
readonly account_number: string;
|
|
13933
|
+
}
|
|
13934
|
+
}
|
|
13935
|
+
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13936
|
+
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;
|
|
13937
|
+
}
|
|
13938
|
+
declare namespace io.flow.experiment.internal.v0.enums {
|
|
13939
|
+
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
13940
|
+
type Scope = 'organization' | 'global';
|
|
13941
|
+
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
13942
|
+
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
13943
|
+
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
13944
|
+
}
|
|
13945
|
+
declare namespace io.flow.experiment.internal.v0.models {
|
|
13946
|
+
interface DailyExperimentResults {
|
|
13947
|
+
readonly id: string;
|
|
13948
|
+
readonly day: string;
|
|
13949
|
+
readonly experiment_key: string;
|
|
13950
|
+
readonly experiment_variant_key: string;
|
|
13951
|
+
readonly visitor_count: number;
|
|
13952
|
+
readonly visitors_with_transactions_count: number;
|
|
13953
|
+
readonly conversion_rate: number;
|
|
13954
|
+
readonly lower_bound: number;
|
|
13955
|
+
readonly upper_bound: number;
|
|
13956
|
+
readonly probability_of_being_best?: number;
|
|
13957
|
+
readonly currency?: string;
|
|
13958
|
+
readonly average_order_value?: number;
|
|
13959
|
+
readonly revenue_generated?: number;
|
|
13960
|
+
readonly total_order_count?: number;
|
|
13961
|
+
readonly conversion_rate_uplift?: number;
|
|
13962
|
+
readonly average_order_value_uplift?: number;
|
|
13963
|
+
readonly revenue_generated_uplift?: number;
|
|
13964
|
+
}
|
|
13965
|
+
interface ExperienceExperiment {
|
|
13966
|
+
readonly discriminator: 'experience';
|
|
13967
|
+
readonly id: string;
|
|
13968
|
+
readonly key: string;
|
|
13969
|
+
readonly name: string;
|
|
13970
|
+
readonly description?: string;
|
|
13971
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
13972
|
+
readonly emails: string[];
|
|
13973
|
+
readonly started_at?: string;
|
|
13974
|
+
readonly ended_at?: string;
|
|
13975
|
+
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
13976
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
13977
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
13978
|
+
}
|
|
13979
|
+
interface ExperienceVariant {
|
|
13980
|
+
readonly discriminator: 'experience_variant';
|
|
13981
|
+
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
13982
|
+
readonly traffic_percentage: number;
|
|
13983
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
13984
|
+
}
|
|
13985
|
+
interface ExperienceVariantForm {
|
|
13986
|
+
readonly discriminator: 'experience';
|
|
13987
|
+
readonly key: string;
|
|
13988
|
+
readonly traffic_percentage: number;
|
|
13989
|
+
}
|
|
13990
|
+
interface ExperienceVariantSummary {
|
|
13991
|
+
readonly key: string;
|
|
13992
|
+
readonly name?: string;
|
|
13993
|
+
}
|
|
13994
|
+
interface ExperimentForm {
|
|
13995
|
+
readonly name: string;
|
|
13996
|
+
readonly description?: string;
|
|
13997
|
+
readonly emails: string[];
|
|
13998
|
+
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
13999
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
14000
|
+
readonly session_query?: string;
|
|
14001
|
+
}
|
|
14002
|
+
interface ExperimentFormDefault {
|
|
14003
|
+
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
14004
|
+
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
14005
|
+
}
|
|
14006
|
+
interface ExperimentFormDefaultDiscriminator {
|
|
14007
|
+
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
14008
|
+
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
14009
|
+
}
|
|
14010
|
+
interface ExperimentFormDefaultDiscriminatorValue {
|
|
14011
|
+
readonly key: string;
|
|
14012
|
+
readonly name: string;
|
|
14013
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
14014
|
+
}
|
|
14015
|
+
interface ExperimentFormDefaultVariant {
|
|
14016
|
+
readonly key: string;
|
|
14017
|
+
readonly name: string;
|
|
14018
|
+
readonly traffic_percentage?: number;
|
|
14019
|
+
}
|
|
14020
|
+
interface ExperimentMilestone {
|
|
14021
|
+
readonly id: string;
|
|
14022
|
+
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
14023
|
+
readonly timestamp: string;
|
|
14024
|
+
readonly description: string;
|
|
14025
|
+
}
|
|
14026
|
+
interface ExperimentMilestoneForm {
|
|
14027
|
+
readonly timestamp?: string;
|
|
14028
|
+
readonly description: string;
|
|
14029
|
+
}
|
|
14030
|
+
interface ExperimentReference {
|
|
14031
|
+
readonly key: string;
|
|
14032
|
+
}
|
|
14033
|
+
interface ExperimentResults {
|
|
14034
|
+
readonly id: string;
|
|
14035
|
+
readonly experiment_key: string;
|
|
14036
|
+
readonly experiment_variant_key: string;
|
|
14037
|
+
readonly visitor_count: number;
|
|
14038
|
+
readonly visitors_with_transactions_count: number;
|
|
14039
|
+
readonly conversion_rate: number;
|
|
14040
|
+
readonly lower_bound: number;
|
|
14041
|
+
readonly upper_bound: number;
|
|
14042
|
+
readonly probability_of_being_best?: number;
|
|
14043
|
+
readonly currency?: string;
|
|
14044
|
+
readonly average_order_value?: number;
|
|
14045
|
+
readonly revenue_generated?: number;
|
|
14046
|
+
readonly total_order_count?: number;
|
|
14047
|
+
readonly conversion_rate_uplift?: number;
|
|
14048
|
+
readonly average_order_value_uplift?: number;
|
|
14049
|
+
readonly revenue_generated_uplift?: number;
|
|
14050
|
+
}
|
|
14051
|
+
interface ExperimentResultsWithTimestamp {
|
|
14052
|
+
readonly timestamp: string;
|
|
14053
|
+
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
14054
|
+
}
|
|
14055
|
+
interface ExperimentSessionQueryForm {
|
|
14056
|
+
readonly session_query?: string;
|
|
14057
|
+
}
|
|
14058
|
+
interface ExperimentVersion {
|
|
14059
|
+
readonly id: string;
|
|
14060
|
+
readonly timestamp: string;
|
|
14061
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
14062
|
+
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
14063
|
+
}
|
|
14064
|
+
interface FeatureExperiment {
|
|
14065
|
+
readonly discriminator: 'feature';
|
|
14066
|
+
readonly id: string;
|
|
14067
|
+
readonly key: string;
|
|
14068
|
+
readonly name: string;
|
|
14069
|
+
readonly description?: string;
|
|
14070
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
14071
|
+
readonly emails: string[];
|
|
14072
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
14073
|
+
readonly started_at?: string;
|
|
14074
|
+
readonly ended_at?: string;
|
|
14075
|
+
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
14076
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
14077
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
14078
|
+
readonly session_query?: string;
|
|
14079
|
+
}
|
|
14080
|
+
interface FeatureValueReference {
|
|
14081
|
+
readonly feature_key: string;
|
|
14082
|
+
readonly value: string;
|
|
14083
|
+
}
|
|
14084
|
+
interface FeatureVariant {
|
|
14085
|
+
readonly discriminator: 'feature_variant';
|
|
14086
|
+
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
14087
|
+
readonly traffic_percentage: number;
|
|
14088
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
14317
14089
|
}
|
|
14318
|
-
interface
|
|
14319
|
-
readonly discriminator: '
|
|
14320
|
-
readonly
|
|
14321
|
-
readonly
|
|
14090
|
+
interface FeatureVariantForm {
|
|
14091
|
+
readonly discriminator: 'feature';
|
|
14092
|
+
readonly key: string;
|
|
14093
|
+
readonly traffic_percentage: number;
|
|
14094
|
+
}
|
|
14095
|
+
interface FeatureVariantSummary {
|
|
14096
|
+
readonly key: string;
|
|
14097
|
+
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
14098
|
+
readonly name?: string;
|
|
14322
14099
|
}
|
|
14323
14100
|
}
|
|
14324
|
-
declare namespace io.flow.
|
|
14325
|
-
type
|
|
14101
|
+
declare namespace io.flow.experiment.internal.v0.unions {
|
|
14102
|
+
type Experiment = io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
14103
|
+
type Variant = io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
14104
|
+
type VariantForm = io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
14326
14105
|
}
|
|
14327
14106
|
declare namespace io.flow.internal.v0.enums {
|
|
14328
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
14107
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
14329
14108
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14330
14109
|
type AccountType = 'channel' | 'organization';
|
|
14331
14110
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -14352,7 +14131,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14352
14131
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
14353
14132
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
14354
14133
|
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';
|
|
14134
|
+
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
14135
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
14357
14136
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14358
14137
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
@@ -14372,6 +14151,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14372
14151
|
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
14373
14152
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
14374
14153
|
type ColmItemType = 'physical' | 'digital';
|
|
14154
|
+
type Company = 'globale' | 'flow';
|
|
14375
14155
|
type ComplianceType = 'weee';
|
|
14376
14156
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
14377
14157
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -14401,11 +14181,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14401
14181
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14402
14182
|
type EmptyAttribute = 'irrelevant';
|
|
14403
14183
|
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';
|
|
14184
|
+
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
14185
|
type ExperienceImportType = 'experience_with_settings';
|
|
14406
14186
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14407
14187
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
14408
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
14409
14188
|
type ExportContentType = 'item' | 'price_book_item';
|
|
14410
14189
|
type FeatureScope = 'global' | 'organization';
|
|
14411
14190
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
@@ -14420,6 +14199,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14420
14199
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
14421
14200
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
14422
14201
|
type GoogleAnalyticsPlugin = 'ec';
|
|
14202
|
+
type HarinathItemType = 'digital' | 'physical';
|
|
14203
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
14423
14204
|
type HttpMethod = 'get' | 'post';
|
|
14424
14205
|
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
14425
14206
|
type InventoryReservation = 'synchronous-on-submit';
|
|
@@ -14429,6 +14210,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14429
14210
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
14430
14211
|
type ItemType = 'standard' | 'multi_product';
|
|
14431
14212
|
type KeywordType = 'positive' | 'negative';
|
|
14213
|
+
type KonstantinItemType = 'physical' | 'digital';
|
|
14432
14214
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14433
14215
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14434
14216
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -14436,6 +14218,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14436
14218
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14437
14219
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14438
14220
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14221
|
+
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14439
14222
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14440
14223
|
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
14224
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
@@ -14449,6 +14232,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14449
14232
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14450
14233
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14451
14234
|
type MatiasItemType = 'physical' | 'digital';
|
|
14235
|
+
type MichaelyanItemType = 'physical' | 'digital';
|
|
14236
|
+
type MiljenkoItemType = 'physical' | 'digital';
|
|
14452
14237
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14453
14238
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14454
14239
|
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 +14242,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14457
14242
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
|
|
14458
14243
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
14459
14244
|
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';
|
|
14245
|
+
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
14246
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
14462
14247
|
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
14463
14248
|
type OrderAttributeIntent = 'discount_code';
|
|
@@ -14499,7 +14284,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14499
14284
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14500
14285
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14501
14286
|
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';
|
|
14287
|
+
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
14288
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14504
14289
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14505
14290
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14509,7 +14294,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14509
14294
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14510
14295
|
type RiskCheck = 'three_d_secure';
|
|
14511
14296
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14512
|
-
type Scope = 'organization' | 'global';
|
|
14513
14297
|
type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
|
|
14514
14298
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
14515
14299
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
@@ -14527,24 +14311,23 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14527
14311
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
14528
14312
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
14529
14313
|
type ShrutiDemoType = 'digital' | 'physical';
|
|
14530
|
-
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
14531
14314
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14532
14315
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14533
14316
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
14534
14317
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
14535
14318
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
14536
14319
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
14537
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
14538
14320
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
14539
14321
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14540
14322
|
type SvitlanaType = 'physical' | 'digital';
|
|
14541
14323
|
type TamItemType = 'physical' | 'digital';
|
|
14542
14324
|
type TariffEligibilityType = 'rex';
|
|
14543
14325
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
14326
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
14544
14327
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14545
14328
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14546
14329
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14547
|
-
type
|
|
14330
|
+
type ThiagoItemType = 'digital' | 'physical';
|
|
14548
14331
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14549
14332
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14550
14333
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -15240,15 +15023,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15240
15023
|
readonly keywords?: string[];
|
|
15241
15024
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
15242
15025
|
}
|
|
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
15026
|
interface BankAccountReference {
|
|
15253
15027
|
readonly id: string;
|
|
15254
15028
|
}
|
|
@@ -15351,7 +15125,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15351
15125
|
readonly discriminator: 'billing_csv_transaction_upserted';
|
|
15352
15126
|
readonly event_id: string;
|
|
15353
15127
|
readonly timestamp: string;
|
|
15354
|
-
readonly transaction: io.flow.
|
|
15128
|
+
readonly transaction: io.flow.internal.v0.models.CsvTransaction;
|
|
15355
15129
|
}
|
|
15356
15130
|
interface BillingInvoiceSummary {
|
|
15357
15131
|
readonly id: string;
|
|
@@ -16599,27 +16373,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16599
16373
|
readonly product_id: string;
|
|
16600
16374
|
}
|
|
16601
16375
|
interface ClassificationProductRequest {
|
|
16602
|
-
readonly
|
|
16603
|
-
readonly
|
|
16604
|
-
readonly
|
|
16605
|
-
readonly
|
|
16606
|
-
readonly
|
|
16607
|
-
readonly
|
|
16608
|
-
readonly
|
|
16609
|
-
readonly
|
|
16610
|
-
readonly
|
|
16611
|
-
readonly
|
|
16612
|
-
readonly
|
|
16376
|
+
readonly MerchantId: string;
|
|
16377
|
+
readonly ProductName: string;
|
|
16378
|
+
readonly ProductDescription: string;
|
|
16379
|
+
readonly ProductIdInternal: string;
|
|
16380
|
+
readonly ProductIdExternal: string;
|
|
16381
|
+
readonly ProductGroupCode?: string;
|
|
16382
|
+
readonly ProductUrl?: string;
|
|
16383
|
+
readonly ProductImage?: string;
|
|
16384
|
+
readonly ProductAttributes: Record<string, string>;
|
|
16385
|
+
readonly Categories?: string[];
|
|
16386
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16387
|
+
}
|
|
16388
|
+
interface ClassificationProductRequestEnvelope {
|
|
16389
|
+
readonly messageType: string[];
|
|
16390
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductRequest;
|
|
16613
16391
|
}
|
|
16614
16392
|
interface ClassificationProductResult {
|
|
16615
|
-
readonly
|
|
16616
|
-
readonly
|
|
16617
|
-
readonly
|
|
16618
|
-
readonly
|
|
16393
|
+
readonly productId: string;
|
|
16394
|
+
readonly merchantId: string;
|
|
16395
|
+
readonly platformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16396
|
+
readonly hsCode?: string;
|
|
16619
16397
|
readonly probability?: number;
|
|
16620
|
-
readonly
|
|
16621
|
-
readonly
|
|
16622
|
-
readonly
|
|
16398
|
+
readonly classificationDecision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
16399
|
+
readonly classificationType: io.flow.internal.v0.enums.ClassificationType;
|
|
16400
|
+
readonly clothingAgeClassification?: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
16401
|
+
}
|
|
16402
|
+
interface ClassificationProductResultEnvelope {
|
|
16403
|
+
readonly messageType: string[];
|
|
16404
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductResult;
|
|
16623
16405
|
}
|
|
16624
16406
|
interface ClassificationProductSummary {
|
|
16625
16407
|
readonly product_id: string;
|
|
@@ -16903,6 +16685,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16903
16685
|
readonly secret_key: string;
|
|
16904
16686
|
readonly signature_secret: string;
|
|
16905
16687
|
}
|
|
16688
|
+
interface CsvTransaction {
|
|
16689
|
+
readonly id: string;
|
|
16690
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
16691
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
16692
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
16693
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
16694
|
+
readonly currency: string;
|
|
16695
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16696
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
16697
|
+
readonly gross: number;
|
|
16698
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
16699
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
16700
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
16701
|
+
readonly net: number;
|
|
16702
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
16703
|
+
readonly created_at: string;
|
|
16704
|
+
readonly updated_at: string;
|
|
16705
|
+
}
|
|
16906
16706
|
interface CurrencyInternalRate {
|
|
16907
16707
|
readonly id: string;
|
|
16908
16708
|
readonly organization_id: string;
|
|
@@ -16995,49 +16795,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16995
16795
|
readonly material?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16996
16796
|
readonly construction?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16997
16797
|
}
|
|
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
16798
|
interface DailyValue {
|
|
17042
16799
|
readonly id: string;
|
|
17043
16800
|
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
@@ -17657,6 +17414,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17657
17414
|
readonly branch_des?: string;
|
|
17658
17415
|
}
|
|
17659
17416
|
interface ErpPriorityVendorForm {
|
|
17417
|
+
readonly company?: io.flow.internal.v0.enums.Company;
|
|
17660
17418
|
readonly acc_des?: string;
|
|
17661
17419
|
readonly tax_code?: string;
|
|
17662
17420
|
readonly tax_code_2?: string;
|
|
@@ -17746,20 +17504,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17746
17504
|
interface ExpectedOrderSummary {
|
|
17747
17505
|
readonly total?: io.flow.common.v0.models.Money;
|
|
17748
17506
|
}
|
|
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
17507
|
interface ExperienceExportRequest {
|
|
17764
17508
|
readonly discriminator: 'experience_export_request';
|
|
17765
17509
|
readonly event_id: string;
|
|
@@ -17786,143 +17530,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17786
17530
|
interface ExperienceSessionReference {
|
|
17787
17531
|
readonly id: string;
|
|
17788
17532
|
}
|
|
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
17533
|
interface ExplicitStatement {
|
|
17927
17534
|
readonly id: string;
|
|
17928
17535
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -17983,6 +17590,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17983
17590
|
readonly delivery_estimate?: string;
|
|
17984
17591
|
readonly description?: string;
|
|
17985
17592
|
readonly order_number?: string;
|
|
17593
|
+
readonly raw_carrier_event_code?: string;
|
|
17986
17594
|
}
|
|
17987
17595
|
interface ExternalFulfillmentProof {
|
|
17988
17596
|
readonly id: string;
|
|
@@ -18046,22 +17654,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18046
17654
|
readonly organization: string;
|
|
18047
17655
|
readonly feature: io.flow.internal.v0.models.Feature;
|
|
18048
17656
|
}
|
|
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
17657
|
interface FeatureForm {
|
|
18066
17658
|
readonly name: string;
|
|
18067
17659
|
readonly description?: string;
|
|
@@ -18109,29 +17701,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18109
17701
|
readonly feature_query: string;
|
|
18110
17702
|
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
18111
17703
|
}
|
|
18112
|
-
interface FeatureValueReference {
|
|
18113
|
-
readonly feature_key: string;
|
|
18114
|
-
readonly value: string;
|
|
18115
|
-
}
|
|
18116
17704
|
interface FeatureValueResult {
|
|
18117
17705
|
readonly values: io.flow.internal.v0.unions.FeatureValue[];
|
|
18118
17706
|
}
|
|
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
17707
|
interface Fedex {
|
|
18136
17708
|
readonly discriminator: 'fedex';
|
|
18137
17709
|
readonly key: string;
|
|
@@ -18353,8 +17925,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18353
17925
|
readonly reason: string;
|
|
18354
17926
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18355
17927
|
}
|
|
18356
|
-
interface
|
|
18357
|
-
readonly
|
|
17928
|
+
interface FraudAuthorizationSummary {
|
|
17929
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
17930
|
+
readonly fraud_pending_review_authorization?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
17931
|
+
readonly fraud_review_authorization_decision?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
18358
17932
|
}
|
|
18359
17933
|
interface FraudPendingReview {
|
|
18360
17934
|
readonly id: string;
|
|
@@ -18365,6 +17939,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18365
17939
|
readonly apply_at?: string;
|
|
18366
17940
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18367
17941
|
}
|
|
17942
|
+
interface FraudPendingReviewAuthorization {
|
|
17943
|
+
readonly id: string;
|
|
17944
|
+
readonly fraud_review_authorization_id: string;
|
|
17945
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
17946
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
17947
|
+
readonly recommended_status: io.flow.fraud.v0.enums.FraudStatus;
|
|
17948
|
+
readonly apply_at?: string;
|
|
17949
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
17950
|
+
}
|
|
17951
|
+
interface FraudPendingReviewAuthorizationDeleted {
|
|
17952
|
+
readonly discriminator: 'fraud_pending_review_authorization_deleted';
|
|
17953
|
+
readonly event_id: string;
|
|
17954
|
+
readonly timestamp: string;
|
|
17955
|
+
readonly organization: string;
|
|
17956
|
+
readonly id: string;
|
|
17957
|
+
}
|
|
17958
|
+
interface FraudPendingReviewAuthorizationUpserted {
|
|
17959
|
+
readonly discriminator: 'fraud_pending_review_authorization_upserted';
|
|
17960
|
+
readonly event_id: string;
|
|
17961
|
+
readonly timestamp: string;
|
|
17962
|
+
readonly organization: string;
|
|
17963
|
+
readonly fraud_pending_review_authorization: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
17964
|
+
}
|
|
18368
17965
|
interface FraudPendingReviewDeleted {
|
|
18369
17966
|
readonly discriminator: 'fraud_pending_review_deleted';
|
|
18370
17967
|
readonly event_id: string;
|
|
@@ -18420,7 +18017,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18420
18017
|
readonly organization: string;
|
|
18421
18018
|
readonly configuration: io.flow.internal.v0.unions.FraudProviderConfiguration;
|
|
18422
18019
|
}
|
|
18423
|
-
interface FraudReview {
|
|
18020
|
+
interface FraudReview {
|
|
18021
|
+
readonly id: string;
|
|
18022
|
+
readonly organization_id: string;
|
|
18023
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
18024
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
18025
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
18026
|
+
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
18027
|
+
readonly description?: string;
|
|
18028
|
+
readonly risk_evaluation?: io.flow.internal.v0.enums.RiskEvaluation;
|
|
18029
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18030
|
+
readonly status_updated_at?: string;
|
|
18031
|
+
readonly attributes?: Record<string, string>;
|
|
18032
|
+
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
18033
|
+
readonly payment_authorization_id?: string;
|
|
18034
|
+
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18035
|
+
readonly created_at?: string;
|
|
18036
|
+
}
|
|
18037
|
+
interface FraudReviewAuthorization {
|
|
18424
18038
|
readonly id: string;
|
|
18425
18039
|
readonly organization_id: string;
|
|
18426
18040
|
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
@@ -18437,6 +18051,44 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18437
18051
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18438
18052
|
readonly created_at?: string;
|
|
18439
18053
|
}
|
|
18054
|
+
interface FraudReviewAuthorizationDecision {
|
|
18055
|
+
readonly id: string;
|
|
18056
|
+
readonly fraud_review_authorization_id: string;
|
|
18057
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
18058
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
18059
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
18060
|
+
readonly created_at: string;
|
|
18061
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18062
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
18063
|
+
}
|
|
18064
|
+
interface FraudReviewAuthorizationDecisionDeleted {
|
|
18065
|
+
readonly discriminator: 'fraud_review_authorization_decision_deleted';
|
|
18066
|
+
readonly event_id: string;
|
|
18067
|
+
readonly timestamp: string;
|
|
18068
|
+
readonly organization: string;
|
|
18069
|
+
readonly id: string;
|
|
18070
|
+
}
|
|
18071
|
+
interface FraudReviewAuthorizationDecisionUpserted {
|
|
18072
|
+
readonly discriminator: 'fraud_review_authorization_decision_upserted';
|
|
18073
|
+
readonly event_id: string;
|
|
18074
|
+
readonly timestamp: string;
|
|
18075
|
+
readonly organization: string;
|
|
18076
|
+
readonly fraud_review_authorization_decision: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
18077
|
+
}
|
|
18078
|
+
interface FraudReviewAuthorizationDeleted {
|
|
18079
|
+
readonly discriminator: 'fraud_review_authorization_deleted';
|
|
18080
|
+
readonly event_id: string;
|
|
18081
|
+
readonly timestamp: string;
|
|
18082
|
+
readonly organization: string;
|
|
18083
|
+
readonly id: string;
|
|
18084
|
+
}
|
|
18085
|
+
interface FraudReviewAuthorizationUpserted {
|
|
18086
|
+
readonly discriminator: 'fraud_review_authorization_upserted';
|
|
18087
|
+
readonly event_id: string;
|
|
18088
|
+
readonly timestamp: string;
|
|
18089
|
+
readonly organization: string;
|
|
18090
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
18091
|
+
}
|
|
18440
18092
|
interface FraudReviewDecision {
|
|
18441
18093
|
readonly id: string;
|
|
18442
18094
|
readonly fraud_review_id: string;
|
|
@@ -18488,6 +18140,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18488
18140
|
readonly fraud_review: io.flow.internal.v0.models.FraudReview;
|
|
18489
18141
|
readonly fraud_pending_review?: io.flow.internal.v0.models.FraudPendingReview;
|
|
18490
18142
|
readonly fraud_review_decision?: io.flow.internal.v0.models.FraudReviewDecision;
|
|
18143
|
+
readonly fraud_review_authorizations?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
|
|
18491
18144
|
}
|
|
18492
18145
|
interface FtpFileDeleted {
|
|
18493
18146
|
readonly discriminator: 'ftp_file_deleted';
|
|
@@ -18552,6 +18205,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18552
18205
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
18553
18206
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
18554
18207
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
18208
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
18555
18209
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18556
18210
|
readonly sequence_number: number;
|
|
18557
18211
|
readonly posting_cutoff: string;
|
|
@@ -18656,6 +18310,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18656
18310
|
readonly subtotal: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18657
18311
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18658
18312
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18313
|
+
readonly tips?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18659
18314
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18660
18315
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18661
18316
|
}
|
|
@@ -18793,6 +18448,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18793
18448
|
readonly discriminator: 'google_tag_manager';
|
|
18794
18449
|
readonly tracker_id: string;
|
|
18795
18450
|
}
|
|
18451
|
+
interface HarinathItem {
|
|
18452
|
+
readonly id: string;
|
|
18453
|
+
readonly number: string;
|
|
18454
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18455
|
+
readonly description?: string;
|
|
18456
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
18457
|
+
readonly added_on: string;
|
|
18458
|
+
}
|
|
18459
|
+
interface HarinathItemDeleted {
|
|
18460
|
+
readonly discriminator: 'harinath_item_deleted';
|
|
18461
|
+
readonly event_id: string;
|
|
18462
|
+
readonly timestamp: string;
|
|
18463
|
+
readonly id: string;
|
|
18464
|
+
}
|
|
18465
|
+
interface HarinathItemForm {
|
|
18466
|
+
readonly number: string;
|
|
18467
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18468
|
+
readonly description?: string;
|
|
18469
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
18470
|
+
readonly added_on: string;
|
|
18471
|
+
}
|
|
18472
|
+
interface HarinathItemUpserted {
|
|
18473
|
+
readonly discriminator: 'harinath_item_upserted';
|
|
18474
|
+
readonly event_id: string;
|
|
18475
|
+
readonly timestamp: string;
|
|
18476
|
+
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
18477
|
+
}
|
|
18796
18478
|
interface HarmonizationClassificationStatisticsData {
|
|
18797
18479
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
18798
18480
|
}
|
|
@@ -19252,6 +18934,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19252
18934
|
readonly price_amount?: number;
|
|
19253
18935
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
19254
18936
|
readonly tariffs?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
18937
|
+
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
19255
18938
|
readonly created_at?: string;
|
|
19256
18939
|
readonly updated_at?: string;
|
|
19257
18940
|
readonly updated_by_user_id?: string;
|
|
@@ -19386,6 +19069,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19386
19069
|
readonly standard_asset_urls?: string;
|
|
19387
19070
|
readonly descriptive_asset_urls?: string;
|
|
19388
19071
|
}
|
|
19072
|
+
interface KonstantinItem {
|
|
19073
|
+
readonly id: string;
|
|
19074
|
+
readonly number: string;
|
|
19075
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19076
|
+
readonly description?: string;
|
|
19077
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
19078
|
+
readonly added_on: string;
|
|
19079
|
+
}
|
|
19080
|
+
interface KonstantinItemDeleted {
|
|
19081
|
+
readonly discriminator: 'konstantin_item_deleted';
|
|
19082
|
+
readonly event_id: string;
|
|
19083
|
+
readonly timestamp: string;
|
|
19084
|
+
readonly id: string;
|
|
19085
|
+
}
|
|
19086
|
+
interface KonstantinItemForm {
|
|
19087
|
+
readonly number: string;
|
|
19088
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19089
|
+
readonly description?: string;
|
|
19090
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
19091
|
+
readonly added_on: string;
|
|
19092
|
+
}
|
|
19093
|
+
interface KonstantinItemUpserted {
|
|
19094
|
+
readonly discriminator: 'konstantin_item_upserted';
|
|
19095
|
+
readonly event_id: string;
|
|
19096
|
+
readonly timestamp: string;
|
|
19097
|
+
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
19098
|
+
}
|
|
19389
19099
|
interface LabProjectSettings {
|
|
19390
19100
|
readonly id: string;
|
|
19391
19101
|
readonly flow_lab_project_key: string;
|
|
@@ -19866,6 +19576,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19866
19576
|
interface LogisticsCapabilitiesForm {
|
|
19867
19577
|
readonly capabilities: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
19868
19578
|
}
|
|
19579
|
+
interface LogisticsPayoutRequest {
|
|
19580
|
+
readonly organization_id: string;
|
|
19581
|
+
readonly order_number: string;
|
|
19582
|
+
readonly carrier: string;
|
|
19583
|
+
readonly carrier_tracking_number: string;
|
|
19584
|
+
readonly dry_run: boolean;
|
|
19585
|
+
readonly payout_resolution_method: io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
19586
|
+
readonly label_id?: string;
|
|
19587
|
+
readonly combined_shipment_order_number?: string;
|
|
19588
|
+
}
|
|
19589
|
+
interface LogisticsPayoutRequestForm {
|
|
19590
|
+
readonly organization_id: string;
|
|
19591
|
+
readonly order_identifier: string;
|
|
19592
|
+
readonly carrier_id?: string;
|
|
19593
|
+
readonly carrier_name?: string;
|
|
19594
|
+
readonly carrier_tracking_number?: string;
|
|
19595
|
+
readonly external_reference_number?: string;
|
|
19596
|
+
}
|
|
19869
19597
|
interface Logo {
|
|
19870
19598
|
readonly url: string;
|
|
19871
19599
|
}
|
|
@@ -20355,6 +20083,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20355
20083
|
readonly id: string;
|
|
20356
20084
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
20357
20085
|
}
|
|
20086
|
+
interface MichaelyanItem {
|
|
20087
|
+
readonly id: string;
|
|
20088
|
+
readonly number: string;
|
|
20089
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20090
|
+
readonly description?: string;
|
|
20091
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
20092
|
+
readonly added_on: string;
|
|
20093
|
+
}
|
|
20094
|
+
interface MichaelyanItemDeleted {
|
|
20095
|
+
readonly discriminator: 'michaelyan_item_deleted';
|
|
20096
|
+
readonly event_id: string;
|
|
20097
|
+
readonly timestamp: string;
|
|
20098
|
+
readonly id: string;
|
|
20099
|
+
}
|
|
20100
|
+
interface MichaelyanItemForm {
|
|
20101
|
+
readonly number: string;
|
|
20102
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20103
|
+
readonly description?: string;
|
|
20104
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
20105
|
+
readonly added_on: string;
|
|
20106
|
+
}
|
|
20107
|
+
interface MichaelyanItemUpserted {
|
|
20108
|
+
readonly discriminator: 'michaelyan_item_upserted';
|
|
20109
|
+
readonly event_id: string;
|
|
20110
|
+
readonly timestamp: string;
|
|
20111
|
+
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
20112
|
+
}
|
|
20113
|
+
interface MiljenkoItem {
|
|
20114
|
+
readonly id: string;
|
|
20115
|
+
readonly number: string;
|
|
20116
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20117
|
+
readonly description?: string;
|
|
20118
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
20119
|
+
readonly added_on: string;
|
|
20120
|
+
}
|
|
20121
|
+
interface MiljenkoItemDeleted {
|
|
20122
|
+
readonly discriminator: 'miljenko_item_deleted';
|
|
20123
|
+
readonly event_id: string;
|
|
20124
|
+
readonly timestamp: string;
|
|
20125
|
+
readonly id: string;
|
|
20126
|
+
}
|
|
20127
|
+
interface MiljenkoItemForm {
|
|
20128
|
+
readonly number: string;
|
|
20129
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20130
|
+
readonly description?: string;
|
|
20131
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
20132
|
+
readonly added_on: string;
|
|
20133
|
+
}
|
|
20134
|
+
interface MiljenkoItemUpserted {
|
|
20135
|
+
readonly discriminator: 'miljenko_item_upserted';
|
|
20136
|
+
readonly event_id: string;
|
|
20137
|
+
readonly timestamp: string;
|
|
20138
|
+
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
20139
|
+
}
|
|
20358
20140
|
interface NextBillingStatement {
|
|
20359
20141
|
readonly date: string;
|
|
20360
20142
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20707,6 +20489,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20707
20489
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
20708
20490
|
readonly currency: string;
|
|
20709
20491
|
}
|
|
20492
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
20493
|
+
readonly id: string;
|
|
20494
|
+
readonly organization_id: string;
|
|
20495
|
+
readonly shopify_order_id: string;
|
|
20496
|
+
readonly order_number: string;
|
|
20497
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
20498
|
+
}
|
|
20499
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
20500
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
20501
|
+
readonly event_id: string;
|
|
20502
|
+
readonly timestamp: string;
|
|
20503
|
+
readonly organization: string;
|
|
20504
|
+
readonly id: string;
|
|
20505
|
+
}
|
|
20506
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
20507
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
20508
|
+
readonly event_id: string;
|
|
20509
|
+
readonly timestamp: string;
|
|
20510
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
20511
|
+
}
|
|
20710
20512
|
interface OrderTransaction {
|
|
20711
20513
|
readonly discriminator: 'order_transaction';
|
|
20712
20514
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -20961,6 +20763,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20961
20763
|
readonly from: string;
|
|
20962
20764
|
readonly to: string;
|
|
20963
20765
|
}
|
|
20766
|
+
interface OrganizationMetadata {
|
|
20767
|
+
readonly id: string;
|
|
20768
|
+
readonly organization_id: string;
|
|
20769
|
+
readonly pending_restriction_count: number;
|
|
20770
|
+
readonly pending_verification_count: number;
|
|
20771
|
+
readonly oldest_pending_restriction_date?: string;
|
|
20772
|
+
readonly oldest_pending_verification_date?: string;
|
|
20773
|
+
readonly product_count: number;
|
|
20774
|
+
readonly restricted_product_count: number;
|
|
20775
|
+
readonly last_order_submitted_at?: string;
|
|
20776
|
+
}
|
|
20777
|
+
interface OrganizationMetadataDeleted {
|
|
20778
|
+
readonly discriminator: 'organization_metadata_deleted';
|
|
20779
|
+
readonly event_id: string;
|
|
20780
|
+
readonly timestamp: string;
|
|
20781
|
+
readonly organization: string;
|
|
20782
|
+
readonly id: string;
|
|
20783
|
+
}
|
|
20784
|
+
interface OrganizationMetadataUpserted {
|
|
20785
|
+
readonly discriminator: 'organization_metadata_upserted';
|
|
20786
|
+
readonly event_id: string;
|
|
20787
|
+
readonly timestamp: string;
|
|
20788
|
+
readonly organization: string;
|
|
20789
|
+
readonly organization_metadata: io.flow.internal.v0.models.OrganizationMetadata;
|
|
20790
|
+
}
|
|
20964
20791
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
20965
20792
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
20966
20793
|
}
|
|
@@ -21126,6 +20953,124 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21126
20953
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
21127
20954
|
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
21128
20955
|
}
|
|
20956
|
+
interface OtherRecord {
|
|
20957
|
+
readonly id: string;
|
|
20958
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
20959
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
20960
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
20961
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
20962
|
+
readonly currency: string;
|
|
20963
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
20964
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
20965
|
+
readonly gross: number;
|
|
20966
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
20967
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
20968
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
20969
|
+
readonly net: number;
|
|
20970
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
20971
|
+
readonly created_at: string;
|
|
20972
|
+
readonly updated_at: string;
|
|
20973
|
+
}
|
|
20974
|
+
interface OtherRecordAccount {
|
|
20975
|
+
readonly id: string;
|
|
20976
|
+
readonly merchant?: io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
20977
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
20978
|
+
readonly source: io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
20979
|
+
}
|
|
20980
|
+
interface OtherRecordAccountSourceSummary {
|
|
20981
|
+
readonly id: string;
|
|
20982
|
+
readonly type: io.flow.internal.v0.enums.AccountType;
|
|
20983
|
+
}
|
|
20984
|
+
interface OtherRecordDeleted {
|
|
20985
|
+
readonly discriminator: 'other_record_deleted';
|
|
20986
|
+
readonly event_id: string;
|
|
20987
|
+
readonly timestamp: string;
|
|
20988
|
+
readonly id: string;
|
|
20989
|
+
}
|
|
20990
|
+
interface OtherRecordDiscount {
|
|
20991
|
+
readonly amount: number;
|
|
20992
|
+
readonly description?: string;
|
|
20993
|
+
}
|
|
20994
|
+
interface OtherRecordFees {
|
|
20995
|
+
readonly duty_guarantee: number;
|
|
20996
|
+
readonly mor: number;
|
|
20997
|
+
readonly fraud: number;
|
|
20998
|
+
readonly fx: number;
|
|
20999
|
+
readonly processing: number;
|
|
21000
|
+
readonly rate_lock: number;
|
|
21001
|
+
readonly transfer: number;
|
|
21002
|
+
readonly negative_balance: number;
|
|
21003
|
+
}
|
|
21004
|
+
interface OtherRecordIdentifiers {
|
|
21005
|
+
readonly reference_id?: string;
|
|
21006
|
+
}
|
|
21007
|
+
interface OtherRecordMerchantReference {
|
|
21008
|
+
readonly id: string;
|
|
21009
|
+
}
|
|
21010
|
+
interface OtherRecordMetadata {
|
|
21011
|
+
readonly channel?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
21012
|
+
readonly shipping_label?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
21013
|
+
readonly shipping_label_revenue_share?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
21014
|
+
readonly trueup?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
21015
|
+
readonly carrier_charge?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
21016
|
+
readonly manual?: io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
21017
|
+
readonly failed_payout?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
21018
|
+
}
|
|
21019
|
+
interface OtherRecordMetadataCarrierCharge {
|
|
21020
|
+
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
21021
|
+
readonly label_created_at: string;
|
|
21022
|
+
readonly carrier_id: string;
|
|
21023
|
+
readonly carrier_tracking_number: string;
|
|
21024
|
+
readonly revenue_share_percentage: number;
|
|
21025
|
+
readonly outbound_transaction_id?: string;
|
|
21026
|
+
}
|
|
21027
|
+
interface OtherRecordMetadataChannel {
|
|
21028
|
+
readonly method: string;
|
|
21029
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
21030
|
+
}
|
|
21031
|
+
interface OtherRecordMetadataFailedPayout {
|
|
21032
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
21033
|
+
}
|
|
21034
|
+
interface OtherRecordMetadataManual {
|
|
21035
|
+
readonly description: string;
|
|
21036
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
21037
|
+
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21038
|
+
readonly url?: string;
|
|
21039
|
+
}
|
|
21040
|
+
interface OtherRecordMetadataShippingLabel {
|
|
21041
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
21042
|
+
}
|
|
21043
|
+
interface OtherRecordMetadataShippingLabelRevenueShare {
|
|
21044
|
+
readonly label_id: string;
|
|
21045
|
+
readonly base_amount?: number;
|
|
21046
|
+
readonly percentage?: number;
|
|
21047
|
+
}
|
|
21048
|
+
interface OtherRecordMetadataTrueup {
|
|
21049
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
21050
|
+
readonly label_transaction_id: string;
|
|
21051
|
+
readonly label_invoice_request_id: string;
|
|
21052
|
+
readonly carrier_charge_id: string;
|
|
21053
|
+
}
|
|
21054
|
+
interface OtherRecordOrderSummary {
|
|
21055
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
21056
|
+
readonly number: string;
|
|
21057
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
21058
|
+
}
|
|
21059
|
+
interface OtherRecordOrderSummaryIdentifiers {
|
|
21060
|
+
readonly shopify_order_id?: string;
|
|
21061
|
+
}
|
|
21062
|
+
interface OtherRecordUpserted {
|
|
21063
|
+
readonly discriminator: 'other_record_upserted';
|
|
21064
|
+
readonly event_id: string;
|
|
21065
|
+
readonly timestamp: string;
|
|
21066
|
+
readonly other_record: io.flow.internal.v0.models.OtherRecord;
|
|
21067
|
+
}
|
|
21068
|
+
interface OtherRecordWithholdings {
|
|
21069
|
+
readonly tax: number;
|
|
21070
|
+
readonly duty: number;
|
|
21071
|
+
readonly freight: number;
|
|
21072
|
+
readonly insurance: number;
|
|
21073
|
+
}
|
|
21129
21074
|
interface Partner {
|
|
21130
21075
|
readonly id: string;
|
|
21131
21076
|
readonly name: string;
|
|
@@ -21271,6 +21216,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21271
21216
|
readonly id: string;
|
|
21272
21217
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
21273
21218
|
}
|
|
21219
|
+
interface PaymentSummary {
|
|
21220
|
+
readonly psp: number;
|
|
21221
|
+
readonly credit: number;
|
|
21222
|
+
readonly subsidized: number;
|
|
21223
|
+
readonly manual: number;
|
|
21224
|
+
readonly cod: number;
|
|
21225
|
+
readonly total: number;
|
|
21226
|
+
}
|
|
21274
21227
|
interface PaymentSummaryV2 {
|
|
21275
21228
|
readonly discriminator: 'payment_summary_v2';
|
|
21276
21229
|
readonly id: string;
|
|
@@ -21465,6 +21418,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21465
21418
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
21466
21419
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
21467
21420
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
21421
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
21468
21422
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
21469
21423
|
readonly sequence_number: number;
|
|
21470
21424
|
readonly posting_cutoff: string;
|
|
@@ -22286,11 +22240,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22286
22240
|
readonly sequence_number: number;
|
|
22287
22241
|
readonly fulfilled_at: string;
|
|
22288
22242
|
readonly completes_order: boolean;
|
|
22289
|
-
readonly payment: io.flow.internal.v0.models.ReportingPayment;
|
|
22290
22243
|
readonly refund?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
22291
22244
|
readonly value: io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
22292
22245
|
readonly dispatch_country?: io.flow.internal.v0.models.ReportingCountry;
|
|
22293
22246
|
readonly destination?: io.flow.internal.v0.models.ReportingDestination;
|
|
22247
|
+
readonly payment?: io.flow.internal.v0.models.ReportingPayment;
|
|
22294
22248
|
readonly shipment?: io.flow.internal.v0.models.ReportingShipment;
|
|
22295
22249
|
readonly is: io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
22296
22250
|
readonly has: io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
@@ -22307,6 +22261,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22307
22261
|
readonly wyol: boolean;
|
|
22308
22262
|
readonly b2b: boolean;
|
|
22309
22263
|
readonly domestic: boolean;
|
|
22264
|
+
readonly combined_shipment?: boolean;
|
|
22265
|
+
readonly order_cancelled?: boolean;
|
|
22266
|
+
readonly lvg?: boolean;
|
|
22267
|
+
readonly tax_inclusive?: boolean;
|
|
22268
|
+
readonly duty_inclusive?: boolean;
|
|
22310
22269
|
}
|
|
22311
22270
|
interface ReportingFx {
|
|
22312
22271
|
readonly shipping: io.flow.internal.v0.models.ReportingUsd;
|
|
@@ -22314,6 +22273,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22314
22273
|
readonly product: io.flow.internal.v0.models.ReportingUsd;
|
|
22315
22274
|
readonly tax: io.flow.internal.v0.models.ReportingUsd;
|
|
22316
22275
|
readonly duty: io.flow.internal.v0.models.ReportingUsd;
|
|
22276
|
+
readonly tips?: io.flow.internal.v0.models.ReportingUsd;
|
|
22317
22277
|
readonly total: io.flow.internal.v0.models.ReportingUsd;
|
|
22318
22278
|
}
|
|
22319
22279
|
interface ReportingMerchantBreakdown {
|
|
@@ -22329,12 +22289,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22329
22289
|
readonly processing: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22330
22290
|
readonly rate_lock: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22331
22291
|
readonly transfer: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22292
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22332
22293
|
}
|
|
22333
22294
|
interface ReportingMerchantSubsidies {
|
|
22334
22295
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22335
22296
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22336
22297
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22337
22298
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22299
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22338
22300
|
}
|
|
22339
22301
|
interface ReportingMerchantTransactions {
|
|
22340
22302
|
readonly adjustment: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -22342,6 +22304,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22342
22304
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22343
22305
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22344
22306
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22307
|
+
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22308
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22345
22309
|
}
|
|
22346
22310
|
interface ReportingMonetaryValue {
|
|
22347
22311
|
readonly transaction: number;
|
|
@@ -22360,22 +22324,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22360
22324
|
readonly name: string;
|
|
22361
22325
|
}
|
|
22362
22326
|
interface ReportingPayment {
|
|
22363
|
-
readonly metadata?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
22364
22327
|
readonly psp: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22365
22328
|
readonly credit: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22329
|
+
readonly subsidized: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22330
|
+
readonly manual: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22331
|
+
readonly cod: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22366
22332
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22367
22333
|
}
|
|
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
22334
|
interface ReportingProvince {
|
|
22380
22335
|
readonly code?: string;
|
|
22381
22336
|
readonly name: string;
|
|
@@ -22400,6 +22355,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22400
22355
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22401
22356
|
readonly emergency: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22402
22357
|
readonly peak: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22358
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22403
22359
|
}
|
|
22404
22360
|
interface ReportingUsd {
|
|
22405
22361
|
readonly usd: number;
|
|
@@ -22421,6 +22377,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22421
22377
|
readonly ignore_classification_status: boolean;
|
|
22422
22378
|
readonly select_mismatching_item_types: boolean;
|
|
22423
22379
|
}
|
|
22380
|
+
interface RescreenRestrictionsProducts {
|
|
22381
|
+
readonly placeholder?: boolean;
|
|
22382
|
+
}
|
|
22424
22383
|
interface RestrictionCategory {
|
|
22425
22384
|
readonly category: string;
|
|
22426
22385
|
}
|
|
@@ -22661,6 +22620,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22661
22620
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
22662
22621
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
22663
22622
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
22623
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
22664
22624
|
readonly sequence_number: number;
|
|
22665
22625
|
readonly posting_cutoff: string;
|
|
22666
22626
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -22835,7 +22795,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22835
22795
|
readonly discriminator: 'search_experiment_summary';
|
|
22836
22796
|
readonly key: string;
|
|
22837
22797
|
readonly name: string;
|
|
22838
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
22798
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
22839
22799
|
}
|
|
22840
22800
|
interface SearchItemSummary {
|
|
22841
22801
|
readonly discriminator: 'search_item_summary';
|
|
@@ -23380,6 +23340,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23380
23340
|
readonly id: string;
|
|
23381
23341
|
readonly initial_catalog_synced_at?: string;
|
|
23382
23342
|
readonly catalog_sync_duration?: number;
|
|
23343
|
+
readonly restrictions_sync_duration?: number;
|
|
23344
|
+
readonly classifications_sync_duration?: number;
|
|
23383
23345
|
readonly catalog_products_count?: number;
|
|
23384
23346
|
readonly initial_product_restrictions_synced_at?: string;
|
|
23385
23347
|
}
|
|
@@ -23443,6 +23405,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23443
23405
|
readonly product: io.flow.internal.v0.models.ShopperLines;
|
|
23444
23406
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
23445
23407
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
23408
|
+
readonly tips?: number;
|
|
23446
23409
|
readonly order_discount: number;
|
|
23447
23410
|
readonly total: number;
|
|
23448
23411
|
}
|
|
@@ -24062,6 +24025,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24062
24025
|
interface TestForm {
|
|
24063
24026
|
readonly name: string;
|
|
24064
24027
|
}
|
|
24028
|
+
interface ThiagoItem {
|
|
24029
|
+
readonly id: string;
|
|
24030
|
+
readonly number: string;
|
|
24031
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24032
|
+
readonly description?: string;
|
|
24033
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
24034
|
+
readonly added_on: string;
|
|
24035
|
+
}
|
|
24036
|
+
interface ThiagoItemForm {
|
|
24037
|
+
readonly number: string;
|
|
24038
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24039
|
+
readonly description?: string;
|
|
24040
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
24041
|
+
readonly added_on: string;
|
|
24042
|
+
}
|
|
24065
24043
|
interface ThirdPartyLogisticsPartner {
|
|
24066
24044
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
24067
24045
|
readonly warehouse_url?: string;
|
|
@@ -24129,6 +24107,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24129
24107
|
readonly time: string;
|
|
24130
24108
|
readonly timezone: string;
|
|
24131
24109
|
}
|
|
24110
|
+
interface TrackingAssuranceAnalysis {
|
|
24111
|
+
readonly id: string;
|
|
24112
|
+
readonly job_id: string;
|
|
24113
|
+
readonly label_id: string;
|
|
24114
|
+
readonly order_number: string;
|
|
24115
|
+
readonly carrier_tracking_number: string;
|
|
24116
|
+
readonly flow_tracking_number: string;
|
|
24117
|
+
readonly carrier_status: string;
|
|
24118
|
+
readonly aftership_status: string;
|
|
24119
|
+
readonly flow_status: string;
|
|
24120
|
+
readonly latest_carrier_event_date: string;
|
|
24121
|
+
readonly latest_aftership_event_date: string;
|
|
24122
|
+
readonly latest_flow_event_date: string;
|
|
24123
|
+
readonly label_created_at: string;
|
|
24124
|
+
readonly carrier_id: string;
|
|
24125
|
+
readonly carrier_origin_country?: string;
|
|
24126
|
+
readonly label_origin_country: string;
|
|
24127
|
+
readonly label_destination_country: string;
|
|
24128
|
+
readonly carrier_destination_country?: string;
|
|
24129
|
+
}
|
|
24130
|
+
interface TrackingAssuranceAnalysisDeleted {
|
|
24131
|
+
readonly discriminator: 'tracking_assurance_analysis_deleted';
|
|
24132
|
+
readonly event_id: string;
|
|
24133
|
+
readonly timestamp: string;
|
|
24134
|
+
readonly organization: string;
|
|
24135
|
+
readonly id: string;
|
|
24136
|
+
}
|
|
24137
|
+
interface TrackingAssuranceAnalysisUpserted {
|
|
24138
|
+
readonly discriminator: 'tracking_assurance_analysis_upserted';
|
|
24139
|
+
readonly event_id: string;
|
|
24140
|
+
readonly timestamp: string;
|
|
24141
|
+
readonly organization: string;
|
|
24142
|
+
readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
24143
|
+
}
|
|
24144
|
+
interface TrackingDebugForceTransitForm {
|
|
24145
|
+
readonly description: string;
|
|
24146
|
+
}
|
|
24132
24147
|
interface TrackingDebugLabel {
|
|
24133
24148
|
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
24134
24149
|
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -24526,8 +24541,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24526
24541
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
24527
24542
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
24528
24543
|
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;
|
|
24544
|
+
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
24545
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
24532
24546
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
24533
24547
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -24586,8 +24600,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24586
24600
|
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
24601
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
24588
24602
|
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
24603
|
}
|
|
24592
24604
|
export declare type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
24593
24605
|
export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
@@ -24709,8 +24721,6 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
24709
24721
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
24710
24722
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
24711
24723
|
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
24724
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
24715
24725
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
24716
24726
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -24966,7 +24976,9 @@ export declare type ClassificationProduct = io.flow.internal.v0.models.Classific
|
|
|
24966
24976
|
export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
24967
24977
|
export declare type ClassificationProductId = io.flow.internal.v0.models.ClassificationProductId;
|
|
24968
24978
|
export declare type ClassificationProductRequest = io.flow.internal.v0.models.ClassificationProductRequest;
|
|
24979
|
+
export declare type ClassificationProductRequestEnvelope = io.flow.internal.v0.models.ClassificationProductRequestEnvelope;
|
|
24969
24980
|
export declare type ClassificationProductResult = io.flow.internal.v0.models.ClassificationProductResult;
|
|
24981
|
+
export declare type ClassificationProductResultEnvelope = io.flow.internal.v0.models.ClassificationProductResultEnvelope;
|
|
24970
24982
|
export declare type ClassificationProductSummary = io.flow.internal.v0.models.ClassificationProductSummary;
|
|
24971
24983
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
24972
24984
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
@@ -24991,6 +25003,7 @@ export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.Comme
|
|
|
24991
25003
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
24992
25004
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
24993
25005
|
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
25006
|
+
export declare type Company = io.flow.internal.v0.enums.Company;
|
|
24994
25007
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
24995
25008
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
24996
25009
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -25025,6 +25038,7 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
25025
25038
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
25026
25039
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
25027
25040
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
25041
|
+
export declare type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
25028
25042
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
25029
25043
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
25030
25044
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -25038,10 +25052,6 @@ export declare type CustomsDetails = io.flow.internal.v0.models.CustomsDetails;
|
|
|
25038
25052
|
export declare type CustomsDetailsForm = io.flow.internal.v0.models.CustomsDetailsForm;
|
|
25039
25053
|
export declare type CustomsProductAttributeLabel = io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
25040
25054
|
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
25055
|
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
25046
25056
|
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
25047
25057
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
@@ -25171,7 +25181,6 @@ export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionR
|
|
|
25171
25181
|
export declare type ExclusionRuleExportRequest = io.flow.internal.v0.models.ExclusionRuleExportRequest;
|
|
25172
25182
|
export declare type ExclusionRuleUpserted = io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
25173
25183
|
export declare type ExpectedOrderSummary = io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
25174
|
-
export declare type ExperienceExperiment = io.flow.internal.v0.models.ExperienceExperiment;
|
|
25175
25184
|
export declare type ExperienceExportRequest = io.flow.internal.v0.models.ExperienceExportRequest;
|
|
25176
25185
|
export declare type ExperienceImportRequest = io.flow.internal.v0.models.ExperienceImportRequest;
|
|
25177
25186
|
export declare type ExperienceImportType = io.flow.internal.v0.enums.ExperienceImportType;
|
|
@@ -25179,30 +25188,6 @@ export declare type ExperienceOrderAction = io.flow.internal.v0.enums.Experience
|
|
|
25179
25188
|
export declare type ExperienceOrderActionRule = io.flow.internal.v0.models.ExperienceOrderActionRule;
|
|
25180
25189
|
export declare type ExperienceOrderActionTrigger = io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
|
|
25181
25190
|
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
25191
|
export declare type ExplicitStatement = io.flow.internal.v0.models.ExplicitStatement;
|
|
25207
25192
|
export declare type ExplicitStatementForm = io.flow.internal.v0.unions.ExplicitStatementForm;
|
|
25208
25193
|
export declare type ExplicitStatementFormAllPendingPostedTransactions = io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
@@ -25225,7 +25210,6 @@ export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
|
25225
25210
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
25226
25211
|
export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
25227
25212
|
export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
25228
|
-
export declare type FeatureExperiment = io.flow.internal.v0.models.FeatureExperiment;
|
|
25229
25213
|
export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
25230
25214
|
export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
25231
25215
|
export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
@@ -25243,11 +25227,7 @@ export declare type FeatureType = io.flow.internal.v0.enums.FeatureType;
|
|
|
25243
25227
|
export declare type FeatureUpserted = io.flow.internal.v0.models.FeatureUpserted;
|
|
25244
25228
|
export declare type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
25245
25229
|
export declare type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
25246
|
-
export declare type FeatureValueReference = io.flow.internal.v0.models.FeatureValueReference;
|
|
25247
25230
|
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
25231
|
export declare type Fedex = io.flow.internal.v0.models.Fedex;
|
|
25252
25232
|
export declare type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
25253
25233
|
export declare type Fee = io.flow.internal.v0.models.Fee;
|
|
@@ -25282,9 +25262,12 @@ export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabPr
|
|
|
25282
25262
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
25283
25263
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
25284
25264
|
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
25285
|
-
export declare type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
25286
25265
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
25266
|
+
export declare type FraudAuthorizationSummary = io.flow.internal.v0.models.FraudAuthorizationSummary;
|
|
25287
25267
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
25268
|
+
export declare type FraudPendingReviewAuthorization = io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
25269
|
+
export declare type FraudPendingReviewAuthorizationDeleted = io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted;
|
|
25270
|
+
export declare type FraudPendingReviewAuthorizationUpserted = io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted;
|
|
25288
25271
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
25289
25272
|
export declare type FraudPendingReviewDetail = io.flow.internal.v0.models.FraudPendingReviewDetail;
|
|
25290
25273
|
export declare type FraudPendingReviewUpserted = io.flow.internal.v0.models.FraudPendingReviewUpserted;
|
|
@@ -25297,6 +25280,12 @@ export declare type FraudProviderConfigurationRiskified = io.flow.internal.v0.mo
|
|
|
25297
25280
|
export declare type FraudProviderConfigurationUpserted = io.flow.internal.v0.models.FraudProviderConfigurationUpserted;
|
|
25298
25281
|
export declare type FraudProviderStatus = io.flow.internal.v0.enums.FraudProviderStatus;
|
|
25299
25282
|
export declare type FraudReview = io.flow.internal.v0.models.FraudReview;
|
|
25283
|
+
export declare type FraudReviewAuthorization = io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
25284
|
+
export declare type FraudReviewAuthorizationDecision = io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
25285
|
+
export declare type FraudReviewAuthorizationDecisionDeleted = io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted;
|
|
25286
|
+
export declare type FraudReviewAuthorizationDecisionUpserted = io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted;
|
|
25287
|
+
export declare type FraudReviewAuthorizationDeleted = io.flow.internal.v0.models.FraudReviewAuthorizationDeleted;
|
|
25288
|
+
export declare type FraudReviewAuthorizationUpserted = io.flow.internal.v0.models.FraudReviewAuthorizationUpserted;
|
|
25300
25289
|
export declare type FraudReviewDecision = io.flow.internal.v0.models.FraudReviewDecision;
|
|
25301
25290
|
export declare type FraudReviewDecisionDeleted = io.flow.internal.v0.models.FraudReviewDecisionDeleted;
|
|
25302
25291
|
export declare type FraudReviewDecisionForm = io.flow.internal.v0.models.FraudReviewDecisionForm;
|
|
@@ -25364,10 +25353,16 @@ export declare type GoogleLinker = io.flow.internal.v0.models.GoogleLinker;
|
|
|
25364
25353
|
export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models.GoogleShoppingAccountParameters;
|
|
25365
25354
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
25366
25355
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
25356
|
+
export declare type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
25357
|
+
export declare type HarinathItemDeleted = io.flow.internal.v0.models.HarinathItemDeleted;
|
|
25358
|
+
export declare type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
25359
|
+
export declare type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
25360
|
+
export declare type HarinathItemUpserted = io.flow.internal.v0.models.HarinathItemUpserted;
|
|
25367
25361
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
25368
25362
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
25369
25363
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
25370
25364
|
export declare type HarmonizationColumnSetting = io.flow.internal.v0.models.HarmonizationColumnSetting;
|
|
25365
|
+
export declare type HarmonizationDecisionSource = io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
25371
25366
|
export declare type HarmonizationItemClassification = io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
25372
25367
|
export declare type HarmonizationItemClassificationDeleted = io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
|
|
25373
25368
|
export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
|
|
@@ -25471,6 +25466,11 @@ export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
|
25471
25466
|
export declare type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
25472
25467
|
export declare type KlarnaAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
25473
25468
|
export declare type KlarnaPaymentMethodCategory = io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
25469
|
+
export declare type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
25470
|
+
export declare type KonstantinItemDeleted = io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
25471
|
+
export declare type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
25472
|
+
export declare type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
25473
|
+
export declare type KonstantinItemUpserted = io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
25474
25474
|
export declare type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
25475
25475
|
export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
25476
25476
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
@@ -25547,6 +25547,9 @@ export declare type Location = io.flow.internal.v0.models.Location;
|
|
|
25547
25547
|
export declare type LogisticsCapabilities = io.flow.internal.v0.models.LogisticsCapabilities;
|
|
25548
25548
|
export declare type LogisticsCapabilitiesForm = io.flow.internal.v0.models.LogisticsCapabilitiesForm;
|
|
25549
25549
|
export declare type LogisticsCapability = io.flow.internal.v0.enums.LogisticsCapability;
|
|
25550
|
+
export declare type LogisticsPayoutRequest = io.flow.internal.v0.models.LogisticsPayoutRequest;
|
|
25551
|
+
export declare type LogisticsPayoutRequestForm = io.flow.internal.v0.models.LogisticsPayoutRequestForm;
|
|
25552
|
+
export declare type LogisticsPayoutResolutionMethod = io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
25550
25553
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
25551
25554
|
export declare type LostChargeback = io.flow.internal.v0.models.LostChargeback;
|
|
25552
25555
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
@@ -25646,6 +25649,16 @@ export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpsert
|
|
|
25646
25649
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
25647
25650
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
25648
25651
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
25652
|
+
export declare type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
25653
|
+
export declare type MichaelyanItemDeleted = io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
25654
|
+
export declare type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
25655
|
+
export declare type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
25656
|
+
export declare type MichaelyanItemUpserted = io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
25657
|
+
export declare type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
25658
|
+
export declare type MiljenkoItemDeleted = io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
25659
|
+
export declare type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
25660
|
+
export declare type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
25661
|
+
export declare type MiljenkoItemUpserted = io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
25649
25662
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
25650
25663
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
25651
25664
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -25720,6 +25733,9 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
25720
25733
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
25721
25734
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
25722
25735
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
25736
|
+
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
25737
|
+
export declare type OrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
25738
|
+
export declare type OrderTaxAndDutyInclusivitySettingUpserted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted;
|
|
25723
25739
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
25724
25740
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
25725
25741
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
@@ -25759,6 +25775,9 @@ export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.Or
|
|
|
25759
25775
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
25760
25776
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
25761
25777
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
25778
|
+
export declare type OrganizationMetadata = io.flow.internal.v0.models.OrganizationMetadata;
|
|
25779
|
+
export declare type OrganizationMetadataDeleted = io.flow.internal.v0.models.OrganizationMetadataDeleted;
|
|
25780
|
+
export declare type OrganizationMetadataUpserted = io.flow.internal.v0.models.OrganizationMetadataUpserted;
|
|
25762
25781
|
export declare type OrganizationMetricType = io.flow.internal.v0.enums.OrganizationMetricType;
|
|
25763
25782
|
export declare type OrganizationOnboardingStateAdjustmentResult = io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
25764
25783
|
export declare type OrganizationOnboardingStateAuditResult = io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
@@ -25788,6 +25807,26 @@ export declare type OrganizationStatusChange = io.flow.internal.v0.models.Organi
|
|
|
25788
25807
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
25789
25808
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
25790
25809
|
export declare type OrganizationsAuditCheckReport = io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
25810
|
+
export declare type OtherRecord = io.flow.internal.v0.models.OtherRecord;
|
|
25811
|
+
export declare type OtherRecordAccount = io.flow.internal.v0.models.OtherRecordAccount;
|
|
25812
|
+
export declare type OtherRecordAccountSourceSummary = io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
25813
|
+
export declare type OtherRecordDeleted = io.flow.internal.v0.models.OtherRecordDeleted;
|
|
25814
|
+
export declare type OtherRecordDiscount = io.flow.internal.v0.models.OtherRecordDiscount;
|
|
25815
|
+
export declare type OtherRecordFees = io.flow.internal.v0.models.OtherRecordFees;
|
|
25816
|
+
export declare type OtherRecordIdentifiers = io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
25817
|
+
export declare type OtherRecordMerchantReference = io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
25818
|
+
export declare type OtherRecordMetadata = io.flow.internal.v0.models.OtherRecordMetadata;
|
|
25819
|
+
export declare type OtherRecordMetadataCarrierCharge = io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
25820
|
+
export declare type OtherRecordMetadataChannel = io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
25821
|
+
export declare type OtherRecordMetadataFailedPayout = io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
25822
|
+
export declare type OtherRecordMetadataManual = io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
25823
|
+
export declare type OtherRecordMetadataShippingLabel = io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
25824
|
+
export declare type OtherRecordMetadataShippingLabelRevenueShare = io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
25825
|
+
export declare type OtherRecordMetadataTrueup = io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
25826
|
+
export declare type OtherRecordOrderSummary = io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
25827
|
+
export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
25828
|
+
export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
|
|
25829
|
+
export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
25791
25830
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
25792
25831
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
25793
25832
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25817,6 +25856,7 @@ export declare type PaymentProcessorAccountUpserted = io.flow.internal.v0.models
|
|
|
25817
25856
|
export declare type PaymentProcessorMerchantDeleted = io.flow.internal.v0.models.PaymentProcessorMerchantDeleted;
|
|
25818
25857
|
export declare type PaymentProcessorMerchantUpserted = io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
25819
25858
|
export declare type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
25859
|
+
export declare type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
25820
25860
|
export declare type PaymentSummaryDetails = io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
25821
25861
|
export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
25822
25862
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
@@ -26018,8 +26058,6 @@ export declare type ReportingMonetaryValue = io.flow.internal.v0.models.Reportin
|
|
|
26018
26058
|
export declare type ReportingOrderSummary = io.flow.internal.v0.models.ReportingOrderSummary;
|
|
26019
26059
|
export declare type ReportingOrganizationSummary = io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
26020
26060
|
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
26061
|
export declare type ReportingProvince = io.flow.internal.v0.models.ReportingProvince;
|
|
26024
26062
|
export declare type ReportingReconciliation = io.flow.internal.v0.models.ReportingReconciliation;
|
|
26025
26063
|
export declare type ReportingRefundReference = io.flow.internal.v0.models.ReportingRefundReference;
|
|
@@ -26031,6 +26069,7 @@ export declare type ReportingVatRemittance = io.flow.internal.v0.models.Reportin
|
|
|
26031
26069
|
export declare type ReportingVatRemittanceRate = io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
26032
26070
|
export declare type ReportingVendor = io.flow.internal.v0.models.ReportingVendor;
|
|
26033
26071
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
26072
|
+
export declare type RescreenRestrictionsProducts = io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
26034
26073
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
26035
26074
|
export declare type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
26036
26075
|
export declare type RestrictionCategory = io.flow.internal.v0.models.RestrictionCategory;
|
|
@@ -26091,7 +26130,6 @@ export declare type SalesRecordUpserted = io.flow.internal.v0.models.SalesRecord
|
|
|
26091
26130
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
26092
26131
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
26093
26132
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
26094
|
-
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
26095
26133
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
26096
26134
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
26097
26135
|
export declare type ScreeningStatusChange = io.flow.internal.v0.models.ScreeningStatusChange;
|
|
@@ -26237,7 +26275,6 @@ export declare type ShrutiDemoItemDeleted = io.flow.internal.v0.models.ShrutiDem
|
|
|
26237
26275
|
export declare type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
26238
26276
|
export declare type ShrutiDemoItemUpserted = io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
26239
26277
|
export declare type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
26240
|
-
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
26241
26278
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
26242
26279
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
26243
26280
|
export declare type SimplifiedClassificationTaxonomy = io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy;
|
|
@@ -26267,7 +26304,6 @@ export declare type StatementCreationMetadata = io.flow.internal.v0.models.State
|
|
|
26267
26304
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
26268
26305
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
26269
26306
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
26270
|
-
export declare type Status = io.flow.internal.v0.enums.Status;
|
|
26271
26307
|
export declare type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
26272
26308
|
export declare type StoreConnectionForm = io.flow.internal.v0.models.StoreConnectionForm;
|
|
26273
26309
|
export declare type StringFeatureDefaultValue = io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26330,6 +26366,7 @@ export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProc
|
|
|
26330
26366
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
26331
26367
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
26332
26368
|
export declare type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
26369
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
26333
26370
|
export declare type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
26334
26371
|
export declare type TaxCalculationError = io.flow.internal.v0.models.TaxCalculationError;
|
|
26335
26372
|
export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalculationErrorCode;
|
|
@@ -26349,6 +26386,9 @@ export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
|
26349
26386
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
26350
26387
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
26351
26388
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
26389
|
+
export declare type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
26390
|
+
export declare type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
26391
|
+
export declare type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
26352
26392
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
26353
26393
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
26354
26394
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|
|
@@ -26360,8 +26400,11 @@ export declare type TimeToClassifyAggregatedUpserted = io.flow.internal.v0.model
|
|
|
26360
26400
|
export declare type TimeToClassifyDeleted = io.flow.internal.v0.models.TimeToClassifyDeleted;
|
|
26361
26401
|
export declare type TimeToClassifyUpserted = io.flow.internal.v0.models.TimeToClassifyUpserted;
|
|
26362
26402
|
export declare type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
26363
|
-
export declare type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
26364
26403
|
export declare type Tracker = io.flow.internal.v0.unions.Tracker;
|
|
26404
|
+
export declare type TrackingAssuranceAnalysis = io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
26405
|
+
export declare type TrackingAssuranceAnalysisDeleted = io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
|
|
26406
|
+
export declare type TrackingAssuranceAnalysisUpserted = io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
|
|
26407
|
+
export declare type TrackingDebugForceTransitForm = io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
26365
26408
|
export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
26366
26409
|
export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
26367
26410
|
export declare type TrackingDebugLabelLocation = io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -26424,8 +26467,6 @@ export declare type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
|
26424
26467
|
export declare type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
26425
26468
|
export declare type ValidationCharacterLength = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
26426
26469
|
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
26470
|
export declare type ViesResult = io.flow.internal.v0.models.ViesResult;
|
|
26430
26471
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
26431
26472
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|